blob: 4cd66ae70ccce7be561ef72bdd13a060eca0ba0b [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmorea52055e2011-02-23 09:58:39 +00004 Copyright(c) 1999 - 2011 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>
Lucy Liu60127862009-07-22 14:07:33 +000038#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070039#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070041#include <net/checksum.h>
42#include <net/ip6_checksum.h>
43#include <linux/ethtool.h>
44#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040045#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000046#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070047
48#include "ixgbe.h"
49#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000050#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000051#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070052
53char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070054static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000055 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000056#define MAJ 3
Don Skidmorec89c7112011-04-14 07:40:11 +000057#define MIN 3
58#define BUILD 8
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000059#define KFIX 2
60#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
61 __stringify(BUILD) "-k" __stringify(KFIX)
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070062const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000063static const char ixgbe_copyright[] =
64 "Copyright (c) 1999-2011 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070065
66static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070067 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000068 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080069 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070070};
71
72/* ixgbe_pci_tbl - PCI Device ID Table
73 *
74 * Wildcard entries (PCI_ANY_ID) should come last
75 * Last entry must be all 0s
76 *
77 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
78 * Class, Class Mask, private data (not used) }
79 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000080static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Don Skidmore1e336d02009-01-26 20:57:51 -080081 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598),
82 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070083 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070084 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070085 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070086 board_82598 },
Jesse Brandeburg0befdb32008-10-31 00:46:40 -070087 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT),
88 board_82598 },
Peter P Waskiewicz Jr3845bec2009-07-16 15:50:52 +000089 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2),
90 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070091 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4),
Auke Kok3957d632007-10-31 15:22:10 -070092 board_82598 },
Jesse Brandeburg8d792cd2008-08-08 16:24:19 -070093 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT),
94 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -080095 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT),
96 board_82598 },
97 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM),
98 board_82598 },
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -070099 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR),
100 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -0800101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM),
102 board_82598 },
Don Skidmore2f21bdd2009-02-01 01:18:23 -0800103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX),
104 board_82598 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4),
106 board_82599 },
Peter P Waskiewicz Jr1fcf03e2009-05-17 20:58:04 +0000107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM),
108 board_82599 },
Don Skidmore74757d42009-12-08 07:22:23 +0000109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR),
110 board_82599 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP),
112 board_82599 },
Don Skidmore38ad1c82009-10-08 15:35:58 +0000113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM),
114 board_82599 },
Don Skidmoredbfec662009-10-02 08:58:25 +0000115 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ),
116 board_82599 },
Peter P Waskiewicz Jr8911184f2009-09-14 07:47:49 +0000117 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4),
118 board_82599 },
Don Skidmoredbffcb22010-12-03 03:32:34 +0000119 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE),
120 board_82599 },
121 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE),
122 board_82599 },
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700123 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM),
124 board_82599 },
Don Skidmore312eb932009-10-02 08:58:04 +0000125 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE),
126 board_82599 },
Don Skidmoreb93a2222010-11-16 19:27:17 -0800127 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T),
Don Skidmored9946532010-12-09 06:55:19 +0000128 board_X540 },
Emil Tantilov4c40ef02011-03-24 07:06:02 +0000129 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2),
130 board_82599 },
Don Skidmore4f6290c2011-05-14 06:36:35 +0000131 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS),
132 board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700133
134 /* required last entry */
135 {0, }
136};
137MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
138
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400139#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800140static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000141 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800142static struct notifier_block dca_notifier = {
143 .notifier_call = ixgbe_notify_dca,
144 .next = NULL,
145 .priority = 0
146};
147#endif
148
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000149#ifdef CONFIG_PCI_IOV
150static unsigned int max_vfs;
151module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000152MODULE_PARM_DESC(max_vfs,
153 "Maximum number of virtual functions to allocate per physical function");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000154#endif /* CONFIG_PCI_IOV */
155
Auke Kok9a799d72007-09-15 14:07:45 -0700156MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
157MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
158MODULE_LICENSE("GPL");
159MODULE_VERSION(DRV_VERSION);
160
161#define DEFAULT_DEBUG_LEVEL_SHIFT 3
162
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000163static inline void ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
164{
165 struct ixgbe_hw *hw = &adapter->hw;
166 u32 gcr;
167 u32 gpie;
168 u32 vmdctl;
169
170#ifdef CONFIG_PCI_IOV
171 /* disable iov and allow time for transactions to clear */
172 pci_disable_sriov(adapter->pdev);
173#endif
174
175 /* turn off device IOV mode */
176 gcr = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
177 gcr &= ~(IXGBE_GCR_EXT_SRIOV);
178 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr);
179 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
180 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
181 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
182
183 /* set default pool back to 0 */
184 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
185 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
186 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
187
188 /* take a breather then clean up driver data */
189 msleep(100);
Joe Perchese8e9f692010-09-07 21:34:53 +0000190
191 kfree(adapter->vfinfo);
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000192 adapter->vfinfo = NULL;
193
194 adapter->num_vfs = 0;
195 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
196}
197
Alexander Duyck70864002011-04-27 09:13:56 +0000198static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
199{
200 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
201 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
202 schedule_work(&adapter->service_task);
203}
204
205static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
206{
207 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
208
209 /* flush memory to make sure state is correct before next watchog */
210 smp_mb__before_clear_bit();
211 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
212}
213
Taku Izumidcd79ae2010-04-27 14:39:53 +0000214struct ixgbe_reg_info {
215 u32 ofs;
216 char *name;
217};
218
219static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
220
221 /* General Registers */
222 {IXGBE_CTRL, "CTRL"},
223 {IXGBE_STATUS, "STATUS"},
224 {IXGBE_CTRL_EXT, "CTRL_EXT"},
225
226 /* Interrupt Registers */
227 {IXGBE_EICR, "EICR"},
228
229 /* RX Registers */
230 {IXGBE_SRRCTL(0), "SRRCTL"},
231 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
232 {IXGBE_RDLEN(0), "RDLEN"},
233 {IXGBE_RDH(0), "RDH"},
234 {IXGBE_RDT(0), "RDT"},
235 {IXGBE_RXDCTL(0), "RXDCTL"},
236 {IXGBE_RDBAL(0), "RDBAL"},
237 {IXGBE_RDBAH(0), "RDBAH"},
238
239 /* TX Registers */
240 {IXGBE_TDBAL(0), "TDBAL"},
241 {IXGBE_TDBAH(0), "TDBAH"},
242 {IXGBE_TDLEN(0), "TDLEN"},
243 {IXGBE_TDH(0), "TDH"},
244 {IXGBE_TDT(0), "TDT"},
245 {IXGBE_TXDCTL(0), "TXDCTL"},
246
247 /* List Terminator */
248 {}
249};
250
251
252/*
253 * ixgbe_regdump - register printout routine
254 */
255static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
256{
257 int i = 0, j = 0;
258 char rname[16];
259 u32 regs[64];
260
261 switch (reginfo->ofs) {
262 case IXGBE_SRRCTL(0):
263 for (i = 0; i < 64; i++)
264 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
265 break;
266 case IXGBE_DCA_RXCTRL(0):
267 for (i = 0; i < 64; i++)
268 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
269 break;
270 case IXGBE_RDLEN(0):
271 for (i = 0; i < 64; i++)
272 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
273 break;
274 case IXGBE_RDH(0):
275 for (i = 0; i < 64; i++)
276 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
277 break;
278 case IXGBE_RDT(0):
279 for (i = 0; i < 64; i++)
280 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
281 break;
282 case IXGBE_RXDCTL(0):
283 for (i = 0; i < 64; i++)
284 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
285 break;
286 case IXGBE_RDBAL(0):
287 for (i = 0; i < 64; i++)
288 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
289 break;
290 case IXGBE_RDBAH(0):
291 for (i = 0; i < 64; i++)
292 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
293 break;
294 case IXGBE_TDBAL(0):
295 for (i = 0; i < 64; i++)
296 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
297 break;
298 case IXGBE_TDBAH(0):
299 for (i = 0; i < 64; i++)
300 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
301 break;
302 case IXGBE_TDLEN(0):
303 for (i = 0; i < 64; i++)
304 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
305 break;
306 case IXGBE_TDH(0):
307 for (i = 0; i < 64; i++)
308 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
309 break;
310 case IXGBE_TDT(0):
311 for (i = 0; i < 64; i++)
312 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
313 break;
314 case IXGBE_TXDCTL(0):
315 for (i = 0; i < 64; i++)
316 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
317 break;
318 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000319 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000320 IXGBE_READ_REG(hw, reginfo->ofs));
321 return;
322 }
323
324 for (i = 0; i < 8; i++) {
325 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000326 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000327 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000328 pr_cont(" %08x", regs[i*8+j]);
329 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000330 }
331
332}
333
334/*
335 * ixgbe_dump - Print registers, tx-rings and rx-rings
336 */
337static void ixgbe_dump(struct ixgbe_adapter *adapter)
338{
339 struct net_device *netdev = adapter->netdev;
340 struct ixgbe_hw *hw = &adapter->hw;
341 struct ixgbe_reg_info *reginfo;
342 int n = 0;
343 struct ixgbe_ring *tx_ring;
344 struct ixgbe_tx_buffer *tx_buffer_info;
345 union ixgbe_adv_tx_desc *tx_desc;
346 struct my_u0 { u64 a; u64 b; } *u0;
347 struct ixgbe_ring *rx_ring;
348 union ixgbe_adv_rx_desc *rx_desc;
349 struct ixgbe_rx_buffer *rx_buffer_info;
350 u32 staterr;
351 int i = 0;
352
353 if (!netif_msg_hw(adapter))
354 return;
355
356 /* Print netdevice Info */
357 if (netdev) {
358 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000359 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000360 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000361 pr_info("%-15s %016lX %016lX %016lX\n",
362 netdev->name,
363 netdev->state,
364 netdev->trans_start,
365 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000366 }
367
368 /* Print Registers */
369 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000370 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000371 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
372 reginfo->name; reginfo++) {
373 ixgbe_regdump(hw, reginfo);
374 }
375
376 /* Print TX Ring Summary */
377 if (!netdev || !netif_running(netdev))
378 goto exit;
379
380 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000381 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000382 for (n = 0; n < adapter->num_tx_queues; n++) {
383 tx_ring = adapter->tx_ring[n];
384 tx_buffer_info =
385 &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Joe Perchesc7689572010-09-07 21:35:17 +0000386 pr_info(" %5d %5X %5X %016llX %04X %3X %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000387 n, tx_ring->next_to_use, tx_ring->next_to_clean,
388 (u64)tx_buffer_info->dma,
389 tx_buffer_info->length,
390 tx_buffer_info->next_to_watch,
391 (u64)tx_buffer_info->time_stamp);
392 }
393
394 /* Print TX Rings */
395 if (!netif_msg_tx_done(adapter))
396 goto rx_ring_summary;
397
398 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
399
400 /* Transmit Descriptor Formats
401 *
402 * Advanced Transmit Descriptor
403 * +--------------------------------------------------------------+
404 * 0 | Buffer Address [63:0] |
405 * +--------------------------------------------------------------+
406 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
407 * +--------------------------------------------------------------+
408 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
409 */
410
411 for (n = 0; n < adapter->num_tx_queues; n++) {
412 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000413 pr_info("------------------------------------\n");
414 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
415 pr_info("------------------------------------\n");
416 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000417 "[PlPOIdStDDt Ln] [bi->dma ] "
418 "leng ntw timestamp bi->skb\n");
419
420 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000421 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000422 tx_buffer_info = &tx_ring->tx_buffer_info[i];
423 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000424 pr_info("T [0x%03X] %016llX %016llX %016llX"
Taku Izumidcd79ae2010-04-27 14:39:53 +0000425 " %04X %3X %016llX %p", i,
426 le64_to_cpu(u0->a),
427 le64_to_cpu(u0->b),
428 (u64)tx_buffer_info->dma,
429 tx_buffer_info->length,
430 tx_buffer_info->next_to_watch,
431 (u64)tx_buffer_info->time_stamp,
432 tx_buffer_info->skb);
433 if (i == tx_ring->next_to_use &&
434 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000435 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000436 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000437 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000438 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000439 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000440 else
Joe Perchesc7689572010-09-07 21:35:17 +0000441 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000442
443 if (netif_msg_pktdata(adapter) &&
444 tx_buffer_info->dma != 0)
445 print_hex_dump(KERN_INFO, "",
446 DUMP_PREFIX_ADDRESS, 16, 1,
447 phys_to_virt(tx_buffer_info->dma),
448 tx_buffer_info->length, true);
449 }
450 }
451
452 /* Print RX Rings Summary */
453rx_ring_summary:
454 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000455 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000456 for (n = 0; n < adapter->num_rx_queues; n++) {
457 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000458 pr_info("%5d %5X %5X\n",
459 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000460 }
461
462 /* Print RX Rings */
463 if (!netif_msg_rx_status(adapter))
464 goto exit;
465
466 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
467
468 /* Advanced Receive Descriptor (Read) Format
469 * 63 1 0
470 * +-----------------------------------------------------+
471 * 0 | Packet Buffer Address [63:1] |A0/NSE|
472 * +----------------------------------------------+------+
473 * 8 | Header Buffer Address [63:1] | DD |
474 * +-----------------------------------------------------+
475 *
476 *
477 * Advanced Receive Descriptor (Write-Back) Format
478 *
479 * 63 48 47 32 31 30 21 20 16 15 4 3 0
480 * +------------------------------------------------------+
481 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
482 * | Checksum Ident | | | | Type | Type |
483 * +------------------------------------------------------+
484 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
485 * +------------------------------------------------------+
486 * 63 48 47 32 31 20 19 0
487 */
488 for (n = 0; n < adapter->num_rx_queues; n++) {
489 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000490 pr_info("------------------------------------\n");
491 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
492 pr_info("------------------------------------\n");
493 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000494 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
495 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000496 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000497 "[vl er S cks ln] ---------------- [bi->skb] "
498 "<-- Adv Rx Write-Back format\n");
499
500 for (i = 0; i < rx_ring->count; i++) {
501 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +0000502 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000503 u0 = (struct my_u0 *)rx_desc;
504 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
505 if (staterr & IXGBE_RXD_STAT_DD) {
506 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000507 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000508 "%016llX ---------------- %p", i,
509 le64_to_cpu(u0->a),
510 le64_to_cpu(u0->b),
511 rx_buffer_info->skb);
512 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000513 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000514 "%016llX %016llX %p", i,
515 le64_to_cpu(u0->a),
516 le64_to_cpu(u0->b),
517 (u64)rx_buffer_info->dma,
518 rx_buffer_info->skb);
519
520 if (netif_msg_pktdata(adapter)) {
521 print_hex_dump(KERN_INFO, "",
522 DUMP_PREFIX_ADDRESS, 16, 1,
523 phys_to_virt(rx_buffer_info->dma),
524 rx_ring->rx_buf_len, true);
525
526 if (rx_ring->rx_buf_len
527 < IXGBE_RXBUFFER_2048)
528 print_hex_dump(KERN_INFO, "",
529 DUMP_PREFIX_ADDRESS, 16, 1,
530 phys_to_virt(
531 rx_buffer_info->page_dma +
532 rx_buffer_info->page_offset
533 ),
534 PAGE_SIZE/2, true);
535 }
536 }
537
538 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000539 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000540 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000541 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000542 else
Joe Perchesc7689572010-09-07 21:35:17 +0000543 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000544
545 }
546 }
547
548exit:
549 return;
550}
551
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800552static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
553{
554 u32 ctrl_ext;
555
556 /* Let firmware take over control of h/w */
557 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
558 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000559 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800560}
561
562static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
563{
564 u32 ctrl_ext;
565
566 /* Let firmware know the driver has taken over */
567 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
568 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000569 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800570}
Auke Kok9a799d72007-09-15 14:07:45 -0700571
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000572/*
573 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
574 * @adapter: pointer to adapter struct
575 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
576 * @queue: queue to map the corresponding interrupt to
577 * @msix_vector: the vector to map to the corresponding queue
578 *
579 */
580static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000581 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700582{
583 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000584 struct ixgbe_hw *hw = &adapter->hw;
585 switch (hw->mac.type) {
586 case ixgbe_mac_82598EB:
587 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
588 if (direction == -1)
589 direction = 0;
590 index = (((direction * 64) + queue) >> 2) & 0x1F;
591 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
592 ivar &= ~(0xFF << (8 * (queue & 0x3)));
593 ivar |= (msix_vector << (8 * (queue & 0x3)));
594 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
595 break;
596 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800597 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000598 if (direction == -1) {
599 /* other causes */
600 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
601 index = ((queue & 1) * 8);
602 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
603 ivar &= ~(0xFF << index);
604 ivar |= (msix_vector << index);
605 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
606 break;
607 } else {
608 /* tx or rx causes */
609 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
610 index = ((16 * (queue & 1)) + (8 * direction));
611 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
612 ivar &= ~(0xFF << index);
613 ivar |= (msix_vector << index);
614 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
615 break;
616 }
617 default:
618 break;
619 }
Auke Kok9a799d72007-09-15 14:07:45 -0700620}
621
Alexander Duyckfe49f042009-06-04 16:00:09 +0000622static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000623 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000624{
625 u32 mask;
626
Alexander Duyckbd508172010-11-16 19:27:03 -0800627 switch (adapter->hw.mac.type) {
628 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000629 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
630 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800631 break;
632 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800633 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000634 mask = (qmask & 0xFFFFFFFF);
635 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
636 mask = (qmask >> 32);
637 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800638 break;
639 default:
640 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000641 }
642}
643
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800644void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *tx_ring,
645 struct ixgbe_tx_buffer *tx_buffer_info)
Auke Kok9a799d72007-09-15 14:07:45 -0700646{
Alexander Duycke5a43542009-12-02 16:46:56 +0000647 if (tx_buffer_info->dma) {
648 if (tx_buffer_info->mapped_as_page)
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800649 dma_unmap_page(tx_ring->dev,
Alexander Duycke5a43542009-12-02 16:46:56 +0000650 tx_buffer_info->dma,
651 tx_buffer_info->length,
Nick Nunley1b507732010-04-27 13:10:27 +0000652 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +0000653 else
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800654 dma_unmap_single(tx_ring->dev,
Alexander Duycke5a43542009-12-02 16:46:56 +0000655 tx_buffer_info->dma,
656 tx_buffer_info->length,
Nick Nunley1b507732010-04-27 13:10:27 +0000657 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +0000658 tx_buffer_info->dma = 0;
659 }
Auke Kok9a799d72007-09-15 14:07:45 -0700660 if (tx_buffer_info->skb) {
661 dev_kfree_skb_any(tx_buffer_info->skb);
662 tx_buffer_info->skb = NULL;
663 }
Alexander Duyck44df32c2009-03-31 21:34:23 +0000664 tx_buffer_info->time_stamp = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700665 /* tx_buffer_info must be completely set up in the transmit path */
666}
667
John Fastabendc84d3242010-11-16 19:27:12 -0800668static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700669{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700670 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800671 struct ixgbe_hw_stats *hwstats = &adapter->stats;
672 u32 data = 0;
673 u32 xoff[8] = {0};
674 int i;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700675
John Fastabendc84d3242010-11-16 19:27:12 -0800676 if ((hw->fc.current_mode == ixgbe_fc_full) ||
677 (hw->fc.current_mode == ixgbe_fc_rx_pause)) {
678 switch (hw->mac.type) {
679 case ixgbe_mac_82598EB:
680 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
681 break;
682 default:
683 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
684 }
685 hwstats->lxoffrxc += data;
686
687 /* refill credits (no tx hang) if we received xoff */
688 if (!data)
689 return;
690
691 for (i = 0; i < adapter->num_tx_queues; i++)
692 clear_bit(__IXGBE_HANG_CHECK_ARMED,
693 &adapter->tx_ring[i]->state);
694 return;
695 } else if (!(adapter->dcb_cfg.pfc_mode_enable))
696 return;
697
698 /* update stats for each tc, only valid with PFC enabled */
699 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
700 switch (hw->mac.type) {
701 case ixgbe_mac_82598EB:
702 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
703 break;
704 default:
705 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
706 }
707 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700708 }
709
John Fastabendc84d3242010-11-16 19:27:12 -0800710 /* disarm tx queues that have received xoff frames */
711 for (i = 0; i < adapter->num_tx_queues; i++) {
712 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000713 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800714
715 if (xoff[tc])
716 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
717 }
718}
719
720static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
721{
722 return ring->tx_stats.completed;
723}
724
725static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
726{
727 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
728 struct ixgbe_hw *hw = &adapter->hw;
729
730 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
731 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
732
733 if (head != tail)
734 return (head < tail) ?
735 tail - head : (tail + ring->count - head);
736
737 return 0;
738}
739
740static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
741{
742 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
743 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
744 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
745 bool ret = false;
746
747 clear_check_for_tx_hang(tx_ring);
748
749 /*
750 * Check for a hung queue, but be thorough. This verifies
751 * that a transmit has been completed since the previous
752 * check AND there is at least one packet pending. The
753 * ARMED bit is set to indicate a potential hang. The
754 * bit is cleared if a pause frame is received to remove
755 * false hang detection due to PFC or 802.3x frames. By
756 * requiring this to fail twice we avoid races with
757 * pfc clearing the ARMED bit and conditions where we
758 * run the check_tx_hang logic with a transmit completion
759 * pending but without time to complete it yet.
760 */
761 if ((tx_done_old == tx_done) && tx_pending) {
762 /* make sure it is true for two checks in a row */
763 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
764 &tx_ring->state);
765 } else {
766 /* update completed stats and continue */
767 tx_ring->tx_stats.tx_done_old = tx_done;
768 /* reset the countdown */
769 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
770 }
771
772 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700773}
774
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700775#define IXGBE_MAX_TXD_PWR 14
776#define IXGBE_MAX_DATA_PER_TXD (1 << IXGBE_MAX_TXD_PWR)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800777
778/* Tx Descriptors needed, worst case */
779#define TXD_USE_COUNT(S) (((S) >> IXGBE_MAX_TXD_PWR) + \
780 (((S) & (IXGBE_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
781#define DESC_NEEDED (TXD_USE_COUNT(IXGBE_MAX_DATA_PER_TXD) /* skb->data */ + \
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700782 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1) /* for context */
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800783
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000784/**
785 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
786 * @adapter: driver private struct
787 **/
788static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
789{
790
791 /* Do the reset outside of interrupt context */
792 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
793 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
794 ixgbe_service_event_schedule(adapter);
795 }
796}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700797
Auke Kok9a799d72007-09-15 14:07:45 -0700798/**
799 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000800 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700801 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700802 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000803static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000804 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700805{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000806 struct ixgbe_adapter *adapter = q_vector->adapter;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800807 union ixgbe_adv_tx_desc *tx_desc, *eop_desc;
808 struct ixgbe_tx_buffer *tx_buffer_info;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700809 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyckb9537992010-11-16 19:26:58 -0800810 u16 i, eop, count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700811
812 i = tx_ring->next_to_clean;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800813 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000814 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800815
816 while ((eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)) &&
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +0000817 (count < tx_ring->work_limit)) {
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800818 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000819 rmb(); /* read buffer_info after eop_desc */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800820 for ( ; !cleaned; count++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000821 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -0700822 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700823
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800824 tx_desc->wb.status = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800825 cleaned = (i == eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800826
Auke Kok9a799d72007-09-15 14:07:45 -0700827 i++;
828 if (i == tx_ring->count)
829 i = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800830
831 if (cleaned && tx_buffer_info->skb) {
832 total_bytes += tx_buffer_info->bytecount;
833 total_packets += tx_buffer_info->gso_segs;
834 }
835
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800836 ixgbe_unmap_and_free_tx_resource(tx_ring,
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800837 tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -0700838 }
839
John Fastabendc84d3242010-11-16 19:27:12 -0800840 tx_ring->tx_stats.completed++;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800841 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000842 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800843 }
844
Auke Kok9a799d72007-09-15 14:07:45 -0700845 tx_ring->next_to_clean = i;
Alexander Duyckb9537992010-11-16 19:26:58 -0800846 tx_ring->total_bytes += total_bytes;
847 tx_ring->total_packets += total_packets;
848 u64_stats_update_begin(&tx_ring->syncp);
849 tx_ring->stats.packets += total_packets;
850 tx_ring->stats.bytes += total_bytes;
851 u64_stats_update_end(&tx_ring->syncp);
852
John Fastabendc84d3242010-11-16 19:27:12 -0800853 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800854 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800855 struct ixgbe_hw *hw = &adapter->hw;
856 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
857 e_err(drv, "Detected Tx Unit Hang\n"
858 " Tx Queue <%d>\n"
859 " TDH, TDT <%x>, <%x>\n"
860 " next_to_use <%x>\n"
861 " next_to_clean <%x>\n"
862 "tx_buffer_info[next_to_clean]\n"
863 " time_stamp <%lx>\n"
864 " jiffies <%lx>\n",
865 tx_ring->queue_index,
866 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
867 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
868 tx_ring->next_to_use, eop,
869 tx_ring->tx_buffer_info[eop].time_stamp, jiffies);
870
871 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
872
873 e_info(probe,
874 "tx hang %d detected on queue %d, resetting adapter\n",
875 adapter->tx_timeout_count + 1, tx_ring->queue_index);
876
877 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000878 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800879
880 /* the adapter is about to reset, no point in enabling stuff */
881 return true;
882 }
Auke Kok9a799d72007-09-15 14:07:45 -0700883
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800884#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800885 if (unlikely(count && netif_carrier_ok(tx_ring->netdev) &&
Joe Perchese8e9f692010-09-07 21:34:53 +0000886 (IXGBE_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800887 /* Make sure that anybody stopping the queue after this
888 * sees the new next_to_clean.
889 */
890 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800891 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800892 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800893 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800894 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800895 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800896 }
Auke Kok9a799d72007-09-15 14:07:45 -0700897
Eric Dumazet807540b2010-09-23 05:40:09 +0000898 return count < tx_ring->work_limit;
Auke Kok9a799d72007-09-15 14:07:45 -0700899}
900
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400901#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800902static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800903 struct ixgbe_ring *rx_ring,
904 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800905{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800906 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800907 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800908 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800909
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800910 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
911 switch (hw->mac.type) {
912 case ixgbe_mac_82598EB:
913 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
914 rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
915 break;
916 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800917 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800918 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
919 rxctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
920 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
921 break;
922 default:
923 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800924 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800925 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
926 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
927 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800928 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800929}
930
931static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800932 struct ixgbe_ring *tx_ring,
933 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800934{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000935 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800936 u32 txctrl;
937 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800938
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800939 switch (hw->mac.type) {
940 case ixgbe_mac_82598EB:
941 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
942 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
943 txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
944 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800945 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
946 break;
947 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800948 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800949 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
950 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
951 txctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
952 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
953 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800954 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
955 break;
956 default:
957 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800958 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800959}
960
961static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
962{
963 struct ixgbe_adapter *adapter = q_vector->adapter;
964 int cpu = get_cpu();
965 long r_idx;
966 int i;
967
968 if (q_vector->cpu == cpu)
969 goto out_no_update;
970
971 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
972 for (i = 0; i < q_vector->txr_count; i++) {
973 ixgbe_update_tx_dca(adapter, adapter->tx_ring[r_idx], cpu);
974 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
975 r_idx + 1);
976 }
977
978 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
979 for (i = 0; i < q_vector->rxr_count; i++) {
980 ixgbe_update_rx_dca(adapter, adapter->rx_ring[r_idx], cpu);
981 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
982 r_idx + 1);
983 }
984
985 q_vector->cpu = cpu;
986out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800987 put_cpu();
988}
989
990static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
991{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800992 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800993 int i;
994
995 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
996 return;
997
Alexander Duycke35ec122009-05-21 13:07:12 +0000998 /* always use CB2 mode, difference is masked in the CB driver */
999 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1000
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001001 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
1002 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1003 else
1004 num_q_vectors = 1;
1005
1006 for (i = 0; i < num_q_vectors; i++) {
1007 adapter->q_vector[i]->cpu = -1;
1008 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001009 }
1010}
1011
1012static int __ixgbe_notify_dca(struct device *dev, void *data)
1013{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001014 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001015 unsigned long event = *(unsigned long *)data;
1016
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001017 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1018 return 0;
1019
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001020 switch (event) {
1021 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001022 /* if we're already enabled, don't do it again */
1023 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1024 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001025 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001026 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001027 ixgbe_setup_dca(adapter);
1028 break;
1029 }
1030 /* Fall Through since DCA is disabled. */
1031 case DCA_PROVIDER_REMOVE:
1032 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1033 dca_remove_requester(dev);
1034 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1035 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1036 }
1037 break;
1038 }
1039
Denis V. Lunev652f0932008-03-27 14:39:17 +03001040 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001041}
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001042#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001043
1044static inline void ixgbe_rx_hash(union ixgbe_adv_rx_desc *rx_desc,
1045 struct sk_buff *skb)
1046{
1047 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
1048}
1049
Auke Kok9a799d72007-09-15 14:07:45 -07001050/**
1051 * ixgbe_receive_skb - Send a completed packet up the stack
1052 * @adapter: board private structure
1053 * @skb: packet to send up
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001054 * @status: hardware indication of status of receive
1055 * @rx_ring: rx descriptor ring (for a specific queue) to setup
1056 * @rx_desc: rx descriptor
Auke Kok9a799d72007-09-15 14:07:45 -07001057 **/
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001058static void ixgbe_receive_skb(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001059 struct sk_buff *skb, u8 status,
1060 struct ixgbe_ring *ring,
1061 union ixgbe_adv_rx_desc *rx_desc)
Auke Kok9a799d72007-09-15 14:07:45 -07001062{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001063 struct ixgbe_adapter *adapter = q_vector->adapter;
1064 struct napi_struct *napi = &q_vector->napi;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001065 bool is_vlan = (status & IXGBE_RXD_STAT_VP);
1066 u16 tag = le16_to_cpu(rx_desc->wb.upper.vlan);
Auke Kok9a799d72007-09-15 14:07:45 -07001067
Jesse Grossf62bbb52010-10-20 13:56:10 +00001068 if (is_vlan && (tag & VLAN_VID_MASK))
1069 __vlan_hwaccel_put_tag(skb, tag);
1070
1071 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1072 napi_gro_receive(napi, skb);
1073 else
1074 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001075}
1076
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001077/**
1078 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1079 * @adapter: address of board private structure
1080 * @status_err: hardware indication of status of receive
1081 * @skb: skb currently being received and modified
1082 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001083static inline void ixgbe_rx_checksum(struct ixgbe_adapter *adapter,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001084 union ixgbe_adv_rx_desc *rx_desc,
1085 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001086{
Don Skidmore8bae1b22009-07-23 18:00:39 +00001087 u32 status_err = le32_to_cpu(rx_desc->wb.upper.status_error);
1088
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001089 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001090
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001091 /* Rx csum disabled */
1092 if (!(adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07001093 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001094
1095 /* if IP and error */
1096 if ((status_err & IXGBE_RXD_STAT_IPCS) &&
1097 (status_err & IXGBE_RXDADV_ERR_IPE)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001098 adapter->hw_csum_rx_error++;
1099 return;
1100 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001101
1102 if (!(status_err & IXGBE_RXD_STAT_L4CS))
1103 return;
1104
1105 if (status_err & IXGBE_RXDADV_ERR_TCPE) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001106 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1107
1108 /*
1109 * 82599 errata, UDP frames with a 0 checksum can be marked as
1110 * checksum errors.
1111 */
1112 if ((pkt_info & IXGBE_RXDADV_PKTTYPE_UDP) &&
1113 (adapter->hw.mac.type == ixgbe_mac_82599EB))
1114 return;
1115
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001116 adapter->hw_csum_rx_error++;
1117 return;
1118 }
1119
Auke Kok9a799d72007-09-15 14:07:45 -07001120 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001121 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001122}
1123
Alexander Duyck84ea2592010-11-16 19:26:49 -08001124static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001125{
1126 /*
1127 * Force memory writes to complete before letting h/w
1128 * know there are new descriptors to fetch. (Only
1129 * applicable for weak-ordered memory model archs,
1130 * such as IA-64).
1131 */
1132 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001133 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001134}
1135
Auke Kok9a799d72007-09-15 14:07:45 -07001136/**
1137 * ixgbe_alloc_rx_buffers - Replace used receive buffers; packet split
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001138 * @rx_ring: ring to place buffers on
1139 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001140 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001141void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001142{
Auke Kok9a799d72007-09-15 14:07:45 -07001143 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001144 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001145 struct sk_buff *skb;
1146 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001147
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001148 /* do nothing if no valid netdev defined */
1149 if (!rx_ring->netdev)
1150 return;
1151
Auke Kok9a799d72007-09-15 14:07:45 -07001152 while (cleaned_count--) {
Alexander Duyck31f05a22010-08-19 13:40:31 +00001153 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001154 bi = &rx_ring->rx_buffer_info[i];
1155 skb = bi->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001156
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001157 if (!skb) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001158 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001159 rx_ring->rx_buf_len);
Auke Kok9a799d72007-09-15 14:07:45 -07001160 if (!skb) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001161 rx_ring->rx_stats.alloc_rx_buff_failed++;
Auke Kok9a799d72007-09-15 14:07:45 -07001162 goto no_buffers;
1163 }
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001164 /* initialize queue mapping */
1165 skb_record_rx_queue(skb, rx_ring->queue_index);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001166 bi->skb = skb;
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001167 }
Auke Kok9a799d72007-09-15 14:07:45 -07001168
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001169 if (!bi->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001170 bi->dma = dma_map_single(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001171 skb->data,
Joe Perchese8e9f692010-09-07 21:34:53 +00001172 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00001173 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001174 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001175 rx_ring->rx_stats.alloc_rx_buff_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001176 bi->dma = 0;
1177 goto no_buffers;
1178 }
Auke Kok9a799d72007-09-15 14:07:45 -07001179 }
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001180
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001181 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001182 if (!bi->page) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001183 bi->page = netdev_alloc_page(rx_ring->netdev);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001184 if (!bi->page) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001185 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001186 goto no_buffers;
1187 }
1188 }
1189
1190 if (!bi->page_dma) {
1191 /* use a half page if we're re-using */
1192 bi->page_offset ^= PAGE_SIZE / 2;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001193 bi->page_dma = dma_map_page(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001194 bi->page,
1195 bi->page_offset,
1196 PAGE_SIZE / 2,
1197 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001198 if (dma_mapping_error(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001199 bi->page_dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001200 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001201 bi->page_dma = 0;
1202 goto no_buffers;
1203 }
1204 }
1205
1206 /* Refresh the desc even if buffer_addrs didn't change
1207 * because each write-back erases this info. */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001208 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1209 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001210 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001211 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Alexander Duyck84418e32010-08-19 13:40:54 +00001212 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001213 }
1214
1215 i++;
1216 if (i == rx_ring->count)
1217 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001218 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001219
Auke Kok9a799d72007-09-15 14:07:45 -07001220no_buffers:
1221 if (rx_ring->next_to_use != i) {
1222 rx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08001223 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001224 }
1225}
1226
Alexander Duyckc267fc12010-11-16 19:27:00 -08001227static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001228{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001229 /* HW will not DMA in data larger than the given buffer, even if it
1230 * parses the (NFS, of course) header to be larger. In that case, it
1231 * fills the header buffer and spills the rest into the page.
1232 */
1233 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1234 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1235 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1236 if (hlen > IXGBE_RX_HDR_SIZE)
1237 hlen = IXGBE_RX_HDR_SIZE;
1238 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001239}
1240
Alexander Duyckf8212f92009-04-27 22:42:37 +00001241/**
1242 * ixgbe_transform_rsc_queue - change rsc queue into a full packet
1243 * @skb: pointer to the last skb in the rsc queue
1244 *
1245 * This function changes a queue full of hw rsc buffers into a completed
1246 * packet. It uses the ->prev pointers to find the first packet and then
1247 * turns it into the frag list owner.
1248 **/
Alexander Duyckaa801752010-11-16 19:27:02 -08001249static inline struct sk_buff *ixgbe_transform_rsc_queue(struct sk_buff *skb)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001250{
1251 unsigned int frag_list_size = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001252 unsigned int skb_cnt = 1;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001253
1254 while (skb->prev) {
1255 struct sk_buff *prev = skb->prev;
1256 frag_list_size += skb->len;
1257 skb->prev = NULL;
1258 skb = prev;
Alexander Duyckaa801752010-11-16 19:27:02 -08001259 skb_cnt++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001260 }
1261
1262 skb_shinfo(skb)->frag_list = skb->next;
1263 skb->next = NULL;
1264 skb->len += frag_list_size;
1265 skb->data_len += frag_list_size;
1266 skb->truesize += frag_list_size;
Alexander Duyckaa801752010-11-16 19:27:02 -08001267 IXGBE_RSC_CB(skb)->skb_cnt = skb_cnt;
1268
Alexander Duyckf8212f92009-04-27 22:42:37 +00001269 return skb;
1270}
1271
Alexander Duyckaa801752010-11-16 19:27:02 -08001272static inline bool ixgbe_get_rsc_state(union ixgbe_adv_rx_desc *rx_desc)
1273{
1274 return !!(le32_to_cpu(rx_desc->wb.lower.lo_dword.data) &
1275 IXGBE_RXDADV_RSCCNT_MASK);
1276}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001277
Alexander Duyckc267fc12010-11-16 19:27:00 -08001278static void ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001279 struct ixgbe_ring *rx_ring,
1280 int *work_done, int work_to_do)
Auke Kok9a799d72007-09-15 14:07:45 -07001281{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001282 struct ixgbe_adapter *adapter = q_vector->adapter;
Auke Kok9a799d72007-09-15 14:07:45 -07001283 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
1284 struct ixgbe_rx_buffer *rx_buffer_info, *next_buffer;
1285 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001286 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001287 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001288#ifdef IXGBE_FCOE
1289 int ddp_bytes = 0;
1290#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001291 u32 staterr;
1292 u16 i;
1293 u16 cleaned_count = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001294 bool pkt_is_rsc = false;
Auke Kok9a799d72007-09-15 14:07:45 -07001295
1296 i = rx_ring->next_to_clean;
Alexander Duyck31f05a22010-08-19 13:40:31 +00001297 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001298 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kok9a799d72007-09-15 14:07:45 -07001299
1300 while (staterr & IXGBE_RXD_STAT_DD) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001301 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001302
Milton Miller3c945e52010-02-19 17:44:42 +00001303 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001304
Alexander Duyckc267fc12010-11-16 19:27:00 -08001305 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1306
Auke Kok9a799d72007-09-15 14:07:45 -07001307 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001308 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001309 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001310
Alexander Duyckc267fc12010-11-16 19:27:00 -08001311 if (ring_is_rsc_enabled(rx_ring))
Alexander Duyckaa801752010-11-16 19:27:02 -08001312 pkt_is_rsc = ixgbe_get_rsc_state(rx_desc);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001313
1314 /* if this is a skb from previous receive DMA will be 0 */
Alexander Duyck21fa4e62009-06-04 15:59:49 +00001315 if (rx_buffer_info->dma) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001316 u16 hlen;
Alexander Duyckaa801752010-11-16 19:27:02 -08001317 if (pkt_is_rsc &&
Alexander Duyckc267fc12010-11-16 19:27:00 -08001318 !(staterr & IXGBE_RXD_STAT_EOP) &&
1319 !skb->prev) {
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001320 /*
1321 * When HWRSC is enabled, delay unmapping
1322 * of the first packet. It carries the
1323 * header information, HW may still
1324 * access the header after the writeback.
1325 * Only unmap it when EOP is reached
1326 */
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001327 IXGBE_RSC_CB(skb)->delay_unmap = true;
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001328 IXGBE_RSC_CB(skb)->dma = rx_buffer_info->dma;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001329 } else {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001330 dma_unmap_single(rx_ring->dev,
Joe Perchese8e9f692010-09-07 21:34:53 +00001331 rx_buffer_info->dma,
1332 rx_ring->rx_buf_len,
1333 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001334 }
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00001335 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001336
1337 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);
1345 } else {
1346 /* assume packet split since header is unmapped */
1347 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001348 }
1349
1350 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001351 dma_unmap_page(rx_ring->dev,
1352 rx_buffer_info->page_dma,
1353 PAGE_SIZE / 2,
1354 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001355 rx_buffer_info->page_dma = 0;
1356 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001357 rx_buffer_info->page,
1358 rx_buffer_info->page_offset,
1359 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001360
Alexander Duyckc267fc12010-11-16 19:27:00 -08001361 if ((page_count(rx_buffer_info->page) == 1) &&
1362 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001363 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001364 else
1365 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001366
1367 skb->len += upper_len;
1368 skb->data_len += upper_len;
1369 skb->truesize += upper_len;
1370 }
1371
1372 i++;
1373 if (i == rx_ring->count)
1374 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001375
Alexander Duyck31f05a22010-08-19 13:40:31 +00001376 next_rxd = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001377 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001378 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001379
Alexander Duyckaa801752010-11-16 19:27:02 -08001380 if (pkt_is_rsc) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001381 u32 nextp = (staterr & IXGBE_RXDADV_NEXTP_MASK) >>
1382 IXGBE_RXDADV_NEXTP_SHIFT;
1383 next_buffer = &rx_ring->rx_buffer_info[nextp];
Alexander Duyckf8212f92009-04-27 22:42:37 +00001384 } else {
1385 next_buffer = &rx_ring->rx_buffer_info[i];
1386 }
1387
Alexander Duyckc267fc12010-11-16 19:27:00 -08001388 if (!(staterr & IXGBE_RXD_STAT_EOP)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001389 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001390 rx_buffer_info->skb = next_buffer->skb;
1391 rx_buffer_info->dma = next_buffer->dma;
1392 next_buffer->skb = skb;
1393 next_buffer->dma = 0;
1394 } else {
1395 skb->next = next_buffer->skb;
1396 skb->next->prev = skb;
1397 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001398 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001399 goto next_desc;
1400 }
1401
Alexander Duyckaa801752010-11-16 19:27:02 -08001402 if (skb->prev) {
1403 skb = ixgbe_transform_rsc_queue(skb);
1404 /* if we got here without RSC the packet is invalid */
1405 if (!pkt_is_rsc) {
1406 __pskb_trim(skb, 0);
1407 rx_buffer_info->skb = skb;
1408 goto next_desc;
1409 }
1410 }
Alexander Duyckc267fc12010-11-16 19:27:00 -08001411
1412 if (ring_is_rsc_enabled(rx_ring)) {
1413 if (IXGBE_RSC_CB(skb)->delay_unmap) {
1414 dma_unmap_single(rx_ring->dev,
1415 IXGBE_RSC_CB(skb)->dma,
1416 rx_ring->rx_buf_len,
1417 DMA_FROM_DEVICE);
1418 IXGBE_RSC_CB(skb)->dma = 0;
1419 IXGBE_RSC_CB(skb)->delay_unmap = false;
1420 }
Alexander Duyckaa801752010-11-16 19:27:02 -08001421 }
1422 if (pkt_is_rsc) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001423 if (ring_is_ps_enabled(rx_ring))
1424 rx_ring->rx_stats.rsc_count +=
Alexander Duyckaa801752010-11-16 19:27:02 -08001425 skb_shinfo(skb)->nr_frags;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001426 else
Alexander Duyckaa801752010-11-16 19:27:02 -08001427 rx_ring->rx_stats.rsc_count +=
1428 IXGBE_RSC_CB(skb)->skb_cnt;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001429 rx_ring->rx_stats.rsc_flush++;
1430 }
1431
1432 /* ERR_MASK will only have valid bits if EOP set */
Auke Kok9a799d72007-09-15 14:07:45 -07001433 if (staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001434 /* trim packet back to size 0 and recycle it */
1435 __pskb_trim(skb, 0);
1436 rx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001437 goto next_desc;
1438 }
1439
Don Skidmore8bae1b22009-07-23 18:00:39 +00001440 ixgbe_rx_checksum(adapter, rx_desc, skb);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001441 if (adapter->netdev->features & NETIF_F_RXHASH)
1442 ixgbe_rx_hash(rx_desc, skb);
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001443
1444 /* probably a little skewed due to removing CRC */
1445 total_rx_bytes += skb->len;
1446 total_rx_packets++;
1447
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001448 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Yi Zou332d4a72009-05-13 13:11:53 +00001449#ifdef IXGBE_FCOE
1450 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Yi Zou3d8fd382009-06-08 14:38:44 +00001451 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
1452 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
1453 if (!ddp_bytes)
Yi Zou332d4a72009-05-13 13:11:53 +00001454 goto next_desc;
Yi Zou3d8fd382009-06-08 14:38:44 +00001455 }
Yi Zou332d4a72009-05-13 13:11:53 +00001456#endif /* IXGBE_FCOE */
Alexander Duyckfdaff1c2009-05-06 10:43:47 +00001457 ixgbe_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
Auke Kok9a799d72007-09-15 14:07:45 -07001458
1459next_desc:
1460 rx_desc->wb.upper.status_error = 0;
1461
Alexander Duyckc267fc12010-11-16 19:27:00 -08001462 (*work_done)++;
1463 if (*work_done >= work_to_do)
1464 break;
1465
Auke Kok9a799d72007-09-15 14:07:45 -07001466 /* return some buffers to hardware, one at a time is too slow */
1467 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001468 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001469 cleaned_count = 0;
1470 }
1471
1472 /* use prefetched values */
1473 rx_desc = next_rxd;
Auke Kok9a799d72007-09-15 14:07:45 -07001474 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001475 }
1476
Auke Kok9a799d72007-09-15 14:07:45 -07001477 rx_ring->next_to_clean = i;
1478 cleaned_count = IXGBE_DESC_UNUSED(rx_ring);
1479
1480 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001481 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001482
Yi Zou3d8fd382009-06-08 14:38:44 +00001483#ifdef IXGBE_FCOE
1484 /* include DDPed FCoE data */
1485 if (ddp_bytes > 0) {
1486 unsigned int mss;
1487
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001488 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001489 sizeof(struct fc_frame_header) -
1490 sizeof(struct fcoe_crc_eof);
1491 if (mss > 512)
1492 mss &= ~511;
1493 total_rx_bytes += ddp_bytes;
1494 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1495 }
1496#endif /* IXGBE_FCOE */
1497
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001498 rx_ring->total_packets += total_rx_packets;
1499 rx_ring->total_bytes += total_rx_bytes;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001500 u64_stats_update_begin(&rx_ring->syncp);
1501 rx_ring->stats.packets += total_rx_packets;
1502 rx_ring->stats.bytes += total_rx_bytes;
1503 u64_stats_update_end(&rx_ring->syncp);
Auke Kok9a799d72007-09-15 14:07:45 -07001504}
1505
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001506static int ixgbe_clean_rxonly(struct napi_struct *, int);
Auke Kok9a799d72007-09-15 14:07:45 -07001507/**
1508 * ixgbe_configure_msix - Configure MSI-X hardware
1509 * @adapter: board private structure
1510 *
1511 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1512 * interrupts.
1513 **/
1514static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1515{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001516 struct ixgbe_q_vector *q_vector;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001517 int i, q_vectors, v_idx, r_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001518 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001519
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001520 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1521
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001522 /*
1523 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001524 * corresponding register.
1525 */
1526 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00001527 q_vector = adapter->q_vector[v_idx];
Akinobu Mita984b3f52010-03-05 13:41:37 -08001528 /* XXX for_each_set_bit(...) */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001529 r_idx = find_first_bit(q_vector->rxr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001530 adapter->num_rx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001531
1532 for (i = 0; i < q_vector->rxr_count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001533 u8 reg_idx = adapter->rx_ring[r_idx]->reg_idx;
1534 ixgbe_set_ivar(adapter, 0, reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001535 r_idx = find_next_bit(q_vector->rxr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001536 adapter->num_rx_queues,
1537 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001538 }
1539 r_idx = find_first_bit(q_vector->txr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001540 adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001541
1542 for (i = 0; i < q_vector->txr_count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001543 u8 reg_idx = adapter->tx_ring[r_idx]->reg_idx;
1544 ixgbe_set_ivar(adapter, 1, reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001545 r_idx = find_next_bit(q_vector->txr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001546 adapter->num_tx_queues,
1547 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001548 }
1549
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001550 if (q_vector->txr_count && !q_vector->rxr_count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001551 /* tx only */
1552 q_vector->eitr = adapter->tx_eitr_param;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001553 else if (q_vector->rxr_count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001554 /* rx or mixed */
1555 q_vector->eitr = adapter->rx_eitr_param;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001556
Alexander Duyckfe49f042009-06-04 16:00:09 +00001557 ixgbe_write_eitr(q_vector);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00001558 /* If Flow Director is enabled, set interrupt affinity */
1559 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
1560 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
1561 /*
1562 * Allocate the affinity_hint cpumask, assign the mask
1563 * for this vector, and set our affinity_hint for
1564 * this irq.
1565 */
1566 if (!alloc_cpumask_var(&q_vector->affinity_mask,
1567 GFP_KERNEL))
1568 return;
1569 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
1570 irq_set_affinity_hint(adapter->msix_entries[v_idx].vector,
1571 q_vector->affinity_mask);
1572 }
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;
1584
1585 default:
1586 break;
1587 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001588 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001589
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001590 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001591 mask = IXGBE_EIMS_ENABLE_MASK;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001592 if (adapter->num_vfs)
1593 mask &= ~(IXGBE_EIMS_OTHER |
1594 IXGBE_EIMS_MAILBOX |
1595 IXGBE_EIMS_LSC);
1596 else
1597 mask &= ~(IXGBE_EIMS_OTHER | IXGBE_EIMS_LSC);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001598 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001599}
1600
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001601enum latency_range {
1602 lowest_latency = 0,
1603 low_latency = 1,
1604 bulk_latency = 2,
1605 latency_invalid = 255
1606};
1607
1608/**
1609 * ixgbe_update_itr - update the dynamic ITR value based on statistics
1610 * @adapter: pointer to adapter
1611 * @eitr: eitr setting (ints per sec) to give last timeslice
1612 * @itr_setting: current throttle rate in ints/second
1613 * @packets: the number of packets during this measurement interval
1614 * @bytes: the number of bytes during this measurement interval
1615 *
1616 * Stores a new ITR value based on packets and byte
1617 * counts during the last interrupt. The advantage of per interrupt
1618 * computation is faster updates and more accurate ITR for the current
1619 * traffic pattern. Constants in this function were computed
1620 * based on theoretical maximum wire speed and thresholds were set based
1621 * on testing data as well as attempting to minimize response time
1622 * while increasing bulk throughput.
1623 * this functionality is controlled by the InterruptThrottleRate module
1624 * parameter (see ixgbe_param.c)
1625 **/
1626static u8 ixgbe_update_itr(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001627 u32 eitr, u8 itr_setting,
1628 int packets, int bytes)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001629{
1630 unsigned int retval = itr_setting;
1631 u32 timepassed_us;
1632 u64 bytes_perint;
1633
1634 if (packets == 0)
1635 goto update_itr_done;
1636
1637
1638 /* simple throttlerate management
1639 * 0-20MB/s lowest (100000 ints/s)
1640 * 20-100MB/s low (20000 ints/s)
1641 * 100-1249MB/s bulk (8000 ints/s)
1642 */
1643 /* what was last interrupt timeslice? */
1644 timepassed_us = 1000000/eitr;
1645 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1646
1647 switch (itr_setting) {
1648 case lowest_latency:
1649 if (bytes_perint > adapter->eitr_low)
1650 retval = low_latency;
1651 break;
1652 case low_latency:
1653 if (bytes_perint > adapter->eitr_high)
1654 retval = bulk_latency;
1655 else if (bytes_perint <= adapter->eitr_low)
1656 retval = lowest_latency;
1657 break;
1658 case bulk_latency:
1659 if (bytes_perint <= adapter->eitr_high)
1660 retval = low_latency;
1661 break;
1662 }
1663
1664update_itr_done:
1665 return retval;
1666}
1667
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001668/**
1669 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001670 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001671 *
1672 * This function is made to be called by ethtool and by the driver
1673 * when it needs to update EITR registers at runtime. Hardware
1674 * specific quirks/differences are taken care of here.
1675 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001676void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001677{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001678 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001679 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001680 int v_idx = q_vector->v_idx;
1681 u32 itr_reg = EITR_INTS_PER_SEC_TO_REG(q_vector->eitr);
1682
Alexander Duyckbd508172010-11-16 19:27:03 -08001683 switch (adapter->hw.mac.type) {
1684 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001685 /* must write high and low 16 bits to reset counter */
1686 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001687 break;
1688 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001689 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001690 /*
Don Skidmoreb93a2222010-11-16 19:27:17 -08001691 * 82599 and X540 can support a value of zero, so allow it for
Jesse Brandeburgf8d1dca2010-04-27 01:37:20 +00001692 * max interrupt rate, but there is an errata where it can
1693 * not be zero with RSC
1694 */
1695 if (itr_reg == 8 &&
1696 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
1697 itr_reg = 0;
1698
1699 /*
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001700 * set the WDIS bit to not clear the timer bits and cause an
1701 * immediate assertion of the interrupt
1702 */
1703 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001704 break;
1705 default:
1706 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001707 }
1708 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1709}
1710
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001711static void ixgbe_set_itr_msix(struct ixgbe_q_vector *q_vector)
1712{
1713 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck125601b2010-11-16 19:27:08 -08001714 int i, r_idx;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001715 u32 new_itr;
1716 u8 current_itr, ret_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001717
1718 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
1719 for (i = 0; i < q_vector->txr_count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001720 struct ixgbe_ring *tx_ring = adapter->tx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001721 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001722 q_vector->tx_itr,
1723 tx_ring->total_packets,
1724 tx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001725 /* if the result for this queue would decrease interrupt
1726 * rate for this vector then use that result */
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001727 q_vector->tx_itr = ((q_vector->tx_itr > ret_itr) ?
Joe Perchese8e9f692010-09-07 21:34:53 +00001728 q_vector->tx_itr - 1 : ret_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001729 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001730 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001731 }
1732
1733 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
1734 for (i = 0; i < q_vector->rxr_count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001735 struct ixgbe_ring *rx_ring = adapter->rx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001736 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001737 q_vector->rx_itr,
1738 rx_ring->total_packets,
1739 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001740 /* if the result for this queue would decrease interrupt
1741 * rate for this vector then use that result */
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001742 q_vector->rx_itr = ((q_vector->rx_itr > ret_itr) ?
Joe Perchese8e9f692010-09-07 21:34:53 +00001743 q_vector->rx_itr - 1 : ret_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001744 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001745 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001746 }
1747
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001748 current_itr = max(q_vector->rx_itr, q_vector->tx_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001749
1750 switch (current_itr) {
1751 /* counts and packets in update_itr are dependent on these numbers */
1752 case lowest_latency:
1753 new_itr = 100000;
1754 break;
1755 case low_latency:
1756 new_itr = 20000; /* aka hwitr = ~200 */
1757 break;
1758 case bulk_latency:
1759 default:
1760 new_itr = 8000;
1761 break;
1762 }
1763
1764 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001765 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08001766 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001767
1768 /* save the algorithm value here, not the smoothed one */
1769 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001770
1771 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001772 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001773}
1774
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001775/**
Alexander Duyckf0f97782011-04-22 04:08:09 +00001776 * ixgbe_check_overtemp_subtask - check for over tempurature
1777 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001778 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00001779static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001780{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001781 struct ixgbe_hw *hw = &adapter->hw;
1782 u32 eicr = adapter->interrupt_event;
1783
Alexander Duyckf0f97782011-04-22 04:08:09 +00001784 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00001785 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001786
Alexander Duyckf0f97782011-04-22 04:08:09 +00001787 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1788 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
1789 return;
1790
1791 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1792
Joe Perches7ca647b2010-09-07 21:35:40 +00001793 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00001794 case IXGBE_DEV_ID_82599_T3_LOM:
1795 /*
1796 * Since the warning interrupt is for both ports
1797 * we don't have to check if:
1798 * - This interrupt wasn't for our port.
1799 * - We may have missed the interrupt so always have to
1800 * check if we got a LSC
1801 */
1802 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
1803 !(eicr & IXGBE_EICR_LSC))
1804 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001805
Alexander Duyckf0f97782011-04-22 04:08:09 +00001806 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
1807 u32 autoneg;
1808 bool link_up = false;
1809
Joe Perches7ca647b2010-09-07 21:35:40 +00001810 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1811
Alexander Duyckf0f97782011-04-22 04:08:09 +00001812 if (link_up)
1813 return;
1814 }
1815
1816 /* Check if this is not due to overtemp */
1817 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
1818 return;
1819
1820 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00001821 default:
1822 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1823 return;
1824 break;
1825 }
1826 e_crit(drv,
1827 "Network adapter has been stopped because it has over heated. "
1828 "Restart the computer. If the problem persists, "
1829 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00001830
1831 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001832}
1833
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001834static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1835{
1836 struct ixgbe_hw *hw = &adapter->hw;
1837
1838 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1839 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001840 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001841 /* write to clear the interrupt */
1842 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1843 }
1844}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001845
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001846static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
1847{
1848 struct ixgbe_hw *hw = &adapter->hw;
1849
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001850 if (eicr & IXGBE_EICR_GPI_SDP2) {
1851 /* Clear the interrupt */
1852 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00001853 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1854 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
1855 ixgbe_service_event_schedule(adapter);
1856 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001857 }
1858
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001859 if (eicr & IXGBE_EICR_GPI_SDP1) {
1860 /* Clear the interrupt */
1861 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00001862 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1863 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
1864 ixgbe_service_event_schedule(adapter);
1865 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001866 }
1867}
1868
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001869static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
1870{
1871 struct ixgbe_hw *hw = &adapter->hw;
1872
1873 adapter->lsc_int++;
1874 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1875 adapter->link_check_timeout = jiffies;
1876 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1877 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00001878 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00001879 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001880 }
1881}
1882
Auke Kok9a799d72007-09-15 14:07:45 -07001883static irqreturn_t ixgbe_msix_lsc(int irq, void *data)
1884{
1885 struct net_device *netdev = data;
1886 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1887 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore54037502009-02-21 15:42:56 -08001888 u32 eicr;
1889
1890 /*
1891 * Workaround for Silicon errata. Use clear-by-write instead
1892 * of clear-by-read. Reading with EICS will return the
1893 * interrupt causes without clearing, which later be done
1894 * with the write to EICR.
1895 */
1896 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
1897 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07001898
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001899 if (eicr & IXGBE_EICR_LSC)
1900 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001901
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001902 if (eicr & IXGBE_EICR_MAILBOX)
1903 ixgbe_msg_task(adapter);
1904
Alexander Duyckbd508172010-11-16 19:27:03 -08001905 switch (hw->mac.type) {
1906 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001907 case ixgbe_mac_X540:
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001908 /* Handle Flow Director Full threshold interrupt */
1909 if (eicr & IXGBE_EICR_FLOW_DIR) {
Alexander Duyckd034acf2011-04-27 09:25:34 +00001910 int reinit_count = 0;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001911 int i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001912 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckd034acf2011-04-27 09:25:34 +00001913 struct ixgbe_ring *ring = adapter->tx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001914 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckd034acf2011-04-27 09:25:34 +00001915 &ring->state))
1916 reinit_count++;
1917 }
1918 if (reinit_count) {
1919 /* no more flow director interrupts until after init */
1920 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
1921 eicr &= ~IXGBE_EICR_FLOW_DIR;
1922 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
1923 ixgbe_service_event_schedule(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001924 }
1925 }
Alexander Duyckf0f97782011-04-22 04:08:09 +00001926 ixgbe_check_sfp_event(adapter, eicr);
1927 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1928 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
1929 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1930 adapter->interrupt_event = eicr;
1931 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1932 ixgbe_service_event_schedule(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001933 }
1934 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001935 break;
1936 default:
1937 break;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001938 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001939
1940 ixgbe_check_fan_failure(adapter, eicr);
1941
Alexander Duyck70864002011-04-27 09:13:56 +00001942 /* re-enable the original interrupt state, no lsc, no queues */
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001943 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck70864002011-04-27 09:13:56 +00001944 IXGBE_WRITE_REG(hw, IXGBE_EIMS, eicr &
1945 ~(IXGBE_EIMS_LSC | IXGBE_EIMS_RTX_QUEUE));
Auke Kok9a799d72007-09-15 14:07:45 -07001946
1947 return IRQ_HANDLED;
1948}
1949
Alexander Duyckfe49f042009-06-04 16:00:09 +00001950static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
1951 u64 qmask)
1952{
1953 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001954 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001955
Alexander Duyckbd508172010-11-16 19:27:03 -08001956 switch (hw->mac.type) {
1957 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001958 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001959 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
1960 break;
1961 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001962 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001963 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001964 if (mask)
1965 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001966 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001967 if (mask)
1968 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
1969 break;
1970 default:
1971 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001972 }
1973 /* skip the flush */
1974}
1975
1976static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001977 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00001978{
1979 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001980 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001981
Alexander Duyckbd508172010-11-16 19:27:03 -08001982 switch (hw->mac.type) {
1983 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001984 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001985 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
1986 break;
1987 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001988 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001989 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001990 if (mask)
1991 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001992 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001993 if (mask)
1994 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
1995 break;
1996 default:
1997 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001998 }
1999 /* skip the flush */
2000}
2001
Auke Kok9a799d72007-09-15 14:07:45 -07002002static irqreturn_t ixgbe_msix_clean_tx(int irq, void *data)
2003{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002004 struct ixgbe_q_vector *q_vector = data;
2005 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002006 struct ixgbe_ring *tx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002007 int i, r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07002008
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002009 if (!q_vector->txr_count)
2010 return IRQ_HANDLED;
2011
2012 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2013 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002014 tx_ring = adapter->tx_ring[r_idx];
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002015 tx_ring->total_bytes = 0;
2016 tx_ring->total_packets = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002017 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002018 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002019 }
2020
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002021 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002022 napi_schedule(&q_vector->napi);
2023
Auke Kok9a799d72007-09-15 14:07:45 -07002024 return IRQ_HANDLED;
2025}
2026
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002027/**
2028 * ixgbe_msix_clean_rx - single unshared vector rx clean (all queues)
2029 * @irq: unused
2030 * @data: pointer to our q_vector struct for this interrupt vector
2031 **/
Auke Kok9a799d72007-09-15 14:07:45 -07002032static irqreturn_t ixgbe_msix_clean_rx(int irq, void *data)
2033{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002034 struct ixgbe_q_vector *q_vector = data;
2035 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002036 struct ixgbe_ring *rx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002037 int r_idx;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002038 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07002039
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002040#ifdef CONFIG_IXGBE_DCA
2041 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2042 ixgbe_update_dca(q_vector);
2043#endif
2044
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002045 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002046 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002047 rx_ring = adapter->rx_ring[r_idx];
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002048 rx_ring->total_bytes = 0;
2049 rx_ring->total_packets = 0;
2050 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002051 r_idx + 1);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002052 }
2053
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002054 if (!q_vector->rxr_count)
2055 return IRQ_HANDLED;
2056
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002057 /* EIAM disabled interrupts (on this vector) for us */
Ben Hutchings288379f2009-01-19 16:43:59 -08002058 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002059
Auke Kok9a799d72007-09-15 14:07:45 -07002060 return IRQ_HANDLED;
2061}
2062
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002063static irqreturn_t ixgbe_msix_clean_many(int irq, void *data)
2064{
Alexander Duyck91281fd2009-06-04 16:00:27 +00002065 struct ixgbe_q_vector *q_vector = data;
2066 struct ixgbe_adapter *adapter = q_vector->adapter;
2067 struct ixgbe_ring *ring;
2068 int r_idx;
2069 int i;
2070
2071 if (!q_vector->txr_count && !q_vector->rxr_count)
2072 return IRQ_HANDLED;
2073
2074 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2075 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002076 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002077 ring->total_bytes = 0;
2078 ring->total_packets = 0;
2079 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002080 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002081 }
2082
2083 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
2084 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002085 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002086 ring->total_bytes = 0;
2087 ring->total_packets = 0;
2088 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002089 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002090 }
2091
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002092 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002093 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002094
2095 return IRQ_HANDLED;
2096}
2097
2098/**
2099 * ixgbe_clean_rxonly - msix (aka one shot) rx clean routine
2100 * @napi: napi struct with our devices info in it
2101 * @budget: amount of work driver is allowed to do this pass, in packets
2102 *
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002103 * This function is optimized for cleaning one queue only on a single
2104 * q_vector!!!
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002105 **/
Auke Kok9a799d72007-09-15 14:07:45 -07002106static int ixgbe_clean_rxonly(struct napi_struct *napi, int budget)
2107{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002108 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002109 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002110 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002111 struct ixgbe_ring *rx_ring = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07002112 int work_done = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002113 long r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07002114
Jeff Garzik5dd2d332008-10-16 05:09:31 -04002115#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08002116 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002117 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08002118#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002119
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002120 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
2121 rx_ring = adapter->rx_ring[r_idx];
2122
Herbert Xu78b6f4c2009-01-18 21:49:45 -08002123 ixgbe_clean_rx_irq(q_vector, rx_ring, &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07002124
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002125 /* If all Rx work done, exit the polling mode */
2126 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002127 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002128 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002129 ixgbe_set_itr_msix(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002130 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002131 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002132 ((u64)1 << q_vector->v_idx));
Auke Kok9a799d72007-09-15 14:07:45 -07002133 }
2134
2135 return work_done;
2136}
2137
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002138/**
Alexander Duyck91281fd2009-06-04 16:00:27 +00002139 * ixgbe_clean_rxtx_many - msix (aka one shot) rx clean routine
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002140 * @napi: napi struct with our devices info in it
2141 * @budget: amount of work driver is allowed to do this pass, in packets
2142 *
2143 * This function will clean more than one rx queue associated with a
2144 * q_vector.
2145 **/
Alexander Duyck91281fd2009-06-04 16:00:27 +00002146static int ixgbe_clean_rxtx_many(struct napi_struct *napi, int budget)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002147{
2148 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002149 container_of(napi, struct ixgbe_q_vector, napi);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002150 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002151 struct ixgbe_ring *ring = NULL;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002152 int work_done = 0, i;
2153 long r_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002154 bool tx_clean_complete = true;
2155
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002156#ifdef CONFIG_IXGBE_DCA
2157 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2158 ixgbe_update_dca(q_vector);
2159#endif
2160
Alexander Duyck91281fd2009-06-04 16:00:27 +00002161 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2162 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002163 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002164 tx_clean_complete &= ixgbe_clean_tx_irq(q_vector, ring);
2165 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002166 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002167 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002168
2169 /* attempt to distribute budget to each queue fairly, but don't allow
2170 * the budget to go below 1 because we'll exit polling */
2171 budget /= (q_vector->rxr_count ?: 1);
2172 budget = max(budget, 1);
2173 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
2174 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002175 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002176 ixgbe_clean_rx_irq(q_vector, ring, &work_done, budget);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002177 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002178 r_idx + 1);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002179 }
2180
2181 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002182 ring = adapter->rx_ring[r_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002183 /* If all Rx work done, exit the polling mode */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07002184 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002185 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002186 if (adapter->rx_itr_setting & 1)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002187 ixgbe_set_itr_msix(q_vector);
2188 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002189 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002190 ((u64)1 << q_vector->v_idx));
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002191 return 0;
2192 }
2193
2194 return work_done;
2195}
Alexander Duyck91281fd2009-06-04 16:00:27 +00002196
2197/**
2198 * ixgbe_clean_txonly - msix (aka one shot) tx clean routine
2199 * @napi: napi struct with our devices info in it
2200 * @budget: amount of work driver is allowed to do this pass, in packets
2201 *
2202 * This function is optimized for cleaning one queue only on a single
2203 * q_vector!!!
2204 **/
2205static int ixgbe_clean_txonly(struct napi_struct *napi, int budget)
2206{
2207 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002208 container_of(napi, struct ixgbe_q_vector, napi);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002209 struct ixgbe_adapter *adapter = q_vector->adapter;
2210 struct ixgbe_ring *tx_ring = NULL;
2211 int work_done = 0;
2212 long r_idx;
2213
Alexander Duyck91281fd2009-06-04 16:00:27 +00002214#ifdef CONFIG_IXGBE_DCA
2215 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002216 ixgbe_update_dca(q_vector);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002217#endif
2218
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002219 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2220 tx_ring = adapter->tx_ring[r_idx];
2221
Alexander Duyck91281fd2009-06-04 16:00:27 +00002222 if (!ixgbe_clean_tx_irq(q_vector, tx_ring))
2223 work_done = budget;
2224
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002225 /* If all Tx work done, exit the polling mode */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002226 if (work_done < budget) {
2227 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002228 if (adapter->tx_itr_setting & 1)
Alexander Duyck91281fd2009-06-04 16:00:27 +00002229 ixgbe_set_itr_msix(q_vector);
2230 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perchese8e9f692010-09-07 21:34:53 +00002231 ixgbe_irq_enable_queues(adapter,
2232 ((u64)1 << q_vector->v_idx));
Alexander Duyck91281fd2009-06-04 16:00:27 +00002233 }
2234
2235 return work_done;
2236}
2237
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002238static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002239 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07002240{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002241 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002242 struct ixgbe_ring *rx_ring = a->rx_ring[r_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002243
2244 set_bit(r_idx, q_vector->rxr_idx);
2245 q_vector->rxr_count++;
Alexander Duyck22745432010-11-16 19:27:10 -08002246 rx_ring->q_vector = q_vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002247}
Auke Kok9a799d72007-09-15 14:07:45 -07002248
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002249static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002250 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002251{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002252 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002253 struct ixgbe_ring *tx_ring = a->tx_ring[t_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002254
2255 set_bit(t_idx, q_vector->txr_idx);
2256 q_vector->txr_count++;
Alexander Duyck22745432010-11-16 19:27:10 -08002257 tx_ring->q_vector = q_vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002258}
Auke Kok9a799d72007-09-15 14:07:45 -07002259
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002260/**
2261 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2262 * @adapter: board private structure to initialize
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002263 *
2264 * This function maps descriptor rings to the queue-specific vectors
2265 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2266 * one vector per ring/queue, but on a constrained vector budget, we
2267 * group the rings as "efficiently" as possible. You would add new
2268 * mapping configurations in here.
2269 **/
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002270static int ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002271{
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002272 int q_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002273 int v_start = 0;
2274 int rxr_idx = 0, txr_idx = 0;
2275 int rxr_remaining = adapter->num_rx_queues;
2276 int txr_remaining = adapter->num_tx_queues;
2277 int i, j;
2278 int rqpv, tqpv;
2279 int err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002280
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002281 /* No mapping required if MSI-X is disabled. */
2282 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07002283 goto out;
2284
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002285 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2286
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002287 /*
2288 * The ideal configuration...
2289 * We have enough vectors to map one per queue.
2290 */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002291 if (q_vectors == adapter->num_rx_queues + adapter->num_tx_queues) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002292 for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
2293 map_vector_to_rxq(adapter, v_start, rxr_idx);
2294
2295 for (; txr_idx < txr_remaining; v_start++, txr_idx++)
2296 map_vector_to_txq(adapter, v_start, txr_idx);
2297
2298 goto out;
2299 }
2300
2301 /*
2302 * If we don't have enough vectors for a 1-to-1
2303 * mapping, we'll have to group them so there are
2304 * multiple queues per vector.
2305 */
2306 /* Re-adjusting *qpv takes care of the remainder. */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002307 for (i = v_start; i < q_vectors; i++) {
2308 rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002309 for (j = 0; j < rqpv; j++) {
2310 map_vector_to_rxq(adapter, i, rxr_idx);
2311 rxr_idx++;
2312 rxr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002313 }
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002314 tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002315 for (j = 0; j < tqpv; j++) {
2316 map_vector_to_txq(adapter, i, txr_idx);
2317 txr_idx++;
2318 txr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002319 }
Auke Kok9a799d72007-09-15 14:07:45 -07002320 }
Auke Kok9a799d72007-09-15 14:07:45 -07002321out:
Auke Kok9a799d72007-09-15 14:07:45 -07002322 return err;
2323}
2324
2325/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002326 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2327 * @adapter: board private structure
2328 *
2329 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2330 * interrupts from the kernel.
2331 **/
2332static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2333{
2334 struct net_device *netdev = adapter->netdev;
2335 irqreturn_t (*handler)(int, void *);
2336 int i, vector, q_vectors, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002337 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002338
2339 /* Decrement for Other and TCP Timer vectors */
2340 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2341
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002342 err = ixgbe_map_rings_to_vectors(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002343 if (err)
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002344 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002345
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002346#define SET_HANDLER(_v) (((_v)->rxr_count && (_v)->txr_count) \
2347 ? &ixgbe_msix_clean_many : \
2348 (_v)->rxr_count ? &ixgbe_msix_clean_rx : \
2349 (_v)->txr_count ? &ixgbe_msix_clean_tx : \
2350 NULL)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002351 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002352 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2353 handler = SET_HANDLER(q_vector);
Robert Olssoncb13fc22008-11-25 16:43:52 -08002354
Joe Perchese8e9f692010-09-07 21:34:53 +00002355 if (handler == &ixgbe_msix_clean_rx) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002356 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2357 "%s-%s-%d", netdev->name, "rx", ri++);
Joe Perchese8e9f692010-09-07 21:34:53 +00002358 } else if (handler == &ixgbe_msix_clean_tx) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002359 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2360 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002361 } else if (handler == &ixgbe_msix_clean_many) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002362 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2363 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002364 ti++;
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002365 } else {
2366 /* skip this unused q_vector */
2367 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002368 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002369 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002370 handler, 0, q_vector->name,
2371 q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002372 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002373 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002374 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002375 goto free_queue_irqs;
2376 }
2377 }
2378
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002379 sprintf(adapter->lsc_int_name, "%s:lsc", netdev->name);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002380 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002381 ixgbe_msix_lsc, 0, adapter->lsc_int_name, netdev);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002382 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002383 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002384 goto free_queue_irqs;
2385 }
2386
2387 return 0;
2388
2389free_queue_irqs:
2390 for (i = vector - 1; i >= 0; i--)
2391 free_irq(adapter->msix_entries[--vector].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002392 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002393 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2394 pci_disable_msix(adapter->pdev);
2395 kfree(adapter->msix_entries);
2396 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002397 return err;
2398}
2399
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002400static void ixgbe_set_itr(struct ixgbe_adapter *adapter)
2401{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002402 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002403 struct ixgbe_ring *rx_ring = adapter->rx_ring[0];
2404 struct ixgbe_ring *tx_ring = adapter->tx_ring[0];
Alexander Duyck125601b2010-11-16 19:27:08 -08002405 u32 new_itr = q_vector->eitr;
2406 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002407
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002408 q_vector->tx_itr = ixgbe_update_itr(adapter, new_itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002409 q_vector->tx_itr,
2410 tx_ring->total_packets,
2411 tx_ring->total_bytes);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002412 q_vector->rx_itr = ixgbe_update_itr(adapter, new_itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002413 q_vector->rx_itr,
2414 rx_ring->total_packets,
2415 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002416
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002417 current_itr = max(q_vector->rx_itr, q_vector->tx_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002418
2419 switch (current_itr) {
2420 /* counts and packets in update_itr are dependent on these numbers */
2421 case lowest_latency:
2422 new_itr = 100000;
2423 break;
2424 case low_latency:
2425 new_itr = 20000; /* aka hwitr = ~200 */
2426 break;
2427 case bulk_latency:
2428 new_itr = 8000;
2429 break;
2430 default:
2431 break;
2432 }
2433
2434 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002435 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08002436 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002437
Alexander Duyck125601b2010-11-16 19:27:08 -08002438 /* save the algorithm value here */
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002439 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002440
2441 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002442 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002443}
2444
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002445/**
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002446 * ixgbe_irq_enable - Enable default interrupt generation settings
2447 * @adapter: board private structure
2448 **/
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002449static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2450 bool flush)
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002451{
2452 u32 mask;
Nelson, Shannon835462f2009-04-27 22:42:54 +00002453
2454 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002455 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
2456 mask |= IXGBE_EIMS_GPI_SDP0;
David S. Miller6ab33d52008-11-20 16:44:00 -08002457 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2458 mask |= IXGBE_EIMS_GPI_SDP1;
Alexander Duyckbd508172010-11-16 19:27:03 -08002459 switch (adapter->hw.mac.type) {
2460 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002461 case ixgbe_mac_X540:
Jesse Brandeburg2a41ff82009-03-13 22:14:30 +00002462 mask |= IXGBE_EIMS_ECC;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002463 mask |= IXGBE_EIMS_GPI_SDP1;
2464 mask |= IXGBE_EIMS_GPI_SDP2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002465 if (adapter->num_vfs)
2466 mask |= IXGBE_EIMS_MAILBOX;
Alexander Duyckbd508172010-11-16 19:27:03 -08002467 break;
2468 default:
2469 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002470 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00002471 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
2472 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
2473 mask |= IXGBE_EIMS_FLOW_DIR;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002474
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002475 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002476 if (queues)
2477 ixgbe_irq_enable_queues(adapter, ~0);
2478 if (flush)
2479 IXGBE_WRITE_FLUSH(&adapter->hw);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002480
2481 if (adapter->num_vfs > 32) {
2482 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2483 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2484 }
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002485}
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002486
2487/**
2488 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002489 * @irq: interrupt number
2490 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002491 **/
2492static irqreturn_t ixgbe_intr(int irq, void *data)
2493{
2494 struct net_device *netdev = data;
2495 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2496 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002497 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002498 u32 eicr;
2499
Don Skidmore54037502009-02-21 15:42:56 -08002500 /*
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002501 * Workaround for silicon errata on 82598. Mask the interrupts
Don Skidmore54037502009-02-21 15:42:56 -08002502 * before the read of EICR.
2503 */
2504 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2505
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002506 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
2507 * therefore no explict interrupt disable is necessary */
2508 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002509 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002510 /*
2511 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002512 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002513 * have disabled interrupts due to EIAM
2514 * finish the workaround of silicon errata on 82598. Unmask
2515 * the interrupt that we masked before the EICR read.
2516 */
2517 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2518 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002519 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002520 }
Auke Kok9a799d72007-09-15 14:07:45 -07002521
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002522 if (eicr & IXGBE_EICR_LSC)
2523 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002524
Alexander Duyckbd508172010-11-16 19:27:03 -08002525 switch (hw->mac.type) {
2526 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002527 ixgbe_check_sfp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002528 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2529 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002530 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2531 adapter->interrupt_event = eicr;
2532 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2533 ixgbe_service_event_schedule(adapter);
2534 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002535 }
2536 break;
2537 default:
2538 break;
2539 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002540
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002541 ixgbe_check_fan_failure(adapter, eicr);
2542
Alexander Duyck7a921c92009-05-06 10:43:28 +00002543 if (napi_schedule_prep(&(q_vector->napi))) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002544 adapter->tx_ring[0]->total_packets = 0;
2545 adapter->tx_ring[0]->total_bytes = 0;
2546 adapter->rx_ring[0]->total_packets = 0;
2547 adapter->rx_ring[0]->total_bytes = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002548 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002549 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002550 }
2551
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002552 /*
2553 * re-enable link(maybe) and non-queue interrupts, no flush.
2554 * ixgbe_poll will re-enable the queue interrupts
2555 */
2556
2557 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2558 ixgbe_irq_enable(adapter, false, false);
2559
Auke Kok9a799d72007-09-15 14:07:45 -07002560 return IRQ_HANDLED;
2561}
2562
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002563static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2564{
2565 int i, q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2566
2567 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002568 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002569 bitmap_zero(q_vector->rxr_idx, MAX_RX_QUEUES);
2570 bitmap_zero(q_vector->txr_idx, MAX_TX_QUEUES);
2571 q_vector->rxr_count = 0;
2572 q_vector->txr_count = 0;
2573 }
2574}
2575
Auke Kok9a799d72007-09-15 14:07:45 -07002576/**
2577 * ixgbe_request_irq - initialize interrupts
2578 * @adapter: board private structure
2579 *
2580 * Attempts to configure interrupts using the best available
2581 * capabilities of the hardware and kernel.
2582 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002583static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002584{
2585 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002586 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002587
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002588 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2589 err = ixgbe_request_msix_irqs(adapter);
2590 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002591 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Joe Perchese8e9f692010-09-07 21:34:53 +00002592 netdev->name, netdev);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002593 } else {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002594 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Joe Perchese8e9f692010-09-07 21:34:53 +00002595 netdev->name, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002596 }
2597
Auke Kok9a799d72007-09-15 14:07:45 -07002598 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002599 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002600
Auke Kok9a799d72007-09-15 14:07:45 -07002601 return err;
2602}
2603
2604static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2605{
2606 struct net_device *netdev = adapter->netdev;
2607
2608 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002609 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002610
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002611 q_vectors = adapter->num_msix_vectors;
2612
2613 i = q_vectors - 1;
Auke Kok9a799d72007-09-15 14:07:45 -07002614 free_irq(adapter->msix_entries[i].vector, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002615
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002616 i--;
2617 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002618 /* free only the irqs that were actually requested */
2619 if (!adapter->q_vector[i]->rxr_count &&
2620 !adapter->q_vector[i]->txr_count)
2621 continue;
2622
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002623 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002624 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002625 }
2626
2627 ixgbe_reset_q_vectors(adapter);
2628 } else {
2629 free_irq(adapter->pdev->irq, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002630 }
2631}
2632
2633/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002634 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2635 * @adapter: board private structure
2636 **/
2637static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2638{
Alexander Duyckbd508172010-11-16 19:27:03 -08002639 switch (adapter->hw.mac.type) {
2640 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002641 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002642 break;
2643 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002644 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002645 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2646 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002647 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002648 if (adapter->num_vfs > 32)
2649 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002650 break;
2651 default:
2652 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002653 }
2654 IXGBE_WRITE_FLUSH(&adapter->hw);
2655 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2656 int i;
2657 for (i = 0; i < adapter->num_msix_vectors; i++)
2658 synchronize_irq(adapter->msix_entries[i].vector);
2659 } else {
2660 synchronize_irq(adapter->pdev->irq);
2661 }
2662}
2663
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002664/**
Auke Kok9a799d72007-09-15 14:07:45 -07002665 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2666 *
2667 **/
2668static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2669{
Auke Kok9a799d72007-09-15 14:07:45 -07002670 struct ixgbe_hw *hw = &adapter->hw;
2671
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002672 IXGBE_WRITE_REG(hw, IXGBE_EITR(0),
Joe Perchese8e9f692010-09-07 21:34:53 +00002673 EITR_INTS_PER_SEC_TO_REG(adapter->rx_eitr_param));
Auke Kok9a799d72007-09-15 14:07:45 -07002674
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002675 ixgbe_set_ivar(adapter, 0, 0, 0);
2676 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002677
2678 map_vector_to_rxq(adapter, 0, 0);
2679 map_vector_to_txq(adapter, 0, 0);
2680
Emil Tantilov396e7992010-07-01 20:05:12 +00002681 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002682}
2683
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002684/**
2685 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2686 * @adapter: board private structure
2687 * @ring: structure containing ring specific data
2688 *
2689 * Configure the Tx descriptor ring after a reset.
2690 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002691void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2692 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002693{
2694 struct ixgbe_hw *hw = &adapter->hw;
2695 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002696 int wait_loop = 10;
2697 u32 txdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002698 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002699
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002700 /* disable queue to avoid issues while updating state */
2701 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2702 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx),
2703 txdctl & ~IXGBE_TXDCTL_ENABLE);
2704 IXGBE_WRITE_FLUSH(hw);
2705
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002706 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002707 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002708 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2709 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2710 ring->count * sizeof(union ixgbe_adv_tx_desc));
2711 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2712 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002713 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002714
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002715 /* configure fetching thresholds */
2716 if (adapter->rx_itr_setting == 0) {
2717 /* cannot set wthresh when itr==0 */
2718 txdctl &= ~0x007F0000;
2719 } else {
2720 /* enable WTHRESH=8 descriptors, to encourage burst writeback */
2721 txdctl |= (8 << 16);
2722 }
2723 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
2724 /* PThresh workaround for Tx hang with DFP enabled. */
2725 txdctl |= 32;
2726 }
2727
2728 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002729 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2730 adapter->atr_sample_rate) {
2731 ring->atr_sample_rate = adapter->atr_sample_rate;
2732 ring->atr_count = 0;
2733 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2734 } else {
2735 ring->atr_sample_rate = 0;
2736 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002737
John Fastabendc84d3242010-11-16 19:27:12 -08002738 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2739
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002740 /* enable queue */
2741 txdctl |= IXGBE_TXDCTL_ENABLE;
2742 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2743
2744 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2745 if (hw->mac.type == ixgbe_mac_82598EB &&
2746 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2747 return;
2748
2749 /* poll to verify queue is enabled */
2750 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002751 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002752 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2753 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2754 if (!wait_loop)
2755 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002756}
2757
Alexander Duyck120ff942010-08-19 13:34:50 +00002758static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2759{
2760 struct ixgbe_hw *hw = &adapter->hw;
2761 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002762 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002763 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002764
2765 if (hw->mac.type == ixgbe_mac_82598EB)
2766 return;
2767
2768 /* disable the arbiter while setting MTQC */
2769 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2770 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2771 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2772
2773 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002774 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002775 case (IXGBE_FLAG_SRIOV_ENABLED):
2776 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2777 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2778 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002779 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002780 if (!tcs)
2781 reg = IXGBE_MTQC_64Q_1PB;
2782 else if (tcs <= 4)
2783 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2784 else
2785 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2786
2787 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2788
2789 /* Enable Security TX Buffer IFG for multiple pb */
2790 if (tcs) {
2791 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2792 reg |= IXGBE_SECTX_DCB;
2793 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2794 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002795 break;
2796 }
2797
2798 /* re-enable the arbiter */
2799 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2800 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2801}
2802
Auke Kok9a799d72007-09-15 14:07:45 -07002803/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002804 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002805 * @adapter: board private structure
2806 *
2807 * Configure the Tx unit of the MAC after a reset.
2808 **/
2809static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2810{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002811 struct ixgbe_hw *hw = &adapter->hw;
2812 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002813 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002814
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002815 ixgbe_setup_mtqc(adapter);
2816
2817 if (hw->mac.type != ixgbe_mac_82598EB) {
2818 /* DMATXCTL.EN must be before Tx queues are enabled */
2819 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2820 dmatxctl |= IXGBE_DMATXCTL_TE;
2821 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2822 }
2823
Auke Kok9a799d72007-09-15 14:07:45 -07002824 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002825 for (i = 0; i < adapter->num_tx_queues; i++)
2826 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002827}
2828
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002829#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002830
Yi Zoua6616b42009-08-06 13:05:23 +00002831static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002832 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002833{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002834 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002835 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002836
Alexander Duyckbd508172010-11-16 19:27:03 -08002837 switch (adapter->hw.mac.type) {
2838 case ixgbe_mac_82598EB: {
2839 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2840 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002841 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002842 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002843 break;
2844 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002845 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002846 default:
2847 break;
2848 }
2849
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002850 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002851
2852 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2853 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002854 if (adapter->num_vfs)
2855 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002856
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002857 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2858 IXGBE_SRRCTL_BSIZEHDR_MASK;
2859
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002860 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002861#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2862 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2863#else
2864 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2865#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002866 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002867 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002868 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2869 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002870 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002871 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002872
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002873 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002874}
2875
Alexander Duyck05abb122010-08-19 13:35:41 +00002876static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002877{
Alexander Duyck05abb122010-08-19 13:35:41 +00002878 struct ixgbe_hw *hw = &adapter->hw;
2879 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002880 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2881 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002882 u32 mrqc = 0, reta = 0;
2883 u32 rxcsum;
2884 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002885 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002886 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2887
2888 if (tcs)
2889 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002890
Alexander Duyck05abb122010-08-19 13:35:41 +00002891 /* Fill out hash function seeds */
2892 for (i = 0; i < 10; i++)
2893 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002894
Alexander Duyck05abb122010-08-19 13:35:41 +00002895 /* Fill out redirection table */
2896 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002897 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002898 j = 0;
2899 /* reta = 4-byte sliding window of
2900 * 0x00..(indices-1)(indices-1)00..etc. */
2901 reta = (reta << 8) | (j * 0x11);
2902 if ((i & 3) == 3)
2903 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2904 }
2905
2906 /* Disable indicating checksum in descriptor, enables RSS hash */
2907 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2908 rxcsum |= IXGBE_RXCSUM_PCSD;
2909 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2910
John Fastabend8b1c0b22011-05-03 02:26:48 +00002911 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2912 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002913 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002914 } else {
2915 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2916 | IXGBE_FLAG_SRIOV_ENABLED);
2917
2918 switch (mask) {
2919 case (IXGBE_FLAG_RSS_ENABLED):
2920 if (!tcs)
2921 mrqc = IXGBE_MRQC_RSSEN;
2922 else if (tcs <= 4)
2923 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2924 else
2925 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2926 break;
2927 case (IXGBE_FLAG_SRIOV_ENABLED):
2928 mrqc = IXGBE_MRQC_VMDQEN;
2929 break;
2930 default:
2931 break;
2932 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002933 }
2934
Alexander Duyck05abb122010-08-19 13:35:41 +00002935 /* Perform hash on these packet types */
2936 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2937 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2938 | IXGBE_MRQC_RSS_FIELD_IPV6
2939 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2940
2941 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002942}
2943
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002944/**
Don Skidmoreb93a2222010-11-16 19:27:17 -08002945 * ixgbe_clear_rscctl - disable RSC for the indicated ring
2946 * @adapter: address of board private structure
2947 * @ring: structure containing ring specific data
2948 **/
2949void ixgbe_clear_rscctl(struct ixgbe_adapter *adapter,
2950 struct ixgbe_ring *ring)
2951{
2952 struct ixgbe_hw *hw = &adapter->hw;
2953 u32 rscctrl;
2954 u8 reg_idx = ring->reg_idx;
2955
2956 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
2957 rscctrl &= ~IXGBE_RSCCTL_RSCEN;
2958 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
2959}
2960
2961/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002962 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2963 * @adapter: address of board private structure
2964 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002965 **/
Don Skidmoreb93a2222010-11-16 19:27:17 -08002966void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002967 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002968{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002969 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002970 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea552009-11-23 10:45:11 -08002971 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002972 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002973
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002974 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002975 return;
2976
2977 rx_buf_len = ring->rx_buf_len;
2978 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002979 rscctrl |= IXGBE_RSCCTL_RSCEN;
2980 /*
2981 * we must limit the number of descriptors so that the
2982 * total size of max desc * buf_len is not greater
2983 * than 65535
2984 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002985 if (ring_is_ps_enabled(ring)) {
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002986#if (MAX_SKB_FRAGS > 16)
2987 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2988#elif (MAX_SKB_FRAGS > 8)
2989 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2990#elif (MAX_SKB_FRAGS > 4)
2991 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2992#else
2993 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2994#endif
2995 } else {
2996 if (rx_buf_len < IXGBE_RXBUFFER_4096)
2997 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2998 else if (rx_buf_len < IXGBE_RXBUFFER_8192)
2999 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
3000 else
3001 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
3002 }
Alexander Duyck73670962010-08-19 13:38:34 +00003003 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00003004}
3005
Alexander Duyck9e10e042010-08-19 13:40:06 +00003006/**
3007 * ixgbe_set_uta - Set unicast filter table address
3008 * @adapter: board private structure
3009 *
3010 * The unicast table address is a register array of 32-bit registers.
3011 * The table is meant to be used in a way similar to how the MTA is used
3012 * however due to certain limitations in the hardware it is necessary to
3013 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
3014 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
3015 **/
3016static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
3017{
3018 struct ixgbe_hw *hw = &adapter->hw;
3019 int i;
3020
3021 /* The UTA table only exists on 82599 hardware and newer */
3022 if (hw->mac.type < ixgbe_mac_82599EB)
3023 return;
3024
3025 /* we only need to do this if VMDq is enabled */
3026 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3027 return;
3028
3029 for (i = 0; i < 128; i++)
3030 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
3031}
3032
3033#define IXGBE_MAX_RX_DESC_POLL 10
3034static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3035 struct ixgbe_ring *ring)
3036{
3037 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003038 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3039 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003040 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003041
3042 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3043 if (hw->mac.type == ixgbe_mac_82598EB &&
3044 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3045 return;
3046
3047 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003048 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003049 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3050 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3051
3052 if (!wait_loop) {
3053 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3054 "the polling period\n", reg_idx);
3055 }
3056}
3057
Yi Zou2d39d572011-01-06 14:29:56 +00003058void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3059 struct ixgbe_ring *ring)
3060{
3061 struct ixgbe_hw *hw = &adapter->hw;
3062 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3063 u32 rxdctl;
3064 u8 reg_idx = ring->reg_idx;
3065
3066 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3067 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3068
3069 /* write value back with RXDCTL.ENABLE bit cleared */
3070 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3071
3072 if (hw->mac.type == ixgbe_mac_82598EB &&
3073 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3074 return;
3075
3076 /* the hardware may take up to 100us to really disable the rx queue */
3077 do {
3078 udelay(10);
3079 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3080 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3081
3082 if (!wait_loop) {
3083 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3084 "the polling period\n", reg_idx);
3085 }
3086}
3087
Alexander Duyck84418e32010-08-19 13:40:54 +00003088void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3089 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003090{
3091 struct ixgbe_hw *hw = &adapter->hw;
3092 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003093 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003094 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003095
Alexander Duyck9e10e042010-08-19 13:40:06 +00003096 /* disable queue to avoid issues while updating state */
3097 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003098 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003099
Alexander Duyckacd37172010-08-19 13:36:05 +00003100 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3101 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3102 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3103 ring->count * sizeof(union ixgbe_adv_rx_desc));
3104 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3105 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003106 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003107
3108 ixgbe_configure_srrctl(adapter, ring);
3109 ixgbe_configure_rscctl(adapter, ring);
3110
Greg Rosee9f98072011-01-26 01:06:07 +00003111 /* If operating in IOV mode set RLPML for X540 */
3112 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3113 hw->mac.type == ixgbe_mac_X540) {
3114 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3115 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3116 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3117 }
3118
Alexander Duyck9e10e042010-08-19 13:40:06 +00003119 if (hw->mac.type == ixgbe_mac_82598EB) {
3120 /*
3121 * enable cache line friendly hardware writes:
3122 * PTHRESH=32 descriptors (half the internal cache),
3123 * this also removes ugly rx_no_buffer_count increment
3124 * HTHRESH=4 descriptors (to minimize latency on fetch)
3125 * WTHRESH=8 burst writeback up to two cache lines
3126 */
3127 rxdctl &= ~0x3FFFFF;
3128 rxdctl |= 0x080420;
3129 }
3130
3131 /* enable receive descriptor ring */
3132 rxdctl |= IXGBE_RXDCTL_ENABLE;
3133 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3134
3135 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyckfc77dc32010-11-16 19:26:51 -08003136 ixgbe_alloc_rx_buffers(ring, IXGBE_DESC_UNUSED(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003137}
3138
Alexander Duyck48654522010-08-19 13:36:27 +00003139static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3140{
3141 struct ixgbe_hw *hw = &adapter->hw;
3142 int p;
3143
3144 /* PSRTYPE must be initialized in non 82598 adapters */
3145 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003146 IXGBE_PSRTYPE_UDPHDR |
3147 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003148 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003149 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003150
3151 if (hw->mac.type == ixgbe_mac_82598EB)
3152 return;
3153
3154 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
3155 psrtype |= (adapter->num_rx_queues_per_pool << 29);
3156
3157 for (p = 0; p < adapter->num_rx_pools; p++)
3158 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
3159 psrtype);
3160}
3161
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003162static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3163{
3164 struct ixgbe_hw *hw = &adapter->hw;
3165 u32 gcr_ext;
3166 u32 vt_reg_bits;
3167 u32 reg_offset, vf_shift;
3168 u32 vmdctl;
3169
3170 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3171 return;
3172
3173 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3174 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
3175 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
3176 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
3177
3178 vf_shift = adapter->num_vfs % 32;
3179 reg_offset = (adapter->num_vfs > 32) ? 1 : 0;
3180
3181 /* Enable only the PF's pool for Tx/Rx */
3182 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
3183 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
3184 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
3185 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
3186 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3187
3188 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
3189 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
3190
3191 /*
3192 * Set up VF register offsets for selected VT Mode,
3193 * i.e. 32 or 64 VFs for SR-IOV
3194 */
3195 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3196 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
3197 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
3198 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3199
3200 /* enable Tx loopback for VF/PF communication */
3201 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00003202 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003203 hw->mac.ops.set_mac_anti_spoofing(hw,
3204 (adapter->antispoofing_enabled =
3205 (adapter->num_vfs != 0)),
Greg Rosea985b6c32010-11-18 03:02:52 +00003206 adapter->num_vfs);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003207}
3208
Alexander Duyck477de6e2010-08-19 13:38:11 +00003209static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003210{
Auke Kok9a799d72007-09-15 14:07:45 -07003211 struct ixgbe_hw *hw = &adapter->hw;
3212 struct net_device *netdev = adapter->netdev;
3213 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003214 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003215 struct ixgbe_ring *rx_ring;
3216 int i;
3217 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003218
Auke Kok9a799d72007-09-15 14:07:45 -07003219 /* Decide whether to use packet split mode or not */
Don Skidmorea1243392011-01-18 22:53:47 +00003220 /* On by default */
3221 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
3222
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003223 /* Do not use packet split if we're in SR-IOV Mode */
Don Skidmorea1243392011-01-18 22:53:47 +00003224 if (adapter->num_vfs)
3225 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
3226
3227 /* Disable packet split due to 82599 erratum #45 */
3228 if (hw->mac.type == ixgbe_mac_82599EB)
3229 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07003230
3231 /* Set the RX buffer length according to the mode */
3232 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003233 rx_buf_len = IXGBE_RX_HDR_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003234 } else {
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00003235 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
Alexander Duyckf8212f92009-04-27 22:42:37 +00003236 (netdev->mtu <= ETH_DATA_LEN))
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003237 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003238 else
Alexander Duyck477de6e2010-08-19 13:38:11 +00003239 rx_buf_len = ALIGN(max_frame + VLAN_HLEN, 1024);
3240 }
3241
3242#ifdef IXGBE_FCOE
3243 /* adjust max frame to be able to do baby jumbo for FCoE */
3244 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3245 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3246 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3247
3248#endif /* IXGBE_FCOE */
3249 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3250 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3251 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3252 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3253
3254 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003255 }
3256
Auke Kok9a799d72007-09-15 14:07:45 -07003257 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003258 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3259 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003260 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3261
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003262 /*
3263 * Setup the HW Rx Head and Tail Descriptor Pointers and
3264 * the Base and Length of the Rx Descriptor Ring
3265 */
Auke Kok9a799d72007-09-15 14:07:45 -07003266 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003267 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00003268 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003269
Yi Zou6e455b892009-08-06 13:05:44 +00003270 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003271 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00003272 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003273 clear_ring_ps_enabled(rx_ring);
3274
3275 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3276 set_ring_rsc_enabled(rx_ring);
3277 else
3278 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003279
Yi Zou63f39bd2009-05-17 12:34:35 +00003280#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003281 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003282 struct ixgbe_ring_feature *f;
3283 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003284 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003285 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003286 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3287 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003288 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003289 } else if (!ring_is_rsc_enabled(rx_ring) &&
3290 !ring_is_ps_enabled(rx_ring)) {
3291 rx_ring->rx_buf_len =
3292 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003293 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003294 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003295#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003296 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003297}
3298
Alexander Duyck73670962010-08-19 13:38:34 +00003299static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3300{
3301 struct ixgbe_hw *hw = &adapter->hw;
3302 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3303
3304 switch (hw->mac.type) {
3305 case ixgbe_mac_82598EB:
3306 /*
3307 * For VMDq support of different descriptor types or
3308 * buffer sizes through the use of multiple SRRCTL
3309 * registers, RDRXCTL.MVMEN must be set to 1
3310 *
3311 * also, the manual doesn't mention it clearly but DCA hints
3312 * will only use queue 0's tags unless this bit is set. Side
3313 * effects of setting this bit are only that SRRCTL must be
3314 * fully programmed [0..15]
3315 */
3316 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3317 break;
3318 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003319 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003320 /* Disable RSC for ACK packets */
3321 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3322 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3323 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3324 /* hardware requires some bits to be set by default */
3325 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3326 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3327 break;
3328 default:
3329 /* We should do nothing since we don't know this hardware */
3330 return;
3331 }
3332
3333 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3334}
3335
Alexander Duyck477de6e2010-08-19 13:38:11 +00003336/**
3337 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3338 * @adapter: board private structure
3339 *
3340 * Configure the Rx unit of the MAC after a reset.
3341 **/
3342static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3343{
3344 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003345 int i;
3346 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003347
3348 /* disable receives while setting up the descriptors */
3349 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3350 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3351
3352 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003353 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003354
Alexander Duyck9e10e042010-08-19 13:40:06 +00003355 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003356 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003357
Alexander Duyck9e10e042010-08-19 13:40:06 +00003358 ixgbe_set_uta(adapter);
3359
Alexander Duyck477de6e2010-08-19 13:38:11 +00003360 /* set_rx_buffer_len must be called before ring initialization */
3361 ixgbe_set_rx_buffer_len(adapter);
3362
3363 /*
3364 * Setup the HW Rx Head and Tail Descriptor Pointers and
3365 * the Base and Length of the Rx Descriptor Ring
3366 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003367 for (i = 0; i < adapter->num_rx_queues; i++)
3368 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003369
Alexander Duyck9e10e042010-08-19 13:40:06 +00003370 /* disable drop enable for 82598 parts */
3371 if (hw->mac.type == ixgbe_mac_82598EB)
3372 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3373
3374 /* enable all receives */
3375 rxctrl |= IXGBE_RXCTRL_RXEN;
3376 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003377}
3378
Auke Kok9a799d72007-09-15 14:07:45 -07003379static void ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
3380{
3381 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003382 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003383 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003384
3385 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003386 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003387 set_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003388}
3389
3390static void ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
3391{
3392 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003393 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003394 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003395
Auke Kok9a799d72007-09-15 14:07:45 -07003396 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003397 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003398 clear_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003399}
3400
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003401/**
3402 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3403 * @adapter: driver data
3404 */
3405static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3406{
3407 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003408 u32 vlnctrl;
3409
3410 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3411 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3412 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3413}
3414
3415/**
3416 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3417 * @adapter: driver data
3418 */
3419static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3420{
3421 struct ixgbe_hw *hw = &adapter->hw;
3422 u32 vlnctrl;
3423
3424 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3425 vlnctrl |= IXGBE_VLNCTRL_VFE;
3426 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3427 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3428}
3429
3430/**
3431 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3432 * @adapter: driver data
3433 */
3434static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3435{
3436 struct ixgbe_hw *hw = &adapter->hw;
3437 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003438 int i, j;
3439
3440 switch (hw->mac.type) {
3441 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003442 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3443 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003444 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3445 break;
3446 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003447 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003448 for (i = 0; i < adapter->num_rx_queues; i++) {
3449 j = adapter->rx_ring[i]->reg_idx;
3450 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3451 vlnctrl &= ~IXGBE_RXDCTL_VME;
3452 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3453 }
3454 break;
3455 default:
3456 break;
3457 }
3458}
3459
3460/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003461 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003462 * @adapter: driver data
3463 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003464static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003465{
3466 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003467 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003468 int i, j;
3469
3470 switch (hw->mac.type) {
3471 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003472 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3473 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003474 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3475 break;
3476 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003477 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003478 for (i = 0; i < adapter->num_rx_queues; i++) {
3479 j = adapter->rx_ring[i]->reg_idx;
3480 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3481 vlnctrl |= IXGBE_RXDCTL_VME;
3482 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3483 }
3484 break;
3485 default:
3486 break;
3487 }
3488}
3489
Auke Kok9a799d72007-09-15 14:07:45 -07003490static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3491{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003492 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003493
Jesse Grossf62bbb52010-10-20 13:56:10 +00003494 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3495
3496 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3497 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003498}
3499
3500/**
Alexander Duyck28500622010-06-15 09:25:48 +00003501 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3502 * @netdev: network interface device structure
3503 *
3504 * Writes unicast address list to the RAR table.
3505 * Returns: -ENOMEM on failure/insufficient address space
3506 * 0 on no addresses written
3507 * X on writing X addresses to the RAR table
3508 **/
3509static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3510{
3511 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3512 struct ixgbe_hw *hw = &adapter->hw;
3513 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003514 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003515 int count = 0;
3516
3517 /* return ENOMEM indicating insufficient memory for addresses */
3518 if (netdev_uc_count(netdev) > rar_entries)
3519 return -ENOMEM;
3520
3521 if (!netdev_uc_empty(netdev) && rar_entries) {
3522 struct netdev_hw_addr *ha;
3523 /* return error if we do not support writing to RAR table */
3524 if (!hw->mac.ops.set_rar)
3525 return -ENOMEM;
3526
3527 netdev_for_each_uc_addr(ha, netdev) {
3528 if (!rar_entries)
3529 break;
3530 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3531 vfn, IXGBE_RAH_AV);
3532 count++;
3533 }
3534 }
3535 /* write the addresses in reverse order to avoid write combining */
3536 for (; rar_entries > 0 ; rar_entries--)
3537 hw->mac.ops.clear_rar(hw, rar_entries);
3538
3539 return count;
3540}
3541
3542/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003543 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003544 * @netdev: network interface device structure
3545 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003546 * The set_rx_method entry point is called whenever the unicast/multicast
3547 * address list or the network interface flags are updated. This routine is
3548 * responsible for configuring the hardware for proper unicast, multicast and
3549 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003550 **/
Greg Rose7f870472010-01-09 02:25:29 +00003551void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003552{
3553 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3554 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003555 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3556 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003557
3558 /* Check for Promiscuous and All Multicast modes */
3559
3560 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3561
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003562 /* set all bits that we expect to always be set */
3563 fctrl |= IXGBE_FCTRL_BAM;
3564 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3565 fctrl |= IXGBE_FCTRL_PMCF;
3566
Alexander Duyck28500622010-06-15 09:25:48 +00003567 /* clear the bits we are changing the status of */
3568 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3569
Auke Kok9a799d72007-09-15 14:07:45 -07003570 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003571 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003572 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003573 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003574 /* don't hardware filter vlans in promisc mode */
3575 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003576 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003577 if (netdev->flags & IFF_ALLMULTI) {
3578 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003579 vmolr |= IXGBE_VMOLR_MPE;
3580 } else {
3581 /*
3582 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003583 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003584 * that we can at least receive multicast traffic
3585 */
3586 hw->mac.ops.update_mc_addr_list(hw, netdev);
3587 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003588 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003589 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003590 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003591 /*
3592 * Write addresses to available RAR registers, if there is not
3593 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003594 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003595 */
3596 count = ixgbe_write_uc_addr_list(netdev);
3597 if (count < 0) {
3598 fctrl |= IXGBE_FCTRL_UPE;
3599 vmolr |= IXGBE_VMOLR_ROPE;
3600 }
3601 }
3602
3603 if (adapter->num_vfs) {
3604 ixgbe_restore_vf_multicasts(adapter);
3605 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3606 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3607 IXGBE_VMOLR_ROPE);
3608 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003609 }
3610
3611 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003612
3613 if (netdev->features & NETIF_F_HW_VLAN_RX)
3614 ixgbe_vlan_strip_enable(adapter);
3615 else
3616 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003617}
3618
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003619static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3620{
3621 int q_idx;
3622 struct ixgbe_q_vector *q_vector;
3623 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3624
3625 /* legacy and MSI only use one vector */
3626 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3627 q_vectors = 1;
3628
3629 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003630 struct napi_struct *napi;
Alexander Duyck7a921c92009-05-06 10:43:28 +00003631 q_vector = adapter->q_vector[q_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003632 napi = &q_vector->napi;
Alexander Duyck91281fd2009-06-04 16:00:27 +00003633 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
3634 if (!q_vector->rxr_count || !q_vector->txr_count) {
3635 if (q_vector->txr_count == 1)
3636 napi->poll = &ixgbe_clean_txonly;
3637 else if (q_vector->rxr_count == 1)
3638 napi->poll = &ixgbe_clean_rxonly;
3639 }
3640 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003641
3642 napi_enable(napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003643 }
3644}
3645
3646static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3647{
3648 int q_idx;
3649 struct ixgbe_q_vector *q_vector;
3650 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3651
3652 /* legacy and MSI only use one vector */
3653 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3654 q_vectors = 1;
3655
3656 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003657 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003658 napi_disable(&q_vector->napi);
3659 }
3660}
3661
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003662#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003663/*
3664 * ixgbe_configure_dcb - Configure DCB hardware
3665 * @adapter: ixgbe adapter struct
3666 *
3667 * This is called by the driver on open to configure the DCB hardware.
3668 * This is also called by the gennetlink interface when reconfiguring
3669 * the DCB state.
3670 */
3671static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3672{
3673 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00003674 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003675
Alexander Duyck67ebd792010-08-19 13:34:04 +00003676 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3677 if (hw->mac.type == ixgbe_mac_82598EB)
3678 netif_set_gso_max_size(adapter->netdev, 65536);
3679 return;
3680 }
3681
3682 if (hw->mac.type == ixgbe_mac_82598EB)
3683 netif_set_gso_max_size(adapter->netdev, 32768);
3684
Alexander Duyck2f90b862008-11-20 20:52:10 -08003685
Alexander Duyck2f90b862008-11-20 20:52:10 -08003686 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003687 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003688
Alexander Duyck2f90b862008-11-20 20:52:10 -08003689 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003690
3691 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003692 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003693#ifdef CONFIG_FCOE
3694 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3695 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3696#endif
3697 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3698 DCB_TX_CONFIG);
3699 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3700 DCB_RX_CONFIG);
3701 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
3702 } else {
3703 struct net_device *dev = adapter->netdev;
3704
3705 if (adapter->ixgbe_ieee_ets)
3706 dev->dcbnl_ops->ieee_setets(dev,
3707 adapter->ixgbe_ieee_ets);
3708 if (adapter->ixgbe_ieee_pfc)
3709 dev->dcbnl_ops->ieee_setpfc(dev,
3710 adapter->ixgbe_ieee_pfc);
3711 }
John Fastabend8187cd42011-02-23 05:58:08 +00003712
3713 /* Enable RSS Hash per TC */
3714 if (hw->mac.type != ixgbe_mac_82598EB) {
3715 int i;
3716 u32 reg = 0;
3717
3718 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3719 u8 msb = 0;
3720 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3721
3722 while (cnt >>= 1)
3723 msb++;
3724
3725 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3726 }
3727 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3728 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003729}
3730
3731#endif
John Fastabend80605c652011-05-02 12:34:10 +00003732
3733static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3734{
3735 int hdrm = 0;
3736 int num_tc = netdev_get_num_tc(adapter->netdev);
3737 struct ixgbe_hw *hw = &adapter->hw;
3738
3739 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3740 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
3741 hdrm = 64 << adapter->fdir_pballoc;
3742
3743 hw->mac.ops.set_rxpba(&adapter->hw, num_tc, hdrm, PBA_STRATEGY_EQUAL);
3744}
3745
Auke Kok9a799d72007-09-15 14:07:45 -07003746static void ixgbe_configure(struct ixgbe_adapter *adapter)
3747{
3748 struct net_device *netdev = adapter->netdev;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003749 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003750 int i;
3751
John Fastabend80605c652011-05-02 12:34:10 +00003752 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003753#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003754 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003755#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003756
Jesse Grossf62bbb52010-10-20 13:56:10 +00003757 ixgbe_set_rx_mode(netdev);
3758 ixgbe_restore_vlan(adapter);
3759
Yi Zoueacd73f2009-05-13 13:11:06 +00003760#ifdef IXGBE_FCOE
3761 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3762 ixgbe_configure_fcoe(adapter);
3763
3764#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003765 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
3766 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003767 adapter->tx_ring[i]->atr_sample_rate =
Joe Perchese8e9f692010-09-07 21:34:53 +00003768 adapter->atr_sample_rate;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003769 ixgbe_init_fdir_signature_82599(hw, adapter->fdir_pballoc);
3770 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3771 ixgbe_init_fdir_perfect_82599(hw, adapter->fdir_pballoc);
3772 }
Alexander Duyck933d41f2010-09-07 21:34:29 +00003773 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003774
Auke Kok9a799d72007-09-15 14:07:45 -07003775 ixgbe_configure_tx(adapter);
3776 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003777}
3778
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003779static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3780{
3781 switch (hw->phy.type) {
3782 case ixgbe_phy_sfp_avago:
3783 case ixgbe_phy_sfp_ftl:
3784 case ixgbe_phy_sfp_intel:
3785 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003786 case ixgbe_phy_sfp_passive_tyco:
3787 case ixgbe_phy_sfp_passive_unknown:
3788 case ixgbe_phy_sfp_active_unknown:
3789 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003790 return true;
3791 default:
3792 return false;
3793 }
3794}
3795
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003796/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003797 * ixgbe_sfp_link_config - set up SFP+ link
3798 * @adapter: pointer to private adapter struct
3799 **/
3800static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3801{
Alexander Duyck70864002011-04-27 09:13:56 +00003802 /*
3803 * We are assuming the worst case scenerio here, and that
3804 * is that an SFP was inserted/removed after the reset
3805 * but before SFP detection was enabled. As such the best
3806 * solution is to just start searching as soon as we start
3807 */
3808 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3809 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003810
Alexander Duyck70864002011-04-27 09:13:56 +00003811 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003812}
3813
3814/**
3815 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003816 * @hw: pointer to private hardware struct
3817 *
3818 * Returns 0 on success, negative on failure
3819 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003820static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003821{
3822 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003823 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003824 u32 ret = IXGBE_ERR_LINK_SETUP;
3825
3826 if (hw->mac.ops.check_link)
3827 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3828
3829 if (ret)
3830 goto link_cfg_out;
3831
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003832 autoneg = hw->phy.autoneg_advertised;
3833 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003834 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3835 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003836 if (ret)
3837 goto link_cfg_out;
3838
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003839 if (hw->mac.ops.setup_link)
3840 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003841link_cfg_out:
3842 return ret;
3843}
3844
Alexander Duycka34bcff2010-08-19 13:39:20 +00003845static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003846{
Auke Kok9a799d72007-09-15 14:07:45 -07003847 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003848 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003849
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003850 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003851 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3852 IXGBE_GPIE_OCD;
3853 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003854 /*
3855 * use EIAM to auto-mask when MSI-X interrupt is asserted
3856 * this saves a register write for every interrupt
3857 */
3858 switch (hw->mac.type) {
3859 case ixgbe_mac_82598EB:
3860 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3861 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003862 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003863 case ixgbe_mac_X540:
3864 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003865 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3866 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3867 break;
3868 }
3869 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003870 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3871 * specifically only auto mask tx and rx interrupts */
3872 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003873 }
3874
Alexander Duycka34bcff2010-08-19 13:39:20 +00003875 /* XXX: to interrupt immediately for EICS writes, enable this */
3876 /* gpie |= IXGBE_GPIE_EIMEN; */
3877
3878 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3879 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3880 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003881 }
3882
Alexander Duycka34bcff2010-08-19 13:39:20 +00003883 /* Enable fan failure interrupt */
3884 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003885 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003886
Don Skidmore2698b202011-04-13 07:01:52 +00003887 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003888 gpie |= IXGBE_SDP1_GPIEN;
3889 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003890 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003891
3892 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3893}
3894
3895static int ixgbe_up_complete(struct ixgbe_adapter *adapter)
3896{
3897 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003898 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003899 u32 ctrl_ext;
3900
3901 ixgbe_get_hw_control(adapter);
3902 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003903
Auke Kok9a799d72007-09-15 14:07:45 -07003904 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3905 ixgbe_configure_msix(adapter);
3906 else
3907 ixgbe_configure_msi_and_legacy(adapter);
3908
Don Skidmorec6ecf392010-12-03 03:31:51 +00003909 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3910 if (hw->mac.ops.enable_tx_laser &&
3911 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003912 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003913 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003914 hw->mac.ops.enable_tx_laser(hw);
3915
Auke Kok9a799d72007-09-15 14:07:45 -07003916 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003917 ixgbe_napi_enable_all(adapter);
3918
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003919 if (ixgbe_is_sfp(hw)) {
3920 ixgbe_sfp_link_config(adapter);
3921 } else {
3922 err = ixgbe_non_sfp_link_config(hw);
3923 if (err)
3924 e_err(probe, "link_config FAILED %d\n", err);
3925 }
3926
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003927 /* clear any pending interrupts, may auto mask */
3928 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003929 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003930
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003931 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003932 * If this adapter has a fan, check to see if we had a failure
3933 * before we enabled the interrupt.
3934 */
3935 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3936 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3937 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003938 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003939 }
3940
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003941 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003942 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003943
Auke Kok9a799d72007-09-15 14:07:45 -07003944 /* bring the link up in the watchdog, this could race with our first
3945 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003946 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3947 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00003948 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003949
3950 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3951 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3952 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3953 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
3954
Auke Kok9a799d72007-09-15 14:07:45 -07003955 return 0;
3956}
3957
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003958void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3959{
3960 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00003961 /* put off any impending NetWatchDogTimeout */
3962 adapter->netdev->trans_start = jiffies;
3963
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003964 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00003965 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003966 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003967 /*
3968 * If SR-IOV enabled then wait a bit before bringing the adapter
3969 * back up to give the VFs time to respond to the reset. The
3970 * two second wait is based upon the watchdog timer cycle in
3971 * the VF driver.
3972 */
3973 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3974 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003975 ixgbe_up(adapter);
3976 clear_bit(__IXGBE_RESETTING, &adapter->state);
3977}
3978
Auke Kok9a799d72007-09-15 14:07:45 -07003979int ixgbe_up(struct ixgbe_adapter *adapter)
3980{
3981 /* hardware has been reset, we need to reload some things */
3982 ixgbe_configure(adapter);
3983
3984 return ixgbe_up_complete(adapter);
3985}
3986
3987void ixgbe_reset(struct ixgbe_adapter *adapter)
3988{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003989 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07003990 int err;
3991
Alexander Duyck70864002011-04-27 09:13:56 +00003992 /* lock SFP init bit to prevent race conditions with the watchdog */
3993 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
3994 usleep_range(1000, 2000);
3995
3996 /* clear all SFP and link config related flags while holding SFP_INIT */
3997 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
3998 IXGBE_FLAG2_SFP_NEEDS_RESET);
3999 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4000
Don Skidmore8ca783a2009-05-26 20:40:47 -07004001 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004002 switch (err) {
4003 case 0:
4004 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004005 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004006 break;
4007 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004008 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004009 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004010 case IXGBE_ERR_EEPROM_VERSION:
4011 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004012 e_dev_warn("This device is a pre-production adapter/LOM. "
4013 "Please be aware there may be issuesassociated with "
4014 "your hardware. If you are experiencing problems "
4015 "please contact your Intel or hardware "
4016 "representative who provided you with this "
4017 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004018 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004019 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004020 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004021 }
Auke Kok9a799d72007-09-15 14:07:45 -07004022
Alexander Duyck70864002011-04-27 09:13:56 +00004023 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4024
Auke Kok9a799d72007-09-15 14:07:45 -07004025 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004026 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
4027 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07004028}
4029
Auke Kok9a799d72007-09-15 14:07:45 -07004030/**
4031 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004032 * @rx_ring: ring to free buffers from
4033 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004034static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004035{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004036 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004037 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004038 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004039
Alexander Duyck84418e32010-08-19 13:40:54 +00004040 /* ring already cleared, nothing to do */
4041 if (!rx_ring->rx_buffer_info)
4042 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004043
Alexander Duyck84418e32010-08-19 13:40:54 +00004044 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004045 for (i = 0; i < rx_ring->count; i++) {
4046 struct ixgbe_rx_buffer *rx_buffer_info;
4047
4048 rx_buffer_info = &rx_ring->rx_buffer_info[i];
4049 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004050 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00004051 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00004052 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07004053 rx_buffer_info->dma = 0;
4054 }
4055 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00004056 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07004057 rx_buffer_info->skb = NULL;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004058 do {
4059 struct sk_buff *this = skb;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00004060 if (IXGBE_RSC_CB(this)->delay_unmap) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004061 dma_unmap_single(dev,
Nick Nunley1b507732010-04-27 13:10:27 +00004062 IXGBE_RSC_CB(this)->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00004063 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00004064 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00004065 IXGBE_RSC_CB(this)->dma = 0;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00004066 IXGBE_RSC_CB(skb)->delay_unmap = false;
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00004067 }
Alexander Duyckf8212f92009-04-27 22:42:37 +00004068 skb = skb->prev;
4069 dev_kfree_skb(this);
4070 } while (skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004071 }
4072 if (!rx_buffer_info->page)
4073 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004074 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004075 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00004076 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004077 rx_buffer_info->page_dma = 0;
4078 }
Auke Kok9a799d72007-09-15 14:07:45 -07004079 put_page(rx_buffer_info->page);
4080 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07004081 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004082 }
4083
4084 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4085 memset(rx_ring->rx_buffer_info, 0, size);
4086
4087 /* Zero out the descriptor ring */
4088 memset(rx_ring->desc, 0, rx_ring->size);
4089
4090 rx_ring->next_to_clean = 0;
4091 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004092}
4093
4094/**
4095 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004096 * @tx_ring: ring to be cleaned
4097 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004098static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004099{
4100 struct ixgbe_tx_buffer *tx_buffer_info;
4101 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004102 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004103
Alexander Duyck84418e32010-08-19 13:40:54 +00004104 /* ring already cleared, nothing to do */
4105 if (!tx_ring->tx_buffer_info)
4106 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004107
Alexander Duyck84418e32010-08-19 13:40:54 +00004108 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004109 for (i = 0; i < tx_ring->count; i++) {
4110 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004111 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004112 }
4113
4114 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4115 memset(tx_ring->tx_buffer_info, 0, size);
4116
4117 /* Zero out the descriptor ring */
4118 memset(tx_ring->desc, 0, tx_ring->size);
4119
4120 tx_ring->next_to_use = 0;
4121 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004122}
4123
4124/**
Auke Kok9a799d72007-09-15 14:07:45 -07004125 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4126 * @adapter: board private structure
4127 **/
4128static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4129{
4130 int i;
4131
4132 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004133 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004134}
4135
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004136/**
4137 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4138 * @adapter: board private structure
4139 **/
4140static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4141{
4142 int i;
4143
4144 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004145 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004146}
4147
Auke Kok9a799d72007-09-15 14:07:45 -07004148void ixgbe_down(struct ixgbe_adapter *adapter)
4149{
4150 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004151 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004152 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004153 int i;
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004154 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Auke Kok9a799d72007-09-15 14:07:45 -07004155
4156 /* signal that we are down to the interrupt handler */
4157 set_bit(__IXGBE_DOWN, &adapter->state);
4158
4159 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004160 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4161 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004162
Yi Zou2d39d572011-01-06 14:29:56 +00004163 /* disable all enabled rx queues */
4164 for (i = 0; i < adapter->num_rx_queues; i++)
4165 /* this call also flushes the previous write */
4166 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4167
Don Skidmore032b4322011-03-18 09:32:53 +00004168 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004169
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004170 netif_tx_stop_all_queues(netdev);
4171
Alexander Duyck70864002011-04-27 09:13:56 +00004172 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004173 netif_carrier_off(netdev);
4174 netif_tx_disable(netdev);
4175
4176 ixgbe_irq_disable(adapter);
4177
4178 ixgbe_napi_disable_all(adapter);
4179
Alexander Duyckd034acf2011-04-27 09:25:34 +00004180 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4181 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004182 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4183
4184 del_timer_sync(&adapter->service_timer);
4185
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004186 /* disable receive for all VFs and wait one second */
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004187 if (adapter->num_vfs) {
4188 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004189 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004190
Auke Kok9a799d72007-09-15 14:07:45 -07004191 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004192 ixgbe_disable_tx_rx(adapter);
4193
4194 /* Mark all the VFs as inactive */
4195 for (i = 0 ; i < adapter->num_vfs; i++)
4196 adapter->vfinfo[i].clear_to_send = 0;
4197 }
4198
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004199 /* Cleanup the affinity_hint CPU mask memory and callback */
4200 for (i = 0; i < num_q_vectors; i++) {
4201 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
4202 /* clear the affinity_mask in the IRQ descriptor */
4203 irq_set_affinity_hint(adapter->msix_entries[i]. vector, NULL);
4204 /* release the CPU mask memory */
4205 free_cpumask_var(q_vector->affinity_mask);
4206 }
4207
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004208 /* disable transmits in the hardware now that interrupts are off */
4209 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004210 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004211 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004212 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004213
4214 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004215 switch (hw->mac.type) {
4216 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004217 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004218 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004219 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4220 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004221 break;
4222 default:
4223 break;
4224 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004225
Paul Larson6f4a0e42008-06-24 17:00:56 -07004226 if (!pci_channel_offline(adapter->pdev))
4227 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004228
4229 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4230 if (hw->mac.ops.disable_tx_laser &&
4231 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004232 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004233 (hw->mac.type == ixgbe_mac_82599EB))))
4234 hw->mac.ops.disable_tx_laser(hw);
4235
Auke Kok9a799d72007-09-15 14:07:45 -07004236 ixgbe_clean_all_tx_rings(adapter);
4237 ixgbe_clean_all_rx_rings(adapter);
4238
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004239#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004240 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004241 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004242#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004243}
4244
Auke Kok9a799d72007-09-15 14:07:45 -07004245/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004246 * ixgbe_poll - NAPI Rx polling callback
4247 * @napi: structure for representing this polling device
4248 * @budget: how many packets driver is allowed to clean
4249 *
4250 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07004251 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004252static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07004253{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004254 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00004255 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004256 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004257 int tx_clean_complete, work_done = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004258
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004259#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004260 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4261 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004262#endif
4263
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004264 tx_clean_complete = ixgbe_clean_tx_irq(q_vector, adapter->tx_ring[0]);
4265 ixgbe_clean_rx_irq(q_vector, adapter->rx_ring[0], &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07004266
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004267 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004268 work_done = budget;
4269
David S. Miller53e52c72008-01-07 21:06:12 -08004270 /* If budget not fully consumed, exit the polling mode */
4271 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004272 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004273 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08004274 ixgbe_set_itr(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004275 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Nelson, Shannon835462f2009-04-27 22:42:54 +00004276 ixgbe_irq_enable_queues(adapter, IXGBE_EIMS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004277 }
Auke Kok9a799d72007-09-15 14:07:45 -07004278 return work_done;
4279}
4280
4281/**
4282 * ixgbe_tx_timeout - Respond to a Tx Hang
4283 * @netdev: network interface device structure
4284 **/
4285static void ixgbe_tx_timeout(struct net_device *netdev)
4286{
4287 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4288
4289 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004290 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004291}
4292
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004293/**
4294 * ixgbe_set_rss_queues: Allocate queues for RSS
4295 * @adapter: board private structure to initialize
4296 *
4297 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4298 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4299 *
4300 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004301static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4302{
4303 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004304 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004305
4306 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004307 f->mask = 0xF;
4308 adapter->num_rx_queues = f->indices;
4309 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004310 ret = true;
4311 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004312 ret = false;
4313 }
4314
4315 return ret;
4316}
4317
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004318/**
4319 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4320 * @adapter: board private structure to initialize
4321 *
4322 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4323 * to the original CPU that initiated the Tx session. This runs in addition
4324 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4325 * Rx load across CPUs using RSS.
4326 *
4327 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004328static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004329{
4330 bool ret = false;
4331 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4332
4333 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4334 f_fdir->mask = 0;
4335
4336 /* Flow Director must have RSS enabled */
4337 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED &&
4338 ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4339 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)))) {
4340 adapter->num_tx_queues = f_fdir->indices;
4341 adapter->num_rx_queues = f_fdir->indices;
4342 ret = true;
4343 } else {
4344 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
4345 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
4346 }
4347 return ret;
4348}
4349
Yi Zou0331a832009-05-17 12:33:52 +00004350#ifdef IXGBE_FCOE
4351/**
4352 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4353 * @adapter: board private structure to initialize
4354 *
4355 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4356 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4357 * rx queues out of the max number of rx queues, instead, it is used as the
4358 * index of the first rx queue used by FCoE.
4359 *
4360 **/
4361static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4362{
Yi Zou0331a832009-05-17 12:33:52 +00004363 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4364
John Fastabende5b64632011-03-08 03:44:52 +00004365 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4366 return false;
4367
John Fastabende901acd2011-04-26 07:26:08 +00004368 f->indices = min((int)num_online_cpus(), f->indices);
John Fastabende5b64632011-03-08 03:44:52 +00004369
John Fastabende901acd2011-04-26 07:26:08 +00004370 adapter->num_rx_queues = 1;
4371 adapter->num_tx_queues = 1;
John Fastabende5b64632011-03-08 03:44:52 +00004372
John Fastabende901acd2011-04-26 07:26:08 +00004373 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4374 e_info(probe, "FCoE enabled with RSS\n");
4375 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4376 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
4377 ixgbe_set_fdir_queues(adapter);
4378 else
4379 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004380 }
John Fastabende901acd2011-04-26 07:26:08 +00004381 /* adding FCoE rx rings to the end */
4382 f->mask = adapter->num_rx_queues;
4383 adapter->num_rx_queues += f->indices;
4384 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004385
John Fastabende5b64632011-03-08 03:44:52 +00004386 return true;
4387}
4388#endif /* IXGBE_FCOE */
4389
John Fastabende901acd2011-04-26 07:26:08 +00004390/* Artificial max queue cap per traffic class in DCB mode */
4391#define DCB_QUEUE_CAP 8
4392
John Fastabende5b64632011-03-08 03:44:52 +00004393#ifdef CONFIG_IXGBE_DCB
4394static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
4395{
John Fastabende901acd2011-04-26 07:26:08 +00004396 int per_tc_q, q, i, offset = 0;
4397 struct net_device *dev = adapter->netdev;
4398 int tcs = netdev_get_num_tc(dev);
John Fastabende5b64632011-03-08 03:44:52 +00004399
John Fastabende901acd2011-04-26 07:26:08 +00004400 if (!tcs)
4401 return false;
John Fastabende5b64632011-03-08 03:44:52 +00004402
John Fastabende901acd2011-04-26 07:26:08 +00004403 /* Map queue offset and counts onto allocated tx queues */
4404 per_tc_q = min(dev->num_tx_queues / tcs, (unsigned int)DCB_QUEUE_CAP);
4405 q = min((int)num_online_cpus(), per_tc_q);
John Fastabend8b1c0b22011-05-03 02:26:48 +00004406
John Fastabend8b1c0b22011-05-03 02:26:48 +00004407 for (i = 0; i < tcs; i++) {
John Fastabende901acd2011-04-26 07:26:08 +00004408 netdev_set_prio_tc_map(dev, i, i);
4409 netdev_set_tc_queue(dev, i, q, offset);
4410 offset += q;
John Fastabende5b64632011-03-08 03:44:52 +00004411 }
4412
John Fastabende901acd2011-04-26 07:26:08 +00004413 adapter->num_tx_queues = q * tcs;
4414 adapter->num_rx_queues = q * tcs;
John Fastabende5b64632011-03-08 03:44:52 +00004415
4416#ifdef IXGBE_FCOE
John Fastabende901acd2011-04-26 07:26:08 +00004417 /* FCoE enabled queues require special configuration indexed
4418 * by feature specific indices and mask. Here we map FCoE
4419 * indices onto the DCB queue pairs allowing FCoE to own
4420 * configuration later.
John Fastabende5b64632011-03-08 03:44:52 +00004421 */
John Fastabende901acd2011-04-26 07:26:08 +00004422 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
4423 int tc;
4424 struct ixgbe_ring_feature *f =
4425 &adapter->ring_feature[RING_F_FCOE];
4426
4427 tc = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
4428 f->indices = dev->tc_to_txq[tc].count;
4429 f->mask = dev->tc_to_txq[tc].offset;
4430 }
John Fastabende5b64632011-03-08 03:44:52 +00004431#endif
4432
John Fastabende901acd2011-04-26 07:26:08 +00004433 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004434}
John Fastabende5b64632011-03-08 03:44:52 +00004435#endif
Yi Zou0331a832009-05-17 12:33:52 +00004436
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004437/**
4438 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4439 * @adapter: board private structure to initialize
4440 *
4441 * IOV doesn't actually use anything, so just NAK the
4442 * request for now and let the other queue routines
4443 * figure out what to do.
4444 */
4445static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4446{
4447 return false;
4448}
4449
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004450/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004451 * ixgbe_set_num_queues: Allocate queues for device, feature dependent
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004452 * @adapter: board private structure to initialize
4453 *
4454 * This is the top level queue allocation routine. The order here is very
4455 * important, starting with the "most" number of features turned on at once,
4456 * and ending with the smallest set of features. This way large combinations
4457 * can be allocated if they're turned on, and smaller combinations are the
4458 * fallthrough conditions.
4459 *
4460 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004461static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004462{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004463 /* Start with base case */
4464 adapter->num_rx_queues = 1;
4465 adapter->num_tx_queues = 1;
4466 adapter->num_rx_pools = adapter->num_rx_queues;
4467 adapter->num_rx_queues_per_pool = 1;
4468
4469 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004470 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004471
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004472#ifdef CONFIG_IXGBE_DCB
4473 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004474 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004475
4476#endif
John Fastabende5b64632011-03-08 03:44:52 +00004477#ifdef IXGBE_FCOE
4478 if (ixgbe_set_fcoe_queues(adapter))
4479 goto done;
4480
4481#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004482 if (ixgbe_set_fdir_queues(adapter))
4483 goto done;
4484
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004485 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004486 goto done;
4487
4488 /* fallback to base case */
4489 adapter->num_rx_queues = 1;
4490 adapter->num_tx_queues = 1;
4491
4492done:
Ben Hutchings847f53f2010-09-27 08:28:56 +00004493 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004494 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004495 return netif_set_real_num_rx_queues(adapter->netdev,
4496 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004497}
4498
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004499static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004500 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004501{
4502 int err, vector_threshold;
4503
4504 /* We'll want at least 3 (vector_threshold):
4505 * 1) TxQ[0] Cleanup
4506 * 2) RxQ[0] Cleanup
4507 * 3) Other (Link Status Change, etc.)
4508 * 4) TCP Timer (optional)
4509 */
4510 vector_threshold = MIN_MSIX_COUNT;
4511
4512 /* The more we get, the more we will assign to Tx/Rx Cleanup
4513 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4514 * Right now, we simply care about how many we'll get; we'll
4515 * set them up later while requesting irq's.
4516 */
4517 while (vectors >= vector_threshold) {
4518 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004519 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004520 if (!err) /* Success in acquiring all requested vectors. */
4521 break;
4522 else if (err < 0)
4523 vectors = 0; /* Nasty failure, quit now */
4524 else /* err == number of vectors we should try again with */
4525 vectors = err;
4526 }
4527
4528 if (vectors < vector_threshold) {
4529 /* Can't allocate enough MSI-X interrupts? Oh well.
4530 * This just means we'll go with either a single MSI
4531 * vector or fall back to legacy interrupts.
4532 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004533 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4534 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004535 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4536 kfree(adapter->msix_entries);
4537 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004538 } else {
4539 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004540 /*
4541 * Adjust for only the vectors we'll use, which is minimum
4542 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4543 * vectors we were allocated.
4544 */
4545 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004546 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004547 }
4548}
4549
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004550/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004551 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004552 * @adapter: board private structure to initialize
4553 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004554 * Cache the descriptor ring offsets for RSS to the assigned rings.
4555 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004556 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004557static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004558{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004559 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004560
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004561 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4562 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004563
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004564 for (i = 0; i < adapter->num_rx_queues; i++)
4565 adapter->rx_ring[i]->reg_idx = i;
4566 for (i = 0; i < adapter->num_tx_queues; i++)
4567 adapter->tx_ring[i]->reg_idx = i;
4568
4569 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004570}
4571
4572#ifdef CONFIG_IXGBE_DCB
John Fastabende5b64632011-03-08 03:44:52 +00004573
4574/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
John Fastabendb32c8dc2011-04-12 02:44:55 +00004575static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
4576 unsigned int *tx, unsigned int *rx)
John Fastabende5b64632011-03-08 03:44:52 +00004577{
4578 struct net_device *dev = adapter->netdev;
4579 struct ixgbe_hw *hw = &adapter->hw;
4580 u8 num_tcs = netdev_get_num_tc(dev);
4581
4582 *tx = 0;
4583 *rx = 0;
4584
4585 switch (hw->mac.type) {
4586 case ixgbe_mac_82598EB:
John Fastabendaba70d52011-04-26 07:26:14 +00004587 *tx = tc << 2;
4588 *rx = tc << 3;
John Fastabende5b64632011-03-08 03:44:52 +00004589 break;
4590 case ixgbe_mac_82599EB:
4591 case ixgbe_mac_X540:
4592 if (num_tcs == 8) {
4593 if (tc < 3) {
4594 *tx = tc << 5;
4595 *rx = tc << 4;
4596 } else if (tc < 5) {
4597 *tx = ((tc + 2) << 4);
4598 *rx = tc << 4;
4599 } else if (tc < num_tcs) {
4600 *tx = ((tc + 8) << 3);
4601 *rx = tc << 4;
4602 }
4603 } else if (num_tcs == 4) {
4604 *rx = tc << 5;
4605 switch (tc) {
4606 case 0:
4607 *tx = 0;
4608 break;
4609 case 1:
4610 *tx = 64;
4611 break;
4612 case 2:
4613 *tx = 96;
4614 break;
4615 case 3:
4616 *tx = 112;
4617 break;
4618 default:
4619 break;
4620 }
4621 }
4622 break;
4623 default:
4624 break;
4625 }
4626}
4627
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004628/**
4629 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4630 * @adapter: board private structure to initialize
4631 *
4632 * Cache the descriptor ring offsets for DCB to the assigned rings.
4633 *
4634 **/
4635static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4636{
John Fastabende5b64632011-03-08 03:44:52 +00004637 struct net_device *dev = adapter->netdev;
4638 int i, j, k;
4639 u8 num_tcs = netdev_get_num_tc(dev);
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004640
John Fastabend8b1c0b22011-05-03 02:26:48 +00004641 if (!num_tcs)
Alexander Duyckbd508172010-11-16 19:27:03 -08004642 return false;
4643
John Fastabende5b64632011-03-08 03:44:52 +00004644 for (i = 0, k = 0; i < num_tcs; i++) {
4645 unsigned int tx_s, rx_s;
4646 u16 count = dev->tc_to_txq[i].count;
4647
4648 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
4649 for (j = 0; j < count; j++, k++) {
4650 adapter->tx_ring[k]->reg_idx = tx_s + j;
4651 adapter->rx_ring[k]->reg_idx = rx_s + j;
4652 adapter->tx_ring[k]->dcb_tc = i;
4653 adapter->rx_ring[k]->dcb_tc = i;
Alexander Duyckbd508172010-11-16 19:27:03 -08004654 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004655 }
John Fastabende5b64632011-03-08 03:44:52 +00004656
4657 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004658}
4659#endif
4660
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004661/**
4662 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4663 * @adapter: board private structure to initialize
4664 *
4665 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4666 *
4667 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004668static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004669{
4670 int i;
4671 bool ret = false;
4672
4673 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED &&
4674 ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4675 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))) {
4676 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004677 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004678 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004679 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004680 ret = true;
4681 }
4682
4683 return ret;
4684}
4685
Yi Zou0331a832009-05-17 12:33:52 +00004686#ifdef IXGBE_FCOE
4687/**
4688 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4689 * @adapter: board private structure to initialize
4690 *
4691 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4692 *
4693 */
4694static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4695{
Yi Zou0331a832009-05-17 12:33:52 +00004696 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004697 int i;
4698 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004699
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004700 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4701 return false;
4702
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004703 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4704 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4705 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
4706 ixgbe_cache_ring_fdir(adapter);
4707 else
4708 ixgbe_cache_ring_rss(adapter);
4709
4710 fcoe_rx_i = f->mask;
4711 fcoe_tx_i = f->mask;
4712 }
4713 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4714 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4715 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4716 }
4717 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004718}
4719
4720#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004721/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004722 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4723 * @adapter: board private structure to initialize
4724 *
4725 * SR-IOV doesn't use any descriptor rings but changes the default if
4726 * no other mapping is used.
4727 *
4728 */
4729static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4730{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004731 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4732 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004733 if (adapter->num_vfs)
4734 return true;
4735 else
4736 return false;
4737}
4738
4739/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004740 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4741 * @adapter: board private structure to initialize
4742 *
4743 * Once we know the feature-set enabled for the device, we'll cache
4744 * the register offset the descriptor ring is assigned to.
4745 *
4746 * Note, the order the various feature calls is important. It must start with
4747 * the "most" features enabled at the same time, then trickle down to the
4748 * least amount of features turned on at once.
4749 **/
4750static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4751{
4752 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004753 adapter->rx_ring[0]->reg_idx = 0;
4754 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004755
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004756 if (ixgbe_cache_ring_sriov(adapter))
4757 return;
4758
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004759#ifdef CONFIG_IXGBE_DCB
4760 if (ixgbe_cache_ring_dcb(adapter))
4761 return;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004762#endif
John Fastabende5b64632011-03-08 03:44:52 +00004763
4764#ifdef IXGBE_FCOE
4765 if (ixgbe_cache_ring_fcoe(adapter))
4766 return;
4767#endif /* IXGBE_FCOE */
4768
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004769 if (ixgbe_cache_ring_fdir(adapter))
4770 return;
4771
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004772 if (ixgbe_cache_ring_rss(adapter))
4773 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004774}
4775
Auke Kok9a799d72007-09-15 14:07:45 -07004776/**
4777 * ixgbe_alloc_queues - Allocate memory for all rings
4778 * @adapter: board private structure to initialize
4779 *
4780 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004781 * number of queues at compile-time. The polling_netdev array is
4782 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004783 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004784static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004785{
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004786 int rx = 0, tx = 0, nid = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004787
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004788 if (nid < 0 || !node_online(nid))
4789 nid = first_online_node;
4790
4791 for (; tx < adapter->num_tx_queues; tx++) {
4792 struct ixgbe_ring *ring;
4793
4794 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004795 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004796 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004797 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004798 goto err_allocation;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004799 ring->count = adapter->tx_ring_count;
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004800 ring->queue_index = tx;
4801 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004802 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004803 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004804
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004805 adapter->tx_ring[tx] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004806 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004807
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004808 for (; rx < adapter->num_rx_queues; rx++) {
4809 struct ixgbe_ring *ring;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004810
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004811 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004812 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004813 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004814 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004815 goto err_allocation;
4816 ring->count = adapter->rx_ring_count;
4817 ring->queue_index = rx;
4818 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004819 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004820 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004821
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004822 adapter->rx_ring[rx] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004823 }
4824
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004825 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004826
4827 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004828
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004829err_allocation:
4830 while (tx)
4831 kfree(adapter->tx_ring[--tx]);
4832
4833 while (rx)
4834 kfree(adapter->rx_ring[--rx]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004835 return -ENOMEM;
4836}
4837
4838/**
4839 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4840 * @adapter: board private structure to initialize
4841 *
4842 * Attempt to configure the interrupts using the best available
4843 * capabilities of the hardware and the kernel.
4844 **/
Al Virofeea6a52008-11-27 15:34:07 -08004845static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004846{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004847 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004848 int err = 0;
4849 int vector, v_budget;
4850
4851 /*
4852 * It's easy to be greedy for MSI-X vectors, but it really
4853 * doesn't do us much good if we have a lot more vectors
4854 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004855 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004856 */
4857 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004858 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004859
4860 /*
4861 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004862 * hw.mac->max_msix_vectors vectors. With features
4863 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4864 * descriptor queues supported by our device. Thus, we cap it off in
4865 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004866 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004867 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004868
4869 /* A failure in MSI-X entry allocation isn't fatal, but it does
4870 * mean we disable MSI-X capabilities of the adapter. */
4871 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004872 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004873 if (adapter->msix_entries) {
4874 for (vector = 0; vector < v_budget; vector++)
4875 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004876
Alexander Duyck7a921c92009-05-06 10:43:28 +00004877 ixgbe_acquire_msix_vectors(adapter, v_budget);
4878
4879 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4880 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004881 }
David S. Miller26d27842010-05-03 15:18:22 -07004882
Alexander Duyck7a921c92009-05-06 10:43:28 +00004883 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4884 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004885 if (adapter->flags & (IXGBE_FLAG_FDIR_HASH_CAPABLE |
4886 IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
4887 e_err(probe,
4888 "Flow Director is not supported while multiple "
4889 "queues are disabled. Disabling Flow Director\n");
4890 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004891 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
4892 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
4893 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004894 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4895 ixgbe_disable_sriov(adapter);
4896
Ben Hutchings847f53f2010-09-27 08:28:56 +00004897 err = ixgbe_set_num_queues(adapter);
4898 if (err)
4899 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004900
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004901 err = pci_enable_msi(adapter->pdev);
4902 if (!err) {
4903 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4904 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004905 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4906 "Unable to allocate MSI interrupt, "
4907 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004908 /* reset err */
4909 err = 0;
4910 }
4911
4912out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004913 return err;
4914}
4915
Alexander Duyck7a921c92009-05-06 10:43:28 +00004916/**
4917 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4918 * @adapter: board private structure to initialize
4919 *
4920 * We allocate one q_vector per queue interrupt. If allocation fails we
4921 * return -ENOMEM.
4922 **/
4923static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4924{
4925 int q_idx, num_q_vectors;
4926 struct ixgbe_q_vector *q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004927 int (*poll)(struct napi_struct *, int);
4928
4929 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4930 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004931 poll = &ixgbe_clean_rxtx_many;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004932 } else {
4933 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004934 poll = &ixgbe_poll;
4935 }
4936
4937 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004938 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004939 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004940 if (!q_vector)
4941 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004942 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004943 if (!q_vector)
4944 goto err_out;
4945 q_vector->adapter = adapter;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004946 if (q_vector->txr_count && !q_vector->rxr_count)
4947 q_vector->eitr = adapter->tx_eitr_param;
4948 else
4949 q_vector->eitr = adapter->rx_eitr_param;
Alexander Duyckfe49f042009-06-04 16:00:09 +00004950 q_vector->v_idx = q_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004951 netif_napi_add(adapter->netdev, &q_vector->napi, (*poll), 64);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004952 adapter->q_vector[q_idx] = q_vector;
4953 }
4954
4955 return 0;
4956
4957err_out:
4958 while (q_idx) {
4959 q_idx--;
4960 q_vector = adapter->q_vector[q_idx];
4961 netif_napi_del(&q_vector->napi);
4962 kfree(q_vector);
4963 adapter->q_vector[q_idx] = NULL;
4964 }
4965 return -ENOMEM;
4966}
4967
4968/**
4969 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
4970 * @adapter: board private structure to initialize
4971 *
4972 * This function frees the memory allocated to the q_vectors. In addition if
4973 * NAPI is enabled it will delete any references to the NAPI struct prior
4974 * to freeing the q_vector.
4975 **/
4976static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
4977{
4978 int q_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004979
Alexander Duyck91281fd2009-06-04 16:00:27 +00004980 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004981 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004982 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004983 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004984
4985 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
4986 struct ixgbe_q_vector *q_vector = adapter->q_vector[q_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00004987 adapter->q_vector[q_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004988 netif_napi_del(&q_vector->napi);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004989 kfree(q_vector);
4990 }
4991}
4992
Don Skidmore7b25cdb2009-08-25 04:47:32 +00004993static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004994{
4995 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4996 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4997 pci_disable_msix(adapter->pdev);
4998 kfree(adapter->msix_entries);
4999 adapter->msix_entries = NULL;
5000 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
5001 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
5002 pci_disable_msi(adapter->pdev);
5003 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005004}
5005
5006/**
5007 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
5008 * @adapter: board private structure to initialize
5009 *
5010 * We determine which interrupt scheme to use based on...
5011 * - Kernel support (MSI, MSI-X)
5012 * - which can be user-defined (via MODULE_PARAM)
5013 * - Hardware queue count (num_*_queues)
5014 * - defined by miscellaneous hardware support/features (RSS, etc.)
5015 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08005016int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005017{
5018 int err;
5019
5020 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00005021 err = ixgbe_set_num_queues(adapter);
5022 if (err)
5023 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005024
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005025 err = ixgbe_set_interrupt_capability(adapter);
5026 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005027 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005028 goto err_set_interrupt;
5029 }
5030
Alexander Duyck7a921c92009-05-06 10:43:28 +00005031 err = ixgbe_alloc_q_vectors(adapter);
5032 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005033 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005034 goto err_alloc_q_vectors;
5035 }
5036
5037 err = ixgbe_alloc_queues(adapter);
5038 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005039 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005040 goto err_alloc_queues;
5041 }
5042
Emil Tantilov849c4542010-06-03 16:53:41 +00005043 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00005044 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
5045 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005046
5047 set_bit(__IXGBE_DOWN, &adapter->state);
5048
5049 return 0;
5050
Alexander Duyck7a921c92009-05-06 10:43:28 +00005051err_alloc_queues:
5052 ixgbe_free_q_vectors(adapter);
5053err_alloc_q_vectors:
5054 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005055err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00005056 return err;
5057}
5058
5059/**
5060 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
5061 * @adapter: board private structure to clear interrupt scheme on
5062 *
5063 * We go through and clear interrupt specific resources and reset the structure
5064 * to pre-load conditions
5065 **/
5066void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
5067{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005068 int i;
5069
5070 for (i = 0; i < adapter->num_tx_queues; i++) {
5071 kfree(adapter->tx_ring[i]);
5072 adapter->tx_ring[i] = NULL;
5073 }
5074 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08005075 struct ixgbe_ring *ring = adapter->rx_ring[i];
5076
5077 /* ixgbe_get_stats64() might access this ring, we must wait
5078 * a grace period before freeing it.
5079 */
Lai Jiangshanbcec8b62011-03-18 11:57:21 +08005080 kfree_rcu(ring, rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005081 adapter->rx_ring[i] = NULL;
5082 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00005083
Don Skidmoreb8eb3a12010-12-01 20:54:53 +00005084 adapter->num_tx_queues = 0;
5085 adapter->num_rx_queues = 0;
5086
Alexander Duyck7a921c92009-05-06 10:43:28 +00005087 ixgbe_free_q_vectors(adapter);
5088 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005089}
5090
5091/**
5092 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5093 * @adapter: board private structure to initialize
5094 *
5095 * ixgbe_sw_init initializes the Adapter private data structure.
5096 * Fields are initialized based on PCI device information and
5097 * OS network device settings (MTU size).
5098 **/
5099static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
5100{
5101 struct ixgbe_hw *hw = &adapter->hw;
5102 struct pci_dev *pdev = adapter->pdev;
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00005103 struct net_device *dev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005104 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005105#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005106 int j;
5107 struct tc_configuration *tc;
5108#endif
John Fastabend16b61be2010-11-16 19:26:44 -08005109 int max_frame = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005110
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005111 /* PCI config space info */
5112
5113 hw->vendor_id = pdev->vendor;
5114 hw->device_id = pdev->device;
5115 hw->revision_id = pdev->revision;
5116 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5117 hw->subsystem_device_id = pdev->subsystem_device;
5118
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005119 /* Set capability flags */
5120 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
5121 adapter->ring_feature[RING_F_RSS].indices = rss;
5122 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08005123 switch (hw->mac.type) {
5124 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00005125 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5126 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005127 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08005128 break;
5129 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005130 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005131 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00005132 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5133 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005134 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5135 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00005136 /* n-tuple support exists, always init our spinlock */
5137 spin_lock_init(&adapter->fdir_perfect_lock);
5138 /* Flow Director hash filters enabled */
5139 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
5140 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005141 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00005142 IXGBE_MAX_FDIR_INDICES;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005143 adapter->fdir_pballoc = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00005144#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00005145 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5146 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5147 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00005148#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00005149 /* Default traffic class to use for FCoE */
5150 adapter->fcoe.tc = IXGBE_FCOE_DEFTC;
John Fastabend56075a92010-07-26 20:41:31 +00005151 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00005152#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00005153#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005154 break;
5155 default:
5156 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005157 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005158
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005159#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005160 /* Configure DCB traffic classes */
5161 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5162 tc = &adapter->dcb_cfg.tc_config[j];
5163 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5164 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5165 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5166 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5167 tc->dcb_pfc = pfc_disabled;
5168 }
5169 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5170 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005171 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005172 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005173 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005174 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00005175 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005176
5177#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005178
5179 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005180 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005181 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005182#ifdef CONFIG_DCB
5183 adapter->last_lfc_mode = hw->fc.current_mode;
5184#endif
John Fastabend16b61be2010-11-16 19:26:44 -08005185 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5186 hw->fc.low_water = FC_LOW_WATER(max_frame);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005187 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5188 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005189 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005190
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005191 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005192 adapter->rx_itr_setting = 1;
5193 adapter->rx_eitr_param = 20000;
5194 adapter->tx_itr_setting = 1;
5195 adapter->tx_eitr_param = 10000;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005196
5197 /* set defaults for eitr in MegaBytes */
5198 adapter->eitr_low = 10;
5199 adapter->eitr_high = 20;
5200
5201 /* set default ring sizes */
5202 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5203 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5204
Auke Kok9a799d72007-09-15 14:07:45 -07005205 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005206 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005207 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005208 return -EIO;
5209 }
5210
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005211 /* enable rx csum by default */
Auke Kok9a799d72007-09-15 14:07:45 -07005212 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
5213
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005214 /* get assigned NUMA node */
5215 adapter->node = dev_to_node(&pdev->dev);
5216
Auke Kok9a799d72007-09-15 14:07:45 -07005217 set_bit(__IXGBE_DOWN, &adapter->state);
5218
5219 return 0;
5220}
5221
5222/**
5223 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005224 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005225 *
5226 * Return 0 on success, negative on failure
5227 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005228int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005229{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005230 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07005231 int size;
5232
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005233 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005234 tx_ring->tx_buffer_info = vzalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005235 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005236 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005237 if (!tx_ring->tx_buffer_info)
5238 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005239
5240 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005241 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005242 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005243
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005244 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005245 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005246 if (!tx_ring->desc)
5247 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005248
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005249 tx_ring->next_to_use = 0;
5250 tx_ring->next_to_clean = 0;
5251 tx_ring->work_limit = tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07005252 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005253
5254err:
5255 vfree(tx_ring->tx_buffer_info);
5256 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005257 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005258 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005259}
5260
5261/**
Alexander Duyck69888672008-09-11 20:05:39 -07005262 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5263 * @adapter: board private structure
5264 *
5265 * If this function returns with an error, then it's possible one or
5266 * more of the rings is populated (while the rest are not). It is the
5267 * callers duty to clean those orphaned rings.
5268 *
5269 * Return 0 on success, negative on failure
5270 **/
5271static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5272{
5273 int i, err = 0;
5274
5275 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005276 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005277 if (!err)
5278 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005279 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005280 break;
5281 }
5282
5283 return err;
5284}
5285
5286/**
Auke Kok9a799d72007-09-15 14:07:45 -07005287 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005288 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005289 *
5290 * Returns 0 on success, negative on failure
5291 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005292int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005293{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005294 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005295 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005296
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005297 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005298 rx_ring->rx_buffer_info = vzalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005299 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005300 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005301 if (!rx_ring->rx_buffer_info)
5302 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005303
Auke Kok9a799d72007-09-15 14:07:45 -07005304 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005305 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5306 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005307
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005308 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005309 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005310
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005311 if (!rx_ring->desc)
5312 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005313
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005314 rx_ring->next_to_clean = 0;
5315 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005316
5317 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005318err:
5319 vfree(rx_ring->rx_buffer_info);
5320 rx_ring->rx_buffer_info = NULL;
5321 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005322 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005323}
5324
5325/**
Alexander Duyck69888672008-09-11 20:05:39 -07005326 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5327 * @adapter: board private structure
5328 *
5329 * If this function returns with an error, then it's possible one or
5330 * more of the rings is populated (while the rest are not). It is the
5331 * callers duty to clean those orphaned rings.
5332 *
5333 * Return 0 on success, negative on failure
5334 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005335static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5336{
5337 int i, err = 0;
5338
5339 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005340 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005341 if (!err)
5342 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005343 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005344 break;
5345 }
5346
5347 return err;
5348}
5349
5350/**
Auke Kok9a799d72007-09-15 14:07:45 -07005351 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005352 * @tx_ring: Tx descriptor ring for a specific queue
5353 *
5354 * Free all transmit software resources
5355 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005356void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005357{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005358 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005359
5360 vfree(tx_ring->tx_buffer_info);
5361 tx_ring->tx_buffer_info = NULL;
5362
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005363 /* if not set, then don't free */
5364 if (!tx_ring->desc)
5365 return;
5366
5367 dma_free_coherent(tx_ring->dev, tx_ring->size,
5368 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005369
5370 tx_ring->desc = NULL;
5371}
5372
5373/**
5374 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5375 * @adapter: board private structure
5376 *
5377 * Free all transmit software resources
5378 **/
5379static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5380{
5381 int i;
5382
5383 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005384 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005385 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005386}
5387
5388/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005389 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005390 * @rx_ring: ring to clean the resources from
5391 *
5392 * Free all receive software resources
5393 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005394void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005395{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005396 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005397
5398 vfree(rx_ring->rx_buffer_info);
5399 rx_ring->rx_buffer_info = NULL;
5400
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005401 /* if not set, then don't free */
5402 if (!rx_ring->desc)
5403 return;
5404
5405 dma_free_coherent(rx_ring->dev, rx_ring->size,
5406 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005407
5408 rx_ring->desc = NULL;
5409}
5410
5411/**
5412 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5413 * @adapter: board private structure
5414 *
5415 * Free all receive software resources
5416 **/
5417static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5418{
5419 int i;
5420
5421 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005422 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005423 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005424}
5425
5426/**
Auke Kok9a799d72007-09-15 14:07:45 -07005427 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5428 * @netdev: network interface device structure
5429 * @new_mtu: new value for maximum frame size
5430 *
5431 * Returns 0 on success, negative on failure
5432 **/
5433static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5434{
5435 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005436 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005437 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5438
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005439 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rosee9f98072011-01-26 01:06:07 +00005440 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED &&
5441 hw->mac.type != ixgbe_mac_X540) {
5442 if ((new_mtu < 68) || (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
5443 return -EINVAL;
5444 } else {
5445 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5446 return -EINVAL;
5447 }
Auke Kok9a799d72007-09-15 14:07:45 -07005448
Emil Tantilov396e7992010-07-01 20:05:12 +00005449 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005450 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005451 netdev->mtu = new_mtu;
5452
John Fastabend16b61be2010-11-16 19:26:44 -08005453 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5454 hw->fc.low_water = FC_LOW_WATER(max_frame);
5455
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005456 if (netif_running(netdev))
5457 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005458
5459 return 0;
5460}
5461
5462/**
5463 * ixgbe_open - Called when a network interface is made active
5464 * @netdev: network interface device structure
5465 *
5466 * Returns 0 on success, negative value on failure
5467 *
5468 * The open entry point is called when a network interface is made
5469 * active by the system (IFF_UP). At this point all resources needed
5470 * for transmit and receive operations are allocated, the interrupt
5471 * handler is registered with the OS, the watchdog timer is started,
5472 * and the stack is notified that the interface is ready.
5473 **/
5474static int ixgbe_open(struct net_device *netdev)
5475{
5476 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5477 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005478
Auke Kok4bebfaa2008-02-11 09:26:01 -08005479 /* disallow open during test */
5480 if (test_bit(__IXGBE_TESTING, &adapter->state))
5481 return -EBUSY;
5482
Jesse Brandeburg54386462009-04-17 20:44:27 +00005483 netif_carrier_off(netdev);
5484
Auke Kok9a799d72007-09-15 14:07:45 -07005485 /* allocate transmit descriptors */
5486 err = ixgbe_setup_all_tx_resources(adapter);
5487 if (err)
5488 goto err_setup_tx;
5489
Auke Kok9a799d72007-09-15 14:07:45 -07005490 /* allocate receive descriptors */
5491 err = ixgbe_setup_all_rx_resources(adapter);
5492 if (err)
5493 goto err_setup_rx;
5494
5495 ixgbe_configure(adapter);
5496
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005497 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005498 if (err)
5499 goto err_req_irq;
5500
Auke Kok9a799d72007-09-15 14:07:45 -07005501 err = ixgbe_up_complete(adapter);
5502 if (err)
5503 goto err_up;
5504
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07005505 netif_tx_start_all_queues(netdev);
5506
Auke Kok9a799d72007-09-15 14:07:45 -07005507 return 0;
5508
5509err_up:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005510 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005511 ixgbe_free_irq(adapter);
5512err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005513err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005514 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005515err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005516 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005517 ixgbe_reset(adapter);
5518
5519 return err;
5520}
5521
5522/**
5523 * ixgbe_close - Disables a network interface
5524 * @netdev: network interface device structure
5525 *
5526 * Returns 0, this is not allowed to fail
5527 *
5528 * The close entry point is called when an interface is de-activated
5529 * by the OS. The hardware is still under the drivers control, but
5530 * needs to be disabled. A global MAC reset is issued to stop the
5531 * hardware, and all transmit and receive resources are freed.
5532 **/
5533static int ixgbe_close(struct net_device *netdev)
5534{
5535 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005536
5537 ixgbe_down(adapter);
5538 ixgbe_free_irq(adapter);
5539
5540 ixgbe_free_all_tx_resources(adapter);
5541 ixgbe_free_all_rx_resources(adapter);
5542
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005543 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005544
5545 return 0;
5546}
5547
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005548#ifdef CONFIG_PM
5549static int ixgbe_resume(struct pci_dev *pdev)
5550{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005551 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5552 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005553 u32 err;
5554
5555 pci_set_power_state(pdev, PCI_D0);
5556 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005557 /*
5558 * pci_restore_state clears dev->state_saved so call
5559 * pci_save_state to restore it.
5560 */
5561 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005562
5563 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005564 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005565 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005566 return err;
5567 }
5568 pci_set_master(pdev);
5569
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005570 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005571
5572 err = ixgbe_init_interrupt_scheme(adapter);
5573 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005574 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005575 return err;
5576 }
5577
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005578 ixgbe_reset(adapter);
5579
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005580 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5581
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005582 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005583 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005584 if (err)
5585 return err;
5586 }
5587
5588 netif_device_attach(netdev);
5589
5590 return 0;
5591}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005592#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005593
5594static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005595{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005596 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5597 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005598 struct ixgbe_hw *hw = &adapter->hw;
5599 u32 ctrl, fctrl;
5600 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005601#ifdef CONFIG_PM
5602 int retval = 0;
5603#endif
5604
5605 netif_device_detach(netdev);
5606
5607 if (netif_running(netdev)) {
5608 ixgbe_down(adapter);
5609 ixgbe_free_irq(adapter);
5610 ixgbe_free_all_tx_resources(adapter);
5611 ixgbe_free_all_rx_resources(adapter);
5612 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005613
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005614 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00005615#ifdef CONFIG_DCB
5616 kfree(adapter->ixgbe_ieee_pfc);
5617 kfree(adapter->ixgbe_ieee_ets);
5618#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005619
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005620#ifdef CONFIG_PM
5621 retval = pci_save_state(pdev);
5622 if (retval)
5623 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005624
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005625#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005626 if (wufc) {
5627 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005628
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005629 /* turn on all-multi mode if wake on multicast is enabled */
5630 if (wufc & IXGBE_WUFC_MC) {
5631 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5632 fctrl |= IXGBE_FCTRL_MPE;
5633 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5634 }
5635
5636 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5637 ctrl |= IXGBE_CTRL_GIO_DIS;
5638 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5639
5640 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5641 } else {
5642 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5643 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5644 }
5645
Alexander Duyckbd508172010-11-16 19:27:03 -08005646 switch (hw->mac.type) {
5647 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005648 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005649 break;
5650 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005651 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005652 pci_wake_from_d3(pdev, !!wufc);
5653 break;
5654 default:
5655 break;
5656 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005657
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005658 *enable_wake = !!wufc;
5659
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005660 ixgbe_release_hw_control(adapter);
5661
5662 pci_disable_device(pdev);
5663
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005664 return 0;
5665}
5666
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005667#ifdef CONFIG_PM
5668static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5669{
5670 int retval;
5671 bool wake;
5672
5673 retval = __ixgbe_shutdown(pdev, &wake);
5674 if (retval)
5675 return retval;
5676
5677 if (wake) {
5678 pci_prepare_to_sleep(pdev);
5679 } else {
5680 pci_wake_from_d3(pdev, false);
5681 pci_set_power_state(pdev, PCI_D3hot);
5682 }
5683
5684 return 0;
5685}
5686#endif /* CONFIG_PM */
5687
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005688static void ixgbe_shutdown(struct pci_dev *pdev)
5689{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005690 bool wake;
5691
5692 __ixgbe_shutdown(pdev, &wake);
5693
5694 if (system_state == SYSTEM_POWER_OFF) {
5695 pci_wake_from_d3(pdev, wake);
5696 pci_set_power_state(pdev, PCI_D3hot);
5697 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005698}
5699
5700/**
Auke Kok9a799d72007-09-15 14:07:45 -07005701 * ixgbe_update_stats - Update the board statistics counters.
5702 * @adapter: board private structure
5703 **/
5704void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5705{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005706 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005707 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005708 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005709 u64 total_mpc = 0;
5710 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005711 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5712 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
5713 u64 bytes = 0, packets = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005714
Don Skidmored08935c2010-06-11 13:20:29 +00005715 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5716 test_bit(__IXGBE_RESETTING, &adapter->state))
5717 return;
5718
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005719 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005720 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005721 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005722 for (i = 0; i < 16; i++)
5723 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005724 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005725 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005726 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5727 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005728 }
5729 adapter->rsc_total_count = rsc_count;
5730 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005731 }
5732
Alexander Duyck5b7da512010-11-16 19:26:50 -08005733 for (i = 0; i < adapter->num_rx_queues; i++) {
5734 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5735 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5736 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5737 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
5738 bytes += rx_ring->stats.bytes;
5739 packets += rx_ring->stats.packets;
5740 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005741 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005742 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5743 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
5744 netdev->stats.rx_bytes = bytes;
5745 netdev->stats.rx_packets = packets;
5746
5747 bytes = 0;
5748 packets = 0;
5749 /* gather some stats to the adapter struct that are per queue */
5750 for (i = 0; i < adapter->num_tx_queues; i++) {
5751 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5752 restart_queue += tx_ring->tx_stats.restart_queue;
5753 tx_busy += tx_ring->tx_stats.tx_busy;
5754 bytes += tx_ring->stats.bytes;
5755 packets += tx_ring->stats.packets;
5756 }
5757 adapter->restart_queue = restart_queue;
5758 adapter->tx_busy = tx_busy;
5759 netdev->stats.tx_bytes = bytes;
5760 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005761
Joe Perches7ca647b2010-09-07 21:35:40 +00005762 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005763 for (i = 0; i < 8; i++) {
5764 /* for packet buffers not used, the register should read 0 */
5765 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5766 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005767 hwstats->mpc[i] += mpc;
5768 total_mpc += hwstats->mpc[i];
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005769 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005770 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5771 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5772 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5773 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5774 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005775 switch (hw->mac.type) {
5776 case ixgbe_mac_82598EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005777 hwstats->pxonrxc[i] +=
5778 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005779 break;
5780 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005781 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005782 hwstats->pxonrxc[i] +=
5783 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005784 break;
5785 default:
5786 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005787 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005788 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5789 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005790 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005791 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005792 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005793 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005794
John Fastabendc84d3242010-11-16 19:27:12 -08005795 ixgbe_update_xoff_received(adapter);
5796
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005797 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005798 switch (hw->mac.type) {
5799 case ixgbe_mac_82598EB:
5800 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005801 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5802 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5803 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5804 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005805 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005806 /* OS2BMC stats are X540 only*/
5807 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5808 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5809 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5810 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5811 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005812 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005813 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005814 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005815 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005816 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005817 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005818 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005819 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5820 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005821#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005822 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5823 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5824 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5825 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5826 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5827 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Yi Zou6d455222009-05-13 13:12:16 +00005828#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005829 break;
5830 default:
5831 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005832 }
Auke Kok9a799d72007-09-15 14:07:45 -07005833 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005834 hwstats->bprc += bprc;
5835 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005836 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005837 hwstats->mprc -= bprc;
5838 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5839 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5840 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5841 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5842 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5843 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5844 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5845 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005846 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005847 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005848 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005849 hwstats->lxofftxc += lxoff;
5850 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5851 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5852 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005853 /*
5854 * 82598 errata - tx of flow control packets is included in tx counters
5855 */
5856 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005857 hwstats->gptc -= xon_off_tot;
5858 hwstats->mptc -= xon_off_tot;
5859 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5860 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5861 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5862 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5863 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5864 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5865 hwstats->ptc64 -= xon_off_tot;
5866 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5867 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5868 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5869 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5870 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5871 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005872
5873 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005874 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005875
5876 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005877 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005878 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005879 netdev->stats.rx_length_errors = hwstats->rlec;
5880 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005881 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005882}
5883
5884/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005885 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5886 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005887 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005888static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005889{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005890 struct ixgbe_hw *hw = &adapter->hw;
5891 int i;
5892
Alexander Duyckd034acf2011-04-27 09:25:34 +00005893 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5894 return;
5895
5896 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5897
5898 /* if interface is down do nothing */
5899 if (test_bit(__IXGBE_DOWN, &adapter->state))
5900 return;
5901
5902 /* do nothing if we are not using signature filters */
5903 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5904 return;
5905
5906 adapter->fdir_overflow++;
5907
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005908 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5909 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005910 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005911 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005912 /* re-enable flow director interrupts */
5913 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005914 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005915 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005916 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005917 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005918}
5919
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005920/**
5921 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
5922 * @adapter - pointer to the device adapter structure
5923 *
5924 * This function serves two purposes. First it strobes the interrupt lines
5925 * in order to make certain interrupts are occuring. Secondly it sets the
5926 * bits needed to check for TX hangs. As a result we should immediately
5927 * determine if a hang has occured.
5928 */
5929static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5930{
Auke Kok9a799d72007-09-15 14:07:45 -07005931 struct ixgbe_hw *hw = &adapter->hw;
5932 u64 eics = 0;
5933 int i;
5934
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005935 /* If we're down or resetting, just bail */
5936 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5937 test_bit(__IXGBE_RESETTING, &adapter->state))
5938 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005939
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005940 /* Force detection of hung controller */
5941 if (netif_carrier_ok(adapter->netdev)) {
5942 for (i = 0; i < adapter->num_tx_queues; i++)
5943 set_check_for_tx_hang(adapter->tx_ring[i]);
5944 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005945
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005946 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005947 /*
5948 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005949 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005950 * would set *both* EIMS and EICS for any bit in EIAM
5951 */
5952 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5953 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005954 } else {
5955 /* get one bit for every active tx/rx interrupt vector */
5956 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
5957 struct ixgbe_q_vector *qv = adapter->q_vector[i];
5958 if (qv->rxr_count || qv->txr_count)
5959 eics |= ((u64)1 << i);
5960 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005961 }
5962
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005963 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005964 ixgbe_irq_rearm_queues(adapter, eics);
5965
Alexander Duyckfe49f042009-06-04 16:00:09 +00005966}
5967
5968/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005969 * ixgbe_watchdog_update_link - update the link status
5970 * @adapter - pointer to the device adapter structure
5971 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005972 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005973static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005974{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005975 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005976 u32 link_speed = adapter->link_speed;
5977 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005978 int i;
5979
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005980 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5981 return;
5982
5983 if (hw->mac.ops.check_link) {
5984 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005985 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005986 /* always assume link is up, if no check link function */
5987 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5988 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005989 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005990 if (link_up) {
5991 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
5992 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
5993 hw->mac.ops.fc_enable(hw, i);
5994 } else {
5995 hw->mac.ops.fc_enable(hw, 0);
5996 }
5997 }
5998
5999 if (link_up ||
6000 time_after(jiffies, (adapter->link_check_timeout +
6001 IXGBE_TRY_LINK_TIMEOUT))) {
6002 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6003 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6004 IXGBE_WRITE_FLUSH(hw);
6005 }
6006
6007 adapter->link_up = link_up;
6008 adapter->link_speed = link_speed;
6009}
6010
6011/**
6012 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6013 * print link up message
6014 * @adapter - pointer to the device adapter structure
6015 **/
6016static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6017{
6018 struct net_device *netdev = adapter->netdev;
6019 struct ixgbe_hw *hw = &adapter->hw;
6020 u32 link_speed = adapter->link_speed;
6021 bool flow_rx, flow_tx;
6022
6023 /* only continue if link was previously down */
6024 if (netif_carrier_ok(netdev))
6025 return;
6026
6027 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6028
6029 switch (hw->mac.type) {
6030 case ixgbe_mac_82598EB: {
6031 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6032 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6033 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6034 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6035 }
6036 break;
6037 case ixgbe_mac_X540:
6038 case ixgbe_mac_82599EB: {
6039 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6040 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6041 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6042 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6043 }
6044 break;
6045 default:
6046 flow_tx = false;
6047 flow_rx = false;
6048 break;
6049 }
6050 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
6051 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
6052 "10 Gbps" :
6053 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6054 "1 Gbps" :
6055 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
6056 "100 Mbps" :
6057 "unknown speed"))),
6058 ((flow_rx && flow_tx) ? "RX/TX" :
6059 (flow_rx ? "RX" :
6060 (flow_tx ? "TX" : "None"))));
6061
6062 netif_carrier_on(netdev);
6063#ifdef HAVE_IPLINK_VF_CONFIG
6064 ixgbe_check_vf_rate_limit(adapter);
6065#endif /* HAVE_IPLINK_VF_CONFIG */
6066}
6067
6068/**
6069 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6070 * print link down message
6071 * @adapter - pointer to the adapter structure
6072 **/
6073static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter* adapter)
6074{
6075 struct net_device *netdev = adapter->netdev;
6076 struct ixgbe_hw *hw = &adapter->hw;
6077
6078 adapter->link_up = false;
6079 adapter->link_speed = 0;
6080
6081 /* only continue if link was up previously */
6082 if (!netif_carrier_ok(netdev))
6083 return;
6084
6085 /* poll for SFP+ cable when link is down */
6086 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6087 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6088
6089 e_info(drv, "NIC Link is Down\n");
6090 netif_carrier_off(netdev);
6091}
6092
6093/**
6094 * ixgbe_watchdog_flush_tx - flush queues on link down
6095 * @adapter - pointer to the device adapter structure
6096 **/
6097static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6098{
6099 int i;
6100 int some_tx_pending = 0;
6101
6102 if (!netif_carrier_ok(adapter->netdev)) {
6103 for (i = 0; i < adapter->num_tx_queues; i++) {
6104 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6105 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6106 some_tx_pending = 1;
6107 break;
6108 }
6109 }
6110
6111 if (some_tx_pending) {
6112 /* We've lost link, so the controller stops DMA,
6113 * but we've got queued Tx work that's never going
6114 * to get done, so reset controller to flush Tx.
6115 * (Do the reset outside of interrupt context).
6116 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006117 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006118 }
6119 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006120}
6121
Greg Rosea985b6c32010-11-18 03:02:52 +00006122static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6123{
6124 u32 ssvpc;
6125
6126 /* Do not perform spoof check for 82598 */
6127 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6128 return;
6129
6130 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6131
6132 /*
6133 * ssvpc register is cleared on read, if zero then no
6134 * spoofed packets in the last interval.
6135 */
6136 if (!ssvpc)
6137 return;
6138
6139 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
6140}
6141
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006142/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006143 * ixgbe_watchdog_subtask - check and bring link up
6144 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006145 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006146static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006147{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006148 /* if interface is down do nothing */
6149 if (test_bit(__IXGBE_DOWN, &adapter->state))
6150 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006151
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006152 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006153
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006154 if (adapter->link_up)
6155 ixgbe_watchdog_link_is_up(adapter);
6156 else
6157 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006158
Greg Rosea985b6c32010-11-18 03:02:52 +00006159 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006160 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006161
6162 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006163}
6164
Alexander Duyck70864002011-04-27 09:13:56 +00006165/**
6166 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
6167 * @adapter - the ixgbe adapter structure
6168 **/
6169static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6170{
6171 struct ixgbe_hw *hw = &adapter->hw;
6172 s32 err;
6173
6174 /* not searching for SFP so there is nothing to do here */
6175 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6176 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6177 return;
6178
6179 /* someone else is in init, wait until next service event */
6180 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6181 return;
6182
6183 err = hw->phy.ops.identify_sfp(hw);
6184 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6185 goto sfp_out;
6186
6187 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6188 /* If no cable is present, then we need to reset
6189 * the next time we find a good cable. */
6190 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6191 }
6192
6193 /* exit on error */
6194 if (err)
6195 goto sfp_out;
6196
6197 /* exit if reset not needed */
6198 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6199 goto sfp_out;
6200
6201 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6202
6203 /*
6204 * A module may be identified correctly, but the EEPROM may not have
6205 * support for that module. setup_sfp() will fail in that case, so
6206 * we should not allow that module to load.
6207 */
6208 if (hw->mac.type == ixgbe_mac_82598EB)
6209 err = hw->phy.ops.reset(hw);
6210 else
6211 err = hw->mac.ops.setup_sfp(hw);
6212
6213 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6214 goto sfp_out;
6215
6216 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6217 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6218
6219sfp_out:
6220 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6221
6222 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6223 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6224 e_dev_err("failed to initialize because an unsupported "
6225 "SFP+ module type was detected.\n");
6226 e_dev_err("Reload the driver after installing a "
6227 "supported module.\n");
6228 unregister_netdev(adapter->netdev);
6229 }
6230}
6231
6232/**
6233 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
6234 * @adapter - the ixgbe adapter structure
6235 **/
6236static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6237{
6238 struct ixgbe_hw *hw = &adapter->hw;
6239 u32 autoneg;
6240 bool negotiation;
6241
6242 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6243 return;
6244
6245 /* someone else is in init, wait until next service event */
6246 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6247 return;
6248
6249 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6250
6251 autoneg = hw->phy.autoneg_advertised;
6252 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
6253 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
6254 hw->mac.autotry_restart = false;
6255 if (hw->mac.ops.setup_link)
6256 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
6257
6258 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6259 adapter->link_check_timeout = jiffies;
6260 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6261}
6262
6263/**
6264 * ixgbe_service_timer - Timer Call-back
6265 * @data: pointer to adapter cast into an unsigned long
6266 **/
6267static void ixgbe_service_timer(unsigned long data)
6268{
6269 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6270 unsigned long next_event_offset;
6271
6272 /* poll faster when waiting for link */
6273 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6274 next_event_offset = HZ / 10;
6275 else
6276 next_event_offset = HZ * 2;
6277
6278 /* Reset the timer */
6279 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6280
6281 ixgbe_service_event_schedule(adapter);
6282}
6283
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006284static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6285{
6286 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6287 return;
6288
6289 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6290
6291 /* If we're already down or resetting, just bail */
6292 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6293 test_bit(__IXGBE_RESETTING, &adapter->state))
6294 return;
6295
6296 ixgbe_dump(adapter);
6297 netdev_err(adapter->netdev, "Reset adapter\n");
6298 adapter->tx_timeout_count++;
6299
6300 ixgbe_reinit_locked(adapter);
6301}
6302
Alexander Duyck70864002011-04-27 09:13:56 +00006303/**
6304 * ixgbe_service_task - manages and runs subtasks
6305 * @work: pointer to work_struct containing our data
6306 **/
6307static void ixgbe_service_task(struct work_struct *work)
6308{
6309 struct ixgbe_adapter *adapter = container_of(work,
6310 struct ixgbe_adapter,
6311 service_task);
6312
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006313 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006314 ixgbe_sfp_detection_subtask(adapter);
6315 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006316 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006317 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006318 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006319 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006320
6321 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006322}
6323
Auke Kok9a799d72007-09-15 14:07:45 -07006324static int ixgbe_tso(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006325 struct ixgbe_ring *tx_ring, struct sk_buff *skb,
Hao Zheng5e09a102010-11-11 13:47:59 +00006326 u32 tx_flags, u8 *hdr_len, __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006327{
6328 struct ixgbe_adv_tx_context_desc *context_desc;
6329 unsigned int i;
6330 int err;
6331 struct ixgbe_tx_buffer *tx_buffer_info;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006332 u32 vlan_macip_lens = 0, type_tucmd_mlhl;
6333 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006334
6335 if (skb_is_gso(skb)) {
6336 if (skb_header_cloned(skb)) {
6337 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6338 if (err)
6339 return err;
6340 }
6341 l4len = tcp_hdrlen(skb);
6342 *hdr_len += l4len;
6343
Hao Zheng5e09a102010-11-11 13:47:59 +00006344 if (protocol == htons(ETH_P_IP)) {
Auke Kok9a799d72007-09-15 14:07:45 -07006345 struct iphdr *iph = ip_hdr(skb);
6346 iph->tot_len = 0;
6347 iph->check = 0;
6348 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
Joe Perchese8e9f692010-09-07 21:34:53 +00006349 iph->daddr, 0,
6350 IPPROTO_TCP,
6351 0);
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08006352 } else if (skb_is_gso_v6(skb)) {
Auke Kok9a799d72007-09-15 14:07:45 -07006353 ipv6_hdr(skb)->payload_len = 0;
6354 tcp_hdr(skb)->check =
6355 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
Joe Perchese8e9f692010-09-07 21:34:53 +00006356 &ipv6_hdr(skb)->daddr,
6357 0, IPPROTO_TCP, 0);
Auke Kok9a799d72007-09-15 14:07:45 -07006358 }
6359
6360 i = tx_ring->next_to_use;
6361
6362 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006363 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006364
6365 /* VLAN MACLEN IPLEN */
6366 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6367 vlan_macip_lens |=
6368 (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK);
6369 vlan_macip_lens |= ((skb_network_offset(skb)) <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006370 IXGBE_ADVTXD_MACLEN_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006371 *hdr_len += skb_network_offset(skb);
6372 vlan_macip_lens |=
6373 (skb_transport_header(skb) - skb_network_header(skb));
6374 *hdr_len +=
6375 (skb_transport_header(skb) - skb_network_header(skb));
6376 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6377 context_desc->seqnum_seed = 0;
6378
6379 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006380 type_tucmd_mlhl = (IXGBE_TXD_CMD_DEXT |
Joe Perchese8e9f692010-09-07 21:34:53 +00006381 IXGBE_ADVTXD_DTYP_CTXT);
Auke Kok9a799d72007-09-15 14:07:45 -07006382
Hao Zheng5e09a102010-11-11 13:47:59 +00006383 if (protocol == htons(ETH_P_IP))
Auke Kok9a799d72007-09-15 14:07:45 -07006384 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_IPV4;
6385 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6386 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd_mlhl);
6387
6388 /* MSS L4LEN IDX */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006389 mss_l4len_idx =
Auke Kok9a799d72007-09-15 14:07:45 -07006390 (skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT);
6391 mss_l4len_idx |= (l4len << IXGBE_ADVTXD_L4LEN_SHIFT);
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006392 /* use index 1 for TSO */
6393 mss_l4len_idx |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006394 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6395
6396 tx_buffer_info->time_stamp = jiffies;
6397 tx_buffer_info->next_to_watch = i;
6398
6399 i++;
6400 if (i == tx_ring->count)
6401 i = 0;
6402 tx_ring->next_to_use = i;
6403
6404 return true;
6405 }
6406 return false;
6407}
6408
Hao Zheng5e09a102010-11-11 13:47:59 +00006409static u32 ixgbe_psum(struct ixgbe_adapter *adapter, struct sk_buff *skb,
6410 __be16 protocol)
Joe Perches7ca647b2010-09-07 21:35:40 +00006411{
6412 u32 rtn = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00006413
6414 switch (protocol) {
6415 case cpu_to_be16(ETH_P_IP):
6416 rtn |= IXGBE_ADVTXD_TUCMD_IPV4;
6417 switch (ip_hdr(skb)->protocol) {
6418 case IPPROTO_TCP:
6419 rtn |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6420 break;
6421 case IPPROTO_SCTP:
6422 rtn |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6423 break;
6424 }
6425 break;
6426 case cpu_to_be16(ETH_P_IPV6):
6427 /* XXX what about other V6 headers?? */
6428 switch (ipv6_hdr(skb)->nexthdr) {
6429 case IPPROTO_TCP:
6430 rtn |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6431 break;
6432 case IPPROTO_SCTP:
6433 rtn |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6434 break;
6435 }
6436 break;
6437 default:
6438 if (unlikely(net_ratelimit()))
6439 e_warn(probe, "partial checksum but proto=%x!\n",
Hao Zheng5e09a102010-11-11 13:47:59 +00006440 protocol);
Joe Perches7ca647b2010-09-07 21:35:40 +00006441 break;
6442 }
6443
6444 return rtn;
6445}
6446
Auke Kok9a799d72007-09-15 14:07:45 -07006447static bool ixgbe_tx_csum(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006448 struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006449 struct sk_buff *skb, u32 tx_flags,
6450 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006451{
6452 struct ixgbe_adv_tx_context_desc *context_desc;
6453 unsigned int i;
6454 struct ixgbe_tx_buffer *tx_buffer_info;
6455 u32 vlan_macip_lens = 0, type_tucmd_mlhl = 0;
6456
6457 if (skb->ip_summed == CHECKSUM_PARTIAL ||
6458 (tx_flags & IXGBE_TX_FLAGS_VLAN)) {
6459 i = tx_ring->next_to_use;
6460 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006461 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006462
6463 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6464 vlan_macip_lens |=
6465 (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK);
6466 vlan_macip_lens |= (skb_network_offset(skb) <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006467 IXGBE_ADVTXD_MACLEN_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006468 if (skb->ip_summed == CHECKSUM_PARTIAL)
6469 vlan_macip_lens |= (skb_transport_header(skb) -
Joe Perchese8e9f692010-09-07 21:34:53 +00006470 skb_network_header(skb));
Auke Kok9a799d72007-09-15 14:07:45 -07006471
6472 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6473 context_desc->seqnum_seed = 0;
6474
6475 type_tucmd_mlhl |= (IXGBE_TXD_CMD_DEXT |
Joe Perchese8e9f692010-09-07 21:34:53 +00006476 IXGBE_ADVTXD_DTYP_CTXT);
Auke Kok9a799d72007-09-15 14:07:45 -07006477
Joe Perches7ca647b2010-09-07 21:35:40 +00006478 if (skb->ip_summed == CHECKSUM_PARTIAL)
Hao Zheng5e09a102010-11-11 13:47:59 +00006479 type_tucmd_mlhl |= ixgbe_psum(adapter, skb, protocol);
Auke Kok9a799d72007-09-15 14:07:45 -07006480
6481 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd_mlhl);
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006482 /* use index zero for tx checksum offload */
Auke Kok9a799d72007-09-15 14:07:45 -07006483 context_desc->mss_l4len_idx = 0;
6484
6485 tx_buffer_info->time_stamp = jiffies;
6486 tx_buffer_info->next_to_watch = i;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006487
Auke Kok9a799d72007-09-15 14:07:45 -07006488 i++;
6489 if (i == tx_ring->count)
6490 i = 0;
6491 tx_ring->next_to_use = i;
6492
6493 return true;
6494 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006495
Auke Kok9a799d72007-09-15 14:07:45 -07006496 return false;
6497}
6498
6499static int ixgbe_tx_map(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006500 struct ixgbe_ring *tx_ring,
6501 struct sk_buff *skb, u32 tx_flags,
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006502 unsigned int first, const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006503{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006504 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006505 struct ixgbe_tx_buffer *tx_buffer_info;
Yi Zoueacd73f2009-05-13 13:11:06 +00006506 unsigned int len;
6507 unsigned int total = skb->len;
Auke Kok9a799d72007-09-15 14:07:45 -07006508 unsigned int offset = 0, size, count = 0, i;
6509 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
6510 unsigned int f;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006511 unsigned int bytecount = skb->len;
6512 u16 gso_segs = 1;
Auke Kok9a799d72007-09-15 14:07:45 -07006513
6514 i = tx_ring->next_to_use;
6515
Yi Zoueacd73f2009-05-13 13:11:06 +00006516 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6517 /* excluding fcoe_crc_eof for FCoE */
6518 total -= sizeof(struct fcoe_crc_eof);
6519
6520 len = min(skb_headlen(skb), total);
Auke Kok9a799d72007-09-15 14:07:45 -07006521 while (len) {
6522 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6523 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6524
6525 tx_buffer_info->length = size;
Alexander Duycke5a43542009-12-02 16:46:56 +00006526 tx_buffer_info->mapped_as_page = false;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006527 tx_buffer_info->dma = dma_map_single(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006528 skb->data + offset,
Nick Nunley1b507732010-04-27 13:10:27 +00006529 size, DMA_TO_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006530 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006531 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006532 tx_buffer_info->time_stamp = jiffies;
6533 tx_buffer_info->next_to_watch = i;
6534
6535 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006536 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006537 offset += size;
6538 count++;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006539
6540 if (len) {
6541 i++;
6542 if (i == tx_ring->count)
6543 i = 0;
6544 }
Auke Kok9a799d72007-09-15 14:07:45 -07006545 }
6546
6547 for (f = 0; f < nr_frags; f++) {
6548 struct skb_frag_struct *frag;
6549
6550 frag = &skb_shinfo(skb)->frags[f];
Yi Zoueacd73f2009-05-13 13:11:06 +00006551 len = min((unsigned int)frag->size, total);
Alexander Duycke5a43542009-12-02 16:46:56 +00006552 offset = frag->page_offset;
Auke Kok9a799d72007-09-15 14:07:45 -07006553
6554 while (len) {
Alexander Duyck44df32c2009-03-31 21:34:23 +00006555 i++;
6556 if (i == tx_ring->count)
6557 i = 0;
6558
Auke Kok9a799d72007-09-15 14:07:45 -07006559 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6560 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6561
6562 tx_buffer_info->length = size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006563 tx_buffer_info->dma = dma_map_page(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006564 frag->page,
6565 offset, size,
Nick Nunley1b507732010-04-27 13:10:27 +00006566 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +00006567 tx_buffer_info->mapped_as_page = true;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006568 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006569 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006570 tx_buffer_info->time_stamp = jiffies;
6571 tx_buffer_info->next_to_watch = i;
6572
6573 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006574 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006575 offset += size;
6576 count++;
Auke Kok9a799d72007-09-15 14:07:45 -07006577 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006578 if (total == 0)
6579 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006580 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006581
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006582 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6583 gso_segs = skb_shinfo(skb)->gso_segs;
6584#ifdef IXGBE_FCOE
6585 /* adjust for FCoE Sequence Offload */
6586 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6587 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6588 skb_shinfo(skb)->gso_size);
6589#endif /* IXGBE_FCOE */
6590 bytecount += (gso_segs - 1) * hdr_len;
6591
6592 /* multiply data chunks by size of headers */
6593 tx_ring->tx_buffer_info[i].bytecount = bytecount;
6594 tx_ring->tx_buffer_info[i].gso_segs = gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006595 tx_ring->tx_buffer_info[i].skb = skb;
6596 tx_ring->tx_buffer_info[first].next_to_watch = i;
6597
6598 return count;
Alexander Duycke5a43542009-12-02 16:46:56 +00006599
6600dma_error:
Emil Tantilov849c4542010-06-03 16:53:41 +00006601 e_dev_err("TX DMA map failed\n");
Alexander Duycke5a43542009-12-02 16:46:56 +00006602
6603 /* clear timestamp and dma mappings for failed tx_buffer_info map */
6604 tx_buffer_info->dma = 0;
6605 tx_buffer_info->time_stamp = 0;
6606 tx_buffer_info->next_to_watch = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006607 if (count)
6608 count--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006609
6610 /* clear timestamp and dma mappings for remaining portion of packet */
Roel Kluinc1fa3472010-01-19 14:21:45 +00006611 while (count--) {
Joe Perchese8e9f692010-09-07 21:34:53 +00006612 if (i == 0)
Alexander Duycke5a43542009-12-02 16:46:56 +00006613 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006614 i--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006615 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006616 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Alexander Duycke5a43542009-12-02 16:46:56 +00006617 }
6618
Anton Blancharde44d38e2010-02-03 13:12:51 +00006619 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006620}
6621
Alexander Duyck84ea2592010-11-16 19:26:49 -08006622static void ixgbe_tx_queue(struct ixgbe_ring *tx_ring,
Joe Perchese8e9f692010-09-07 21:34:53 +00006623 int tx_flags, int count, u32 paylen, u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006624{
6625 union ixgbe_adv_tx_desc *tx_desc = NULL;
6626 struct ixgbe_tx_buffer *tx_buffer_info;
6627 u32 olinfo_status = 0, cmd_type_len = 0;
6628 unsigned int i;
6629 u32 txd_cmd = IXGBE_TXD_CMD_EOP | IXGBE_TXD_CMD_RS | IXGBE_TXD_CMD_IFCS;
6630
6631 cmd_type_len |= IXGBE_ADVTXD_DTYP_DATA;
6632
6633 cmd_type_len |= IXGBE_ADVTXD_DCMD_IFCS | IXGBE_ADVTXD_DCMD_DEXT;
6634
6635 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6636 cmd_type_len |= IXGBE_ADVTXD_DCMD_VLE;
6637
6638 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6639 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6640
6641 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006642 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006643
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006644 /* use index 1 context for tso */
6645 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006646 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6647 olinfo_status |= IXGBE_TXD_POPTS_IXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006648 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006649
6650 } else if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6651 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006652 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006653
Yi Zoueacd73f2009-05-13 13:11:06 +00006654 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6655 olinfo_status |= IXGBE_ADVTXD_CC;
6656 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
6657 if (tx_flags & IXGBE_TX_FLAGS_FSO)
6658 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6659 }
6660
Auke Kok9a799d72007-09-15 14:07:45 -07006661 olinfo_status |= ((paylen - hdr_len) << IXGBE_ADVTXD_PAYLEN_SHIFT);
6662
6663 i = tx_ring->next_to_use;
6664 while (count--) {
6665 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006666 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006667 tx_desc->read.buffer_addr = cpu_to_le64(tx_buffer_info->dma);
6668 tx_desc->read.cmd_type_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00006669 cpu_to_le32(cmd_type_len | tx_buffer_info->length);
Auke Kok9a799d72007-09-15 14:07:45 -07006670 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Auke Kok9a799d72007-09-15 14:07:45 -07006671 i++;
6672 if (i == tx_ring->count)
6673 i = 0;
6674 }
6675
6676 tx_desc->read.cmd_type_len |= cpu_to_le32(txd_cmd);
6677
6678 /*
6679 * Force memory writes to complete before letting h/w
6680 * know there are new descriptors to fetch. (Only
6681 * applicable for weak-ordered memory model archs,
6682 * such as IA-64).
6683 */
6684 wmb();
6685
6686 tx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08006687 writel(i, tx_ring->tail);
Auke Kok9a799d72007-09-15 14:07:45 -07006688}
6689
Alexander Duyck69830522011-01-06 14:29:58 +00006690static void ixgbe_atr(struct ixgbe_ring *ring, struct sk_buff *skb,
6691 u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006692{
Alexander Duyck69830522011-01-06 14:29:58 +00006693 struct ixgbe_q_vector *q_vector = ring->q_vector;
6694 union ixgbe_atr_hash_dword input = { .dword = 0 };
6695 union ixgbe_atr_hash_dword common = { .dword = 0 };
6696 union {
6697 unsigned char *network;
6698 struct iphdr *ipv4;
6699 struct ipv6hdr *ipv6;
6700 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006701 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006702 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006703
Alexander Duyck69830522011-01-06 14:29:58 +00006704 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6705 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006706 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006707
Alexander Duyck69830522011-01-06 14:29:58 +00006708 /* do nothing if sampling is disabled */
6709 if (!ring->atr_sample_rate)
6710 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006711
Alexander Duyck69830522011-01-06 14:29:58 +00006712 ring->atr_count++;
6713
6714 /* snag network header to get L4 type and address */
6715 hdr.network = skb_network_header(skb);
6716
6717 /* Currently only IPv4/IPv6 with TCP is supported */
6718 if ((protocol != __constant_htons(ETH_P_IPV6) ||
6719 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
6720 (protocol != __constant_htons(ETH_P_IP) ||
6721 hdr.ipv4->protocol != IPPROTO_TCP))
6722 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006723
6724 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006725
Alexander Duyck69830522011-01-06 14:29:58 +00006726 /* skip this packet since the socket is closing */
6727 if (th->fin)
6728 return;
6729
6730 /* sample on all syn packets or once every atr sample count */
6731 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6732 return;
6733
6734 /* reset sample count */
6735 ring->atr_count = 0;
6736
6737 vlan_id = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
6738
6739 /*
6740 * src and dst are inverted, think how the receiver sees them
6741 *
6742 * The input is broken into two sections, a non-compressed section
6743 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6744 * is XORed together and stored in the compressed dword.
6745 */
6746 input.formatted.vlan_id = vlan_id;
6747
6748 /*
6749 * since src port and flex bytes occupy the same word XOR them together
6750 * and write the value to source port portion of compressed dword
6751 */
6752 if (vlan_id)
6753 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6754 else
6755 common.port.src ^= th->dest ^ protocol;
6756 common.port.dst ^= th->source;
6757
6758 if (protocol == __constant_htons(ETH_P_IP)) {
6759 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6760 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6761 } else {
6762 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6763 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6764 hdr.ipv6->saddr.s6_addr32[1] ^
6765 hdr.ipv6->saddr.s6_addr32[2] ^
6766 hdr.ipv6->saddr.s6_addr32[3] ^
6767 hdr.ipv6->daddr.s6_addr32[0] ^
6768 hdr.ipv6->daddr.s6_addr32[1] ^
6769 hdr.ipv6->daddr.s6_addr32[2] ^
6770 hdr.ipv6->daddr.s6_addr32[3];
6771 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006772
6773 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006774 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6775 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006776}
6777
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006778static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, int size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006779{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006780 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006781 /* Herbert's original patch had:
6782 * smp_mb__after_netif_stop_queue();
6783 * but since that doesn't exist yet, just open code it. */
6784 smp_mb();
6785
6786 /* We need to check again in a case another CPU has just
6787 * made room available. */
6788 if (likely(IXGBE_DESC_UNUSED(tx_ring) < size))
6789 return -EBUSY;
6790
6791 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006792 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006793 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006794 return 0;
6795}
6796
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006797static int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, int size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006798{
6799 if (likely(IXGBE_DESC_UNUSED(tx_ring) >= size))
6800 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006801 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006802}
6803
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006804static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6805{
6806 struct ixgbe_adapter *adapter = netdev_priv(dev);
Yi Zou5f715822009-12-03 11:32:44 +00006807 int txq = smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006808#ifdef IXGBE_FCOE
Hao Zheng5e09a102010-11-11 13:47:59 +00006809 __be16 protocol;
6810
6811 protocol = vlan_get_protocol(skb);
6812
John Fastabende5b64632011-03-08 03:44:52 +00006813 if (((protocol == htons(ETH_P_FCOE)) ||
6814 (protocol == htons(ETH_P_FIP))) &&
6815 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6816 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6817 txq += adapter->ring_feature[RING_F_FCOE].mask;
6818 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006819 }
6820#endif
6821
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006822 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6823 while (unlikely(txq >= dev->real_num_tx_queues))
6824 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006825 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006826 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006827
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006828 return skb_tx_hash(dev, skb);
6829}
6830
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006831netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006832 struct ixgbe_adapter *adapter,
6833 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006834{
Auke Kok9a799d72007-09-15 14:07:45 -07006835 unsigned int first;
6836 unsigned int tx_flags = 0;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -08006837 u8 hdr_len = 0;
Yi Zou5f715822009-12-03 11:32:44 +00006838 int tso;
Auke Kok9a799d72007-09-15 14:07:45 -07006839 int count = 0;
6840 unsigned int f;
Hao Zheng5e09a102010-11-11 13:47:59 +00006841 __be16 protocol;
6842
6843 protocol = vlan_get_protocol(skb);
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006844
Jesse Grosseab6d182010-10-20 13:56:03 +00006845 if (vlan_tx_tag_present(skb)) {
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006846 tx_flags |= vlan_tx_tag_get(skb);
Alexander Duyck2f90b862008-11-20 20:52:10 -08006847 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6848 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabende5b64632011-03-08 03:44:52 +00006849 tx_flags |= tx_ring->dcb_tc << 13;
Alexander Duyck2f90b862008-11-20 20:52:10 -08006850 }
6851 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6852 tx_flags |= IXGBE_TX_FLAGS_VLAN;
John Fastabend33c66bd2010-05-18 16:00:11 +00006853 } else if (adapter->flags & IXGBE_FLAG_DCB_ENABLED &&
6854 skb->priority != TC_PRIO_CONTROL) {
John Fastabende5b64632011-03-08 03:44:52 +00006855 tx_flags |= tx_ring->dcb_tc << 13;
John Fastabend2ea186a2010-02-27 03:28:24 -08006856 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6857 tx_flags |= IXGBE_TX_FLAGS_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006858 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006859
Yi Zou09ad1cc2009-09-03 14:56:10 +00006860#ifdef IXGBE_FCOE
John Fastabend56075a92010-07-26 20:41:31 +00006861 /* for FCoE with DCB, we force the priority to what
6862 * was specified by the switch */
6863 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED &&
John Fastabende5b64632011-03-08 03:44:52 +00006864 (protocol == htons(ETH_P_FCOE)))
6865 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Robert Loveca77cd52010-03-24 12:45:00 +00006866#endif
6867
Yi Zoueacd73f2009-05-13 13:11:06 +00006868 /* four things can cause us to need a context descriptor */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006869 if (skb_is_gso(skb) ||
6870 (skb->ip_summed == CHECKSUM_PARTIAL) ||
Yi Zoueacd73f2009-05-13 13:11:06 +00006871 (tx_flags & IXGBE_TX_FLAGS_VLAN) ||
6872 (tx_flags & IXGBE_TX_FLAGS_FCOE))
Auke Kok9a799d72007-09-15 14:07:45 -07006873 count++;
6874
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006875 count += TXD_USE_COUNT(skb_headlen(skb));
6876 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
Auke Kok9a799d72007-09-15 14:07:45 -07006877 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6878
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006879 if (ixgbe_maybe_stop_tx(tx_ring, count)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08006880 tx_ring->tx_stats.tx_busy++;
Auke Kok9a799d72007-09-15 14:07:45 -07006881 return NETDEV_TX_BUSY;
6882 }
Auke Kok9a799d72007-09-15 14:07:45 -07006883
Auke Kok9a799d72007-09-15 14:07:45 -07006884 first = tx_ring->next_to_use;
Yi Zoueacd73f2009-05-13 13:11:06 +00006885 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6886#ifdef IXGBE_FCOE
6887 /* setup tx offload for FCoE */
6888 tso = ixgbe_fso(adapter, tx_ring, skb, tx_flags, &hdr_len);
6889 if (tso < 0) {
6890 dev_kfree_skb_any(skb);
6891 return NETDEV_TX_OK;
6892 }
6893 if (tso)
6894 tx_flags |= IXGBE_TX_FLAGS_FSO;
6895#endif /* IXGBE_FCOE */
6896 } else {
Hao Zheng5e09a102010-11-11 13:47:59 +00006897 if (protocol == htons(ETH_P_IP))
Yi Zoueacd73f2009-05-13 13:11:06 +00006898 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Hao Zheng5e09a102010-11-11 13:47:59 +00006899 tso = ixgbe_tso(adapter, tx_ring, skb, tx_flags, &hdr_len,
6900 protocol);
Yi Zoueacd73f2009-05-13 13:11:06 +00006901 if (tso < 0) {
6902 dev_kfree_skb_any(skb);
6903 return NETDEV_TX_OK;
6904 }
6905
6906 if (tso)
6907 tx_flags |= IXGBE_TX_FLAGS_TSO;
Hao Zheng5e09a102010-11-11 13:47:59 +00006908 else if (ixgbe_tx_csum(adapter, tx_ring, skb, tx_flags,
6909 protocol) &&
Yi Zoueacd73f2009-05-13 13:11:06 +00006910 (skb->ip_summed == CHECKSUM_PARTIAL))
6911 tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006912 }
6913
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006914 count = ixgbe_tx_map(adapter, tx_ring, skb, tx_flags, first, hdr_len);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006915 if (count) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006916 /* add the ATR filter if ATR is on */
Alexander Duyck69830522011-01-06 14:29:58 +00006917 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
6918 ixgbe_atr(tx_ring, skb, tx_flags, protocol);
Alexander Duyck84ea2592010-11-16 19:26:49 -08006919 ixgbe_tx_queue(tx_ring, tx_flags, count, skb->len, hdr_len);
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006920 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006921
Alexander Duyck44df32c2009-03-31 21:34:23 +00006922 } else {
6923 dev_kfree_skb_any(skb);
6924 tx_ring->tx_buffer_info[first].time_stamp = 0;
6925 tx_ring->next_to_use = first;
6926 }
Auke Kok9a799d72007-09-15 14:07:45 -07006927
6928 return NETDEV_TX_OK;
6929}
6930
Alexander Duyck84418e32010-08-19 13:40:54 +00006931static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
6932{
6933 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6934 struct ixgbe_ring *tx_ring;
6935
6936 tx_ring = adapter->tx_ring[skb->queue_mapping];
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006937 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00006938}
6939
Auke Kok9a799d72007-09-15 14:07:45 -07006940/**
Auke Kok9a799d72007-09-15 14:07:45 -07006941 * ixgbe_set_mac - Change the Ethernet Address of the NIC
6942 * @netdev: network interface device structure
6943 * @p: pointer to an address structure
6944 *
6945 * Returns 0 on success, negative on failure
6946 **/
6947static int ixgbe_set_mac(struct net_device *netdev, void *p)
6948{
6949 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006950 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07006951 struct sockaddr *addr = p;
6952
6953 if (!is_valid_ether_addr(addr->sa_data))
6954 return -EADDRNOTAVAIL;
6955
6956 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006957 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07006958
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006959 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
6960 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006961
6962 return 0;
6963}
6964
Ben Hutchings6b73e102009-04-29 08:08:58 +00006965static int
6966ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6967{
6968 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6969 struct ixgbe_hw *hw = &adapter->hw;
6970 u16 value;
6971 int rc;
6972
6973 if (prtad != hw->phy.mdio.prtad)
6974 return -EINVAL;
6975 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6976 if (!rc)
6977 rc = value;
6978 return rc;
6979}
6980
6981static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6982 u16 addr, u16 value)
6983{
6984 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6985 struct ixgbe_hw *hw = &adapter->hw;
6986
6987 if (prtad != hw->phy.mdio.prtad)
6988 return -EINVAL;
6989 return hw->phy.ops.write_reg(hw, addr, devad, value);
6990}
6991
6992static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6993{
6994 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6995
6996 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6997}
6998
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006999/**
7000 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007001 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007002 * @netdev: network interface device structure
7003 *
7004 * Returns non-zero on failure
7005 **/
7006static int ixgbe_add_sanmac_netdev(struct net_device *dev)
7007{
7008 int err = 0;
7009 struct ixgbe_adapter *adapter = netdev_priv(dev);
7010 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7011
7012 if (is_valid_ether_addr(mac->san_addr)) {
7013 rtnl_lock();
7014 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7015 rtnl_unlock();
7016 }
7017 return err;
7018}
7019
7020/**
7021 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007022 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007023 * @netdev: network interface device structure
7024 *
7025 * Returns non-zero on failure
7026 **/
7027static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7028{
7029 int err = 0;
7030 struct ixgbe_adapter *adapter = netdev_priv(dev);
7031 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7032
7033 if (is_valid_ether_addr(mac->san_addr)) {
7034 rtnl_lock();
7035 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7036 rtnl_unlock();
7037 }
7038 return err;
7039}
7040
Auke Kok9a799d72007-09-15 14:07:45 -07007041#ifdef CONFIG_NET_POLL_CONTROLLER
7042/*
7043 * Polling 'interrupt' - used by things like netconsole to send skbs
7044 * without having to re-enable interrupts. It's not called while
7045 * the interrupt routine is executing.
7046 */
7047static void ixgbe_netpoll(struct net_device *netdev)
7048{
7049 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007050 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007051
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007052 /* if interface is down do nothing */
7053 if (test_bit(__IXGBE_DOWN, &adapter->state))
7054 return;
7055
Auke Kok9a799d72007-09-15 14:07:45 -07007056 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007057 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
7058 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
7059 for (i = 0; i < num_q_vectors; i++) {
7060 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
7061 ixgbe_msix_clean_many(0, q_vector);
7062 }
7063 } else {
7064 ixgbe_intr(adapter->pdev->irq, netdev);
7065 }
Auke Kok9a799d72007-09-15 14:07:45 -07007066 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07007067}
7068#endif
7069
Eric Dumazetde1036b2010-10-20 23:00:04 +00007070static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7071 struct rtnl_link_stats64 *stats)
7072{
7073 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7074 int i;
7075
Eric Dumazet1a515022010-11-16 19:26:42 -08007076 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007077 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007078 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007079 u64 bytes, packets;
7080 unsigned int start;
7081
Eric Dumazet1a515022010-11-16 19:26:42 -08007082 if (ring) {
7083 do {
7084 start = u64_stats_fetch_begin_bh(&ring->syncp);
7085 packets = ring->stats.packets;
7086 bytes = ring->stats.bytes;
7087 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7088 stats->rx_packets += packets;
7089 stats->rx_bytes += bytes;
7090 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007091 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007092
7093 for (i = 0; i < adapter->num_tx_queues; i++) {
7094 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7095 u64 bytes, packets;
7096 unsigned int start;
7097
7098 if (ring) {
7099 do {
7100 start = u64_stats_fetch_begin_bh(&ring->syncp);
7101 packets = ring->stats.packets;
7102 bytes = ring->stats.bytes;
7103 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7104 stats->tx_packets += packets;
7105 stats->tx_bytes += bytes;
7106 }
7107 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007108 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007109 /* following stats updated by ixgbe_watchdog_task() */
7110 stats->multicast = netdev->stats.multicast;
7111 stats->rx_errors = netdev->stats.rx_errors;
7112 stats->rx_length_errors = netdev->stats.rx_length_errors;
7113 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7114 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7115 return stats;
7116}
7117
John Fastabend8b1c0b22011-05-03 02:26:48 +00007118/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7119 * #adapter: pointer to ixgbe_adapter
7120 * @tc: number of traffic classes currently enabled
7121 *
7122 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7123 * 802.1Q priority maps to a packet buffer that exists.
7124 */
7125static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7126{
7127 struct ixgbe_hw *hw = &adapter->hw;
7128 u32 reg, rsave;
7129 int i;
7130
7131 /* 82598 have a static priority to TC mapping that can not
7132 * be changed so no validation is needed.
7133 */
7134 if (hw->mac.type == ixgbe_mac_82598EB)
7135 return;
7136
7137 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7138 rsave = reg;
7139
7140 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7141 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7142
7143 /* If up2tc is out of bounds default to zero */
7144 if (up2tc > tc)
7145 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7146 }
7147
7148 if (reg != rsave)
7149 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7150
7151 return;
7152}
7153
7154
7155/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
7156 * classes.
7157 *
7158 * @netdev: net device to configure
7159 * @tc: number of traffic classes to enable
7160 */
7161int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7162{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007163 struct ixgbe_adapter *adapter = netdev_priv(dev);
7164 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007165
7166 /* If DCB is anabled do not remove traffic classes, multiple
7167 * traffic classes are required to implement DCB
7168 */
7169 if (!tc && (adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7170 return 0;
7171
7172 /* Hardware supports up to 8 traffic classes */
7173 if (tc > MAX_TRAFFIC_CLASS ||
7174 (hw->mac.type == ixgbe_mac_82598EB && tc < MAX_TRAFFIC_CLASS))
7175 return -EINVAL;
7176
7177 /* Hardware has to reinitialize queues and interrupts to
7178 * match packet buffer alignment. Unfortunantly, the
7179 * hardware is not flexible enough to do this dynamically.
7180 */
7181 if (netif_running(dev))
7182 ixgbe_close(dev);
7183 ixgbe_clear_interrupt_scheme(adapter);
7184
7185 if (tc)
7186 netdev_set_num_tc(dev, tc);
7187 else
7188 netdev_reset_tc(dev);
7189
John Fastabend8b1c0b22011-05-03 02:26:48 +00007190 ixgbe_init_interrupt_scheme(adapter);
7191 ixgbe_validate_rtr(adapter, tc);
7192 if (netif_running(dev))
7193 ixgbe_open(dev);
7194
7195 return 0;
7196}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007197
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007198static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007199 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007200 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08007201 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007202 .ndo_select_queue = ixgbe_select_queue,
Chris Leeche90d4002009-03-10 16:00:24 +00007203 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007204 .ndo_set_multicast_list = ixgbe_set_rx_mode,
7205 .ndo_validate_addr = eth_validate_addr,
7206 .ndo_set_mac_address = ixgbe_set_mac,
7207 .ndo_change_mtu = ixgbe_change_mtu,
7208 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007209 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7210 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007211 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007212 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7213 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7214 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
7215 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007216 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabend24095aa2011-02-23 05:58:03 +00007217 .ndo_setup_tc = ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007218#ifdef CONFIG_NET_POLL_CONTROLLER
7219 .ndo_poll_controller = ixgbe_netpoll,
7220#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007221#ifdef IXGBE_FCOE
7222 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007223 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007224 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007225 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7226 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007227 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Yi Zou332d4a72009-05-13 13:11:53 +00007228#endif /* IXGBE_FCOE */
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007229};
7230
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007231static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7232 const struct ixgbe_info *ii)
7233{
7234#ifdef CONFIG_PCI_IOV
7235 struct ixgbe_hw *hw = &adapter->hw;
7236 int err;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00007237 int num_vf_macvlans, i;
7238 struct vf_macvlans *mv_list;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007239
Greg Rose3377eba792010-12-07 08:16:45 +00007240 if (hw->mac.type == ixgbe_mac_82598EB || !max_vfs)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007241 return;
7242
7243 /* The 82599 supports up to 64 VFs per physical function
7244 * but this implementation limits allocation to 63 so that
7245 * basic networking resources are still available to the
7246 * physical function
7247 */
7248 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
7249 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
7250 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
7251 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007252 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007253 goto err_novfs;
7254 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +00007255
7256 num_vf_macvlans = hw->mac.num_rar_entries -
7257 (IXGBE_MAX_PF_MACVLANS + 1 + adapter->num_vfs);
7258
7259 adapter->mv_list = mv_list = kcalloc(num_vf_macvlans,
7260 sizeof(struct vf_macvlans),
7261 GFP_KERNEL);
7262 if (mv_list) {
7263 /* Initialize list of VF macvlans */
7264 INIT_LIST_HEAD(&adapter->vf_mvs.l);
7265 for (i = 0; i < num_vf_macvlans; i++) {
7266 mv_list->vf = -1;
7267 mv_list->free = true;
7268 mv_list->rar_entry = hw->mac.num_rar_entries -
7269 (i + adapter->num_vfs + 1);
7270 list_add(&mv_list->l, &adapter->vf_mvs.l);
7271 mv_list++;
7272 }
7273 }
7274
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007275 /* If call to enable VFs succeeded then allocate memory
7276 * for per VF control structures.
7277 */
7278 adapter->vfinfo =
7279 kcalloc(adapter->num_vfs,
7280 sizeof(struct vf_data_storage), GFP_KERNEL);
7281 if (adapter->vfinfo) {
7282 /* Now that we're sure SR-IOV is enabled
7283 * and memory allocated set up the mailbox parameters
7284 */
7285 ixgbe_init_mbx_params_pf(hw);
7286 memcpy(&hw->mbx.ops, ii->mbx_ops,
7287 sizeof(hw->mbx.ops));
7288
7289 /* Disable RSC when in SR-IOV mode */
7290 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
7291 IXGBE_FLAG2_RSC_ENABLED);
7292 return;
7293 }
7294
7295 /* Oh oh */
Emil Tantilov396e7992010-07-01 20:05:12 +00007296 e_err(probe, "Unable to allocate memory for VF Data Storage - "
7297 "SRIOV disabled\n");
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007298 pci_disable_sriov(adapter->pdev);
7299
7300err_novfs:
7301 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
7302 adapter->num_vfs = 0;
7303#endif /* CONFIG_PCI_IOV */
7304}
7305
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007306/**
Auke Kok9a799d72007-09-15 14:07:45 -07007307 * ixgbe_probe - Device Initialization Routine
7308 * @pdev: PCI device information struct
7309 * @ent: entry in ixgbe_pci_tbl
7310 *
7311 * Returns 0 on success, negative on failure
7312 *
7313 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7314 * The OS initialization, configuring of the adapter private structure,
7315 * and a hardware reset occur.
7316 **/
7317static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007318 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007319{
7320 struct net_device *netdev;
7321 struct ixgbe_adapter *adapter = NULL;
7322 struct ixgbe_hw *hw;
7323 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007324 static int cards_found;
7325 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007326 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007327 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007328#ifdef IXGBE_FCOE
7329 u16 device_caps;
7330#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007331 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007332
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007333 /* Catch broken hardware that put the wrong VF device ID in
7334 * the PCIe SR-IOV capability.
7335 */
7336 if (pdev->is_virtfn) {
7337 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7338 pci_name(pdev), pdev->vendor, pdev->device);
7339 return -EINVAL;
7340 }
7341
gouji-new9ce77662009-05-06 10:44:45 +00007342 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007343 if (err)
7344 return err;
7345
Nick Nunley1b507732010-04-27 13:10:27 +00007346 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7347 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007348 pci_using_dac = 1;
7349 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007350 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007351 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007352 err = dma_set_coherent_mask(&pdev->dev,
7353 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007354 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007355 dev_err(&pdev->dev,
7356 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007357 goto err_dma;
7358 }
7359 }
7360 pci_using_dac = 0;
7361 }
7362
gouji-new9ce77662009-05-06 10:44:45 +00007363 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007364 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007365 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007366 dev_err(&pdev->dev,
7367 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007368 goto err_pci_reg;
7369 }
7370
Frans Pop19d5afd2009-10-02 10:04:12 -07007371 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007372
Auke Kok9a799d72007-09-15 14:07:45 -07007373 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007374 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007375
John Fastabende901acd2011-04-26 07:26:08 +00007376#ifdef CONFIG_IXGBE_DCB
7377 indices *= MAX_TRAFFIC_CLASS;
7378#endif
7379
John Fastabendc85a2612010-02-25 23:15:21 +00007380 if (ii->mac == ixgbe_mac_82598EB)
7381 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7382 else
7383 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7384
John Fastabende901acd2011-04-26 07:26:08 +00007385#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007386 indices += min_t(unsigned int, num_possible_cpus(),
7387 IXGBE_MAX_FCOE_INDICES);
7388#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007389 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007390 if (!netdev) {
7391 err = -ENOMEM;
7392 goto err_alloc_etherdev;
7393 }
7394
Auke Kok9a799d72007-09-15 14:07:45 -07007395 SET_NETDEV_DEV(netdev, &pdev->dev);
7396
Auke Kok9a799d72007-09-15 14:07:45 -07007397 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007398 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007399
7400 adapter->netdev = netdev;
7401 adapter->pdev = pdev;
7402 hw = &adapter->hw;
7403 hw->back = adapter;
7404 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7405
Jeff Kirsher05857982008-09-11 19:57:00 -07007406 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007407 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007408 if (!hw->hw_addr) {
7409 err = -EIO;
7410 goto err_ioremap;
7411 }
7412
7413 for (i = 1; i <= 5; i++) {
7414 if (pci_resource_len(pdev, i) == 0)
7415 continue;
7416 }
7417
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007418 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007419 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007420 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007421 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007422
Auke Kok9a799d72007-09-15 14:07:45 -07007423 adapter->bd_number = cards_found;
7424
Auke Kok9a799d72007-09-15 14:07:45 -07007425 /* Setup hw api */
7426 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007427 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007428
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007429 /* EEPROM */
7430 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7431 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7432 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7433 if (!(eec & (1 << 8)))
7434 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7435
7436 /* PHY */
7437 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007438 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007439 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7440 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7441 hw->phy.mdio.mmds = 0;
7442 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7443 hw->phy.mdio.dev = netdev;
7444 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7445 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007446
Don Skidmore8ca783a2009-05-26 20:40:47 -07007447 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007448
7449 /* setup the private structure */
7450 err = ixgbe_sw_init(adapter);
7451 if (err)
7452 goto err_sw_init;
7453
Don Skidmoree86bff02010-02-11 04:14:08 +00007454 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007455 switch (adapter->hw.mac.type) {
7456 case ixgbe_mac_82599EB:
7457 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007458 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007459 break;
7460 default:
7461 break;
7462 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007463
Don Skidmorebf069c92009-05-07 10:39:54 +00007464 /*
7465 * If there is a fan on this device and it has failed log the
7466 * failure.
7467 */
7468 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7469 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7470 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007471 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007472 }
7473
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007474 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007475 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007476 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007477 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007478 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7479 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007480 err = 0;
7481 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007482 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007483 "module type was detected.\n");
7484 e_dev_err("Reload the driver after installing a supported "
7485 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007486 goto err_sw_init;
7487 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007488 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007489 goto err_sw_init;
7490 }
7491
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007492 ixgbe_probe_vf(adapter, ii);
7493
Emil Tantilov396e7992010-07-01 20:05:12 +00007494 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007495 NETIF_F_IP_CSUM |
7496 NETIF_F_HW_VLAN_TX |
7497 NETIF_F_HW_VLAN_RX |
7498 NETIF_F_HW_VLAN_FILTER;
Auke Kok9a799d72007-09-15 14:07:45 -07007499
Jesse Brandeburge9990a92008-08-26 04:27:24 -07007500 netdev->features |= NETIF_F_IPV6_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007501 netdev->features |= NETIF_F_TSO;
Auke Kok9a799d72007-09-15 14:07:45 -07007502 netdev->features |= NETIF_F_TSO6;
Herbert Xu78b6f4c2009-01-18 21:49:45 -08007503 netdev->features |= NETIF_F_GRO;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007504 netdev->features |= NETIF_F_RXHASH;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007505
Don Skidmore58be7662011-04-12 09:42:11 +00007506 switch (adapter->hw.mac.type) {
7507 case ixgbe_mac_82599EB:
7508 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007509 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore58be7662011-04-12 09:42:11 +00007510 break;
7511 default:
7512 break;
7513 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007514
Jeff Kirsherad31c402008-06-05 04:05:30 -07007515 netdev->vlan_features |= NETIF_F_TSO;
7516 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007517 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007518 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007519 netdev->vlan_features |= NETIF_F_SG;
7520
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007521 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7522 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7523 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007524
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007525#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007526 netdev->dcbnl_ops = &dcbnl_ops;
7527#endif
7528
Yi Zoueacd73f2009-05-13 13:11:06 +00007529#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007530 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007531 if (hw->mac.ops.get_device_caps) {
7532 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007533 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7534 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007535 }
7536 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007537 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7538 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7539 netdev->vlan_features |= NETIF_F_FSO;
7540 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7541 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007542#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007543 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007544 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007545 netdev->vlan_features |= NETIF_F_HIGHDMA;
7546 }
Auke Kok9a799d72007-09-15 14:07:45 -07007547
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007548 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007549 netdev->features |= NETIF_F_LRO;
7550
Auke Kok9a799d72007-09-15 14:07:45 -07007551 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007552 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007553 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007554 err = -EIO;
7555 goto err_eeprom;
7556 }
7557
7558 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7559 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7560
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007561 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007562 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007563 err = -EIO;
7564 goto err_eeprom;
7565 }
7566
Don Skidmorec6ecf392010-12-03 03:31:51 +00007567 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7568 if (hw->mac.ops.disable_tx_laser &&
7569 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00007570 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00007571 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00007572 hw->mac.ops.disable_tx_laser(hw);
7573
Alexander Duyck70864002011-04-27 09:13:56 +00007574 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
7575 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007576
Alexander Duyck70864002011-04-27 09:13:56 +00007577 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7578 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007579
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007580 err = ixgbe_init_interrupt_scheme(adapter);
7581 if (err)
7582 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007583
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007584 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
7585 netdev->features &= ~NETIF_F_RXHASH;
7586
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007587 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007588 case IXGBE_DEV_ID_82599_SFP:
7589 /* Only this subdevice supports WOL */
7590 if (pdev->subsystem_device == IXGBE_SUBDEV_ID_82599_SFP)
7591 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
7592 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
7593 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007594 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7595 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007596 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7597 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
7598 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
7599 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007600 case IXGBE_DEV_ID_82599_KX4:
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00007601 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
Joe Perchese8e9f692010-09-07 21:34:53 +00007602 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007603 break;
7604 default:
7605 adapter->wol = 0;
7606 break;
7607 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007608 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7609
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007610 /* pick up the PCI bus settings for reporting later */
7611 hw->mac.ops.get_bus_info(hw);
7612
Auke Kok9a799d72007-09-15 14:07:45 -07007613 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007614 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007615 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7616 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007617 "Unknown"),
7618 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7619 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7620 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7621 "Unknown"),
7622 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007623
7624 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7625 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007626 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007627 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007628 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007629 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007630 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007631 else
Don Skidmore289700db2010-12-03 03:32:58 +00007632 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7633 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007634
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007635 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007636 e_dev_warn("PCI-Express bandwidth available for this card is "
7637 "not sufficient for optimal performance.\n");
7638 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7639 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007640 }
7641
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -08007642 /* save off EEPROM version number */
7643 hw->eeprom.ops.read(hw, 0x29, &adapter->eeprom_version);
7644
Auke Kok9a799d72007-09-15 14:07:45 -07007645 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007646 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007647
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007648 if (err == IXGBE_ERR_EEPROM_VERSION) {
7649 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007650 e_dev_warn("This device is a pre-production adapter/LOM. "
7651 "Please be aware there may be issues associated "
7652 "with your hardware. If you are experiencing "
7653 "problems please contact your Intel or hardware "
7654 "representative who provided you with this "
7655 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007656 }
Auke Kok9a799d72007-09-15 14:07:45 -07007657 strcpy(netdev->name, "eth%d");
7658 err = register_netdev(netdev);
7659 if (err)
7660 goto err_register;
7661
Jesse Brandeburg54386462009-04-17 20:44:27 +00007662 /* carrier off reporting is important to ethtool even BEFORE open */
7663 netif_carrier_off(netdev);
7664
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007665#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007666 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007667 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007668 ixgbe_setup_dca(adapter);
7669 }
7670#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007671 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007672 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007673 for (i = 0; i < adapter->num_vfs; i++)
7674 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7675 }
7676
Emil Tantilov9612de92011-05-07 07:40:20 +00007677 /* Inform firmware of driver version */
7678 if (hw->mac.ops.set_fw_drv_ver)
7679 hw->mac.ops.set_fw_drv_ver(hw, MAJ, MIN, BUILD, KFIX);
7680
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007681 /* add san mac addr to netdev */
7682 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007683
Emil Tantilov849c4542010-06-03 16:53:41 +00007684 e_dev_info("Intel(R) 10 Gigabit Network Connection\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007685 cards_found++;
7686 return 0;
7687
7688err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007689 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007690 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007691err_sw_init:
7692err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007693 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7694 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007695 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007696 iounmap(hw->hw_addr);
7697err_ioremap:
7698 free_netdev(netdev);
7699err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007700 pci_release_selected_regions(pdev,
7701 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007702err_pci_reg:
7703err_dma:
7704 pci_disable_device(pdev);
7705 return err;
7706}
7707
7708/**
7709 * ixgbe_remove - Device Removal Routine
7710 * @pdev: PCI device information struct
7711 *
7712 * ixgbe_remove is called by the PCI subsystem to alert the driver
7713 * that it should release a PCI device. The could be caused by a
7714 * Hot-Plug event, or because the driver is going to be removed from
7715 * memory.
7716 **/
7717static void __devexit ixgbe_remove(struct pci_dev *pdev)
7718{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007719 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7720 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007721
7722 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007723 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007724
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007725#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007726 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7727 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7728 dca_remove_requester(&pdev->dev);
7729 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7730 }
7731
7732#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007733#ifdef IXGBE_FCOE
7734 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7735 ixgbe_cleanup_fcoe(adapter);
7736
7737#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007738
7739 /* remove the added san mac */
7740 ixgbe_del_sanmac_netdev(netdev);
7741
Donald Skidmorec4900be2008-11-20 21:11:42 -08007742 if (netdev->reg_state == NETREG_REGISTERED)
7743 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007744
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007745 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7746 ixgbe_disable_sriov(adapter);
7747
Alexander Duyck7a921c92009-05-06 10:43:28 +00007748 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007749
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007750 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007751
7752 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007753 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007754 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007755
Emil Tantilov849c4542010-06-03 16:53:41 +00007756 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007757
Auke Kok9a799d72007-09-15 14:07:45 -07007758 free_netdev(netdev);
7759
Frans Pop19d5afd2009-10-02 10:04:12 -07007760 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007761
Auke Kok9a799d72007-09-15 14:07:45 -07007762 pci_disable_device(pdev);
7763}
7764
7765/**
7766 * ixgbe_io_error_detected - called when PCI error is detected
7767 * @pdev: Pointer to PCI device
7768 * @state: The current pci connection state
7769 *
7770 * This function is called after a PCI bus error affecting
7771 * this device has been detected.
7772 */
7773static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007774 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007775{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007776 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7777 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007778
7779 netif_device_detach(netdev);
7780
Breno Leitao3044b8d2009-05-06 10:44:26 +00007781 if (state == pci_channel_io_perm_failure)
7782 return PCI_ERS_RESULT_DISCONNECT;
7783
Auke Kok9a799d72007-09-15 14:07:45 -07007784 if (netif_running(netdev))
7785 ixgbe_down(adapter);
7786 pci_disable_device(pdev);
7787
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007788 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007789 return PCI_ERS_RESULT_NEED_RESET;
7790}
7791
7792/**
7793 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7794 * @pdev: Pointer to PCI device
7795 *
7796 * Restart the card from scratch, as if from a cold-boot.
7797 */
7798static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7799{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007800 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007801 pci_ers_result_t result;
7802 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007803
gouji-new9ce77662009-05-06 10:44:45 +00007804 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007805 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007806 result = PCI_ERS_RESULT_DISCONNECT;
7807 } else {
7808 pci_set_master(pdev);
7809 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007810 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007811
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007812 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007813
7814 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007815 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007816 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007817 }
Auke Kok9a799d72007-09-15 14:07:45 -07007818
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007819 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7820 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007821 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7822 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007823 /* non-fatal, continue */
7824 }
Auke Kok9a799d72007-09-15 14:07:45 -07007825
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007826 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007827}
7828
7829/**
7830 * ixgbe_io_resume - called when traffic can start flowing again.
7831 * @pdev: Pointer to PCI device
7832 *
7833 * This callback is called when the error recovery driver tells us that
7834 * its OK to resume normal operation.
7835 */
7836static void ixgbe_io_resume(struct pci_dev *pdev)
7837{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007838 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7839 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007840
7841 if (netif_running(netdev)) {
7842 if (ixgbe_up(adapter)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007843 e_info(probe, "ixgbe_up failed after reset\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007844 return;
7845 }
7846 }
7847
7848 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007849}
7850
7851static struct pci_error_handlers ixgbe_err_handler = {
7852 .error_detected = ixgbe_io_error_detected,
7853 .slot_reset = ixgbe_io_slot_reset,
7854 .resume = ixgbe_io_resume,
7855};
7856
7857static struct pci_driver ixgbe_driver = {
7858 .name = ixgbe_driver_name,
7859 .id_table = ixgbe_pci_tbl,
7860 .probe = ixgbe_probe,
7861 .remove = __devexit_p(ixgbe_remove),
7862#ifdef CONFIG_PM
7863 .suspend = ixgbe_suspend,
7864 .resume = ixgbe_resume,
7865#endif
7866 .shutdown = ixgbe_shutdown,
7867 .err_handler = &ixgbe_err_handler
7868};
7869
7870/**
7871 * ixgbe_init_module - Driver Registration Routine
7872 *
7873 * ixgbe_init_module is the first routine called when the driver is
7874 * loaded. All it does is register with the PCI subsystem.
7875 **/
7876static int __init ixgbe_init_module(void)
7877{
7878 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007879 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007880 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007881
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007882#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007883 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007884#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007885
Auke Kok9a799d72007-09-15 14:07:45 -07007886 ret = pci_register_driver(&ixgbe_driver);
7887 return ret;
7888}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007889
Auke Kok9a799d72007-09-15 14:07:45 -07007890module_init(ixgbe_init_module);
7891
7892/**
7893 * ixgbe_exit_module - Driver Exit Cleanup Routine
7894 *
7895 * ixgbe_exit_module is called just before the driver is removed
7896 * from memory.
7897 **/
7898static void __exit ixgbe_exit_module(void)
7899{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007900#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007901 dca_unregister_notify(&dca_notifier);
7902#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007903 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007904 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007905}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007906
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007907#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007908static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007909 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007910{
7911 int ret_val;
7912
7913 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007914 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007915
7916 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7917}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007918
Alexander Duyckb4533682009-03-31 21:32:42 +00007919#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007920
Auke Kok9a799d72007-09-15 14:07:45 -07007921module_exit(ixgbe_exit_module);
7922
7923/* ixgbe_main.c */