blob: bd1fd8f422dc0e9cd5cc49a049a014039b962baf [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>
Alexander Duyck897ab152011-05-27 05:31:47 +000038#include <linux/sctp.h>
Lucy Liu60127862009-07-22 14:07:33 +000039#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070042#include <net/checksum.h>
43#include <net/ip6_checksum.h>
44#include <linux/ethtool.h>
45#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040046#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000047#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070048
49#include "ixgbe.h"
50#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000051#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000052#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070053
54char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070055static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000056 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000057#define MAJ 3
Don Skidmorea38a1042011-05-20 03:05:14 +000058#define MIN 4
Don Skidmorec89c7112011-04-14 07:40:11 +000059#define BUILD 8
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000060#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000061 __stringify(BUILD) "-k"
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 Jr89111842009-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
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000775/**
776 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
777 * @adapter: driver private struct
778 **/
779static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
780{
781
782 /* Do the reset outside of interrupt context */
783 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
784 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
785 ixgbe_service_event_schedule(adapter);
786 }
787}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700788
Auke Kok9a799d72007-09-15 14:07:45 -0700789/**
790 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000791 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700792 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700793 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000794static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000795 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700796{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000797 struct ixgbe_adapter *adapter = q_vector->adapter;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800798 union ixgbe_adv_tx_desc *tx_desc, *eop_desc;
799 struct ixgbe_tx_buffer *tx_buffer_info;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700800 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyckb9537992010-11-16 19:26:58 -0800801 u16 i, eop, count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700802
803 i = tx_ring->next_to_clean;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800804 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000805 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800806
807 while ((eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)) &&
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +0000808 (count < tx_ring->work_limit)) {
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800809 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000810 rmb(); /* read buffer_info after eop_desc */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800811 for ( ; !cleaned; count++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000812 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -0700813 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700814
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800815 tx_desc->wb.status = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800816 cleaned = (i == eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800817
Auke Kok9a799d72007-09-15 14:07:45 -0700818 i++;
819 if (i == tx_ring->count)
820 i = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800821
822 if (cleaned && tx_buffer_info->skb) {
823 total_bytes += tx_buffer_info->bytecount;
824 total_packets += tx_buffer_info->gso_segs;
825 }
826
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800827 ixgbe_unmap_and_free_tx_resource(tx_ring,
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800828 tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -0700829 }
830
John Fastabendc84d3242010-11-16 19:27:12 -0800831 tx_ring->tx_stats.completed++;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800832 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000833 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800834 }
835
Auke Kok9a799d72007-09-15 14:07:45 -0700836 tx_ring->next_to_clean = i;
Alexander Duyckb9537992010-11-16 19:26:58 -0800837 tx_ring->total_bytes += total_bytes;
838 tx_ring->total_packets += total_packets;
839 u64_stats_update_begin(&tx_ring->syncp);
840 tx_ring->stats.packets += total_packets;
841 tx_ring->stats.bytes += total_bytes;
842 u64_stats_update_end(&tx_ring->syncp);
843
John Fastabendc84d3242010-11-16 19:27:12 -0800844 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800845 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800846 struct ixgbe_hw *hw = &adapter->hw;
847 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
848 e_err(drv, "Detected Tx Unit Hang\n"
849 " Tx Queue <%d>\n"
850 " TDH, TDT <%x>, <%x>\n"
851 " next_to_use <%x>\n"
852 " next_to_clean <%x>\n"
853 "tx_buffer_info[next_to_clean]\n"
854 " time_stamp <%lx>\n"
855 " jiffies <%lx>\n",
856 tx_ring->queue_index,
857 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
858 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
859 tx_ring->next_to_use, eop,
860 tx_ring->tx_buffer_info[eop].time_stamp, jiffies);
861
862 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
863
864 e_info(probe,
865 "tx hang %d detected on queue %d, resetting adapter\n",
866 adapter->tx_timeout_count + 1, tx_ring->queue_index);
867
868 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000869 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800870
871 /* the adapter is about to reset, no point in enabling stuff */
872 return true;
873 }
Auke Kok9a799d72007-09-15 14:07:45 -0700874
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800875#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800876 if (unlikely(count && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000877 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800878 /* Make sure that anybody stopping the queue after this
879 * sees the new next_to_clean.
880 */
881 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800882 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800883 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800884 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800885 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800886 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800887 }
Auke Kok9a799d72007-09-15 14:07:45 -0700888
Eric Dumazet807540b2010-09-23 05:40:09 +0000889 return count < tx_ring->work_limit;
Auke Kok9a799d72007-09-15 14:07:45 -0700890}
891
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400892#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800893static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800894 struct ixgbe_ring *rx_ring,
895 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800896{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800897 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800898 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800899 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800900
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800901 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
902 switch (hw->mac.type) {
903 case ixgbe_mac_82598EB:
904 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
905 rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
906 break;
907 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800908 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800909 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
910 rxctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
911 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
912 break;
913 default:
914 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800915 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800916 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
917 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
918 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800919 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800920}
921
922static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800923 struct ixgbe_ring *tx_ring,
924 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800925{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000926 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800927 u32 txctrl;
928 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800929
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800930 switch (hw->mac.type) {
931 case ixgbe_mac_82598EB:
932 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
933 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
934 txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
935 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800936 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
937 break;
938 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800939 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800940 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
941 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
942 txctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
943 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
944 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800945 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
946 break;
947 default:
948 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800949 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800950}
951
952static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
953{
954 struct ixgbe_adapter *adapter = q_vector->adapter;
955 int cpu = get_cpu();
956 long r_idx;
957 int i;
958
959 if (q_vector->cpu == cpu)
960 goto out_no_update;
961
Alexander Duyck08c88332011-06-11 01:45:03 +0000962 r_idx = find_first_bit(q_vector->tx.idx, adapter->num_tx_queues);
963 for (i = 0; i < q_vector->tx.count; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800964 ixgbe_update_tx_dca(adapter, adapter->tx_ring[r_idx], cpu);
Alexander Duyck08c88332011-06-11 01:45:03 +0000965 r_idx = find_next_bit(q_vector->tx.idx, adapter->num_tx_queues,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800966 r_idx + 1);
967 }
968
Alexander Duyck08c88332011-06-11 01:45:03 +0000969 r_idx = find_first_bit(q_vector->rx.idx, adapter->num_rx_queues);
970 for (i = 0; i < q_vector->rx.count; i++) {
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800971 ixgbe_update_rx_dca(adapter, adapter->rx_ring[r_idx], cpu);
Alexander Duyck08c88332011-06-11 01:45:03 +0000972 r_idx = find_next_bit(q_vector->rx.idx, adapter->num_rx_queues,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800973 r_idx + 1);
974 }
975
976 q_vector->cpu = cpu;
977out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800978 put_cpu();
979}
980
981static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
982{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800983 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800984 int i;
985
986 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
987 return;
988
Alexander Duycke35ec122009-05-21 13:07:12 +0000989 /* always use CB2 mode, difference is masked in the CB driver */
990 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
991
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800992 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
993 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
994 else
995 num_q_vectors = 1;
996
997 for (i = 0; i < num_q_vectors; i++) {
998 adapter->q_vector[i]->cpu = -1;
999 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001000 }
1001}
1002
1003static int __ixgbe_notify_dca(struct device *dev, void *data)
1004{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001005 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001006 unsigned long event = *(unsigned long *)data;
1007
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001008 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1009 return 0;
1010
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001011 switch (event) {
1012 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001013 /* if we're already enabled, don't do it again */
1014 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1015 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001016 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001017 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001018 ixgbe_setup_dca(adapter);
1019 break;
1020 }
1021 /* Fall Through since DCA is disabled. */
1022 case DCA_PROVIDER_REMOVE:
1023 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1024 dca_remove_requester(dev);
1025 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1026 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1027 }
1028 break;
1029 }
1030
Denis V. Lunev652f0932008-03-27 14:39:17 +03001031 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001032}
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001033#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001034
1035static inline void ixgbe_rx_hash(union ixgbe_adv_rx_desc *rx_desc,
1036 struct sk_buff *skb)
1037{
1038 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
1039}
1040
Auke Kok9a799d72007-09-15 14:07:45 -07001041/**
1042 * ixgbe_receive_skb - Send a completed packet up the stack
1043 * @adapter: board private structure
1044 * @skb: packet to send up
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001045 * @status: hardware indication of status of receive
1046 * @rx_ring: rx descriptor ring (for a specific queue) to setup
1047 * @rx_desc: rx descriptor
Auke Kok9a799d72007-09-15 14:07:45 -07001048 **/
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001049static void ixgbe_receive_skb(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001050 struct sk_buff *skb, u8 status,
1051 struct ixgbe_ring *ring,
1052 union ixgbe_adv_rx_desc *rx_desc)
Auke Kok9a799d72007-09-15 14:07:45 -07001053{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001054 struct ixgbe_adapter *adapter = q_vector->adapter;
1055 struct napi_struct *napi = &q_vector->napi;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001056 bool is_vlan = (status & IXGBE_RXD_STAT_VP);
1057 u16 tag = le16_to_cpu(rx_desc->wb.upper.vlan);
Auke Kok9a799d72007-09-15 14:07:45 -07001058
Jesse Grossf62bbb52010-10-20 13:56:10 +00001059 if (is_vlan && (tag & VLAN_VID_MASK))
1060 __vlan_hwaccel_put_tag(skb, tag);
1061
1062 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1063 napi_gro_receive(napi, skb);
1064 else
1065 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001066}
1067
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001068/**
1069 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1070 * @adapter: address of board private structure
1071 * @status_err: hardware indication of status of receive
1072 * @skb: skb currently being received and modified
1073 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001074static inline void ixgbe_rx_checksum(struct ixgbe_adapter *adapter,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001075 union ixgbe_adv_rx_desc *rx_desc,
1076 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001077{
Don Skidmore8bae1b22009-07-23 18:00:39 +00001078 u32 status_err = le32_to_cpu(rx_desc->wb.upper.status_error);
1079
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001080 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001081
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001082 /* Rx csum disabled */
1083 if (!(adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07001084 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001085
1086 /* if IP and error */
1087 if ((status_err & IXGBE_RXD_STAT_IPCS) &&
1088 (status_err & IXGBE_RXDADV_ERR_IPE)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001089 adapter->hw_csum_rx_error++;
1090 return;
1091 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001092
1093 if (!(status_err & IXGBE_RXD_STAT_L4CS))
1094 return;
1095
1096 if (status_err & IXGBE_RXDADV_ERR_TCPE) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001097 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1098
1099 /*
1100 * 82599 errata, UDP frames with a 0 checksum can be marked as
1101 * checksum errors.
1102 */
1103 if ((pkt_info & IXGBE_RXDADV_PKTTYPE_UDP) &&
1104 (adapter->hw.mac.type == ixgbe_mac_82599EB))
1105 return;
1106
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001107 adapter->hw_csum_rx_error++;
1108 return;
1109 }
1110
Auke Kok9a799d72007-09-15 14:07:45 -07001111 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001112 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001113}
1114
Alexander Duyck84ea2592010-11-16 19:26:49 -08001115static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001116{
1117 /*
1118 * Force memory writes to complete before letting h/w
1119 * know there are new descriptors to fetch. (Only
1120 * applicable for weak-ordered memory model archs,
1121 * such as IA-64).
1122 */
1123 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001124 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001125}
1126
Auke Kok9a799d72007-09-15 14:07:45 -07001127/**
1128 * ixgbe_alloc_rx_buffers - Replace used receive buffers; packet split
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001129 * @rx_ring: ring to place buffers on
1130 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001131 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001132void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001133{
Auke Kok9a799d72007-09-15 14:07:45 -07001134 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001135 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001136 struct sk_buff *skb;
1137 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001138
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001139 /* do nothing if no valid netdev defined */
1140 if (!rx_ring->netdev)
1141 return;
1142
Auke Kok9a799d72007-09-15 14:07:45 -07001143 while (cleaned_count--) {
Alexander Duyck31f05a22010-08-19 13:40:31 +00001144 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001145 bi = &rx_ring->rx_buffer_info[i];
1146 skb = bi->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001147
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001148 if (!skb) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001149 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001150 rx_ring->rx_buf_len);
Auke Kok9a799d72007-09-15 14:07:45 -07001151 if (!skb) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001152 rx_ring->rx_stats.alloc_rx_buff_failed++;
Auke Kok9a799d72007-09-15 14:07:45 -07001153 goto no_buffers;
1154 }
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001155 /* initialize queue mapping */
1156 skb_record_rx_queue(skb, rx_ring->queue_index);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001157 bi->skb = skb;
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001158 }
Auke Kok9a799d72007-09-15 14:07:45 -07001159
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001160 if (!bi->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001161 bi->dma = dma_map_single(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001162 skb->data,
Joe Perchese8e9f692010-09-07 21:34:53 +00001163 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00001164 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001165 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001166 rx_ring->rx_stats.alloc_rx_buff_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001167 bi->dma = 0;
1168 goto no_buffers;
1169 }
Auke Kok9a799d72007-09-15 14:07:45 -07001170 }
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001171
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001172 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001173 if (!bi->page) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001174 bi->page = netdev_alloc_page(rx_ring->netdev);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001175 if (!bi->page) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001176 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001177 goto no_buffers;
1178 }
1179 }
1180
1181 if (!bi->page_dma) {
1182 /* use a half page if we're re-using */
1183 bi->page_offset ^= PAGE_SIZE / 2;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001184 bi->page_dma = dma_map_page(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001185 bi->page,
1186 bi->page_offset,
1187 PAGE_SIZE / 2,
1188 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001189 if (dma_mapping_error(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001190 bi->page_dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001191 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001192 bi->page_dma = 0;
1193 goto no_buffers;
1194 }
1195 }
1196
1197 /* Refresh the desc even if buffer_addrs didn't change
1198 * because each write-back erases this info. */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001199 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1200 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001201 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001202 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Alexander Duyck84418e32010-08-19 13:40:54 +00001203 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001204 }
1205
1206 i++;
1207 if (i == rx_ring->count)
1208 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001209 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001210
Auke Kok9a799d72007-09-15 14:07:45 -07001211no_buffers:
1212 if (rx_ring->next_to_use != i) {
1213 rx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08001214 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001215 }
1216}
1217
Alexander Duyckc267fc12010-11-16 19:27:00 -08001218static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001219{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001220 /* HW will not DMA in data larger than the given buffer, even if it
1221 * parses the (NFS, of course) header to be larger. In that case, it
1222 * fills the header buffer and spills the rest into the page.
1223 */
1224 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1225 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1226 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1227 if (hlen > IXGBE_RX_HDR_SIZE)
1228 hlen = IXGBE_RX_HDR_SIZE;
1229 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001230}
1231
Alexander Duyckf8212f92009-04-27 22:42:37 +00001232/**
1233 * ixgbe_transform_rsc_queue - change rsc queue into a full packet
1234 * @skb: pointer to the last skb in the rsc queue
1235 *
1236 * This function changes a queue full of hw rsc buffers into a completed
1237 * packet. It uses the ->prev pointers to find the first packet and then
1238 * turns it into the frag list owner.
1239 **/
Alexander Duyckaa801752010-11-16 19:27:02 -08001240static inline struct sk_buff *ixgbe_transform_rsc_queue(struct sk_buff *skb)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001241{
1242 unsigned int frag_list_size = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001243 unsigned int skb_cnt = 1;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001244
1245 while (skb->prev) {
1246 struct sk_buff *prev = skb->prev;
1247 frag_list_size += skb->len;
1248 skb->prev = NULL;
1249 skb = prev;
Alexander Duyckaa801752010-11-16 19:27:02 -08001250 skb_cnt++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001251 }
1252
1253 skb_shinfo(skb)->frag_list = skb->next;
1254 skb->next = NULL;
1255 skb->len += frag_list_size;
1256 skb->data_len += frag_list_size;
1257 skb->truesize += frag_list_size;
Alexander Duyckaa801752010-11-16 19:27:02 -08001258 IXGBE_RSC_CB(skb)->skb_cnt = skb_cnt;
1259
Alexander Duyckf8212f92009-04-27 22:42:37 +00001260 return skb;
1261}
1262
Alexander Duyckaa801752010-11-16 19:27:02 -08001263static inline bool ixgbe_get_rsc_state(union ixgbe_adv_rx_desc *rx_desc)
1264{
1265 return !!(le32_to_cpu(rx_desc->wb.lower.lo_dword.data) &
1266 IXGBE_RXDADV_RSCCNT_MASK);
1267}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001268
Alexander Duyckc267fc12010-11-16 19:27:00 -08001269static void ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001270 struct ixgbe_ring *rx_ring,
1271 int *work_done, int work_to_do)
Auke Kok9a799d72007-09-15 14:07:45 -07001272{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001273 struct ixgbe_adapter *adapter = q_vector->adapter;
Auke Kok9a799d72007-09-15 14:07:45 -07001274 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
1275 struct ixgbe_rx_buffer *rx_buffer_info, *next_buffer;
1276 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001277 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001278 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001279#ifdef IXGBE_FCOE
1280 int ddp_bytes = 0;
1281#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001282 u32 staterr;
1283 u16 i;
1284 u16 cleaned_count = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001285 bool pkt_is_rsc = false;
Auke Kok9a799d72007-09-15 14:07:45 -07001286
1287 i = rx_ring->next_to_clean;
Alexander Duyck31f05a22010-08-19 13:40:31 +00001288 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001289 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kok9a799d72007-09-15 14:07:45 -07001290
1291 while (staterr & IXGBE_RXD_STAT_DD) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001292 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001293
Milton Miller3c945e52010-02-19 17:44:42 +00001294 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001295
Alexander Duyckc267fc12010-11-16 19:27:00 -08001296 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1297
Auke Kok9a799d72007-09-15 14:07:45 -07001298 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001299 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001300 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001301
Alexander Duyckc267fc12010-11-16 19:27:00 -08001302 if (ring_is_rsc_enabled(rx_ring))
Alexander Duyckaa801752010-11-16 19:27:02 -08001303 pkt_is_rsc = ixgbe_get_rsc_state(rx_desc);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001304
1305 /* if this is a skb from previous receive DMA will be 0 */
Alexander Duyck21fa4e62009-06-04 15:59:49 +00001306 if (rx_buffer_info->dma) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001307 u16 hlen;
Alexander Duyckaa801752010-11-16 19:27:02 -08001308 if (pkt_is_rsc &&
Alexander Duyckc267fc12010-11-16 19:27:00 -08001309 !(staterr & IXGBE_RXD_STAT_EOP) &&
1310 !skb->prev) {
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001311 /*
1312 * When HWRSC is enabled, delay unmapping
1313 * of the first packet. It carries the
1314 * header information, HW may still
1315 * access the header after the writeback.
1316 * Only unmap it when EOP is reached
1317 */
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001318 IXGBE_RSC_CB(skb)->delay_unmap = true;
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001319 IXGBE_RSC_CB(skb)->dma = rx_buffer_info->dma;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001320 } else {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001321 dma_unmap_single(rx_ring->dev,
Joe Perchese8e9f692010-09-07 21:34:53 +00001322 rx_buffer_info->dma,
1323 rx_ring->rx_buf_len,
1324 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001325 }
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00001326 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001327
1328 if (ring_is_ps_enabled(rx_ring)) {
1329 hlen = ixgbe_get_hlen(rx_desc);
1330 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1331 } else {
1332 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1333 }
1334
1335 skb_put(skb, hlen);
1336 } else {
1337 /* assume packet split since header is unmapped */
1338 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001339 }
1340
1341 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001342 dma_unmap_page(rx_ring->dev,
1343 rx_buffer_info->page_dma,
1344 PAGE_SIZE / 2,
1345 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001346 rx_buffer_info->page_dma = 0;
1347 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001348 rx_buffer_info->page,
1349 rx_buffer_info->page_offset,
1350 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001351
Alexander Duyckc267fc12010-11-16 19:27:00 -08001352 if ((page_count(rx_buffer_info->page) == 1) &&
1353 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001354 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001355 else
1356 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001357
1358 skb->len += upper_len;
1359 skb->data_len += upper_len;
1360 skb->truesize += upper_len;
1361 }
1362
1363 i++;
1364 if (i == rx_ring->count)
1365 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001366
Alexander Duyck31f05a22010-08-19 13:40:31 +00001367 next_rxd = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001368 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001369 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001370
Alexander Duyckaa801752010-11-16 19:27:02 -08001371 if (pkt_is_rsc) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001372 u32 nextp = (staterr & IXGBE_RXDADV_NEXTP_MASK) >>
1373 IXGBE_RXDADV_NEXTP_SHIFT;
1374 next_buffer = &rx_ring->rx_buffer_info[nextp];
Alexander Duyckf8212f92009-04-27 22:42:37 +00001375 } else {
1376 next_buffer = &rx_ring->rx_buffer_info[i];
1377 }
1378
Alexander Duyckc267fc12010-11-16 19:27:00 -08001379 if (!(staterr & IXGBE_RXD_STAT_EOP)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001380 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001381 rx_buffer_info->skb = next_buffer->skb;
1382 rx_buffer_info->dma = next_buffer->dma;
1383 next_buffer->skb = skb;
1384 next_buffer->dma = 0;
1385 } else {
1386 skb->next = next_buffer->skb;
1387 skb->next->prev = skb;
1388 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001389 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001390 goto next_desc;
1391 }
1392
Alexander Duyckaa801752010-11-16 19:27:02 -08001393 if (skb->prev) {
1394 skb = ixgbe_transform_rsc_queue(skb);
1395 /* if we got here without RSC the packet is invalid */
1396 if (!pkt_is_rsc) {
1397 __pskb_trim(skb, 0);
1398 rx_buffer_info->skb = skb;
1399 goto next_desc;
1400 }
1401 }
Alexander Duyckc267fc12010-11-16 19:27:00 -08001402
1403 if (ring_is_rsc_enabled(rx_ring)) {
1404 if (IXGBE_RSC_CB(skb)->delay_unmap) {
1405 dma_unmap_single(rx_ring->dev,
1406 IXGBE_RSC_CB(skb)->dma,
1407 rx_ring->rx_buf_len,
1408 DMA_FROM_DEVICE);
1409 IXGBE_RSC_CB(skb)->dma = 0;
1410 IXGBE_RSC_CB(skb)->delay_unmap = false;
1411 }
Alexander Duyckaa801752010-11-16 19:27:02 -08001412 }
1413 if (pkt_is_rsc) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001414 if (ring_is_ps_enabled(rx_ring))
1415 rx_ring->rx_stats.rsc_count +=
Alexander Duyckaa801752010-11-16 19:27:02 -08001416 skb_shinfo(skb)->nr_frags;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001417 else
Alexander Duyckaa801752010-11-16 19:27:02 -08001418 rx_ring->rx_stats.rsc_count +=
1419 IXGBE_RSC_CB(skb)->skb_cnt;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001420 rx_ring->rx_stats.rsc_flush++;
1421 }
1422
1423 /* ERR_MASK will only have valid bits if EOP set */
Auke Kok9a799d72007-09-15 14:07:45 -07001424 if (staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001425 /* trim packet back to size 0 and recycle it */
1426 __pskb_trim(skb, 0);
1427 rx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001428 goto next_desc;
1429 }
1430
Don Skidmore8bae1b22009-07-23 18:00:39 +00001431 ixgbe_rx_checksum(adapter, rx_desc, skb);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001432 if (adapter->netdev->features & NETIF_F_RXHASH)
1433 ixgbe_rx_hash(rx_desc, skb);
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001434
1435 /* probably a little skewed due to removing CRC */
1436 total_rx_bytes += skb->len;
1437 total_rx_packets++;
1438
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001439 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Yi Zou332d4a72009-05-13 13:11:53 +00001440#ifdef IXGBE_FCOE
1441 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Yi Zou3d8fd382009-06-08 14:38:44 +00001442 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
1443 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
1444 if (!ddp_bytes)
Yi Zou332d4a72009-05-13 13:11:53 +00001445 goto next_desc;
Yi Zou3d8fd382009-06-08 14:38:44 +00001446 }
Yi Zou332d4a72009-05-13 13:11:53 +00001447#endif /* IXGBE_FCOE */
Alexander Duyckfdaff1c2009-05-06 10:43:47 +00001448 ixgbe_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
Auke Kok9a799d72007-09-15 14:07:45 -07001449
1450next_desc:
1451 rx_desc->wb.upper.status_error = 0;
1452
Alexander Duyckc267fc12010-11-16 19:27:00 -08001453 (*work_done)++;
1454 if (*work_done >= work_to_do)
1455 break;
1456
Auke Kok9a799d72007-09-15 14:07:45 -07001457 /* return some buffers to hardware, one at a time is too slow */
1458 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001459 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001460 cleaned_count = 0;
1461 }
1462
1463 /* use prefetched values */
1464 rx_desc = next_rxd;
Auke Kok9a799d72007-09-15 14:07:45 -07001465 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001466 }
1467
Auke Kok9a799d72007-09-15 14:07:45 -07001468 rx_ring->next_to_clean = i;
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001469 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001470
1471 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001472 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001473
Yi Zou3d8fd382009-06-08 14:38:44 +00001474#ifdef IXGBE_FCOE
1475 /* include DDPed FCoE data */
1476 if (ddp_bytes > 0) {
1477 unsigned int mss;
1478
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001479 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001480 sizeof(struct fc_frame_header) -
1481 sizeof(struct fcoe_crc_eof);
1482 if (mss > 512)
1483 mss &= ~511;
1484 total_rx_bytes += ddp_bytes;
1485 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1486 }
1487#endif /* IXGBE_FCOE */
1488
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001489 rx_ring->total_packets += total_rx_packets;
1490 rx_ring->total_bytes += total_rx_bytes;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001491 u64_stats_update_begin(&rx_ring->syncp);
1492 rx_ring->stats.packets += total_rx_packets;
1493 rx_ring->stats.bytes += total_rx_bytes;
1494 u64_stats_update_end(&rx_ring->syncp);
Auke Kok9a799d72007-09-15 14:07:45 -07001495}
1496
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001497static int ixgbe_clean_rxonly(struct napi_struct *, int);
Auke Kok9a799d72007-09-15 14:07:45 -07001498/**
1499 * ixgbe_configure_msix - Configure MSI-X hardware
1500 * @adapter: board private structure
1501 *
1502 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1503 * interrupts.
1504 **/
1505static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1506{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001507 struct ixgbe_q_vector *q_vector;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001508 int i, q_vectors, v_idx, r_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001509 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001510
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001511 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1512
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001513 /*
1514 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001515 * corresponding register.
1516 */
1517 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00001518 q_vector = adapter->q_vector[v_idx];
Akinobu Mita984b3f52010-03-05 13:41:37 -08001519 /* XXX for_each_set_bit(...) */
Alexander Duyck08c88332011-06-11 01:45:03 +00001520 r_idx = find_first_bit(q_vector->rx.idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001521 adapter->num_rx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001522
Alexander Duyck08c88332011-06-11 01:45:03 +00001523 for (i = 0; i < q_vector->rx.count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001524 u8 reg_idx = adapter->rx_ring[r_idx]->reg_idx;
1525 ixgbe_set_ivar(adapter, 0, reg_idx, v_idx);
Alexander Duyck08c88332011-06-11 01:45:03 +00001526 r_idx = find_next_bit(q_vector->rx.idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001527 adapter->num_rx_queues,
1528 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001529 }
Alexander Duyck08c88332011-06-11 01:45:03 +00001530 r_idx = find_first_bit(q_vector->tx.idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001531 adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001532
Alexander Duyck08c88332011-06-11 01:45:03 +00001533 for (i = 0; i < q_vector->tx.count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001534 u8 reg_idx = adapter->tx_ring[r_idx]->reg_idx;
1535 ixgbe_set_ivar(adapter, 1, reg_idx, v_idx);
Alexander Duyck08c88332011-06-11 01:45:03 +00001536 r_idx = find_next_bit(q_vector->tx.idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001537 adapter->num_tx_queues,
1538 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001539 }
1540
Alexander Duyck08c88332011-06-11 01:45:03 +00001541 if (q_vector->tx.count && !q_vector->rx.count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001542 /* tx only */
1543 q_vector->eitr = adapter->tx_eitr_param;
Alexander Duyck08c88332011-06-11 01:45:03 +00001544 else if (q_vector->rx.count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001545 /* rx or mixed */
1546 q_vector->eitr = adapter->rx_eitr_param;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001547
Alexander Duyckfe49f042009-06-04 16:00:09 +00001548 ixgbe_write_eitr(q_vector);
Alexander Duyck03ecf912011-05-20 07:36:17 +00001549 /* If ATR is enabled, set interrupt affinity */
1550 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00001551 /*
1552 * Allocate the affinity_hint cpumask, assign the mask
1553 * for this vector, and set our affinity_hint for
1554 * this irq.
1555 */
1556 if (!alloc_cpumask_var(&q_vector->affinity_mask,
1557 GFP_KERNEL))
1558 return;
1559 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
1560 irq_set_affinity_hint(adapter->msix_entries[v_idx].vector,
1561 q_vector->affinity_mask);
1562 }
Auke Kok9a799d72007-09-15 14:07:45 -07001563 }
1564
Alexander Duyckbd508172010-11-16 19:27:03 -08001565 switch (adapter->hw.mac.type) {
1566 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001567 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001568 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001569 break;
1570 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001571 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001572 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001573 break;
1574
1575 default:
1576 break;
1577 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001578 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001579
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001580 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001581 mask = IXGBE_EIMS_ENABLE_MASK;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001582 if (adapter->num_vfs)
1583 mask &= ~(IXGBE_EIMS_OTHER |
1584 IXGBE_EIMS_MAILBOX |
1585 IXGBE_EIMS_LSC);
1586 else
1587 mask &= ~(IXGBE_EIMS_OTHER | IXGBE_EIMS_LSC);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001588 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001589}
1590
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001591enum latency_range {
1592 lowest_latency = 0,
1593 low_latency = 1,
1594 bulk_latency = 2,
1595 latency_invalid = 255
1596};
1597
1598/**
1599 * ixgbe_update_itr - update the dynamic ITR value based on statistics
1600 * @adapter: pointer to adapter
1601 * @eitr: eitr setting (ints per sec) to give last timeslice
1602 * @itr_setting: current throttle rate in ints/second
1603 * @packets: the number of packets during this measurement interval
1604 * @bytes: the number of bytes during this measurement interval
1605 *
1606 * Stores a new ITR value based on packets and byte
1607 * counts during the last interrupt. The advantage of per interrupt
1608 * computation is faster updates and more accurate ITR for the current
1609 * traffic pattern. Constants in this function were computed
1610 * based on theoretical maximum wire speed and thresholds were set based
1611 * on testing data as well as attempting to minimize response time
1612 * while increasing bulk throughput.
1613 * this functionality is controlled by the InterruptThrottleRate module
1614 * parameter (see ixgbe_param.c)
1615 **/
1616static u8 ixgbe_update_itr(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001617 u32 eitr, u8 itr_setting,
1618 int packets, int bytes)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001619{
1620 unsigned int retval = itr_setting;
1621 u32 timepassed_us;
1622 u64 bytes_perint;
1623
1624 if (packets == 0)
1625 goto update_itr_done;
1626
1627
1628 /* simple throttlerate management
1629 * 0-20MB/s lowest (100000 ints/s)
1630 * 20-100MB/s low (20000 ints/s)
1631 * 100-1249MB/s bulk (8000 ints/s)
1632 */
1633 /* what was last interrupt timeslice? */
1634 timepassed_us = 1000000/eitr;
1635 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1636
1637 switch (itr_setting) {
1638 case lowest_latency:
1639 if (bytes_perint > adapter->eitr_low)
1640 retval = low_latency;
1641 break;
1642 case low_latency:
1643 if (bytes_perint > adapter->eitr_high)
1644 retval = bulk_latency;
1645 else if (bytes_perint <= adapter->eitr_low)
1646 retval = lowest_latency;
1647 break;
1648 case bulk_latency:
1649 if (bytes_perint <= adapter->eitr_high)
1650 retval = low_latency;
1651 break;
1652 }
1653
1654update_itr_done:
1655 return retval;
1656}
1657
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001658/**
1659 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001660 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001661 *
1662 * This function is made to be called by ethtool and by the driver
1663 * when it needs to update EITR registers at runtime. Hardware
1664 * specific quirks/differences are taken care of here.
1665 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001666void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001667{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001668 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001669 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001670 int v_idx = q_vector->v_idx;
1671 u32 itr_reg = EITR_INTS_PER_SEC_TO_REG(q_vector->eitr);
1672
Alexander Duyckbd508172010-11-16 19:27:03 -08001673 switch (adapter->hw.mac.type) {
1674 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001675 /* must write high and low 16 bits to reset counter */
1676 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001677 break;
1678 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001679 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001680 /*
Don Skidmoreb93a2222010-11-16 19:27:17 -08001681 * 82599 and X540 can support a value of zero, so allow it for
Jesse Brandeburgf8d1dca2010-04-27 01:37:20 +00001682 * max interrupt rate, but there is an errata where it can
1683 * not be zero with RSC
1684 */
1685 if (itr_reg == 8 &&
1686 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
1687 itr_reg = 0;
1688
1689 /*
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001690 * set the WDIS bit to not clear the timer bits and cause an
1691 * immediate assertion of the interrupt
1692 */
1693 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001694 break;
1695 default:
1696 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001697 }
1698 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1699}
1700
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001701static void ixgbe_set_itr_msix(struct ixgbe_q_vector *q_vector)
1702{
1703 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck125601b2010-11-16 19:27:08 -08001704 int i, r_idx;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001705 u32 new_itr;
1706 u8 current_itr, ret_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001707
Alexander Duyck08c88332011-06-11 01:45:03 +00001708 r_idx = find_first_bit(q_vector->tx.idx, adapter->num_tx_queues);
1709 for (i = 0; i < q_vector->tx.count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001710 struct ixgbe_ring *tx_ring = adapter->tx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001711 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Alexander Duyck08c88332011-06-11 01:45:03 +00001712 q_vector->tx.itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001713 tx_ring->total_packets,
1714 tx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001715 /* if the result for this queue would decrease interrupt
1716 * rate for this vector then use that result */
Alexander Duyck08c88332011-06-11 01:45:03 +00001717 q_vector->tx.itr = ((q_vector->tx.itr > ret_itr) ?
1718 q_vector->tx.itr - 1 : ret_itr);
1719 r_idx = find_next_bit(q_vector->tx.idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001720 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001721 }
1722
Alexander Duyck08c88332011-06-11 01:45:03 +00001723 r_idx = find_first_bit(q_vector->rx.idx, adapter->num_rx_queues);
1724 for (i = 0; i < q_vector->rx.count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001725 struct ixgbe_ring *rx_ring = adapter->rx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001726 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Alexander Duyck08c88332011-06-11 01:45:03 +00001727 q_vector->rx.itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001728 rx_ring->total_packets,
1729 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001730 /* if the result for this queue would decrease interrupt
1731 * rate for this vector then use that result */
Alexander Duyck08c88332011-06-11 01:45:03 +00001732 q_vector->rx.itr = ((q_vector->rx.itr > ret_itr) ?
1733 q_vector->rx.itr - 1 : ret_itr);
1734 r_idx = find_next_bit(q_vector->rx.idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001735 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001736 }
1737
Alexander Duyck08c88332011-06-11 01:45:03 +00001738 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001739
1740 switch (current_itr) {
1741 /* counts and packets in update_itr are dependent on these numbers */
1742 case lowest_latency:
1743 new_itr = 100000;
1744 break;
1745 case low_latency:
1746 new_itr = 20000; /* aka hwitr = ~200 */
1747 break;
1748 case bulk_latency:
1749 default:
1750 new_itr = 8000;
1751 break;
1752 }
1753
1754 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001755 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08001756 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001757
1758 /* save the algorithm value here, not the smoothed one */
1759 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001760
1761 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001762 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001763}
1764
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001765/**
Alexander Duyckf0f97782011-04-22 04:08:09 +00001766 * ixgbe_check_overtemp_subtask - check for over tempurature
1767 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001768 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00001769static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001770{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001771 struct ixgbe_hw *hw = &adapter->hw;
1772 u32 eicr = adapter->interrupt_event;
1773
Alexander Duyckf0f97782011-04-22 04:08:09 +00001774 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00001775 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001776
Alexander Duyckf0f97782011-04-22 04:08:09 +00001777 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1778 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
1779 return;
1780
1781 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1782
Joe Perches7ca647b2010-09-07 21:35:40 +00001783 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00001784 case IXGBE_DEV_ID_82599_T3_LOM:
1785 /*
1786 * Since the warning interrupt is for both ports
1787 * we don't have to check if:
1788 * - This interrupt wasn't for our port.
1789 * - We may have missed the interrupt so always have to
1790 * check if we got a LSC
1791 */
1792 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
1793 !(eicr & IXGBE_EICR_LSC))
1794 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001795
Alexander Duyckf0f97782011-04-22 04:08:09 +00001796 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
1797 u32 autoneg;
1798 bool link_up = false;
1799
Joe Perches7ca647b2010-09-07 21:35:40 +00001800 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1801
Alexander Duyckf0f97782011-04-22 04:08:09 +00001802 if (link_up)
1803 return;
1804 }
1805
1806 /* Check if this is not due to overtemp */
1807 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
1808 return;
1809
1810 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00001811 default:
1812 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1813 return;
1814 break;
1815 }
1816 e_crit(drv,
1817 "Network adapter has been stopped because it has over heated. "
1818 "Restart the computer. If the problem persists, "
1819 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00001820
1821 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001822}
1823
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001824static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1825{
1826 struct ixgbe_hw *hw = &adapter->hw;
1827
1828 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1829 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001830 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001831 /* write to clear the interrupt */
1832 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1833 }
1834}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001835
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001836static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
1837{
1838 struct ixgbe_hw *hw = &adapter->hw;
1839
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001840 if (eicr & IXGBE_EICR_GPI_SDP2) {
1841 /* Clear the interrupt */
1842 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00001843 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1844 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
1845 ixgbe_service_event_schedule(adapter);
1846 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001847 }
1848
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001849 if (eicr & IXGBE_EICR_GPI_SDP1) {
1850 /* Clear the interrupt */
1851 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00001852 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1853 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
1854 ixgbe_service_event_schedule(adapter);
1855 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001856 }
1857}
1858
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001859static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
1860{
1861 struct ixgbe_hw *hw = &adapter->hw;
1862
1863 adapter->lsc_int++;
1864 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1865 adapter->link_check_timeout = jiffies;
1866 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1867 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00001868 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00001869 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001870 }
1871}
1872
Auke Kok9a799d72007-09-15 14:07:45 -07001873static irqreturn_t ixgbe_msix_lsc(int irq, void *data)
1874{
Alexander Duycka65151ba22011-05-27 05:31:32 +00001875 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07001876 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore54037502009-02-21 15:42:56 -08001877 u32 eicr;
1878
1879 /*
1880 * Workaround for Silicon errata. Use clear-by-write instead
1881 * of clear-by-read. Reading with EICS will return the
1882 * interrupt causes without clearing, which later be done
1883 * with the write to EICR.
1884 */
1885 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
1886 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07001887
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001888 if (eicr & IXGBE_EICR_LSC)
1889 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001890
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001891 if (eicr & IXGBE_EICR_MAILBOX)
1892 ixgbe_msg_task(adapter);
1893
Alexander Duyckbd508172010-11-16 19:27:03 -08001894 switch (hw->mac.type) {
1895 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001896 case ixgbe_mac_X540:
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001897 /* Handle Flow Director Full threshold interrupt */
1898 if (eicr & IXGBE_EICR_FLOW_DIR) {
Alexander Duyckd034acf2011-04-27 09:25:34 +00001899 int reinit_count = 0;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001900 int i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001901 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckd034acf2011-04-27 09:25:34 +00001902 struct ixgbe_ring *ring = adapter->tx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001903 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckd034acf2011-04-27 09:25:34 +00001904 &ring->state))
1905 reinit_count++;
1906 }
1907 if (reinit_count) {
1908 /* no more flow director interrupts until after init */
1909 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
1910 eicr &= ~IXGBE_EICR_FLOW_DIR;
1911 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
1912 ixgbe_service_event_schedule(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001913 }
1914 }
Alexander Duyckf0f97782011-04-22 04:08:09 +00001915 ixgbe_check_sfp_event(adapter, eicr);
1916 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1917 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
1918 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1919 adapter->interrupt_event = eicr;
1920 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1921 ixgbe_service_event_schedule(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001922 }
1923 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001924 break;
1925 default:
1926 break;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001927 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001928
1929 ixgbe_check_fan_failure(adapter, eicr);
1930
Alexander Duyck70864002011-04-27 09:13:56 +00001931 /* re-enable the original interrupt state, no lsc, no queues */
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001932 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck70864002011-04-27 09:13:56 +00001933 IXGBE_WRITE_REG(hw, IXGBE_EIMS, eicr &
1934 ~(IXGBE_EIMS_LSC | IXGBE_EIMS_RTX_QUEUE));
Auke Kok9a799d72007-09-15 14:07:45 -07001935
1936 return IRQ_HANDLED;
1937}
1938
Alexander Duyckfe49f042009-06-04 16:00:09 +00001939static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
1940 u64 qmask)
1941{
1942 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001943 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001944
Alexander Duyckbd508172010-11-16 19:27:03 -08001945 switch (hw->mac.type) {
1946 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001947 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001948 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
1949 break;
1950 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001951 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001952 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001953 if (mask)
1954 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001955 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001956 if (mask)
1957 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
1958 break;
1959 default:
1960 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001961 }
1962 /* skip the flush */
1963}
1964
1965static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001966 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00001967{
1968 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001969 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001970
Alexander Duyckbd508172010-11-16 19:27:03 -08001971 switch (hw->mac.type) {
1972 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001973 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001974 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
1975 break;
1976 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001977 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001978 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001979 if (mask)
1980 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001981 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001982 if (mask)
1983 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
1984 break;
1985 default:
1986 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001987 }
1988 /* skip the flush */
1989}
1990
Auke Kok9a799d72007-09-15 14:07:45 -07001991static irqreturn_t ixgbe_msix_clean_tx(int irq, void *data)
1992{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001993 struct ixgbe_q_vector *q_vector = data;
1994 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001995 struct ixgbe_ring *tx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001996 int i, r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07001997
Alexander Duyck08c88332011-06-11 01:45:03 +00001998 if (!q_vector->tx.count)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001999 return IRQ_HANDLED;
2000
Alexander Duyck08c88332011-06-11 01:45:03 +00002001 r_idx = find_first_bit(q_vector->tx.idx, adapter->num_tx_queues);
2002 for (i = 0; i < q_vector->tx.count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002003 tx_ring = adapter->tx_ring[r_idx];
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002004 tx_ring->total_bytes = 0;
2005 tx_ring->total_packets = 0;
Alexander Duyck08c88332011-06-11 01:45:03 +00002006 r_idx = find_next_bit(q_vector->tx.idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002007 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002008 }
2009
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002010 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002011 napi_schedule(&q_vector->napi);
2012
Auke Kok9a799d72007-09-15 14:07:45 -07002013 return IRQ_HANDLED;
2014}
2015
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002016/**
2017 * ixgbe_msix_clean_rx - single unshared vector rx clean (all queues)
2018 * @irq: unused
2019 * @data: pointer to our q_vector struct for this interrupt vector
2020 **/
Auke Kok9a799d72007-09-15 14:07:45 -07002021static irqreturn_t ixgbe_msix_clean_rx(int irq, void *data)
2022{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002023 struct ixgbe_q_vector *q_vector = data;
2024 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002025 struct ixgbe_ring *rx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002026 int r_idx;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002027 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07002028
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002029#ifdef CONFIG_IXGBE_DCA
2030 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2031 ixgbe_update_dca(q_vector);
2032#endif
2033
Alexander Duyck08c88332011-06-11 01:45:03 +00002034 r_idx = find_first_bit(q_vector->rx.idx, adapter->num_rx_queues);
2035 for (i = 0; i < q_vector->rx.count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002036 rx_ring = adapter->rx_ring[r_idx];
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002037 rx_ring->total_bytes = 0;
2038 rx_ring->total_packets = 0;
Alexander Duyck08c88332011-06-11 01:45:03 +00002039 r_idx = find_next_bit(q_vector->rx.idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002040 r_idx + 1);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002041 }
2042
Alexander Duyck08c88332011-06-11 01:45:03 +00002043 if (!q_vector->rx.count)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002044 return IRQ_HANDLED;
2045
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002046 /* EIAM disabled interrupts (on this vector) for us */
Ben Hutchings288379f2009-01-19 16:43:59 -08002047 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002048
Auke Kok9a799d72007-09-15 14:07:45 -07002049 return IRQ_HANDLED;
2050}
2051
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002052static irqreturn_t ixgbe_msix_clean_many(int irq, void *data)
2053{
Alexander Duyck91281fd2009-06-04 16:00:27 +00002054 struct ixgbe_q_vector *q_vector = data;
2055 struct ixgbe_adapter *adapter = q_vector->adapter;
2056 struct ixgbe_ring *ring;
2057 int r_idx;
2058 int i;
2059
Alexander Duyck08c88332011-06-11 01:45:03 +00002060 if (!q_vector->tx.count && !q_vector->rx.count)
Alexander Duyck91281fd2009-06-04 16:00:27 +00002061 return IRQ_HANDLED;
2062
Alexander Duyck08c88332011-06-11 01:45:03 +00002063 r_idx = find_first_bit(q_vector->tx.idx, adapter->num_tx_queues);
2064 for (i = 0; i < q_vector->tx.count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002065 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002066 ring->total_bytes = 0;
2067 ring->total_packets = 0;
Alexander Duyck08c88332011-06-11 01:45:03 +00002068 r_idx = find_next_bit(q_vector->tx.idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002069 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002070 }
2071
Alexander Duyck08c88332011-06-11 01:45:03 +00002072 r_idx = find_first_bit(q_vector->rx.idx, adapter->num_rx_queues);
2073 for (i = 0; i < q_vector->rx.count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002074 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002075 ring->total_bytes = 0;
2076 ring->total_packets = 0;
Alexander Duyck08c88332011-06-11 01:45:03 +00002077 r_idx = find_next_bit(q_vector->rx.idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002078 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002079 }
2080
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002081 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002082 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002083
2084 return IRQ_HANDLED;
2085}
2086
2087/**
2088 * ixgbe_clean_rxonly - msix (aka one shot) rx clean routine
2089 * @napi: napi struct with our devices info in it
2090 * @budget: amount of work driver is allowed to do this pass, in packets
2091 *
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002092 * This function is optimized for cleaning one queue only on a single
2093 * q_vector!!!
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002094 **/
Auke Kok9a799d72007-09-15 14:07:45 -07002095static int ixgbe_clean_rxonly(struct napi_struct *napi, int budget)
2096{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002097 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002098 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002099 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002100 struct ixgbe_ring *rx_ring = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07002101 int work_done = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002102 long r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07002103
Jeff Garzik5dd2d332008-10-16 05:09:31 -04002104#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08002105 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002106 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08002107#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002108
Alexander Duyck08c88332011-06-11 01:45:03 +00002109 r_idx = find_first_bit(q_vector->rx.idx, adapter->num_rx_queues);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002110 rx_ring = adapter->rx_ring[r_idx];
2111
Herbert Xu78b6f4c2009-01-18 21:49:45 -08002112 ixgbe_clean_rx_irq(q_vector, rx_ring, &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07002113
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002114 /* If all Rx work done, exit the polling mode */
2115 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002116 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002117 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002118 ixgbe_set_itr_msix(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002119 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002120 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002121 ((u64)1 << q_vector->v_idx));
Auke Kok9a799d72007-09-15 14:07:45 -07002122 }
2123
2124 return work_done;
2125}
2126
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002127/**
Alexander Duyck91281fd2009-06-04 16:00:27 +00002128 * ixgbe_clean_rxtx_many - msix (aka one shot) rx clean routine
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002129 * @napi: napi struct with our devices info in it
2130 * @budget: amount of work driver is allowed to do this pass, in packets
2131 *
2132 * This function will clean more than one rx queue associated with a
2133 * q_vector.
2134 **/
Alexander Duyck91281fd2009-06-04 16:00:27 +00002135static int ixgbe_clean_rxtx_many(struct napi_struct *napi, int budget)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002136{
2137 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002138 container_of(napi, struct ixgbe_q_vector, napi);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002139 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002140 struct ixgbe_ring *ring = NULL;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002141 int work_done = 0, i;
2142 long r_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002143 bool tx_clean_complete = true;
2144
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002145#ifdef CONFIG_IXGBE_DCA
2146 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2147 ixgbe_update_dca(q_vector);
2148#endif
2149
Alexander Duyck08c88332011-06-11 01:45:03 +00002150 r_idx = find_first_bit(q_vector->tx.idx, adapter->num_tx_queues);
2151 for (i = 0; i < q_vector->tx.count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002152 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002153 tx_clean_complete &= ixgbe_clean_tx_irq(q_vector, ring);
Alexander Duyck08c88332011-06-11 01:45:03 +00002154 r_idx = find_next_bit(q_vector->tx.idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002155 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002156 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002157
2158 /* attempt to distribute budget to each queue fairly, but don't allow
2159 * the budget to go below 1 because we'll exit polling */
Alexander Duyck08c88332011-06-11 01:45:03 +00002160 budget /= (q_vector->rx.count ?: 1);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002161 budget = max(budget, 1);
Alexander Duyck08c88332011-06-11 01:45:03 +00002162 r_idx = find_first_bit(q_vector->rx.idx, adapter->num_rx_queues);
2163 for (i = 0; i < q_vector->rx.count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002164 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002165 ixgbe_clean_rx_irq(q_vector, ring, &work_done, budget);
Alexander Duyck08c88332011-06-11 01:45:03 +00002166 r_idx = find_next_bit(q_vector->rx.idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002167 r_idx + 1);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002168 }
2169
Alexander Duyck08c88332011-06-11 01:45:03 +00002170 r_idx = find_first_bit(q_vector->rx.idx, adapter->num_rx_queues);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002171 ring = adapter->rx_ring[r_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002172 /* If all Rx work done, exit the polling mode */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07002173 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002174 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002175 if (adapter->rx_itr_setting & 1)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002176 ixgbe_set_itr_msix(q_vector);
2177 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002178 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002179 ((u64)1 << q_vector->v_idx));
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002180 return 0;
2181 }
2182
2183 return work_done;
2184}
Alexander Duyck91281fd2009-06-04 16:00:27 +00002185
2186/**
2187 * ixgbe_clean_txonly - msix (aka one shot) tx clean routine
2188 * @napi: napi struct with our devices info in it
2189 * @budget: amount of work driver is allowed to do this pass, in packets
2190 *
2191 * This function is optimized for cleaning one queue only on a single
2192 * q_vector!!!
2193 **/
2194static int ixgbe_clean_txonly(struct napi_struct *napi, int budget)
2195{
2196 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002197 container_of(napi, struct ixgbe_q_vector, napi);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002198 struct ixgbe_adapter *adapter = q_vector->adapter;
2199 struct ixgbe_ring *tx_ring = NULL;
2200 int work_done = 0;
2201 long r_idx;
2202
Alexander Duyck91281fd2009-06-04 16:00:27 +00002203#ifdef CONFIG_IXGBE_DCA
2204 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002205 ixgbe_update_dca(q_vector);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002206#endif
2207
Alexander Duyck08c88332011-06-11 01:45:03 +00002208 r_idx = find_first_bit(q_vector->tx.idx, adapter->num_tx_queues);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002209 tx_ring = adapter->tx_ring[r_idx];
2210
Alexander Duyck91281fd2009-06-04 16:00:27 +00002211 if (!ixgbe_clean_tx_irq(q_vector, tx_ring))
2212 work_done = budget;
2213
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002214 /* If all Tx work done, exit the polling mode */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002215 if (work_done < budget) {
2216 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002217 if (adapter->tx_itr_setting & 1)
Alexander Duyck91281fd2009-06-04 16:00:27 +00002218 ixgbe_set_itr_msix(q_vector);
2219 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perchese8e9f692010-09-07 21:34:53 +00002220 ixgbe_irq_enable_queues(adapter,
2221 ((u64)1 << q_vector->v_idx));
Alexander Duyck91281fd2009-06-04 16:00:27 +00002222 }
2223
2224 return work_done;
2225}
2226
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002227static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002228 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07002229{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002230 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002231 struct ixgbe_ring *rx_ring = a->rx_ring[r_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002232
Alexander Duyck08c88332011-06-11 01:45:03 +00002233 set_bit(r_idx, q_vector->rx.idx);
2234 q_vector->rx.count++;
Alexander Duyck22745432010-11-16 19:27:10 -08002235 rx_ring->q_vector = q_vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002236}
Auke Kok9a799d72007-09-15 14:07:45 -07002237
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002238static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002239 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002240{
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 *tx_ring = a->tx_ring[t_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002243
Alexander Duyck08c88332011-06-11 01:45:03 +00002244 set_bit(t_idx, q_vector->tx.idx);
2245 q_vector->tx.count++;
Alexander Duyck22745432010-11-16 19:27:10 -08002246 tx_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 -08002249/**
2250 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2251 * @adapter: board private structure to initialize
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002252 *
2253 * This function maps descriptor rings to the queue-specific vectors
2254 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2255 * one vector per ring/queue, but on a constrained vector budget, we
2256 * group the rings as "efficiently" as possible. You would add new
2257 * mapping configurations in here.
2258 **/
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002259static int ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002260{
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002261 int q_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002262 int v_start = 0;
2263 int rxr_idx = 0, txr_idx = 0;
2264 int rxr_remaining = adapter->num_rx_queues;
2265 int txr_remaining = adapter->num_tx_queues;
2266 int i, j;
2267 int rqpv, tqpv;
2268 int err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002269
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002270 /* No mapping required if MSI-X is disabled. */
2271 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07002272 goto out;
2273
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002274 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2275
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002276 /*
2277 * The ideal configuration...
2278 * We have enough vectors to map one per queue.
2279 */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002280 if (q_vectors == adapter->num_rx_queues + adapter->num_tx_queues) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002281 for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
2282 map_vector_to_rxq(adapter, v_start, rxr_idx);
2283
2284 for (; txr_idx < txr_remaining; v_start++, txr_idx++)
2285 map_vector_to_txq(adapter, v_start, txr_idx);
2286
2287 goto out;
2288 }
2289
2290 /*
2291 * If we don't have enough vectors for a 1-to-1
2292 * mapping, we'll have to group them so there are
2293 * multiple queues per vector.
2294 */
2295 /* Re-adjusting *qpv takes care of the remainder. */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002296 for (i = v_start; i < q_vectors; i++) {
2297 rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002298 for (j = 0; j < rqpv; j++) {
2299 map_vector_to_rxq(adapter, i, rxr_idx);
2300 rxr_idx++;
2301 rxr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002302 }
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002303 tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002304 for (j = 0; j < tqpv; j++) {
2305 map_vector_to_txq(adapter, i, txr_idx);
2306 txr_idx++;
2307 txr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002308 }
Auke Kok9a799d72007-09-15 14:07:45 -07002309 }
Auke Kok9a799d72007-09-15 14:07:45 -07002310out:
Auke Kok9a799d72007-09-15 14:07:45 -07002311 return err;
2312}
2313
2314/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002315 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2316 * @adapter: board private structure
2317 *
2318 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2319 * interrupts from the kernel.
2320 **/
2321static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2322{
2323 struct net_device *netdev = adapter->netdev;
2324 irqreturn_t (*handler)(int, void *);
2325 int i, vector, q_vectors, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002326 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002327
2328 /* Decrement for Other and TCP Timer vectors */
2329 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2330
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002331 err = ixgbe_map_rings_to_vectors(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002332 if (err)
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002333 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002334
Alexander Duyck08c88332011-06-11 01:45:03 +00002335#define SET_HANDLER(_v) (((_v)->rx.count && (_v)->tx.count) \
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002336 ? &ixgbe_msix_clean_many : \
Alexander Duyck08c88332011-06-11 01:45:03 +00002337 (_v)->rx.count ? &ixgbe_msix_clean_rx : \
2338 (_v)->tx.count ? &ixgbe_msix_clean_tx : \
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002339 NULL)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002340 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002341 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2342 handler = SET_HANDLER(q_vector);
Robert Olssoncb13fc22008-11-25 16:43:52 -08002343
Joe Perchese8e9f692010-09-07 21:34:53 +00002344 if (handler == &ixgbe_msix_clean_rx) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002345 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2346 "%s-%s-%d", netdev->name, "rx", ri++);
Joe Perchese8e9f692010-09-07 21:34:53 +00002347 } else if (handler == &ixgbe_msix_clean_tx) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002348 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2349 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002350 } else if (handler == &ixgbe_msix_clean_many) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002351 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2352 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002353 ti++;
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002354 } else {
2355 /* skip this unused q_vector */
2356 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002357 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002358 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002359 handler, 0, q_vector->name,
2360 q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002361 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002362 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002363 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002364 goto free_queue_irqs;
2365 }
2366 }
2367
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002368 sprintf(adapter->lsc_int_name, "%s:lsc", netdev->name);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002369 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002370 ixgbe_msix_lsc, 0, adapter->lsc_int_name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002371 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002372 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002373 goto free_queue_irqs;
2374 }
2375
2376 return 0;
2377
2378free_queue_irqs:
2379 for (i = vector - 1; i >= 0; i--)
2380 free_irq(adapter->msix_entries[--vector].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002381 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002382 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2383 pci_disable_msix(adapter->pdev);
2384 kfree(adapter->msix_entries);
2385 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002386 return err;
2387}
2388
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002389static void ixgbe_set_itr(struct ixgbe_adapter *adapter)
2390{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002391 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002392 struct ixgbe_ring *rx_ring = adapter->rx_ring[0];
2393 struct ixgbe_ring *tx_ring = adapter->tx_ring[0];
Alexander Duyck125601b2010-11-16 19:27:08 -08002394 u32 new_itr = q_vector->eitr;
2395 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002396
Alexander Duyck08c88332011-06-11 01:45:03 +00002397 q_vector->tx.itr = ixgbe_update_itr(adapter, new_itr,
2398 q_vector->tx.itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002399 tx_ring->total_packets,
2400 tx_ring->total_bytes);
Alexander Duyck08c88332011-06-11 01:45:03 +00002401 q_vector->rx.itr = ixgbe_update_itr(adapter, new_itr,
2402 q_vector->rx.itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002403 rx_ring->total_packets,
2404 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002405
Alexander Duyck08c88332011-06-11 01:45:03 +00002406 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002407
2408 switch (current_itr) {
2409 /* counts and packets in update_itr are dependent on these numbers */
2410 case lowest_latency:
2411 new_itr = 100000;
2412 break;
2413 case low_latency:
2414 new_itr = 20000; /* aka hwitr = ~200 */
2415 break;
2416 case bulk_latency:
2417 new_itr = 8000;
2418 break;
2419 default:
2420 break;
2421 }
2422
2423 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002424 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08002425 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002426
Alexander Duyck125601b2010-11-16 19:27:08 -08002427 /* save the algorithm value here */
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002428 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002429
2430 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002431 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002432}
2433
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002434/**
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002435 * ixgbe_irq_enable - Enable default interrupt generation settings
2436 * @adapter: board private structure
2437 **/
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002438static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2439 bool flush)
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002440{
2441 u32 mask;
Nelson, Shannon835462f2009-04-27 22:42:54 +00002442
2443 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002444 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
2445 mask |= IXGBE_EIMS_GPI_SDP0;
David S. Miller6ab33d52008-11-20 16:44:00 -08002446 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2447 mask |= IXGBE_EIMS_GPI_SDP1;
Alexander Duyckbd508172010-11-16 19:27:03 -08002448 switch (adapter->hw.mac.type) {
2449 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002450 case ixgbe_mac_X540:
Jesse Brandeburg2a41ff82009-03-13 22:14:30 +00002451 mask |= IXGBE_EIMS_ECC;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002452 mask |= IXGBE_EIMS_GPI_SDP1;
2453 mask |= IXGBE_EIMS_GPI_SDP2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002454 if (adapter->num_vfs)
2455 mask |= IXGBE_EIMS_MAILBOX;
Alexander Duyckbd508172010-11-16 19:27:03 -08002456 break;
2457 default:
2458 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002459 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00002460 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00002461 mask |= IXGBE_EIMS_FLOW_DIR;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002462
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002463 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002464 if (queues)
2465 ixgbe_irq_enable_queues(adapter, ~0);
2466 if (flush)
2467 IXGBE_WRITE_FLUSH(&adapter->hw);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002468
2469 if (adapter->num_vfs > 32) {
2470 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2471 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2472 }
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002473}
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002474
2475/**
2476 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002477 * @irq: interrupt number
2478 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002479 **/
2480static irqreturn_t ixgbe_intr(int irq, void *data)
2481{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002482 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002483 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002484 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002485 u32 eicr;
2486
Don Skidmore54037502009-02-21 15:42:56 -08002487 /*
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002488 * Workaround for silicon errata on 82598. Mask the interrupts
Don Skidmore54037502009-02-21 15:42:56 -08002489 * before the read of EICR.
2490 */
2491 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2492
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002493 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
2494 * therefore no explict interrupt disable is necessary */
2495 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002496 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002497 /*
2498 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002499 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002500 * have disabled interrupts due to EIAM
2501 * finish the workaround of silicon errata on 82598. Unmask
2502 * the interrupt that we masked before the EICR read.
2503 */
2504 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2505 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002506 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002507 }
Auke Kok9a799d72007-09-15 14:07:45 -07002508
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002509 if (eicr & IXGBE_EICR_LSC)
2510 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002511
Alexander Duyckbd508172010-11-16 19:27:03 -08002512 switch (hw->mac.type) {
2513 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002514 ixgbe_check_sfp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002515 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2516 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002517 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2518 adapter->interrupt_event = eicr;
2519 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2520 ixgbe_service_event_schedule(adapter);
2521 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002522 }
2523 break;
2524 default:
2525 break;
2526 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002527
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002528 ixgbe_check_fan_failure(adapter, eicr);
2529
Alexander Duyck7a921c92009-05-06 10:43:28 +00002530 if (napi_schedule_prep(&(q_vector->napi))) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002531 adapter->tx_ring[0]->total_packets = 0;
2532 adapter->tx_ring[0]->total_bytes = 0;
2533 adapter->rx_ring[0]->total_packets = 0;
2534 adapter->rx_ring[0]->total_bytes = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002535 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002536 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002537 }
2538
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002539 /*
2540 * re-enable link(maybe) and non-queue interrupts, no flush.
2541 * ixgbe_poll will re-enable the queue interrupts
2542 */
2543
2544 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2545 ixgbe_irq_enable(adapter, false, false);
2546
Auke Kok9a799d72007-09-15 14:07:45 -07002547 return IRQ_HANDLED;
2548}
2549
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002550static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2551{
2552 int i, q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2553
2554 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002555 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyck08c88332011-06-11 01:45:03 +00002556 bitmap_zero(q_vector->rx.idx, MAX_RX_QUEUES);
2557 bitmap_zero(q_vector->tx.idx, MAX_TX_QUEUES);
2558 q_vector->rx.count = 0;
2559 q_vector->tx.count = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002560 }
2561}
2562
Auke Kok9a799d72007-09-15 14:07:45 -07002563/**
2564 * ixgbe_request_irq - initialize interrupts
2565 * @adapter: board private structure
2566 *
2567 * Attempts to configure interrupts using the best available
2568 * capabilities of the hardware and kernel.
2569 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002570static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002571{
2572 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002573 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002574
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002575 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2576 err = ixgbe_request_msix_irqs(adapter);
2577 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002578 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002579 netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002580 } else {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002581 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002582 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002583 }
2584
Auke Kok9a799d72007-09-15 14:07:45 -07002585 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002586 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002587
Auke Kok9a799d72007-09-15 14:07:45 -07002588 return err;
2589}
2590
2591static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2592{
Auke Kok9a799d72007-09-15 14:07:45 -07002593 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002594 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002595
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002596 q_vectors = adapter->num_msix_vectors;
2597
2598 i = q_vectors - 1;
Alexander Duycka65151ba22011-05-27 05:31:32 +00002599 free_irq(adapter->msix_entries[i].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002600
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002601 i--;
2602 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002603 /* free only the irqs that were actually requested */
Alexander Duyck08c88332011-06-11 01:45:03 +00002604 if (!adapter->q_vector[i]->rx.count &&
2605 !adapter->q_vector[i]->tx.count)
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002606 continue;
2607
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002608 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002609 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002610 }
2611
2612 ixgbe_reset_q_vectors(adapter);
2613 } else {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002614 free_irq(adapter->pdev->irq, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002615 }
2616}
2617
2618/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002619 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2620 * @adapter: board private structure
2621 **/
2622static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2623{
Alexander Duyckbd508172010-11-16 19:27:03 -08002624 switch (adapter->hw.mac.type) {
2625 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002626 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002627 break;
2628 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002629 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002630 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2631 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002632 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002633 if (adapter->num_vfs > 32)
2634 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002635 break;
2636 default:
2637 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002638 }
2639 IXGBE_WRITE_FLUSH(&adapter->hw);
2640 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2641 int i;
2642 for (i = 0; i < adapter->num_msix_vectors; i++)
2643 synchronize_irq(adapter->msix_entries[i].vector);
2644 } else {
2645 synchronize_irq(adapter->pdev->irq);
2646 }
2647}
2648
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002649/**
Auke Kok9a799d72007-09-15 14:07:45 -07002650 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2651 *
2652 **/
2653static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2654{
Auke Kok9a799d72007-09-15 14:07:45 -07002655 struct ixgbe_hw *hw = &adapter->hw;
2656
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002657 IXGBE_WRITE_REG(hw, IXGBE_EITR(0),
Joe Perchese8e9f692010-09-07 21:34:53 +00002658 EITR_INTS_PER_SEC_TO_REG(adapter->rx_eitr_param));
Auke Kok9a799d72007-09-15 14:07:45 -07002659
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002660 ixgbe_set_ivar(adapter, 0, 0, 0);
2661 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002662
2663 map_vector_to_rxq(adapter, 0, 0);
2664 map_vector_to_txq(adapter, 0, 0);
2665
Emil Tantilov396e7992010-07-01 20:05:12 +00002666 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002667}
2668
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002669/**
2670 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2671 * @adapter: board private structure
2672 * @ring: structure containing ring specific data
2673 *
2674 * Configure the Tx descriptor ring after a reset.
2675 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002676void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2677 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002678{
2679 struct ixgbe_hw *hw = &adapter->hw;
2680 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002681 int wait_loop = 10;
2682 u32 txdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002683 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002684
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002685 /* disable queue to avoid issues while updating state */
2686 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2687 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx),
2688 txdctl & ~IXGBE_TXDCTL_ENABLE);
2689 IXGBE_WRITE_FLUSH(hw);
2690
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002691 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002692 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002693 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2694 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2695 ring->count * sizeof(union ixgbe_adv_tx_desc));
2696 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2697 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002698 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002699
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002700 /* configure fetching thresholds */
2701 if (adapter->rx_itr_setting == 0) {
2702 /* cannot set wthresh when itr==0 */
2703 txdctl &= ~0x007F0000;
2704 } else {
2705 /* enable WTHRESH=8 descriptors, to encourage burst writeback */
2706 txdctl |= (8 << 16);
2707 }
2708 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
2709 /* PThresh workaround for Tx hang with DFP enabled. */
2710 txdctl |= 32;
2711 }
2712
2713 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002714 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2715 adapter->atr_sample_rate) {
2716 ring->atr_sample_rate = adapter->atr_sample_rate;
2717 ring->atr_count = 0;
2718 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2719 } else {
2720 ring->atr_sample_rate = 0;
2721 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002722
John Fastabendc84d3242010-11-16 19:27:12 -08002723 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2724
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002725 /* enable queue */
2726 txdctl |= IXGBE_TXDCTL_ENABLE;
2727 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2728
2729 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2730 if (hw->mac.type == ixgbe_mac_82598EB &&
2731 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2732 return;
2733
2734 /* poll to verify queue is enabled */
2735 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002736 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002737 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2738 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2739 if (!wait_loop)
2740 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002741}
2742
Alexander Duyck120ff942010-08-19 13:34:50 +00002743static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2744{
2745 struct ixgbe_hw *hw = &adapter->hw;
2746 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002747 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002748 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002749
2750 if (hw->mac.type == ixgbe_mac_82598EB)
2751 return;
2752
2753 /* disable the arbiter while setting MTQC */
2754 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2755 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2756 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2757
2758 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002759 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002760 case (IXGBE_FLAG_SRIOV_ENABLED):
2761 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2762 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2763 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002764 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002765 if (!tcs)
2766 reg = IXGBE_MTQC_64Q_1PB;
2767 else if (tcs <= 4)
2768 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2769 else
2770 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2771
2772 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2773
2774 /* Enable Security TX Buffer IFG for multiple pb */
2775 if (tcs) {
2776 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2777 reg |= IXGBE_SECTX_DCB;
2778 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2779 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002780 break;
2781 }
2782
2783 /* re-enable the arbiter */
2784 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2785 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2786}
2787
Auke Kok9a799d72007-09-15 14:07:45 -07002788/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002789 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002790 * @adapter: board private structure
2791 *
2792 * Configure the Tx unit of the MAC after a reset.
2793 **/
2794static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2795{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002796 struct ixgbe_hw *hw = &adapter->hw;
2797 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002798 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002799
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002800 ixgbe_setup_mtqc(adapter);
2801
2802 if (hw->mac.type != ixgbe_mac_82598EB) {
2803 /* DMATXCTL.EN must be before Tx queues are enabled */
2804 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2805 dmatxctl |= IXGBE_DMATXCTL_TE;
2806 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2807 }
2808
Auke Kok9a799d72007-09-15 14:07:45 -07002809 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002810 for (i = 0; i < adapter->num_tx_queues; i++)
2811 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002812}
2813
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002814#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002815
Yi Zoua6616b42009-08-06 13:05:23 +00002816static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002817 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002818{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002819 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002820 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002821
Alexander Duyckbd508172010-11-16 19:27:03 -08002822 switch (adapter->hw.mac.type) {
2823 case ixgbe_mac_82598EB: {
2824 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2825 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002826 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002827 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002828 break;
2829 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002830 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002831 default:
2832 break;
2833 }
2834
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002835 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002836
2837 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2838 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002839 if (adapter->num_vfs)
2840 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002841
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002842 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2843 IXGBE_SRRCTL_BSIZEHDR_MASK;
2844
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002845 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002846#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2847 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2848#else
2849 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2850#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002851 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002852 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002853 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2854 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002855 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002856 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002857
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002858 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002859}
2860
Alexander Duyck05abb122010-08-19 13:35:41 +00002861static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002862{
Alexander Duyck05abb122010-08-19 13:35:41 +00002863 struct ixgbe_hw *hw = &adapter->hw;
2864 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002865 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2866 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002867 u32 mrqc = 0, reta = 0;
2868 u32 rxcsum;
2869 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002870 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002871 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2872
2873 if (tcs)
2874 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002875
Alexander Duyck05abb122010-08-19 13:35:41 +00002876 /* Fill out hash function seeds */
2877 for (i = 0; i < 10; i++)
2878 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002879
Alexander Duyck05abb122010-08-19 13:35:41 +00002880 /* Fill out redirection table */
2881 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002882 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002883 j = 0;
2884 /* reta = 4-byte sliding window of
2885 * 0x00..(indices-1)(indices-1)00..etc. */
2886 reta = (reta << 8) | (j * 0x11);
2887 if ((i & 3) == 3)
2888 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2889 }
2890
2891 /* Disable indicating checksum in descriptor, enables RSS hash */
2892 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2893 rxcsum |= IXGBE_RXCSUM_PCSD;
2894 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2895
John Fastabend8b1c0b22011-05-03 02:26:48 +00002896 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2897 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002898 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002899 } else {
2900 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2901 | IXGBE_FLAG_SRIOV_ENABLED);
2902
2903 switch (mask) {
2904 case (IXGBE_FLAG_RSS_ENABLED):
2905 if (!tcs)
2906 mrqc = IXGBE_MRQC_RSSEN;
2907 else if (tcs <= 4)
2908 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2909 else
2910 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2911 break;
2912 case (IXGBE_FLAG_SRIOV_ENABLED):
2913 mrqc = IXGBE_MRQC_VMDQEN;
2914 break;
2915 default:
2916 break;
2917 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002918 }
2919
Alexander Duyck05abb122010-08-19 13:35:41 +00002920 /* Perform hash on these packet types */
2921 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2922 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2923 | IXGBE_MRQC_RSS_FIELD_IPV6
2924 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2925
2926 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002927}
2928
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002929/**
Don Skidmoreb93a2222010-11-16 19:27:17 -08002930 * ixgbe_clear_rscctl - disable RSC for the indicated ring
2931 * @adapter: address of board private structure
2932 * @ring: structure containing ring specific data
2933 **/
2934void ixgbe_clear_rscctl(struct ixgbe_adapter *adapter,
2935 struct ixgbe_ring *ring)
2936{
2937 struct ixgbe_hw *hw = &adapter->hw;
2938 u32 rscctrl;
2939 u8 reg_idx = ring->reg_idx;
2940
2941 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
2942 rscctrl &= ~IXGBE_RSCCTL_RSCEN;
2943 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
2944}
2945
2946/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002947 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2948 * @adapter: address of board private structure
2949 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002950 **/
Don Skidmoreb93a2222010-11-16 19:27:17 -08002951void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002952 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002953{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002954 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002955 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea552009-11-23 10:45:11 -08002956 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002957 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002958
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002959 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002960 return;
2961
2962 rx_buf_len = ring->rx_buf_len;
2963 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002964 rscctrl |= IXGBE_RSCCTL_RSCEN;
2965 /*
2966 * we must limit the number of descriptors so that the
2967 * total size of max desc * buf_len is not greater
2968 * than 65535
2969 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002970 if (ring_is_ps_enabled(ring)) {
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002971#if (MAX_SKB_FRAGS > 16)
2972 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2973#elif (MAX_SKB_FRAGS > 8)
2974 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2975#elif (MAX_SKB_FRAGS > 4)
2976 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2977#else
2978 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2979#endif
2980 } else {
2981 if (rx_buf_len < IXGBE_RXBUFFER_4096)
2982 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2983 else if (rx_buf_len < IXGBE_RXBUFFER_8192)
2984 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2985 else
2986 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2987 }
Alexander Duyck73670962010-08-19 13:38:34 +00002988 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002989}
2990
Alexander Duyck9e10e042010-08-19 13:40:06 +00002991/**
2992 * ixgbe_set_uta - Set unicast filter table address
2993 * @adapter: board private structure
2994 *
2995 * The unicast table address is a register array of 32-bit registers.
2996 * The table is meant to be used in a way similar to how the MTA is used
2997 * however due to certain limitations in the hardware it is necessary to
2998 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2999 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
3000 **/
3001static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
3002{
3003 struct ixgbe_hw *hw = &adapter->hw;
3004 int i;
3005
3006 /* The UTA table only exists on 82599 hardware and newer */
3007 if (hw->mac.type < ixgbe_mac_82599EB)
3008 return;
3009
3010 /* we only need to do this if VMDq is enabled */
3011 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3012 return;
3013
3014 for (i = 0; i < 128; i++)
3015 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
3016}
3017
3018#define IXGBE_MAX_RX_DESC_POLL 10
3019static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3020 struct ixgbe_ring *ring)
3021{
3022 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003023 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3024 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003025 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003026
3027 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3028 if (hw->mac.type == ixgbe_mac_82598EB &&
3029 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3030 return;
3031
3032 do {
Don Skidmore032b4322011-03-18 09:32:53 +00003033 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003034 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3035 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3036
3037 if (!wait_loop) {
3038 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3039 "the polling period\n", reg_idx);
3040 }
3041}
3042
Yi Zou2d39d572011-01-06 14:29:56 +00003043void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
3044 struct ixgbe_ring *ring)
3045{
3046 struct ixgbe_hw *hw = &adapter->hw;
3047 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3048 u32 rxdctl;
3049 u8 reg_idx = ring->reg_idx;
3050
3051 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3052 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
3053
3054 /* write value back with RXDCTL.ENABLE bit cleared */
3055 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3056
3057 if (hw->mac.type == ixgbe_mac_82598EB &&
3058 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3059 return;
3060
3061 /* the hardware may take up to 100us to really disable the rx queue */
3062 do {
3063 udelay(10);
3064 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3065 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
3066
3067 if (!wait_loop) {
3068 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3069 "the polling period\n", reg_idx);
3070 }
3071}
3072
Alexander Duyck84418e32010-08-19 13:40:54 +00003073void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3074 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003075{
3076 struct ixgbe_hw *hw = &adapter->hw;
3077 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003078 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003079 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003080
Alexander Duyck9e10e042010-08-19 13:40:06 +00003081 /* disable queue to avoid issues while updating state */
3082 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00003083 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003084
Alexander Duyckacd37172010-08-19 13:36:05 +00003085 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3086 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3087 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3088 ring->count * sizeof(union ixgbe_adv_rx_desc));
3089 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3090 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003091 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003092
3093 ixgbe_configure_srrctl(adapter, ring);
3094 ixgbe_configure_rscctl(adapter, ring);
3095
Greg Rosee9f98072011-01-26 01:06:07 +00003096 /* If operating in IOV mode set RLPML for X540 */
3097 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
3098 hw->mac.type == ixgbe_mac_X540) {
3099 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
3100 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
3101 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
3102 }
3103
Alexander Duyck9e10e042010-08-19 13:40:06 +00003104 if (hw->mac.type == ixgbe_mac_82598EB) {
3105 /*
3106 * enable cache line friendly hardware writes:
3107 * PTHRESH=32 descriptors (half the internal cache),
3108 * this also removes ugly rx_no_buffer_count increment
3109 * HTHRESH=4 descriptors (to minimize latency on fetch)
3110 * WTHRESH=8 burst writeback up to two cache lines
3111 */
3112 rxdctl &= ~0x3FFFFF;
3113 rxdctl |= 0x080420;
3114 }
3115
3116 /* enable receive descriptor ring */
3117 rxdctl |= IXGBE_RXDCTL_ENABLE;
3118 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3119
3120 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00003121 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003122}
3123
Alexander Duyck48654522010-08-19 13:36:27 +00003124static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3125{
3126 struct ixgbe_hw *hw = &adapter->hw;
3127 int p;
3128
3129 /* PSRTYPE must be initialized in non 82598 adapters */
3130 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003131 IXGBE_PSRTYPE_UDPHDR |
3132 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003133 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003134 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003135
3136 if (hw->mac.type == ixgbe_mac_82598EB)
3137 return;
3138
3139 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
3140 psrtype |= (adapter->num_rx_queues_per_pool << 29);
3141
3142 for (p = 0; p < adapter->num_rx_pools; p++)
3143 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
3144 psrtype);
3145}
3146
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003147static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3148{
3149 struct ixgbe_hw *hw = &adapter->hw;
3150 u32 gcr_ext;
3151 u32 vt_reg_bits;
3152 u32 reg_offset, vf_shift;
3153 u32 vmdctl;
3154
3155 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3156 return;
3157
3158 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3159 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
3160 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
3161 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
3162
3163 vf_shift = adapter->num_vfs % 32;
3164 reg_offset = (adapter->num_vfs > 32) ? 1 : 0;
3165
3166 /* Enable only the PF's pool for Tx/Rx */
3167 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
3168 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
3169 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
3170 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
3171 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3172
3173 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
3174 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
3175
3176 /*
3177 * Set up VF register offsets for selected VT Mode,
3178 * i.e. 32 or 64 VFs for SR-IOV
3179 */
3180 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3181 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
3182 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
3183 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3184
3185 /* enable Tx loopback for VF/PF communication */
3186 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00003187 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003188 hw->mac.ops.set_mac_anti_spoofing(hw,
3189 (adapter->antispoofing_enabled =
3190 (adapter->num_vfs != 0)),
Greg Rosea985b6c32010-11-18 03:02:52 +00003191 adapter->num_vfs);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003192}
3193
Alexander Duyck477de6e2010-08-19 13:38:11 +00003194static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003195{
Auke Kok9a799d72007-09-15 14:07:45 -07003196 struct ixgbe_hw *hw = &adapter->hw;
3197 struct net_device *netdev = adapter->netdev;
3198 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003199 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003200 struct ixgbe_ring *rx_ring;
3201 int i;
3202 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003203
Auke Kok9a799d72007-09-15 14:07:45 -07003204 /* Decide whether to use packet split mode or not */
Don Skidmorea1243392011-01-18 22:53:47 +00003205 /* On by default */
3206 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
3207
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003208 /* Do not use packet split if we're in SR-IOV Mode */
Don Skidmorea1243392011-01-18 22:53:47 +00003209 if (adapter->num_vfs)
3210 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
3211
3212 /* Disable packet split due to 82599 erratum #45 */
3213 if (hw->mac.type == ixgbe_mac_82599EB)
3214 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07003215
3216 /* Set the RX buffer length according to the mode */
3217 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003218 rx_buf_len = IXGBE_RX_HDR_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003219 } else {
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00003220 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
Alexander Duyckf8212f92009-04-27 22:42:37 +00003221 (netdev->mtu <= ETH_DATA_LEN))
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003222 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003223 else
Alexander Duyck477de6e2010-08-19 13:38:11 +00003224 rx_buf_len = ALIGN(max_frame + VLAN_HLEN, 1024);
3225 }
3226
3227#ifdef IXGBE_FCOE
3228 /* adjust max frame to be able to do baby jumbo for FCoE */
3229 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3230 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3231 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3232
3233#endif /* IXGBE_FCOE */
3234 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3235 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3236 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3237 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3238
3239 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003240 }
3241
Auke Kok9a799d72007-09-15 14:07:45 -07003242 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003243 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3244 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003245 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3246
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003247 /*
3248 * Setup the HW Rx Head and Tail Descriptor Pointers and
3249 * the Base and Length of the Rx Descriptor Ring
3250 */
Auke Kok9a799d72007-09-15 14:07:45 -07003251 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003252 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00003253 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003254
Yi Zou6e455b892009-08-06 13:05:44 +00003255 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003256 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00003257 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003258 clear_ring_ps_enabled(rx_ring);
3259
3260 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3261 set_ring_rsc_enabled(rx_ring);
3262 else
3263 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003264
Yi Zou63f39bd2009-05-17 12:34:35 +00003265#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003266 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003267 struct ixgbe_ring_feature *f;
3268 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003269 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003270 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003271 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3272 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003273 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003274 } else if (!ring_is_rsc_enabled(rx_ring) &&
3275 !ring_is_ps_enabled(rx_ring)) {
3276 rx_ring->rx_buf_len =
3277 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003278 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003279 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003280#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003281 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003282}
3283
Alexander Duyck73670962010-08-19 13:38:34 +00003284static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3285{
3286 struct ixgbe_hw *hw = &adapter->hw;
3287 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3288
3289 switch (hw->mac.type) {
3290 case ixgbe_mac_82598EB:
3291 /*
3292 * For VMDq support of different descriptor types or
3293 * buffer sizes through the use of multiple SRRCTL
3294 * registers, RDRXCTL.MVMEN must be set to 1
3295 *
3296 * also, the manual doesn't mention it clearly but DCA hints
3297 * will only use queue 0's tags unless this bit is set. Side
3298 * effects of setting this bit are only that SRRCTL must be
3299 * fully programmed [0..15]
3300 */
3301 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3302 break;
3303 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003304 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003305 /* Disable RSC for ACK packets */
3306 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3307 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3308 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3309 /* hardware requires some bits to be set by default */
3310 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3311 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3312 break;
3313 default:
3314 /* We should do nothing since we don't know this hardware */
3315 return;
3316 }
3317
3318 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3319}
3320
Alexander Duyck477de6e2010-08-19 13:38:11 +00003321/**
3322 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3323 * @adapter: board private structure
3324 *
3325 * Configure the Rx unit of the MAC after a reset.
3326 **/
3327static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3328{
3329 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003330 int i;
3331 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003332
3333 /* disable receives while setting up the descriptors */
3334 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3335 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3336
3337 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003338 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003339
Alexander Duyck9e10e042010-08-19 13:40:06 +00003340 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003341 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003342
Alexander Duyck9e10e042010-08-19 13:40:06 +00003343 ixgbe_set_uta(adapter);
3344
Alexander Duyck477de6e2010-08-19 13:38:11 +00003345 /* set_rx_buffer_len must be called before ring initialization */
3346 ixgbe_set_rx_buffer_len(adapter);
3347
3348 /*
3349 * Setup the HW Rx Head and Tail Descriptor Pointers and
3350 * the Base and Length of the Rx Descriptor Ring
3351 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003352 for (i = 0; i < adapter->num_rx_queues; i++)
3353 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003354
Alexander Duyck9e10e042010-08-19 13:40:06 +00003355 /* disable drop enable for 82598 parts */
3356 if (hw->mac.type == ixgbe_mac_82598EB)
3357 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3358
3359 /* enable all receives */
3360 rxctrl |= IXGBE_RXCTRL_RXEN;
3361 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003362}
3363
Auke Kok9a799d72007-09-15 14:07:45 -07003364static void ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
3365{
3366 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003367 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003368 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003369
3370 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003371 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003372 set_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003373}
3374
3375static void ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
3376{
3377 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003378 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003379 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003380
Auke Kok9a799d72007-09-15 14:07:45 -07003381 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003382 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003383 clear_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003384}
3385
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003386/**
3387 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3388 * @adapter: driver data
3389 */
3390static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3391{
3392 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003393 u32 vlnctrl;
3394
3395 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3396 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3397 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3398}
3399
3400/**
3401 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3402 * @adapter: driver data
3403 */
3404static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3405{
3406 struct ixgbe_hw *hw = &adapter->hw;
3407 u32 vlnctrl;
3408
3409 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3410 vlnctrl |= IXGBE_VLNCTRL_VFE;
3411 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3412 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3413}
3414
3415/**
3416 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3417 * @adapter: driver data
3418 */
3419static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3420{
3421 struct ixgbe_hw *hw = &adapter->hw;
3422 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003423 int i, j;
3424
3425 switch (hw->mac.type) {
3426 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003427 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3428 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003429 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3430 break;
3431 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003432 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003433 for (i = 0; i < adapter->num_rx_queues; i++) {
3434 j = adapter->rx_ring[i]->reg_idx;
3435 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3436 vlnctrl &= ~IXGBE_RXDCTL_VME;
3437 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3438 }
3439 break;
3440 default:
3441 break;
3442 }
3443}
3444
3445/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003446 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003447 * @adapter: driver data
3448 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003449static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003450{
3451 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003452 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003453 int i, j;
3454
3455 switch (hw->mac.type) {
3456 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003457 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3458 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003459 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3460 break;
3461 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003462 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003463 for (i = 0; i < adapter->num_rx_queues; i++) {
3464 j = adapter->rx_ring[i]->reg_idx;
3465 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3466 vlnctrl |= IXGBE_RXDCTL_VME;
3467 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3468 }
3469 break;
3470 default:
3471 break;
3472 }
3473}
3474
Auke Kok9a799d72007-09-15 14:07:45 -07003475static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3476{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003477 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003478
Jesse Grossf62bbb52010-10-20 13:56:10 +00003479 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3480
3481 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3482 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003483}
3484
3485/**
Alexander Duyck28500622010-06-15 09:25:48 +00003486 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3487 * @netdev: network interface device structure
3488 *
3489 * Writes unicast address list to the RAR table.
3490 * Returns: -ENOMEM on failure/insufficient address space
3491 * 0 on no addresses written
3492 * X on writing X addresses to the RAR table
3493 **/
3494static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3495{
3496 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3497 struct ixgbe_hw *hw = &adapter->hw;
3498 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003499 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003500 int count = 0;
3501
3502 /* return ENOMEM indicating insufficient memory for addresses */
3503 if (netdev_uc_count(netdev) > rar_entries)
3504 return -ENOMEM;
3505
3506 if (!netdev_uc_empty(netdev) && rar_entries) {
3507 struct netdev_hw_addr *ha;
3508 /* return error if we do not support writing to RAR table */
3509 if (!hw->mac.ops.set_rar)
3510 return -ENOMEM;
3511
3512 netdev_for_each_uc_addr(ha, netdev) {
3513 if (!rar_entries)
3514 break;
3515 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3516 vfn, IXGBE_RAH_AV);
3517 count++;
3518 }
3519 }
3520 /* write the addresses in reverse order to avoid write combining */
3521 for (; rar_entries > 0 ; rar_entries--)
3522 hw->mac.ops.clear_rar(hw, rar_entries);
3523
3524 return count;
3525}
3526
3527/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003528 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003529 * @netdev: network interface device structure
3530 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003531 * The set_rx_method entry point is called whenever the unicast/multicast
3532 * address list or the network interface flags are updated. This routine is
3533 * responsible for configuring the hardware for proper unicast, multicast and
3534 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003535 **/
Greg Rose7f870472010-01-09 02:25:29 +00003536void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003537{
3538 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3539 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003540 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3541 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003542
3543 /* Check for Promiscuous and All Multicast modes */
3544
3545 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3546
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003547 /* set all bits that we expect to always be set */
3548 fctrl |= IXGBE_FCTRL_BAM;
3549 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3550 fctrl |= IXGBE_FCTRL_PMCF;
3551
Alexander Duyck28500622010-06-15 09:25:48 +00003552 /* clear the bits we are changing the status of */
3553 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3554
Auke Kok9a799d72007-09-15 14:07:45 -07003555 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003556 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003557 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003558 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003559 /* don't hardware filter vlans in promisc mode */
3560 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003561 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003562 if (netdev->flags & IFF_ALLMULTI) {
3563 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003564 vmolr |= IXGBE_VMOLR_MPE;
3565 } else {
3566 /*
3567 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003568 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003569 * that we can at least receive multicast traffic
3570 */
3571 hw->mac.ops.update_mc_addr_list(hw, netdev);
3572 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003573 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003574 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003575 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003576 /*
3577 * Write addresses to available RAR registers, if there is not
3578 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003579 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003580 */
3581 count = ixgbe_write_uc_addr_list(netdev);
3582 if (count < 0) {
3583 fctrl |= IXGBE_FCTRL_UPE;
3584 vmolr |= IXGBE_VMOLR_ROPE;
3585 }
3586 }
3587
3588 if (adapter->num_vfs) {
3589 ixgbe_restore_vf_multicasts(adapter);
3590 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3591 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3592 IXGBE_VMOLR_ROPE);
3593 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003594 }
3595
3596 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003597
3598 if (netdev->features & NETIF_F_HW_VLAN_RX)
3599 ixgbe_vlan_strip_enable(adapter);
3600 else
3601 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003602}
3603
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003604static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3605{
3606 int q_idx;
3607 struct ixgbe_q_vector *q_vector;
3608 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3609
3610 /* legacy and MSI only use one vector */
3611 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3612 q_vectors = 1;
3613
3614 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003615 struct napi_struct *napi;
Alexander Duyck7a921c92009-05-06 10:43:28 +00003616 q_vector = adapter->q_vector[q_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003617 napi = &q_vector->napi;
Alexander Duyck91281fd2009-06-04 16:00:27 +00003618 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duyck08c88332011-06-11 01:45:03 +00003619 if (!q_vector->rx.count || !q_vector->tx.count) {
3620 if (q_vector->tx.count == 1)
Alexander Duyck91281fd2009-06-04 16:00:27 +00003621 napi->poll = &ixgbe_clean_txonly;
Alexander Duyck08c88332011-06-11 01:45:03 +00003622 else if (q_vector->rx.count == 1)
Alexander Duyck91281fd2009-06-04 16:00:27 +00003623 napi->poll = &ixgbe_clean_rxonly;
3624 }
3625 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003626
3627 napi_enable(napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003628 }
3629}
3630
3631static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3632{
3633 int q_idx;
3634 struct ixgbe_q_vector *q_vector;
3635 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3636
3637 /* legacy and MSI only use one vector */
3638 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3639 q_vectors = 1;
3640
3641 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003642 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003643 napi_disable(&q_vector->napi);
3644 }
3645}
3646
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003647#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003648/*
3649 * ixgbe_configure_dcb - Configure DCB hardware
3650 * @adapter: ixgbe adapter struct
3651 *
3652 * This is called by the driver on open to configure the DCB hardware.
3653 * This is also called by the gennetlink interface when reconfiguring
3654 * the DCB state.
3655 */
3656static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3657{
3658 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003659 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003660
Alexander Duyck67ebd792010-08-19 13:34:04 +00003661 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3662 if (hw->mac.type == ixgbe_mac_82598EB)
3663 netif_set_gso_max_size(adapter->netdev, 65536);
3664 return;
3665 }
3666
3667 if (hw->mac.type == ixgbe_mac_82598EB)
3668 netif_set_gso_max_size(adapter->netdev, 32768);
3669
Alexander Duyck2f90b862008-11-20 20:52:10 -08003670
Alexander Duyck2f90b862008-11-20 20:52:10 -08003671 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003672 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003673
Alexander Duyck2f90b862008-11-20 20:52:10 -08003674 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003675
3676 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003677 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
John Fastabendc27931d2011-02-23 05:58:25 +00003678#ifdef CONFIG_FCOE
3679 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3680 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3681#endif
3682 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3683 DCB_TX_CONFIG);
3684 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3685 DCB_RX_CONFIG);
3686 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
3687 } else {
3688 struct net_device *dev = adapter->netdev;
3689
3690 if (adapter->ixgbe_ieee_ets)
3691 dev->dcbnl_ops->ieee_setets(dev,
3692 adapter->ixgbe_ieee_ets);
3693 if (adapter->ixgbe_ieee_pfc)
3694 dev->dcbnl_ops->ieee_setpfc(dev,
3695 adapter->ixgbe_ieee_pfc);
3696 }
John Fastabend8187cd42011-02-23 05:58:08 +00003697
3698 /* Enable RSS Hash per TC */
3699 if (hw->mac.type != ixgbe_mac_82598EB) {
3700 int i;
3701 u32 reg = 0;
3702
3703 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3704 u8 msb = 0;
3705 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3706
3707 while (cnt >>= 1)
3708 msb++;
3709
3710 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3711 }
3712 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3713 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003714}
3715
3716#endif
John Fastabend80605c652011-05-02 12:34:10 +00003717
3718static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3719{
3720 int hdrm = 0;
3721 int num_tc = netdev_get_num_tc(adapter->netdev);
3722 struct ixgbe_hw *hw = &adapter->hw;
3723
3724 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3725 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
3726 hdrm = 64 << adapter->fdir_pballoc;
3727
3728 hw->mac.ops.set_rxpba(&adapter->hw, num_tc, hdrm, PBA_STRATEGY_EQUAL);
3729}
3730
Alexander Duycke4911d52011-05-11 07:18:52 +00003731static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3732{
3733 struct ixgbe_hw *hw = &adapter->hw;
3734 struct hlist_node *node, *node2;
3735 struct ixgbe_fdir_filter *filter;
3736
3737 spin_lock(&adapter->fdir_perfect_lock);
3738
3739 if (!hlist_empty(&adapter->fdir_filter_list))
3740 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3741
3742 hlist_for_each_entry_safe(filter, node, node2,
3743 &adapter->fdir_filter_list, fdir_node) {
3744 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003745 &filter->filter,
3746 filter->sw_idx,
3747 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3748 IXGBE_FDIR_DROP_QUEUE :
3749 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003750 }
3751
3752 spin_unlock(&adapter->fdir_perfect_lock);
3753}
3754
Auke Kok9a799d72007-09-15 14:07:45 -07003755static void ixgbe_configure(struct ixgbe_adapter *adapter)
3756{
3757 struct net_device *netdev = adapter->netdev;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003758 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003759 int i;
3760
John Fastabend80605c652011-05-02 12:34:10 +00003761 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003762#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003763 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003764#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003765
Jesse Grossf62bbb52010-10-20 13:56:10 +00003766 ixgbe_set_rx_mode(netdev);
3767 ixgbe_restore_vlan(adapter);
3768
Yi Zoueacd73f2009-05-13 13:11:06 +00003769#ifdef IXGBE_FCOE
3770 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3771 ixgbe_configure_fcoe(adapter);
3772
3773#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003774 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
3775 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003776 adapter->tx_ring[i]->atr_sample_rate =
Joe Perchese8e9f692010-09-07 21:34:53 +00003777 adapter->atr_sample_rate;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003778 ixgbe_init_fdir_signature_82599(hw, adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003779 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3780 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3781 adapter->fdir_pballoc);
3782 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003783 }
Alexander Duyck933d41f2010-09-07 21:34:29 +00003784 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003785
Auke Kok9a799d72007-09-15 14:07:45 -07003786 ixgbe_configure_tx(adapter);
3787 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003788}
3789
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003790static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3791{
3792 switch (hw->phy.type) {
3793 case ixgbe_phy_sfp_avago:
3794 case ixgbe_phy_sfp_ftl:
3795 case ixgbe_phy_sfp_intel:
3796 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003797 case ixgbe_phy_sfp_passive_tyco:
3798 case ixgbe_phy_sfp_passive_unknown:
3799 case ixgbe_phy_sfp_active_unknown:
3800 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003801 return true;
3802 default:
3803 return false;
3804 }
3805}
3806
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003807/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003808 * ixgbe_sfp_link_config - set up SFP+ link
3809 * @adapter: pointer to private adapter struct
3810 **/
3811static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3812{
Alexander Duyck70864002011-04-27 09:13:56 +00003813 /*
3814 * We are assuming the worst case scenerio here, and that
3815 * is that an SFP was inserted/removed after the reset
3816 * but before SFP detection was enabled. As such the best
3817 * solution is to just start searching as soon as we start
3818 */
3819 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3820 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003821
Alexander Duyck70864002011-04-27 09:13:56 +00003822 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003823}
3824
3825/**
3826 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003827 * @hw: pointer to private hardware struct
3828 *
3829 * Returns 0 on success, negative on failure
3830 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003831static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003832{
3833 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003834 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003835 u32 ret = IXGBE_ERR_LINK_SETUP;
3836
3837 if (hw->mac.ops.check_link)
3838 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3839
3840 if (ret)
3841 goto link_cfg_out;
3842
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003843 autoneg = hw->phy.autoneg_advertised;
3844 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003845 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3846 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003847 if (ret)
3848 goto link_cfg_out;
3849
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003850 if (hw->mac.ops.setup_link)
3851 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003852link_cfg_out:
3853 return ret;
3854}
3855
Alexander Duycka34bcff2010-08-19 13:39:20 +00003856static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003857{
Auke Kok9a799d72007-09-15 14:07:45 -07003858 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003859 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003860
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003861 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003862 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3863 IXGBE_GPIE_OCD;
3864 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003865 /*
3866 * use EIAM to auto-mask when MSI-X interrupt is asserted
3867 * this saves a register write for every interrupt
3868 */
3869 switch (hw->mac.type) {
3870 case ixgbe_mac_82598EB:
3871 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3872 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003873 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003874 case ixgbe_mac_X540:
3875 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003876 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3877 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3878 break;
3879 }
3880 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003881 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3882 * specifically only auto mask tx and rx interrupts */
3883 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003884 }
3885
Alexander Duycka34bcff2010-08-19 13:39:20 +00003886 /* XXX: to interrupt immediately for EICS writes, enable this */
3887 /* gpie |= IXGBE_GPIE_EIMEN; */
3888
3889 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3890 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3891 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003892 }
3893
Alexander Duycka34bcff2010-08-19 13:39:20 +00003894 /* Enable fan failure interrupt */
3895 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003896 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003897
Don Skidmore2698b202011-04-13 07:01:52 +00003898 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003899 gpie |= IXGBE_SDP1_GPIEN;
3900 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003901 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003902
3903 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3904}
3905
3906static int ixgbe_up_complete(struct ixgbe_adapter *adapter)
3907{
3908 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003909 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003910 u32 ctrl_ext;
3911
3912 ixgbe_get_hw_control(adapter);
3913 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003914
Auke Kok9a799d72007-09-15 14:07:45 -07003915 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3916 ixgbe_configure_msix(adapter);
3917 else
3918 ixgbe_configure_msi_and_legacy(adapter);
3919
Don Skidmorec6ecf392010-12-03 03:31:51 +00003920 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3921 if (hw->mac.ops.enable_tx_laser &&
3922 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003923 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003924 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003925 hw->mac.ops.enable_tx_laser(hw);
3926
Auke Kok9a799d72007-09-15 14:07:45 -07003927 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003928 ixgbe_napi_enable_all(adapter);
3929
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003930 if (ixgbe_is_sfp(hw)) {
3931 ixgbe_sfp_link_config(adapter);
3932 } else {
3933 err = ixgbe_non_sfp_link_config(hw);
3934 if (err)
3935 e_err(probe, "link_config FAILED %d\n", err);
3936 }
3937
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003938 /* clear any pending interrupts, may auto mask */
3939 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003940 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003941
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003942 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003943 * If this adapter has a fan, check to see if we had a failure
3944 * before we enabled the interrupt.
3945 */
3946 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3947 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3948 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003949 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003950 }
3951
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003952 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003953 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003954
Auke Kok9a799d72007-09-15 14:07:45 -07003955 /* bring the link up in the watchdog, this could race with our first
3956 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003957 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3958 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00003959 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003960
3961 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3962 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3963 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3964 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
3965
Auke Kok9a799d72007-09-15 14:07:45 -07003966 return 0;
3967}
3968
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003969void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3970{
3971 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00003972 /* put off any impending NetWatchDogTimeout */
3973 adapter->netdev->trans_start = jiffies;
3974
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003975 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00003976 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003977 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003978 /*
3979 * If SR-IOV enabled then wait a bit before bringing the adapter
3980 * back up to give the VFs time to respond to the reset. The
3981 * two second wait is based upon the watchdog timer cycle in
3982 * the VF driver.
3983 */
3984 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3985 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003986 ixgbe_up(adapter);
3987 clear_bit(__IXGBE_RESETTING, &adapter->state);
3988}
3989
Auke Kok9a799d72007-09-15 14:07:45 -07003990int ixgbe_up(struct ixgbe_adapter *adapter)
3991{
3992 /* hardware has been reset, we need to reload some things */
3993 ixgbe_configure(adapter);
3994
3995 return ixgbe_up_complete(adapter);
3996}
3997
3998void ixgbe_reset(struct ixgbe_adapter *adapter)
3999{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004000 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07004001 int err;
4002
Alexander Duyck70864002011-04-27 09:13:56 +00004003 /* lock SFP init bit to prevent race conditions with the watchdog */
4004 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
4005 usleep_range(1000, 2000);
4006
4007 /* clear all SFP and link config related flags while holding SFP_INIT */
4008 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
4009 IXGBE_FLAG2_SFP_NEEDS_RESET);
4010 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
4011
Don Skidmore8ca783a2009-05-26 20:40:47 -07004012 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004013 switch (err) {
4014 case 0:
4015 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00004016 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004017 break;
4018 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00004019 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004020 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004021 case IXGBE_ERR_EEPROM_VERSION:
4022 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00004023 e_dev_warn("This device is a pre-production adapter/LOM. "
4024 "Please be aware there may be issuesassociated with "
4025 "your hardware. If you are experiencing problems "
4026 "please contact your Intel or hardware "
4027 "representative who provided you with this "
4028 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00004029 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004030 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00004031 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00004032 }
Auke Kok9a799d72007-09-15 14:07:45 -07004033
Alexander Duyck70864002011-04-27 09:13:56 +00004034 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
4035
Auke Kok9a799d72007-09-15 14:07:45 -07004036 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004037 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
4038 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07004039}
4040
Auke Kok9a799d72007-09-15 14:07:45 -07004041/**
4042 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07004043 * @rx_ring: ring to free buffers from
4044 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004045static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004046{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004047 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004048 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004049 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004050
Alexander Duyck84418e32010-08-19 13:40:54 +00004051 /* ring already cleared, nothing to do */
4052 if (!rx_ring->rx_buffer_info)
4053 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004054
Alexander Duyck84418e32010-08-19 13:40:54 +00004055 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004056 for (i = 0; i < rx_ring->count; i++) {
4057 struct ixgbe_rx_buffer *rx_buffer_info;
4058
4059 rx_buffer_info = &rx_ring->rx_buffer_info[i];
4060 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004061 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00004062 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00004063 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07004064 rx_buffer_info->dma = 0;
4065 }
4066 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00004067 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07004068 rx_buffer_info->skb = NULL;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004069 do {
4070 struct sk_buff *this = skb;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00004071 if (IXGBE_RSC_CB(this)->delay_unmap) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004072 dma_unmap_single(dev,
Nick Nunley1b507732010-04-27 13:10:27 +00004073 IXGBE_RSC_CB(this)->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00004074 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00004075 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00004076 IXGBE_RSC_CB(this)->dma = 0;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00004077 IXGBE_RSC_CB(skb)->delay_unmap = false;
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00004078 }
Alexander Duyckf8212f92009-04-27 22:42:37 +00004079 skb = skb->prev;
4080 dev_kfree_skb(this);
4081 } while (skb);
Auke Kok9a799d72007-09-15 14:07:45 -07004082 }
4083 if (!rx_buffer_info->page)
4084 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004085 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004086 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00004087 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00004088 rx_buffer_info->page_dma = 0;
4089 }
Auke Kok9a799d72007-09-15 14:07:45 -07004090 put_page(rx_buffer_info->page);
4091 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07004092 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004093 }
4094
4095 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
4096 memset(rx_ring->rx_buffer_info, 0, size);
4097
4098 /* Zero out the descriptor ring */
4099 memset(rx_ring->desc, 0, rx_ring->size);
4100
4101 rx_ring->next_to_clean = 0;
4102 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004103}
4104
4105/**
4106 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07004107 * @tx_ring: ring to be cleaned
4108 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004109static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004110{
4111 struct ixgbe_tx_buffer *tx_buffer_info;
4112 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004113 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07004114
Alexander Duyck84418e32010-08-19 13:40:54 +00004115 /* ring already cleared, nothing to do */
4116 if (!tx_ring->tx_buffer_info)
4117 return;
Auke Kok9a799d72007-09-15 14:07:45 -07004118
Alexander Duyck84418e32010-08-19 13:40:54 +00004119 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07004120 for (i = 0; i < tx_ring->count; i++) {
4121 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004122 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07004123 }
4124
4125 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
4126 memset(tx_ring->tx_buffer_info, 0, size);
4127
4128 /* Zero out the descriptor ring */
4129 memset(tx_ring->desc, 0, tx_ring->size);
4130
4131 tx_ring->next_to_use = 0;
4132 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004133}
4134
4135/**
Auke Kok9a799d72007-09-15 14:07:45 -07004136 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4137 * @adapter: board private structure
4138 **/
4139static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4140{
4141 int i;
4142
4143 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004144 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004145}
4146
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004147/**
4148 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4149 * @adapter: board private structure
4150 **/
4151static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4152{
4153 int i;
4154
4155 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004156 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004157}
4158
Alexander Duycke4911d52011-05-11 07:18:52 +00004159static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
4160{
4161 struct hlist_node *node, *node2;
4162 struct ixgbe_fdir_filter *filter;
4163
4164 spin_lock(&adapter->fdir_perfect_lock);
4165
4166 hlist_for_each_entry_safe(filter, node, node2,
4167 &adapter->fdir_filter_list, fdir_node) {
4168 hlist_del(&filter->fdir_node);
4169 kfree(filter);
4170 }
4171 adapter->fdir_filter_count = 0;
4172
4173 spin_unlock(&adapter->fdir_perfect_lock);
4174}
4175
Auke Kok9a799d72007-09-15 14:07:45 -07004176void ixgbe_down(struct ixgbe_adapter *adapter)
4177{
4178 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004179 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004180 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004181 int i;
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004182 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Auke Kok9a799d72007-09-15 14:07:45 -07004183
4184 /* signal that we are down to the interrupt handler */
4185 set_bit(__IXGBE_DOWN, &adapter->state);
4186
4187 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004188 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4189 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004190
Yi Zou2d39d572011-01-06 14:29:56 +00004191 /* disable all enabled rx queues */
4192 for (i = 0; i < adapter->num_rx_queues; i++)
4193 /* this call also flushes the previous write */
4194 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
4195
Don Skidmore032b4322011-03-18 09:32:53 +00004196 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07004197
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004198 netif_tx_stop_all_queues(netdev);
4199
Alexander Duyck70864002011-04-27 09:13:56 +00004200 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00004201 netif_carrier_off(netdev);
4202 netif_tx_disable(netdev);
4203
4204 ixgbe_irq_disable(adapter);
4205
4206 ixgbe_napi_disable_all(adapter);
4207
Alexander Duyckd034acf2011-04-27 09:25:34 +00004208 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
4209 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00004210 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
4211
4212 del_timer_sync(&adapter->service_timer);
4213
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004214 /* disable receive for all VFs and wait one second */
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004215 if (adapter->num_vfs) {
4216 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07004217 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004218
Auke Kok9a799d72007-09-15 14:07:45 -07004219 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004220 ixgbe_disable_tx_rx(adapter);
4221
4222 /* Mark all the VFs as inactive */
4223 for (i = 0 ; i < adapter->num_vfs; i++)
4224 adapter->vfinfo[i].clear_to_send = 0;
4225 }
4226
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004227 /* Cleanup the affinity_hint CPU mask memory and callback */
4228 for (i = 0; i < num_q_vectors; i++) {
4229 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
4230 /* clear the affinity_mask in the IRQ descriptor */
4231 irq_set_affinity_hint(adapter->msix_entries[i]. vector, NULL);
4232 /* release the CPU mask memory */
4233 free_cpumask_var(q_vector->affinity_mask);
4234 }
4235
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004236 /* disable transmits in the hardware now that interrupts are off */
4237 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004238 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004239 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004240 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00004241
4242 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004243 switch (hw->mac.type) {
4244 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004245 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004246 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004247 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4248 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004249 break;
4250 default:
4251 break;
4252 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004253
Paul Larson6f4a0e42008-06-24 17:00:56 -07004254 if (!pci_channel_offline(adapter->pdev))
4255 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004256
4257 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4258 if (hw->mac.ops.disable_tx_laser &&
4259 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00004260 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00004261 (hw->mac.type == ixgbe_mac_82599EB))))
4262 hw->mac.ops.disable_tx_laser(hw);
4263
Auke Kok9a799d72007-09-15 14:07:45 -07004264 ixgbe_clean_all_tx_rings(adapter);
4265 ixgbe_clean_all_rx_rings(adapter);
4266
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004267#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004268 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004269 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004270#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004271}
4272
Auke Kok9a799d72007-09-15 14:07:45 -07004273/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004274 * ixgbe_poll - NAPI Rx polling callback
4275 * @napi: structure for representing this polling device
4276 * @budget: how many packets driver is allowed to clean
4277 *
4278 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07004279 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004280static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07004281{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004282 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00004283 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004284 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004285 int tx_clean_complete, work_done = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004286
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004287#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004288 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4289 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004290#endif
4291
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004292 tx_clean_complete = ixgbe_clean_tx_irq(q_vector, adapter->tx_ring[0]);
4293 ixgbe_clean_rx_irq(q_vector, adapter->rx_ring[0], &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07004294
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004295 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004296 work_done = budget;
4297
David S. Miller53e52c72008-01-07 21:06:12 -08004298 /* If budget not fully consumed, exit the polling mode */
4299 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004300 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004301 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08004302 ixgbe_set_itr(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004303 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Nelson, Shannon835462f2009-04-27 22:42:54 +00004304 ixgbe_irq_enable_queues(adapter, IXGBE_EIMS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004305 }
Auke Kok9a799d72007-09-15 14:07:45 -07004306 return work_done;
4307}
4308
4309/**
4310 * ixgbe_tx_timeout - Respond to a Tx Hang
4311 * @netdev: network interface device structure
4312 **/
4313static void ixgbe_tx_timeout(struct net_device *netdev)
4314{
4315 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4316
4317 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004318 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004319}
4320
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004321/**
4322 * ixgbe_set_rss_queues: Allocate queues for RSS
4323 * @adapter: board private structure to initialize
4324 *
4325 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4326 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4327 *
4328 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004329static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4330{
4331 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004332 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004333
4334 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004335 f->mask = 0xF;
4336 adapter->num_rx_queues = f->indices;
4337 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004338 ret = true;
4339 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004340 ret = false;
4341 }
4342
4343 return ret;
4344}
4345
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004346/**
4347 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4348 * @adapter: board private structure to initialize
4349 *
4350 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4351 * to the original CPU that initiated the Tx session. This runs in addition
4352 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4353 * Rx load across CPUs using RSS.
4354 *
4355 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004356static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004357{
4358 bool ret = false;
4359 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4360
4361 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4362 f_fdir->mask = 0;
4363
4364 /* Flow Director must have RSS enabled */
Alexander Duyck03ecf912011-05-20 07:36:17 +00004365 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4366 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004367 adapter->num_tx_queues = f_fdir->indices;
4368 adapter->num_rx_queues = f_fdir->indices;
4369 ret = true;
4370 } else {
4371 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004372 }
4373 return ret;
4374}
4375
Yi Zou0331a832009-05-17 12:33:52 +00004376#ifdef IXGBE_FCOE
4377/**
4378 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4379 * @adapter: board private structure to initialize
4380 *
4381 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4382 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4383 * rx queues out of the max number of rx queues, instead, it is used as the
4384 * index of the first rx queue used by FCoE.
4385 *
4386 **/
4387static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4388{
Yi Zou0331a832009-05-17 12:33:52 +00004389 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4390
John Fastabende5b64632011-03-08 03:44:52 +00004391 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4392 return false;
4393
John Fastabende901acd2011-04-26 07:26:08 +00004394 f->indices = min((int)num_online_cpus(), f->indices);
John Fastabende5b64632011-03-08 03:44:52 +00004395
John Fastabende901acd2011-04-26 07:26:08 +00004396 adapter->num_rx_queues = 1;
4397 adapter->num_tx_queues = 1;
John Fastabende5b64632011-03-08 03:44:52 +00004398
John Fastabende901acd2011-04-26 07:26:08 +00004399 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4400 e_info(probe, "FCoE enabled with RSS\n");
Alexander Duyck03ecf912011-05-20 07:36:17 +00004401 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
John Fastabende901acd2011-04-26 07:26:08 +00004402 ixgbe_set_fdir_queues(adapter);
4403 else
4404 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004405 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00004406
John Fastabende901acd2011-04-26 07:26:08 +00004407 /* adding FCoE rx rings to the end */
4408 f->mask = adapter->num_rx_queues;
4409 adapter->num_rx_queues += f->indices;
4410 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004411
John Fastabende5b64632011-03-08 03:44:52 +00004412 return true;
4413}
4414#endif /* IXGBE_FCOE */
4415
John Fastabende901acd2011-04-26 07:26:08 +00004416/* Artificial max queue cap per traffic class in DCB mode */
4417#define DCB_QUEUE_CAP 8
4418
John Fastabende5b64632011-03-08 03:44:52 +00004419#ifdef CONFIG_IXGBE_DCB
4420static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
4421{
John Fastabende901acd2011-04-26 07:26:08 +00004422 int per_tc_q, q, i, offset = 0;
4423 struct net_device *dev = adapter->netdev;
4424 int tcs = netdev_get_num_tc(dev);
John Fastabende5b64632011-03-08 03:44:52 +00004425
John Fastabende901acd2011-04-26 07:26:08 +00004426 if (!tcs)
4427 return false;
John Fastabende5b64632011-03-08 03:44:52 +00004428
John Fastabende901acd2011-04-26 07:26:08 +00004429 /* Map queue offset and counts onto allocated tx queues */
4430 per_tc_q = min(dev->num_tx_queues / tcs, (unsigned int)DCB_QUEUE_CAP);
4431 q = min((int)num_online_cpus(), per_tc_q);
John Fastabend8b1c0b22011-05-03 02:26:48 +00004432
John Fastabend8b1c0b22011-05-03 02:26:48 +00004433 for (i = 0; i < tcs; i++) {
John Fastabende901acd2011-04-26 07:26:08 +00004434 netdev_set_prio_tc_map(dev, i, i);
4435 netdev_set_tc_queue(dev, i, q, offset);
4436 offset += q;
John Fastabende5b64632011-03-08 03:44:52 +00004437 }
4438
John Fastabende901acd2011-04-26 07:26:08 +00004439 adapter->num_tx_queues = q * tcs;
4440 adapter->num_rx_queues = q * tcs;
John Fastabende5b64632011-03-08 03:44:52 +00004441
4442#ifdef IXGBE_FCOE
John Fastabende901acd2011-04-26 07:26:08 +00004443 /* FCoE enabled queues require special configuration indexed
4444 * by feature specific indices and mask. Here we map FCoE
4445 * indices onto the DCB queue pairs allowing FCoE to own
4446 * configuration later.
John Fastabende5b64632011-03-08 03:44:52 +00004447 */
John Fastabende901acd2011-04-26 07:26:08 +00004448 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
4449 int tc;
4450 struct ixgbe_ring_feature *f =
4451 &adapter->ring_feature[RING_F_FCOE];
4452
4453 tc = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
4454 f->indices = dev->tc_to_txq[tc].count;
4455 f->mask = dev->tc_to_txq[tc].offset;
4456 }
John Fastabende5b64632011-03-08 03:44:52 +00004457#endif
4458
John Fastabende901acd2011-04-26 07:26:08 +00004459 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004460}
John Fastabende5b64632011-03-08 03:44:52 +00004461#endif
Yi Zou0331a832009-05-17 12:33:52 +00004462
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004463/**
4464 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4465 * @adapter: board private structure to initialize
4466 *
4467 * IOV doesn't actually use anything, so just NAK the
4468 * request for now and let the other queue routines
4469 * figure out what to do.
4470 */
4471static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4472{
4473 return false;
4474}
4475
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004476/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004477 * ixgbe_set_num_queues: Allocate queues for device, feature dependent
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004478 * @adapter: board private structure to initialize
4479 *
4480 * This is the top level queue allocation routine. The order here is very
4481 * important, starting with the "most" number of features turned on at once,
4482 * and ending with the smallest set of features. This way large combinations
4483 * can be allocated if they're turned on, and smaller combinations are the
4484 * fallthrough conditions.
4485 *
4486 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004487static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004488{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004489 /* Start with base case */
4490 adapter->num_rx_queues = 1;
4491 adapter->num_tx_queues = 1;
4492 adapter->num_rx_pools = adapter->num_rx_queues;
4493 adapter->num_rx_queues_per_pool = 1;
4494
4495 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004496 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004497
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004498#ifdef CONFIG_IXGBE_DCB
4499 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004500 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004501
4502#endif
John Fastabende5b64632011-03-08 03:44:52 +00004503#ifdef IXGBE_FCOE
4504 if (ixgbe_set_fcoe_queues(adapter))
4505 goto done;
4506
4507#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004508 if (ixgbe_set_fdir_queues(adapter))
4509 goto done;
4510
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004511 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004512 goto done;
4513
4514 /* fallback to base case */
4515 adapter->num_rx_queues = 1;
4516 adapter->num_tx_queues = 1;
4517
4518done:
Ben Hutchings847f53f2010-09-27 08:28:56 +00004519 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004520 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004521 return netif_set_real_num_rx_queues(adapter->netdev,
4522 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004523}
4524
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004525static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004526 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004527{
4528 int err, vector_threshold;
4529
4530 /* We'll want at least 3 (vector_threshold):
4531 * 1) TxQ[0] Cleanup
4532 * 2) RxQ[0] Cleanup
4533 * 3) Other (Link Status Change, etc.)
4534 * 4) TCP Timer (optional)
4535 */
4536 vector_threshold = MIN_MSIX_COUNT;
4537
4538 /* The more we get, the more we will assign to Tx/Rx Cleanup
4539 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4540 * Right now, we simply care about how many we'll get; we'll
4541 * set them up later while requesting irq's.
4542 */
4543 while (vectors >= vector_threshold) {
4544 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004545 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004546 if (!err) /* Success in acquiring all requested vectors. */
4547 break;
4548 else if (err < 0)
4549 vectors = 0; /* Nasty failure, quit now */
4550 else /* err == number of vectors we should try again with */
4551 vectors = err;
4552 }
4553
4554 if (vectors < vector_threshold) {
4555 /* Can't allocate enough MSI-X interrupts? Oh well.
4556 * This just means we'll go with either a single MSI
4557 * vector or fall back to legacy interrupts.
4558 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004559 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4560 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004561 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4562 kfree(adapter->msix_entries);
4563 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004564 } else {
4565 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004566 /*
4567 * Adjust for only the vectors we'll use, which is minimum
4568 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4569 * vectors we were allocated.
4570 */
4571 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004572 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004573 }
4574}
4575
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004576/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004577 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004578 * @adapter: board private structure to initialize
4579 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004580 * Cache the descriptor ring offsets for RSS to the assigned rings.
4581 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004582 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004583static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004584{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004585 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004586
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004587 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4588 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004589
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004590 for (i = 0; i < adapter->num_rx_queues; i++)
4591 adapter->rx_ring[i]->reg_idx = i;
4592 for (i = 0; i < adapter->num_tx_queues; i++)
4593 adapter->tx_ring[i]->reg_idx = i;
4594
4595 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004596}
4597
4598#ifdef CONFIG_IXGBE_DCB
John Fastabende5b64632011-03-08 03:44:52 +00004599
4600/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
John Fastabendb32c8dc2011-04-12 02:44:55 +00004601static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
4602 unsigned int *tx, unsigned int *rx)
John Fastabende5b64632011-03-08 03:44:52 +00004603{
4604 struct net_device *dev = adapter->netdev;
4605 struct ixgbe_hw *hw = &adapter->hw;
4606 u8 num_tcs = netdev_get_num_tc(dev);
4607
4608 *tx = 0;
4609 *rx = 0;
4610
4611 switch (hw->mac.type) {
4612 case ixgbe_mac_82598EB:
John Fastabendaba70d52011-04-26 07:26:14 +00004613 *tx = tc << 2;
4614 *rx = tc << 3;
John Fastabende5b64632011-03-08 03:44:52 +00004615 break;
4616 case ixgbe_mac_82599EB:
4617 case ixgbe_mac_X540:
4618 if (num_tcs == 8) {
4619 if (tc < 3) {
4620 *tx = tc << 5;
4621 *rx = tc << 4;
4622 } else if (tc < 5) {
4623 *tx = ((tc + 2) << 4);
4624 *rx = tc << 4;
4625 } else if (tc < num_tcs) {
4626 *tx = ((tc + 8) << 3);
4627 *rx = tc << 4;
4628 }
4629 } else if (num_tcs == 4) {
4630 *rx = tc << 5;
4631 switch (tc) {
4632 case 0:
4633 *tx = 0;
4634 break;
4635 case 1:
4636 *tx = 64;
4637 break;
4638 case 2:
4639 *tx = 96;
4640 break;
4641 case 3:
4642 *tx = 112;
4643 break;
4644 default:
4645 break;
4646 }
4647 }
4648 break;
4649 default:
4650 break;
4651 }
4652}
4653
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004654/**
4655 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4656 * @adapter: board private structure to initialize
4657 *
4658 * Cache the descriptor ring offsets for DCB to the assigned rings.
4659 *
4660 **/
4661static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4662{
John Fastabende5b64632011-03-08 03:44:52 +00004663 struct net_device *dev = adapter->netdev;
4664 int i, j, k;
4665 u8 num_tcs = netdev_get_num_tc(dev);
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004666
John Fastabend8b1c0b22011-05-03 02:26:48 +00004667 if (!num_tcs)
Alexander Duyckbd508172010-11-16 19:27:03 -08004668 return false;
4669
John Fastabende5b64632011-03-08 03:44:52 +00004670 for (i = 0, k = 0; i < num_tcs; i++) {
4671 unsigned int tx_s, rx_s;
4672 u16 count = dev->tc_to_txq[i].count;
4673
4674 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
4675 for (j = 0; j < count; j++, k++) {
4676 adapter->tx_ring[k]->reg_idx = tx_s + j;
4677 adapter->rx_ring[k]->reg_idx = rx_s + j;
4678 adapter->tx_ring[k]->dcb_tc = i;
4679 adapter->rx_ring[k]->dcb_tc = i;
Alexander Duyckbd508172010-11-16 19:27:03 -08004680 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004681 }
John Fastabende5b64632011-03-08 03:44:52 +00004682
4683 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004684}
4685#endif
4686
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004687/**
4688 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4689 * @adapter: board private structure to initialize
4690 *
4691 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4692 *
4693 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004694static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004695{
4696 int i;
4697 bool ret = false;
4698
Alexander Duyck03ecf912011-05-20 07:36:17 +00004699 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4700 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004701 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004702 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004703 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004704 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004705 ret = true;
4706 }
4707
4708 return ret;
4709}
4710
Yi Zou0331a832009-05-17 12:33:52 +00004711#ifdef IXGBE_FCOE
4712/**
4713 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4714 * @adapter: board private structure to initialize
4715 *
4716 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4717 *
4718 */
4719static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4720{
Yi Zou0331a832009-05-17 12:33:52 +00004721 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004722 int i;
4723 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004724
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004725 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4726 return false;
4727
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004728 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Alexander Duyck03ecf912011-05-20 07:36:17 +00004729 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004730 ixgbe_cache_ring_fdir(adapter);
4731 else
4732 ixgbe_cache_ring_rss(adapter);
4733
4734 fcoe_rx_i = f->mask;
4735 fcoe_tx_i = f->mask;
4736 }
4737 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4738 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4739 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4740 }
4741 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004742}
4743
4744#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004745/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004746 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4747 * @adapter: board private structure to initialize
4748 *
4749 * SR-IOV doesn't use any descriptor rings but changes the default if
4750 * no other mapping is used.
4751 *
4752 */
4753static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4754{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004755 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4756 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004757 if (adapter->num_vfs)
4758 return true;
4759 else
4760 return false;
4761}
4762
4763/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004764 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4765 * @adapter: board private structure to initialize
4766 *
4767 * Once we know the feature-set enabled for the device, we'll cache
4768 * the register offset the descriptor ring is assigned to.
4769 *
4770 * Note, the order the various feature calls is important. It must start with
4771 * the "most" features enabled at the same time, then trickle down to the
4772 * least amount of features turned on at once.
4773 **/
4774static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4775{
4776 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004777 adapter->rx_ring[0]->reg_idx = 0;
4778 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004779
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004780 if (ixgbe_cache_ring_sriov(adapter))
4781 return;
4782
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004783#ifdef CONFIG_IXGBE_DCB
4784 if (ixgbe_cache_ring_dcb(adapter))
4785 return;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004786#endif
John Fastabende5b64632011-03-08 03:44:52 +00004787
4788#ifdef IXGBE_FCOE
4789 if (ixgbe_cache_ring_fcoe(adapter))
4790 return;
4791#endif /* IXGBE_FCOE */
4792
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004793 if (ixgbe_cache_ring_fdir(adapter))
4794 return;
4795
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004796 if (ixgbe_cache_ring_rss(adapter))
4797 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004798}
4799
Auke Kok9a799d72007-09-15 14:07:45 -07004800/**
4801 * ixgbe_alloc_queues - Allocate memory for all rings
4802 * @adapter: board private structure to initialize
4803 *
4804 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004805 * number of queues at compile-time. The polling_netdev array is
4806 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004807 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004808static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004809{
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004810 int rx = 0, tx = 0, nid = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004811
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004812 if (nid < 0 || !node_online(nid))
4813 nid = first_online_node;
4814
4815 for (; tx < adapter->num_tx_queues; tx++) {
4816 struct ixgbe_ring *ring;
4817
4818 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004819 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004820 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004821 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004822 goto err_allocation;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004823 ring->count = adapter->tx_ring_count;
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004824 ring->queue_index = tx;
4825 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004826 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004827 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004828
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004829 adapter->tx_ring[tx] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004830 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004831
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004832 for (; rx < adapter->num_rx_queues; rx++) {
4833 struct ixgbe_ring *ring;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004834
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004835 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004836 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004837 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004838 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004839 goto err_allocation;
4840 ring->count = adapter->rx_ring_count;
4841 ring->queue_index = rx;
4842 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004843 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004844 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004845
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004846 adapter->rx_ring[rx] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004847 }
4848
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004849 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004850
4851 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004852
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004853err_allocation:
4854 while (tx)
4855 kfree(adapter->tx_ring[--tx]);
4856
4857 while (rx)
4858 kfree(adapter->rx_ring[--rx]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004859 return -ENOMEM;
4860}
4861
4862/**
4863 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4864 * @adapter: board private structure to initialize
4865 *
4866 * Attempt to configure the interrupts using the best available
4867 * capabilities of the hardware and the kernel.
4868 **/
Al Virofeea6a52008-11-27 15:34:07 -08004869static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004870{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004871 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004872 int err = 0;
4873 int vector, v_budget;
4874
4875 /*
4876 * It's easy to be greedy for MSI-X vectors, but it really
4877 * doesn't do us much good if we have a lot more vectors
4878 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004879 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004880 */
4881 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004882 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004883
4884 /*
4885 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004886 * hw.mac->max_msix_vectors vectors. With features
4887 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4888 * descriptor queues supported by our device. Thus, we cap it off in
4889 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004890 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004891 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004892
4893 /* A failure in MSI-X entry allocation isn't fatal, but it does
4894 * mean we disable MSI-X capabilities of the adapter. */
4895 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004896 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004897 if (adapter->msix_entries) {
4898 for (vector = 0; vector < v_budget; vector++)
4899 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004900
Alexander Duyck7a921c92009-05-06 10:43:28 +00004901 ixgbe_acquire_msix_vectors(adapter, v_budget);
4902
4903 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4904 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004905 }
David S. Miller26d27842010-05-03 15:18:22 -07004906
Alexander Duyck7a921c92009-05-06 10:43:28 +00004907 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4908 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck03ecf912011-05-20 07:36:17 +00004909 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck45b9f502011-01-06 14:29:59 +00004910 e_err(probe,
Alexander Duyck03ecf912011-05-20 07:36:17 +00004911 "ATR is not supported while multiple "
Alexander Duyck45b9f502011-01-06 14:29:59 +00004912 "queues are disabled. Disabling Flow Director\n");
4913 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004914 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004915 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004916 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4917 ixgbe_disable_sriov(adapter);
4918
Ben Hutchings847f53f2010-09-27 08:28:56 +00004919 err = ixgbe_set_num_queues(adapter);
4920 if (err)
4921 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004922
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004923 err = pci_enable_msi(adapter->pdev);
4924 if (!err) {
4925 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4926 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004927 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4928 "Unable to allocate MSI interrupt, "
4929 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004930 /* reset err */
4931 err = 0;
4932 }
4933
4934out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004935 return err;
4936}
4937
Alexander Duyck7a921c92009-05-06 10:43:28 +00004938/**
4939 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4940 * @adapter: board private structure to initialize
4941 *
4942 * We allocate one q_vector per queue interrupt. If allocation fails we
4943 * return -ENOMEM.
4944 **/
4945static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4946{
4947 int q_idx, num_q_vectors;
4948 struct ixgbe_q_vector *q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004949 int (*poll)(struct napi_struct *, int);
4950
4951 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4952 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004953 poll = &ixgbe_clean_rxtx_many;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004954 } else {
4955 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004956 poll = &ixgbe_poll;
4957 }
4958
4959 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004960 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004961 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004962 if (!q_vector)
4963 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004964 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004965 if (!q_vector)
4966 goto err_out;
4967 q_vector->adapter = adapter;
Alexander Duyck08c88332011-06-11 01:45:03 +00004968 if (q_vector->tx.count && !q_vector->rx.count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004969 q_vector->eitr = adapter->tx_eitr_param;
4970 else
4971 q_vector->eitr = adapter->rx_eitr_param;
Alexander Duyckfe49f042009-06-04 16:00:09 +00004972 q_vector->v_idx = q_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004973 netif_napi_add(adapter->netdev, &q_vector->napi, (*poll), 64);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004974 adapter->q_vector[q_idx] = q_vector;
4975 }
4976
4977 return 0;
4978
4979err_out:
4980 while (q_idx) {
4981 q_idx--;
4982 q_vector = adapter->q_vector[q_idx];
4983 netif_napi_del(&q_vector->napi);
4984 kfree(q_vector);
4985 adapter->q_vector[q_idx] = NULL;
4986 }
4987 return -ENOMEM;
4988}
4989
4990/**
4991 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
4992 * @adapter: board private structure to initialize
4993 *
4994 * This function frees the memory allocated to the q_vectors. In addition if
4995 * NAPI is enabled it will delete any references to the NAPI struct prior
4996 * to freeing the q_vector.
4997 **/
4998static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
4999{
5000 int q_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005001
Alexander Duyck91281fd2009-06-04 16:00:27 +00005002 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00005003 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00005004 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00005005 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00005006
5007 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
5008 struct ixgbe_q_vector *q_vector = adapter->q_vector[q_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00005009 adapter->q_vector[q_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00005010 netif_napi_del(&q_vector->napi);
Alexander Duyck7a921c92009-05-06 10:43:28 +00005011 kfree(q_vector);
5012 }
5013}
5014
Don Skidmore7b25cdb2009-08-25 04:47:32 +00005015static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005016{
5017 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
5018 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
5019 pci_disable_msix(adapter->pdev);
5020 kfree(adapter->msix_entries);
5021 adapter->msix_entries = NULL;
5022 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
5023 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
5024 pci_disable_msi(adapter->pdev);
5025 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005026}
5027
5028/**
5029 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
5030 * @adapter: board private structure to initialize
5031 *
5032 * We determine which interrupt scheme to use based on...
5033 * - Kernel support (MSI, MSI-X)
5034 * - which can be user-defined (via MODULE_PARAM)
5035 * - Hardware queue count (num_*_queues)
5036 * - defined by miscellaneous hardware support/features (RSS, etc.)
5037 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08005038int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005039{
5040 int err;
5041
5042 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00005043 err = ixgbe_set_num_queues(adapter);
5044 if (err)
5045 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005046
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005047 err = ixgbe_set_interrupt_capability(adapter);
5048 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005049 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005050 goto err_set_interrupt;
5051 }
5052
Alexander Duyck7a921c92009-05-06 10:43:28 +00005053 err = ixgbe_alloc_q_vectors(adapter);
5054 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005055 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005056 goto err_alloc_q_vectors;
5057 }
5058
5059 err = ixgbe_alloc_queues(adapter);
5060 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005061 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00005062 goto err_alloc_queues;
5063 }
5064
Emil Tantilov849c4542010-06-03 16:53:41 +00005065 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00005066 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
5067 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005068
5069 set_bit(__IXGBE_DOWN, &adapter->state);
5070
5071 return 0;
5072
Alexander Duyck7a921c92009-05-06 10:43:28 +00005073err_alloc_queues:
5074 ixgbe_free_q_vectors(adapter);
5075err_alloc_q_vectors:
5076 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005077err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00005078 return err;
5079}
5080
5081/**
5082 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
5083 * @adapter: board private structure to clear interrupt scheme on
5084 *
5085 * We go through and clear interrupt specific resources and reset the structure
5086 * to pre-load conditions
5087 **/
5088void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
5089{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005090 int i;
5091
5092 for (i = 0; i < adapter->num_tx_queues; i++) {
5093 kfree(adapter->tx_ring[i]);
5094 adapter->tx_ring[i] = NULL;
5095 }
5096 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08005097 struct ixgbe_ring *ring = adapter->rx_ring[i];
5098
5099 /* ixgbe_get_stats64() might access this ring, we must wait
5100 * a grace period before freeing it.
5101 */
Lai Jiangshanbcec8b62011-03-18 11:57:21 +08005102 kfree_rcu(ring, rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005103 adapter->rx_ring[i] = NULL;
5104 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00005105
Don Skidmoreb8eb3a12010-12-01 20:54:53 +00005106 adapter->num_tx_queues = 0;
5107 adapter->num_rx_queues = 0;
5108
Alexander Duyck7a921c92009-05-06 10:43:28 +00005109 ixgbe_free_q_vectors(adapter);
5110 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005111}
5112
5113/**
5114 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5115 * @adapter: board private structure to initialize
5116 *
5117 * ixgbe_sw_init initializes the Adapter private data structure.
5118 * Fields are initialized based on PCI device information and
5119 * OS network device settings (MTU size).
5120 **/
5121static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
5122{
5123 struct ixgbe_hw *hw = &adapter->hw;
5124 struct pci_dev *pdev = adapter->pdev;
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00005125 struct net_device *dev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005126 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005127#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005128 int j;
5129 struct tc_configuration *tc;
5130#endif
John Fastabend16b61be2010-11-16 19:26:44 -08005131 int max_frame = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005132
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005133 /* PCI config space info */
5134
5135 hw->vendor_id = pdev->vendor;
5136 hw->device_id = pdev->device;
5137 hw->revision_id = pdev->revision;
5138 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5139 hw->subsystem_device_id = pdev->subsystem_device;
5140
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005141 /* Set capability flags */
5142 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
5143 adapter->ring_feature[RING_F_RSS].indices = rss;
5144 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08005145 switch (hw->mac.type) {
5146 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00005147 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5148 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005149 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08005150 break;
5151 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005152 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005153 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00005154 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5155 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005156 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5157 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00005158 /* Flow Director hash filters enabled */
5159 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
5160 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005161 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00005162 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00005163 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00005164#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00005165 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5166 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5167 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00005168#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00005169 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00005170 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00005171#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00005172#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005173 break;
5174 default:
5175 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005176 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005177
Alexander Duyck1fc5f032011-06-02 04:28:39 +00005178 /* n-tuple support exists, always init our spinlock */
5179 spin_lock_init(&adapter->fdir_perfect_lock);
5180
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005181#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005182 /* Configure DCB traffic classes */
5183 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5184 tc = &adapter->dcb_cfg.tc_config[j];
5185 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5186 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5187 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5188 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5189 tc->dcb_pfc = pfc_disabled;
5190 }
5191 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5192 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005193 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005194 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00005195 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005196 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00005197 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005198
5199#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005200
5201 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005202 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005203 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005204#ifdef CONFIG_DCB
5205 adapter->last_lfc_mode = hw->fc.current_mode;
5206#endif
John Fastabend16b61be2010-11-16 19:26:44 -08005207 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5208 hw->fc.low_water = FC_LOW_WATER(max_frame);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005209 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5210 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005211 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005212
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005213 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005214 adapter->rx_itr_setting = 1;
5215 adapter->rx_eitr_param = 20000;
5216 adapter->tx_itr_setting = 1;
5217 adapter->tx_eitr_param = 10000;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005218
5219 /* set defaults for eitr in MegaBytes */
5220 adapter->eitr_low = 10;
5221 adapter->eitr_high = 20;
5222
5223 /* set default ring sizes */
5224 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5225 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5226
Auke Kok9a799d72007-09-15 14:07:45 -07005227 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005228 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005229 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005230 return -EIO;
5231 }
5232
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005233 /* enable rx csum by default */
Auke Kok9a799d72007-09-15 14:07:45 -07005234 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
5235
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005236 /* get assigned NUMA node */
5237 adapter->node = dev_to_node(&pdev->dev);
5238
Auke Kok9a799d72007-09-15 14:07:45 -07005239 set_bit(__IXGBE_DOWN, &adapter->state);
5240
5241 return 0;
5242}
5243
5244/**
5245 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005246 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005247 *
5248 * Return 0 on success, negative on failure
5249 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005250int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005251{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005252 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07005253 int size;
5254
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005255 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005256 tx_ring->tx_buffer_info = vzalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005257 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005258 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005259 if (!tx_ring->tx_buffer_info)
5260 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005261
5262 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005263 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005264 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005265
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005266 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005267 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005268 if (!tx_ring->desc)
5269 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005270
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005271 tx_ring->next_to_use = 0;
5272 tx_ring->next_to_clean = 0;
5273 tx_ring->work_limit = tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07005274 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005275
5276err:
5277 vfree(tx_ring->tx_buffer_info);
5278 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005279 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005280 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005281}
5282
5283/**
Alexander Duyck69888672008-09-11 20:05:39 -07005284 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5285 * @adapter: board private structure
5286 *
5287 * If this function returns with an error, then it's possible one or
5288 * more of the rings is populated (while the rest are not). It is the
5289 * callers duty to clean those orphaned rings.
5290 *
5291 * Return 0 on success, negative on failure
5292 **/
5293static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5294{
5295 int i, err = 0;
5296
5297 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005298 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005299 if (!err)
5300 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005301 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005302 break;
5303 }
5304
5305 return err;
5306}
5307
5308/**
Auke Kok9a799d72007-09-15 14:07:45 -07005309 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005310 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005311 *
5312 * Returns 0 on success, negative on failure
5313 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005314int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005315{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005316 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005317 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005318
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005319 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005320 rx_ring->rx_buffer_info = vzalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005321 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005322 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005323 if (!rx_ring->rx_buffer_info)
5324 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005325
Auke Kok9a799d72007-09-15 14:07:45 -07005326 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005327 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5328 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005329
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005330 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005331 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005332
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005333 if (!rx_ring->desc)
5334 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005335
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005336 rx_ring->next_to_clean = 0;
5337 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005338
5339 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005340err:
5341 vfree(rx_ring->rx_buffer_info);
5342 rx_ring->rx_buffer_info = NULL;
5343 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005344 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005345}
5346
5347/**
Alexander Duyck69888672008-09-11 20:05:39 -07005348 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5349 * @adapter: board private structure
5350 *
5351 * If this function returns with an error, then it's possible one or
5352 * more of the rings is populated (while the rest are not). It is the
5353 * callers duty to clean those orphaned rings.
5354 *
5355 * Return 0 on success, negative on failure
5356 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005357static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5358{
5359 int i, err = 0;
5360
5361 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005362 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005363 if (!err)
5364 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005365 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005366 break;
5367 }
5368
5369 return err;
5370}
5371
5372/**
Auke Kok9a799d72007-09-15 14:07:45 -07005373 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005374 * @tx_ring: Tx descriptor ring for a specific queue
5375 *
5376 * Free all transmit software resources
5377 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005378void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005379{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005380 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005381
5382 vfree(tx_ring->tx_buffer_info);
5383 tx_ring->tx_buffer_info = NULL;
5384
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005385 /* if not set, then don't free */
5386 if (!tx_ring->desc)
5387 return;
5388
5389 dma_free_coherent(tx_ring->dev, tx_ring->size,
5390 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005391
5392 tx_ring->desc = NULL;
5393}
5394
5395/**
5396 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5397 * @adapter: board private structure
5398 *
5399 * Free all transmit software resources
5400 **/
5401static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5402{
5403 int i;
5404
5405 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005406 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005407 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005408}
5409
5410/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005411 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005412 * @rx_ring: ring to clean the resources from
5413 *
5414 * Free all receive software resources
5415 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005416void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005417{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005418 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005419
5420 vfree(rx_ring->rx_buffer_info);
5421 rx_ring->rx_buffer_info = NULL;
5422
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005423 /* if not set, then don't free */
5424 if (!rx_ring->desc)
5425 return;
5426
5427 dma_free_coherent(rx_ring->dev, rx_ring->size,
5428 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005429
5430 rx_ring->desc = NULL;
5431}
5432
5433/**
5434 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5435 * @adapter: board private structure
5436 *
5437 * Free all receive software resources
5438 **/
5439static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5440{
5441 int i;
5442
5443 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005444 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005445 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005446}
5447
5448/**
Auke Kok9a799d72007-09-15 14:07:45 -07005449 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5450 * @netdev: network interface device structure
5451 * @new_mtu: new value for maximum frame size
5452 *
5453 * Returns 0 on success, negative on failure
5454 **/
5455static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5456{
5457 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005458 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005459 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5460
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005461 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rosee9f98072011-01-26 01:06:07 +00005462 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED &&
5463 hw->mac.type != ixgbe_mac_X540) {
5464 if ((new_mtu < 68) || (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
5465 return -EINVAL;
5466 } else {
5467 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5468 return -EINVAL;
5469 }
Auke Kok9a799d72007-09-15 14:07:45 -07005470
Emil Tantilov396e7992010-07-01 20:05:12 +00005471 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005472 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005473 netdev->mtu = new_mtu;
5474
John Fastabend16b61be2010-11-16 19:26:44 -08005475 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5476 hw->fc.low_water = FC_LOW_WATER(max_frame);
5477
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005478 if (netif_running(netdev))
5479 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005480
5481 return 0;
5482}
5483
5484/**
5485 * ixgbe_open - Called when a network interface is made active
5486 * @netdev: network interface device structure
5487 *
5488 * Returns 0 on success, negative value on failure
5489 *
5490 * The open entry point is called when a network interface is made
5491 * active by the system (IFF_UP). At this point all resources needed
5492 * for transmit and receive operations are allocated, the interrupt
5493 * handler is registered with the OS, the watchdog timer is started,
5494 * and the stack is notified that the interface is ready.
5495 **/
5496static int ixgbe_open(struct net_device *netdev)
5497{
5498 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5499 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005500
Auke Kok4bebfaa2008-02-11 09:26:01 -08005501 /* disallow open during test */
5502 if (test_bit(__IXGBE_TESTING, &adapter->state))
5503 return -EBUSY;
5504
Jesse Brandeburg54386462009-04-17 20:44:27 +00005505 netif_carrier_off(netdev);
5506
Auke Kok9a799d72007-09-15 14:07:45 -07005507 /* allocate transmit descriptors */
5508 err = ixgbe_setup_all_tx_resources(adapter);
5509 if (err)
5510 goto err_setup_tx;
5511
Auke Kok9a799d72007-09-15 14:07:45 -07005512 /* allocate receive descriptors */
5513 err = ixgbe_setup_all_rx_resources(adapter);
5514 if (err)
5515 goto err_setup_rx;
5516
5517 ixgbe_configure(adapter);
5518
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005519 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005520 if (err)
5521 goto err_req_irq;
5522
Auke Kok9a799d72007-09-15 14:07:45 -07005523 err = ixgbe_up_complete(adapter);
5524 if (err)
5525 goto err_up;
5526
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07005527 netif_tx_start_all_queues(netdev);
5528
Auke Kok9a799d72007-09-15 14:07:45 -07005529 return 0;
5530
5531err_up:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005532 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005533 ixgbe_free_irq(adapter);
5534err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005535err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005536 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005537err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005538 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005539 ixgbe_reset(adapter);
5540
5541 return err;
5542}
5543
5544/**
5545 * ixgbe_close - Disables a network interface
5546 * @netdev: network interface device structure
5547 *
5548 * Returns 0, this is not allowed to fail
5549 *
5550 * The close entry point is called when an interface is de-activated
5551 * by the OS. The hardware is still under the drivers control, but
5552 * needs to be disabled. A global MAC reset is issued to stop the
5553 * hardware, and all transmit and receive resources are freed.
5554 **/
5555static int ixgbe_close(struct net_device *netdev)
5556{
5557 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005558
5559 ixgbe_down(adapter);
5560 ixgbe_free_irq(adapter);
5561
Alexander Duycke4911d52011-05-11 07:18:52 +00005562 ixgbe_fdir_filter_exit(adapter);
5563
Auke Kok9a799d72007-09-15 14:07:45 -07005564 ixgbe_free_all_tx_resources(adapter);
5565 ixgbe_free_all_rx_resources(adapter);
5566
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005567 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005568
5569 return 0;
5570}
5571
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005572#ifdef CONFIG_PM
5573static int ixgbe_resume(struct pci_dev *pdev)
5574{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005575 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5576 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005577 u32 err;
5578
5579 pci_set_power_state(pdev, PCI_D0);
5580 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005581 /*
5582 * pci_restore_state clears dev->state_saved so call
5583 * pci_save_state to restore it.
5584 */
5585 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005586
5587 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005588 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005589 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005590 return err;
5591 }
5592 pci_set_master(pdev);
5593
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005594 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005595
5596 err = ixgbe_init_interrupt_scheme(adapter);
5597 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005598 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005599 return err;
5600 }
5601
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005602 ixgbe_reset(adapter);
5603
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005604 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5605
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005606 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005607 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005608 if (err)
5609 return err;
5610 }
5611
5612 netif_device_attach(netdev);
5613
5614 return 0;
5615}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005616#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005617
5618static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005619{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005620 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5621 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005622 struct ixgbe_hw *hw = &adapter->hw;
5623 u32 ctrl, fctrl;
5624 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005625#ifdef CONFIG_PM
5626 int retval = 0;
5627#endif
5628
5629 netif_device_detach(netdev);
5630
5631 if (netif_running(netdev)) {
5632 ixgbe_down(adapter);
5633 ixgbe_free_irq(adapter);
5634 ixgbe_free_all_tx_resources(adapter);
5635 ixgbe_free_all_rx_resources(adapter);
5636 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005637
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005638 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00005639#ifdef CONFIG_DCB
5640 kfree(adapter->ixgbe_ieee_pfc);
5641 kfree(adapter->ixgbe_ieee_ets);
5642#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005643
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005644#ifdef CONFIG_PM
5645 retval = pci_save_state(pdev);
5646 if (retval)
5647 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005648
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005649#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005650 if (wufc) {
5651 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005652
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005653 /* turn on all-multi mode if wake on multicast is enabled */
5654 if (wufc & IXGBE_WUFC_MC) {
5655 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5656 fctrl |= IXGBE_FCTRL_MPE;
5657 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5658 }
5659
5660 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5661 ctrl |= IXGBE_CTRL_GIO_DIS;
5662 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5663
5664 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5665 } else {
5666 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5667 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5668 }
5669
Alexander Duyckbd508172010-11-16 19:27:03 -08005670 switch (hw->mac.type) {
5671 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005672 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005673 break;
5674 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005675 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005676 pci_wake_from_d3(pdev, !!wufc);
5677 break;
5678 default:
5679 break;
5680 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005681
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005682 *enable_wake = !!wufc;
5683
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005684 ixgbe_release_hw_control(adapter);
5685
5686 pci_disable_device(pdev);
5687
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005688 return 0;
5689}
5690
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005691#ifdef CONFIG_PM
5692static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5693{
5694 int retval;
5695 bool wake;
5696
5697 retval = __ixgbe_shutdown(pdev, &wake);
5698 if (retval)
5699 return retval;
5700
5701 if (wake) {
5702 pci_prepare_to_sleep(pdev);
5703 } else {
5704 pci_wake_from_d3(pdev, false);
5705 pci_set_power_state(pdev, PCI_D3hot);
5706 }
5707
5708 return 0;
5709}
5710#endif /* CONFIG_PM */
5711
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005712static void ixgbe_shutdown(struct pci_dev *pdev)
5713{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005714 bool wake;
5715
5716 __ixgbe_shutdown(pdev, &wake);
5717
5718 if (system_state == SYSTEM_POWER_OFF) {
5719 pci_wake_from_d3(pdev, wake);
5720 pci_set_power_state(pdev, PCI_D3hot);
5721 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005722}
5723
5724/**
Auke Kok9a799d72007-09-15 14:07:45 -07005725 * ixgbe_update_stats - Update the board statistics counters.
5726 * @adapter: board private structure
5727 **/
5728void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5729{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005730 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005731 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005732 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005733 u64 total_mpc = 0;
5734 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005735 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5736 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
5737 u64 bytes = 0, packets = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005738
Don Skidmored08935c2010-06-11 13:20:29 +00005739 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5740 test_bit(__IXGBE_RESETTING, &adapter->state))
5741 return;
5742
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005743 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005744 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005745 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005746 for (i = 0; i < 16; i++)
5747 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005748 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005749 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005750 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5751 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005752 }
5753 adapter->rsc_total_count = rsc_count;
5754 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005755 }
5756
Alexander Duyck5b7da512010-11-16 19:26:50 -08005757 for (i = 0; i < adapter->num_rx_queues; i++) {
5758 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5759 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5760 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5761 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
5762 bytes += rx_ring->stats.bytes;
5763 packets += rx_ring->stats.packets;
5764 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005765 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005766 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5767 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
5768 netdev->stats.rx_bytes = bytes;
5769 netdev->stats.rx_packets = packets;
5770
5771 bytes = 0;
5772 packets = 0;
5773 /* gather some stats to the adapter struct that are per queue */
5774 for (i = 0; i < adapter->num_tx_queues; i++) {
5775 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5776 restart_queue += tx_ring->tx_stats.restart_queue;
5777 tx_busy += tx_ring->tx_stats.tx_busy;
5778 bytes += tx_ring->stats.bytes;
5779 packets += tx_ring->stats.packets;
5780 }
5781 adapter->restart_queue = restart_queue;
5782 adapter->tx_busy = tx_busy;
5783 netdev->stats.tx_bytes = bytes;
5784 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005785
Joe Perches7ca647b2010-09-07 21:35:40 +00005786 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005787 for (i = 0; i < 8; i++) {
5788 /* for packet buffers not used, the register should read 0 */
5789 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5790 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005791 hwstats->mpc[i] += mpc;
5792 total_mpc += hwstats->mpc[i];
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005793 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005794 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5795 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5796 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5797 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5798 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005799 switch (hw->mac.type) {
5800 case ixgbe_mac_82598EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005801 hwstats->pxonrxc[i] +=
5802 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005803 break;
5804 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005805 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005806 hwstats->pxonrxc[i] +=
5807 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005808 break;
5809 default:
5810 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005811 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005812 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5813 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005814 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005815 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005816 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005817 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005818
John Fastabendc84d3242010-11-16 19:27:12 -08005819 ixgbe_update_xoff_received(adapter);
5820
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005821 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005822 switch (hw->mac.type) {
5823 case ixgbe_mac_82598EB:
5824 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005825 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5826 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5827 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5828 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005829 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005830 /* OS2BMC stats are X540 only*/
5831 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5832 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5833 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5834 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5835 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005836 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005837 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005838 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005839 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005840 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005841 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005842 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005843 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5844 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005845#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005846 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5847 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5848 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5849 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5850 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5851 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Yi Zou6d455222009-05-13 13:12:16 +00005852#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005853 break;
5854 default:
5855 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005856 }
Auke Kok9a799d72007-09-15 14:07:45 -07005857 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005858 hwstats->bprc += bprc;
5859 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005860 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005861 hwstats->mprc -= bprc;
5862 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5863 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5864 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5865 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5866 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5867 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5868 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5869 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005870 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005871 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005872 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005873 hwstats->lxofftxc += lxoff;
5874 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5875 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5876 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005877 /*
5878 * 82598 errata - tx of flow control packets is included in tx counters
5879 */
5880 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005881 hwstats->gptc -= xon_off_tot;
5882 hwstats->mptc -= xon_off_tot;
5883 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5884 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5885 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5886 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5887 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5888 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5889 hwstats->ptc64 -= xon_off_tot;
5890 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5891 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5892 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5893 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5894 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5895 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005896
5897 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005898 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005899
5900 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005901 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005902 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005903 netdev->stats.rx_length_errors = hwstats->rlec;
5904 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005905 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005906}
5907
5908/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005909 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5910 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005911 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005912static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005913{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005914 struct ixgbe_hw *hw = &adapter->hw;
5915 int i;
5916
Alexander Duyckd034acf2011-04-27 09:25:34 +00005917 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5918 return;
5919
5920 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5921
5922 /* if interface is down do nothing */
5923 if (test_bit(__IXGBE_DOWN, &adapter->state))
5924 return;
5925
5926 /* do nothing if we are not using signature filters */
5927 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5928 return;
5929
5930 adapter->fdir_overflow++;
5931
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005932 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5933 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005934 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005935 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005936 /* re-enable flow director interrupts */
5937 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005938 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005939 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005940 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005941 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005942}
5943
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005944/**
5945 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
5946 * @adapter - pointer to the device adapter structure
5947 *
5948 * This function serves two purposes. First it strobes the interrupt lines
5949 * in order to make certain interrupts are occuring. Secondly it sets the
5950 * bits needed to check for TX hangs. As a result we should immediately
5951 * determine if a hang has occured.
5952 */
5953static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5954{
Auke Kok9a799d72007-09-15 14:07:45 -07005955 struct ixgbe_hw *hw = &adapter->hw;
5956 u64 eics = 0;
5957 int i;
5958
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005959 /* If we're down or resetting, just bail */
5960 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5961 test_bit(__IXGBE_RESETTING, &adapter->state))
5962 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005963
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005964 /* Force detection of hung controller */
5965 if (netif_carrier_ok(adapter->netdev)) {
5966 for (i = 0; i < adapter->num_tx_queues; i++)
5967 set_check_for_tx_hang(adapter->tx_ring[i]);
5968 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005969
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005970 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005971 /*
5972 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005973 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005974 * would set *both* EIMS and EICS for any bit in EIAM
5975 */
5976 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5977 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005978 } else {
5979 /* get one bit for every active tx/rx interrupt vector */
5980 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
5981 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyck08c88332011-06-11 01:45:03 +00005982 if (qv->rx.count || qv->tx.count)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005983 eics |= ((u64)1 << i);
5984 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005985 }
5986
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005987 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005988 ixgbe_irq_rearm_queues(adapter, eics);
5989
Alexander Duyckfe49f042009-06-04 16:00:09 +00005990}
5991
5992/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005993 * ixgbe_watchdog_update_link - update the link status
5994 * @adapter - pointer to the device adapter structure
5995 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005996 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005997static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005998{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005999 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006000 u32 link_speed = adapter->link_speed;
6001 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006002 int i;
6003
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006004 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
6005 return;
6006
6007 if (hw->mac.ops.check_link) {
6008 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006009 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006010 /* always assume link is up, if no check link function */
6011 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
6012 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006013 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006014 if (link_up) {
6015 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6016 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
6017 hw->mac.ops.fc_enable(hw, i);
6018 } else {
6019 hw->mac.ops.fc_enable(hw, 0);
6020 }
6021 }
6022
6023 if (link_up ||
6024 time_after(jiffies, (adapter->link_check_timeout +
6025 IXGBE_TRY_LINK_TIMEOUT))) {
6026 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
6027 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
6028 IXGBE_WRITE_FLUSH(hw);
6029 }
6030
6031 adapter->link_up = link_up;
6032 adapter->link_speed = link_speed;
6033}
6034
6035/**
6036 * ixgbe_watchdog_link_is_up - update netif_carrier status and
6037 * print link up message
6038 * @adapter - pointer to the device adapter structure
6039 **/
6040static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
6041{
6042 struct net_device *netdev = adapter->netdev;
6043 struct ixgbe_hw *hw = &adapter->hw;
6044 u32 link_speed = adapter->link_speed;
6045 bool flow_rx, flow_tx;
6046
6047 /* only continue if link was previously down */
6048 if (netif_carrier_ok(netdev))
6049 return;
6050
6051 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
6052
6053 switch (hw->mac.type) {
6054 case ixgbe_mac_82598EB: {
6055 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6056 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
6057 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6058 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
6059 }
6060 break;
6061 case ixgbe_mac_X540:
6062 case ixgbe_mac_82599EB: {
6063 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6064 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6065 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6066 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6067 }
6068 break;
6069 default:
6070 flow_tx = false;
6071 flow_rx = false;
6072 break;
6073 }
6074 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
6075 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
6076 "10 Gbps" :
6077 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6078 "1 Gbps" :
6079 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
6080 "100 Mbps" :
6081 "unknown speed"))),
6082 ((flow_rx && flow_tx) ? "RX/TX" :
6083 (flow_rx ? "RX" :
6084 (flow_tx ? "TX" : "None"))));
6085
6086 netif_carrier_on(netdev);
6087#ifdef HAVE_IPLINK_VF_CONFIG
6088 ixgbe_check_vf_rate_limit(adapter);
6089#endif /* HAVE_IPLINK_VF_CONFIG */
6090}
6091
6092/**
6093 * ixgbe_watchdog_link_is_down - update netif_carrier status and
6094 * print link down message
6095 * @adapter - pointer to the adapter structure
6096 **/
6097static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter* adapter)
6098{
6099 struct net_device *netdev = adapter->netdev;
6100 struct ixgbe_hw *hw = &adapter->hw;
6101
6102 adapter->link_up = false;
6103 adapter->link_speed = 0;
6104
6105 /* only continue if link was up previously */
6106 if (!netif_carrier_ok(netdev))
6107 return;
6108
6109 /* poll for SFP+ cable when link is down */
6110 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
6111 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
6112
6113 e_info(drv, "NIC Link is Down\n");
6114 netif_carrier_off(netdev);
6115}
6116
6117/**
6118 * ixgbe_watchdog_flush_tx - flush queues on link down
6119 * @adapter - pointer to the device adapter structure
6120 **/
6121static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
6122{
6123 int i;
6124 int some_tx_pending = 0;
6125
6126 if (!netif_carrier_ok(adapter->netdev)) {
6127 for (i = 0; i < adapter->num_tx_queues; i++) {
6128 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
6129 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6130 some_tx_pending = 1;
6131 break;
6132 }
6133 }
6134
6135 if (some_tx_pending) {
6136 /* We've lost link, so the controller stops DMA,
6137 * but we've got queued Tx work that's never going
6138 * to get done, so reset controller to flush Tx.
6139 * (Do the reset outside of interrupt context).
6140 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006141 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006142 }
6143 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006144}
6145
Greg Rosea985b6c32010-11-18 03:02:52 +00006146static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
6147{
6148 u32 ssvpc;
6149
6150 /* Do not perform spoof check for 82598 */
6151 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6152 return;
6153
6154 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
6155
6156 /*
6157 * ssvpc register is cleared on read, if zero then no
6158 * spoofed packets in the last interval.
6159 */
6160 if (!ssvpc)
6161 return;
6162
6163 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
6164}
6165
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006166/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006167 * ixgbe_watchdog_subtask - check and bring link up
6168 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006169 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006170static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006171{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006172 /* if interface is down do nothing */
6173 if (test_bit(__IXGBE_DOWN, &adapter->state))
6174 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006175
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006176 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006177
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006178 if (adapter->link_up)
6179 ixgbe_watchdog_link_is_up(adapter);
6180 else
6181 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006182
Greg Rosea985b6c32010-11-18 03:02:52 +00006183 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006184 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006185
6186 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006187}
6188
Alexander Duyck70864002011-04-27 09:13:56 +00006189/**
6190 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
6191 * @adapter - the ixgbe adapter structure
6192 **/
6193static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
6194{
6195 struct ixgbe_hw *hw = &adapter->hw;
6196 s32 err;
6197
6198 /* not searching for SFP so there is nothing to do here */
6199 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
6200 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6201 return;
6202
6203 /* someone else is in init, wait until next service event */
6204 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6205 return;
6206
6207 err = hw->phy.ops.identify_sfp(hw);
6208 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6209 goto sfp_out;
6210
6211 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
6212 /* If no cable is present, then we need to reset
6213 * the next time we find a good cable. */
6214 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
6215 }
6216
6217 /* exit on error */
6218 if (err)
6219 goto sfp_out;
6220
6221 /* exit if reset not needed */
6222 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
6223 goto sfp_out;
6224
6225 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
6226
6227 /*
6228 * A module may be identified correctly, but the EEPROM may not have
6229 * support for that module. setup_sfp() will fail in that case, so
6230 * we should not allow that module to load.
6231 */
6232 if (hw->mac.type == ixgbe_mac_82598EB)
6233 err = hw->phy.ops.reset(hw);
6234 else
6235 err = hw->mac.ops.setup_sfp(hw);
6236
6237 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
6238 goto sfp_out;
6239
6240 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
6241 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
6242
6243sfp_out:
6244 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6245
6246 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
6247 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
6248 e_dev_err("failed to initialize because an unsupported "
6249 "SFP+ module type was detected.\n");
6250 e_dev_err("Reload the driver after installing a "
6251 "supported module.\n");
6252 unregister_netdev(adapter->netdev);
6253 }
6254}
6255
6256/**
6257 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
6258 * @adapter - the ixgbe adapter structure
6259 **/
6260static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
6261{
6262 struct ixgbe_hw *hw = &adapter->hw;
6263 u32 autoneg;
6264 bool negotiation;
6265
6266 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
6267 return;
6268
6269 /* someone else is in init, wait until next service event */
6270 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
6271 return;
6272
6273 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
6274
6275 autoneg = hw->phy.autoneg_advertised;
6276 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
6277 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
6278 hw->mac.autotry_restart = false;
6279 if (hw->mac.ops.setup_link)
6280 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
6281
6282 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
6283 adapter->link_check_timeout = jiffies;
6284 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
6285}
6286
6287/**
6288 * ixgbe_service_timer - Timer Call-back
6289 * @data: pointer to adapter cast into an unsigned long
6290 **/
6291static void ixgbe_service_timer(unsigned long data)
6292{
6293 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6294 unsigned long next_event_offset;
6295
6296 /* poll faster when waiting for link */
6297 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6298 next_event_offset = HZ / 10;
6299 else
6300 next_event_offset = HZ * 2;
6301
6302 /* Reset the timer */
6303 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6304
6305 ixgbe_service_event_schedule(adapter);
6306}
6307
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006308static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6309{
6310 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6311 return;
6312
6313 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6314
6315 /* If we're already down or resetting, just bail */
6316 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6317 test_bit(__IXGBE_RESETTING, &adapter->state))
6318 return;
6319
6320 ixgbe_dump(adapter);
6321 netdev_err(adapter->netdev, "Reset adapter\n");
6322 adapter->tx_timeout_count++;
6323
6324 ixgbe_reinit_locked(adapter);
6325}
6326
Alexander Duyck70864002011-04-27 09:13:56 +00006327/**
6328 * ixgbe_service_task - manages and runs subtasks
6329 * @work: pointer to work_struct containing our data
6330 **/
6331static void ixgbe_service_task(struct work_struct *work)
6332{
6333 struct ixgbe_adapter *adapter = container_of(work,
6334 struct ixgbe_adapter,
6335 service_task);
6336
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006337 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006338 ixgbe_sfp_detection_subtask(adapter);
6339 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006340 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006341 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006342 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006343 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006344
6345 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006346}
6347
Alexander Duyck897ab152011-05-27 05:31:47 +00006348void ixgbe_tx_ctxtdesc(struct ixgbe_ring *tx_ring, u32 vlan_macip_lens,
6349 u32 fcoe_sof_eof, u32 type_tucmd, u32 mss_l4len_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07006350{
6351 struct ixgbe_adv_tx_context_desc *context_desc;
Alexander Duyck897ab152011-05-27 05:31:47 +00006352 u16 i = tx_ring->next_to_use;
6353
6354 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
6355
6356 i++;
6357 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
6358
6359 /* set bits to identify this as an advanced context descriptor */
6360 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
6361
6362 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6363 context_desc->seqnum_seed = cpu_to_le32(fcoe_sof_eof);
6364 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
6365 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6366}
6367
6368static int ixgbe_tso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
6369 u32 tx_flags, __be16 protocol, u8 *hdr_len)
6370{
Auke Kok9a799d72007-09-15 14:07:45 -07006371 int err;
Alexander Duyck897ab152011-05-27 05:31:47 +00006372 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006373 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006374
Alexander Duyck897ab152011-05-27 05:31:47 +00006375 if (!skb_is_gso(skb))
6376 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006377
Alexander Duyck897ab152011-05-27 05:31:47 +00006378 if (skb_header_cloned(skb)) {
6379 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6380 if (err)
6381 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006382 }
6383
Alexander Duyck897ab152011-05-27 05:31:47 +00006384 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6385 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6386
6387 if (protocol == __constant_htons(ETH_P_IP)) {
6388 struct iphdr *iph = ip_hdr(skb);
6389 iph->tot_len = 0;
6390 iph->check = 0;
6391 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6392 iph->daddr, 0,
6393 IPPROTO_TCP,
6394 0);
6395 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6396 } else if (skb_is_gso_v6(skb)) {
6397 ipv6_hdr(skb)->payload_len = 0;
6398 tcp_hdr(skb)->check =
6399 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6400 &ipv6_hdr(skb)->daddr,
6401 0, IPPROTO_TCP, 0);
6402 }
6403
6404 l4len = tcp_hdrlen(skb);
6405 *hdr_len = skb_transport_offset(skb) + l4len;
6406
6407 /* mss_l4len_id: use 1 as index for TSO */
6408 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6409 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
6410 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
6411
6412 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6413 vlan_macip_lens = skb_network_header_len(skb);
6414 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6415 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6416
6417 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
6418 mss_l4len_idx);
6419
6420 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006421}
6422
Alexander Duyck897ab152011-05-27 05:31:47 +00006423static bool ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006424 struct sk_buff *skb, u32 tx_flags,
6425 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006426{
Alexander Duyck897ab152011-05-27 05:31:47 +00006427 u32 vlan_macip_lens = 0;
6428 u32 mss_l4len_idx = 0;
6429 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006430
Alexander Duyck897ab152011-05-27 05:31:47 +00006431 if (skb->ip_summed != CHECKSUM_PARTIAL) {
6432 if (!(tx_flags & IXGBE_TX_FLAGS_VLAN))
6433 return false;
6434 } else {
6435 u8 l4_hdr = 0;
6436 switch (protocol) {
6437 case __constant_htons(ETH_P_IP):
6438 vlan_macip_lens |= skb_network_header_len(skb);
6439 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6440 l4_hdr = ip_hdr(skb)->protocol;
6441 break;
6442 case __constant_htons(ETH_P_IPV6):
6443 vlan_macip_lens |= skb_network_header_len(skb);
6444 l4_hdr = ipv6_hdr(skb)->nexthdr;
6445 break;
6446 default:
6447 if (unlikely(net_ratelimit())) {
6448 dev_warn(tx_ring->dev,
6449 "partial checksum but proto=%x!\n",
6450 skb->protocol);
6451 }
6452 break;
6453 }
Auke Kok9a799d72007-09-15 14:07:45 -07006454
Alexander Duyck897ab152011-05-27 05:31:47 +00006455 switch (l4_hdr) {
6456 case IPPROTO_TCP:
6457 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6458 mss_l4len_idx = tcp_hdrlen(skb) <<
6459 IXGBE_ADVTXD_L4LEN_SHIFT;
6460 break;
6461 case IPPROTO_SCTP:
6462 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6463 mss_l4len_idx = sizeof(struct sctphdr) <<
6464 IXGBE_ADVTXD_L4LEN_SHIFT;
6465 break;
6466 case IPPROTO_UDP:
6467 mss_l4len_idx = sizeof(struct udphdr) <<
6468 IXGBE_ADVTXD_L4LEN_SHIFT;
6469 break;
6470 default:
6471 if (unlikely(net_ratelimit())) {
6472 dev_warn(tx_ring->dev,
6473 "partial checksum but l4 proto=%x!\n",
6474 skb->protocol);
6475 }
6476 break;
6477 }
Auke Kok9a799d72007-09-15 14:07:45 -07006478 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006479
Alexander Duyck897ab152011-05-27 05:31:47 +00006480 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6481 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6482
6483 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6484 type_tucmd, mss_l4len_idx);
6485
6486 return (skb->ip_summed == CHECKSUM_PARTIAL);
Auke Kok9a799d72007-09-15 14:07:45 -07006487}
6488
6489static int ixgbe_tx_map(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006490 struct ixgbe_ring *tx_ring,
6491 struct sk_buff *skb, u32 tx_flags,
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006492 unsigned int first, const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006493{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006494 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006495 struct ixgbe_tx_buffer *tx_buffer_info;
Yi Zoueacd73f2009-05-13 13:11:06 +00006496 unsigned int len;
6497 unsigned int total = skb->len;
Alexander Duyck63544e92011-05-27 05:31:42 +00006498 unsigned int offset = 0, size, count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006499 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
6500 unsigned int f;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006501 unsigned int bytecount = skb->len;
6502 u16 gso_segs = 1;
Alexander Duyck63544e92011-05-27 05:31:42 +00006503 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07006504
6505 i = tx_ring->next_to_use;
6506
Yi Zoueacd73f2009-05-13 13:11:06 +00006507 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6508 /* excluding fcoe_crc_eof for FCoE */
6509 total -= sizeof(struct fcoe_crc_eof);
6510
6511 len = min(skb_headlen(skb), total);
Auke Kok9a799d72007-09-15 14:07:45 -07006512 while (len) {
6513 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6514 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6515
6516 tx_buffer_info->length = size;
Alexander Duycke5a43542009-12-02 16:46:56 +00006517 tx_buffer_info->mapped_as_page = false;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006518 tx_buffer_info->dma = dma_map_single(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006519 skb->data + offset,
Nick Nunley1b507732010-04-27 13:10:27 +00006520 size, DMA_TO_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006521 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006522 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006523 tx_buffer_info->time_stamp = jiffies;
6524 tx_buffer_info->next_to_watch = i;
6525
6526 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006527 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006528 offset += size;
6529 count++;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006530
6531 if (len) {
6532 i++;
6533 if (i == tx_ring->count)
6534 i = 0;
6535 }
Auke Kok9a799d72007-09-15 14:07:45 -07006536 }
6537
6538 for (f = 0; f < nr_frags; f++) {
6539 struct skb_frag_struct *frag;
6540
6541 frag = &skb_shinfo(skb)->frags[f];
Yi Zoueacd73f2009-05-13 13:11:06 +00006542 len = min((unsigned int)frag->size, total);
Alexander Duycke5a43542009-12-02 16:46:56 +00006543 offset = frag->page_offset;
Auke Kok9a799d72007-09-15 14:07:45 -07006544
6545 while (len) {
Alexander Duyck44df32c2009-03-31 21:34:23 +00006546 i++;
6547 if (i == tx_ring->count)
6548 i = 0;
6549
Auke Kok9a799d72007-09-15 14:07:45 -07006550 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6551 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6552
6553 tx_buffer_info->length = size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006554 tx_buffer_info->dma = dma_map_page(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006555 frag->page,
6556 offset, size,
Nick Nunley1b507732010-04-27 13:10:27 +00006557 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +00006558 tx_buffer_info->mapped_as_page = true;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006559 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006560 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006561 tx_buffer_info->time_stamp = jiffies;
6562 tx_buffer_info->next_to_watch = i;
6563
6564 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006565 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006566 offset += size;
6567 count++;
Auke Kok9a799d72007-09-15 14:07:45 -07006568 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006569 if (total == 0)
6570 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006571 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006572
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006573 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6574 gso_segs = skb_shinfo(skb)->gso_segs;
6575#ifdef IXGBE_FCOE
6576 /* adjust for FCoE Sequence Offload */
6577 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6578 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6579 skb_shinfo(skb)->gso_size);
6580#endif /* IXGBE_FCOE */
6581 bytecount += (gso_segs - 1) * hdr_len;
6582
6583 /* multiply data chunks by size of headers */
6584 tx_ring->tx_buffer_info[i].bytecount = bytecount;
6585 tx_ring->tx_buffer_info[i].gso_segs = gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006586 tx_ring->tx_buffer_info[i].skb = skb;
6587 tx_ring->tx_buffer_info[first].next_to_watch = i;
6588
6589 return count;
Alexander Duycke5a43542009-12-02 16:46:56 +00006590
6591dma_error:
Emil Tantilov849c4542010-06-03 16:53:41 +00006592 e_dev_err("TX DMA map failed\n");
Alexander Duycke5a43542009-12-02 16:46:56 +00006593
6594 /* clear timestamp and dma mappings for failed tx_buffer_info map */
6595 tx_buffer_info->dma = 0;
6596 tx_buffer_info->time_stamp = 0;
6597 tx_buffer_info->next_to_watch = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006598 if (count)
6599 count--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006600
6601 /* clear timestamp and dma mappings for remaining portion of packet */
Roel Kluinc1fa3472010-01-19 14:21:45 +00006602 while (count--) {
Joe Perchese8e9f692010-09-07 21:34:53 +00006603 if (i == 0)
Alexander Duycke5a43542009-12-02 16:46:56 +00006604 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006605 i--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006606 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006607 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Alexander Duycke5a43542009-12-02 16:46:56 +00006608 }
6609
Anton Blancharde44d38e2010-02-03 13:12:51 +00006610 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006611}
6612
Alexander Duyck84ea2592010-11-16 19:26:49 -08006613static void ixgbe_tx_queue(struct ixgbe_ring *tx_ring,
Joe Perchese8e9f692010-09-07 21:34:53 +00006614 int tx_flags, int count, u32 paylen, u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006615{
6616 union ixgbe_adv_tx_desc *tx_desc = NULL;
6617 struct ixgbe_tx_buffer *tx_buffer_info;
6618 u32 olinfo_status = 0, cmd_type_len = 0;
6619 unsigned int i;
6620 u32 txd_cmd = IXGBE_TXD_CMD_EOP | IXGBE_TXD_CMD_RS | IXGBE_TXD_CMD_IFCS;
6621
6622 cmd_type_len |= IXGBE_ADVTXD_DTYP_DATA;
6623
6624 cmd_type_len |= IXGBE_ADVTXD_DCMD_IFCS | IXGBE_ADVTXD_DCMD_DEXT;
6625
6626 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6627 cmd_type_len |= IXGBE_ADVTXD_DCMD_VLE;
6628
6629 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6630 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6631
6632 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006633 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006634
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006635 /* use index 1 context for tso */
6636 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006637 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6638 olinfo_status |= IXGBE_TXD_POPTS_IXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006639 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006640
6641 } else if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6642 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006643 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006644
Yi Zoueacd73f2009-05-13 13:11:06 +00006645 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6646 olinfo_status |= IXGBE_ADVTXD_CC;
6647 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
6648 if (tx_flags & IXGBE_TX_FLAGS_FSO)
6649 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6650 }
6651
Auke Kok9a799d72007-09-15 14:07:45 -07006652 olinfo_status |= ((paylen - hdr_len) << IXGBE_ADVTXD_PAYLEN_SHIFT);
6653
6654 i = tx_ring->next_to_use;
6655 while (count--) {
6656 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006657 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006658 tx_desc->read.buffer_addr = cpu_to_le64(tx_buffer_info->dma);
6659 tx_desc->read.cmd_type_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00006660 cpu_to_le32(cmd_type_len | tx_buffer_info->length);
Auke Kok9a799d72007-09-15 14:07:45 -07006661 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Auke Kok9a799d72007-09-15 14:07:45 -07006662 i++;
6663 if (i == tx_ring->count)
6664 i = 0;
6665 }
6666
6667 tx_desc->read.cmd_type_len |= cpu_to_le32(txd_cmd);
6668
6669 /*
6670 * Force memory writes to complete before letting h/w
6671 * know there are new descriptors to fetch. (Only
6672 * applicable for weak-ordered memory model archs,
6673 * such as IA-64).
6674 */
6675 wmb();
6676
6677 tx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08006678 writel(i, tx_ring->tail);
Auke Kok9a799d72007-09-15 14:07:45 -07006679}
6680
Alexander Duyck69830522011-01-06 14:29:58 +00006681static void ixgbe_atr(struct ixgbe_ring *ring, struct sk_buff *skb,
6682 u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006683{
Alexander Duyck69830522011-01-06 14:29:58 +00006684 struct ixgbe_q_vector *q_vector = ring->q_vector;
6685 union ixgbe_atr_hash_dword input = { .dword = 0 };
6686 union ixgbe_atr_hash_dword common = { .dword = 0 };
6687 union {
6688 unsigned char *network;
6689 struct iphdr *ipv4;
6690 struct ipv6hdr *ipv6;
6691 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006692 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006693 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006694
Alexander Duyck69830522011-01-06 14:29:58 +00006695 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6696 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006697 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006698
Alexander Duyck69830522011-01-06 14:29:58 +00006699 /* do nothing if sampling is disabled */
6700 if (!ring->atr_sample_rate)
6701 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006702
Alexander Duyck69830522011-01-06 14:29:58 +00006703 ring->atr_count++;
6704
6705 /* snag network header to get L4 type and address */
6706 hdr.network = skb_network_header(skb);
6707
6708 /* Currently only IPv4/IPv6 with TCP is supported */
6709 if ((protocol != __constant_htons(ETH_P_IPV6) ||
6710 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
6711 (protocol != __constant_htons(ETH_P_IP) ||
6712 hdr.ipv4->protocol != IPPROTO_TCP))
6713 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006714
6715 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006716
Alexander Duyck69830522011-01-06 14:29:58 +00006717 /* skip this packet since the socket is closing */
6718 if (th->fin)
6719 return;
6720
6721 /* sample on all syn packets or once every atr sample count */
6722 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6723 return;
6724
6725 /* reset sample count */
6726 ring->atr_count = 0;
6727
6728 vlan_id = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
6729
6730 /*
6731 * src and dst are inverted, think how the receiver sees them
6732 *
6733 * The input is broken into two sections, a non-compressed section
6734 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6735 * is XORed together and stored in the compressed dword.
6736 */
6737 input.formatted.vlan_id = vlan_id;
6738
6739 /*
6740 * since src port and flex bytes occupy the same word XOR them together
6741 * and write the value to source port portion of compressed dword
6742 */
6743 if (vlan_id)
6744 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6745 else
6746 common.port.src ^= th->dest ^ protocol;
6747 common.port.dst ^= th->source;
6748
6749 if (protocol == __constant_htons(ETH_P_IP)) {
6750 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6751 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6752 } else {
6753 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6754 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6755 hdr.ipv6->saddr.s6_addr32[1] ^
6756 hdr.ipv6->saddr.s6_addr32[2] ^
6757 hdr.ipv6->saddr.s6_addr32[3] ^
6758 hdr.ipv6->daddr.s6_addr32[0] ^
6759 hdr.ipv6->daddr.s6_addr32[1] ^
6760 hdr.ipv6->daddr.s6_addr32[2] ^
6761 hdr.ipv6->daddr.s6_addr32[3];
6762 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006763
6764 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006765 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6766 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006767}
6768
Alexander Duyck63544e92011-05-27 05:31:42 +00006769static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006770{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006771 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006772 /* Herbert's original patch had:
6773 * smp_mb__after_netif_stop_queue();
6774 * but since that doesn't exist yet, just open code it. */
6775 smp_mb();
6776
6777 /* We need to check again in a case another CPU has just
6778 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006779 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006780 return -EBUSY;
6781
6782 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006783 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006784 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006785 return 0;
6786}
6787
Alexander Duyck82d4e462011-06-11 01:44:58 +00006788static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006789{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006790 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006791 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006792 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006793}
6794
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006795static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6796{
6797 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006798 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6799 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006800#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006801 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006802
John Fastabende5b64632011-03-08 03:44:52 +00006803 if (((protocol == htons(ETH_P_FCOE)) ||
6804 (protocol == htons(ETH_P_FIP))) &&
6805 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6806 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6807 txq += adapter->ring_feature[RING_F_FCOE].mask;
6808 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006809 }
6810#endif
6811
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006812 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6813 while (unlikely(txq >= dev->real_num_tx_queues))
6814 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006815 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006816 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006817
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006818 return skb_tx_hash(dev, skb);
6819}
6820
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006821netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006822 struct ixgbe_adapter *adapter,
6823 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006824{
Yi Zou5f715822009-12-03 11:32:44 +00006825 int tso;
Alexander Duycka535c302011-05-27 05:31:52 +00006826 u32 tx_flags = 0;
6827#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6828 unsigned short f;
6829#endif
Alexander Duyck63544e92011-05-27 05:31:42 +00006830 u16 first;
Alexander Duycka535c302011-05-27 05:31:52 +00006831 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Hao Zheng5e09a102010-11-11 13:47:59 +00006832 __be16 protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006833 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006834
Alexander Duycka535c302011-05-27 05:31:52 +00006835 /*
6836 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
6837 * + 1 desc for skb_head_len/IXGBE_MAX_DATA_PER_TXD,
6838 * + 2 desc gap to keep tail from touching head,
6839 * + 1 desc for context descriptor,
6840 * otherwise try next time
6841 */
6842#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6843 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6844 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6845#else
6846 count += skb_shinfo(skb)->nr_frags;
6847#endif
6848 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6849 tx_ring->tx_stats.tx_busy++;
6850 return NETDEV_TX_BUSY;
6851 }
6852
Hao Zheng5e09a102010-11-11 13:47:59 +00006853 protocol = vlan_get_protocol(skb);
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006854
Jesse Grosseab6d182010-10-20 13:56:03 +00006855 if (vlan_tx_tag_present(skb)) {
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006856 tx_flags |= vlan_tx_tag_get(skb);
Alexander Duyck2f90b862008-11-20 20:52:10 -08006857 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6858 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
John Fastabende5b64632011-03-08 03:44:52 +00006859 tx_flags |= tx_ring->dcb_tc << 13;
Alexander Duyck2f90b862008-11-20 20:52:10 -08006860 }
6861 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6862 tx_flags |= IXGBE_TX_FLAGS_VLAN;
John Fastabend33c66bd2010-05-18 16:00:11 +00006863 } else if (adapter->flags & IXGBE_FLAG_DCB_ENABLED &&
6864 skb->priority != TC_PRIO_CONTROL) {
John Fastabende5b64632011-03-08 03:44:52 +00006865 tx_flags |= tx_ring->dcb_tc << 13;
John Fastabend2ea186a2010-02-27 03:28:24 -08006866 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6867 tx_flags |= IXGBE_TX_FLAGS_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006868 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006869
Yi Zou09ad1cc2009-09-03 14:56:10 +00006870#ifdef IXGBE_FCOE
John Fastabend56075a92010-07-26 20:41:31 +00006871 /* for FCoE with DCB, we force the priority to what
6872 * was specified by the switch */
6873 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED &&
John Fastabende5b64632011-03-08 03:44:52 +00006874 (protocol == htons(ETH_P_FCOE)))
6875 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Alexander Duycka535c302011-05-27 05:31:52 +00006876
Robert Loveca77cd52010-03-24 12:45:00 +00006877#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006878 /* record the location of the first descriptor for this packet */
Auke Kok9a799d72007-09-15 14:07:45 -07006879 first = tx_ring->next_to_use;
Alexander Duycka535c302011-05-27 05:31:52 +00006880
Yi Zoueacd73f2009-05-13 13:11:06 +00006881 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6882#ifdef IXGBE_FCOE
6883 /* setup tx offload for FCoE */
Alexander Duyck897ab152011-05-27 05:31:47 +00006884 tso = ixgbe_fso(tx_ring, skb, tx_flags, &hdr_len);
6885 if (tso < 0)
6886 goto out_drop;
6887 else if (tso)
Yi Zoueacd73f2009-05-13 13:11:06 +00006888 tx_flags |= IXGBE_TX_FLAGS_FSO;
6889#endif /* IXGBE_FCOE */
6890 } else {
Hao Zheng5e09a102010-11-11 13:47:59 +00006891 if (protocol == htons(ETH_P_IP))
Yi Zoueacd73f2009-05-13 13:11:06 +00006892 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Alexander Duyck897ab152011-05-27 05:31:47 +00006893 tso = ixgbe_tso(tx_ring, skb, tx_flags, protocol, &hdr_len);
6894 if (tso < 0)
6895 goto out_drop;
6896 else if (tso)
Yi Zoueacd73f2009-05-13 13:11:06 +00006897 tx_flags |= IXGBE_TX_FLAGS_TSO;
Alexander Duyck897ab152011-05-27 05:31:47 +00006898 else if (ixgbe_tx_csum(tx_ring, skb, tx_flags, protocol))
Yi Zoueacd73f2009-05-13 13:11:06 +00006899 tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006900 }
6901
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006902 count = ixgbe_tx_map(adapter, tx_ring, skb, tx_flags, first, hdr_len);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006903 if (count) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006904 /* add the ATR filter if ATR is on */
Alexander Duyck69830522011-01-06 14:29:58 +00006905 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
6906 ixgbe_atr(tx_ring, skb, tx_flags, protocol);
Alexander Duyck84ea2592010-11-16 19:26:49 -08006907 ixgbe_tx_queue(tx_ring, tx_flags, count, skb->len, hdr_len);
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006908 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006909
Alexander Duyck44df32c2009-03-31 21:34:23 +00006910 } else {
Alexander Duyck44df32c2009-03-31 21:34:23 +00006911 tx_ring->tx_buffer_info[first].time_stamp = 0;
6912 tx_ring->next_to_use = first;
Alexander Duyck897ab152011-05-27 05:31:47 +00006913 goto out_drop;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006914 }
Auke Kok9a799d72007-09-15 14:07:45 -07006915
6916 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006917
6918out_drop:
6919 dev_kfree_skb_any(skb);
6920 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006921}
6922
Alexander Duyck84418e32010-08-19 13:40:54 +00006923static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
6924{
6925 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6926 struct ixgbe_ring *tx_ring;
6927
6928 tx_ring = adapter->tx_ring[skb->queue_mapping];
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006929 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00006930}
6931
Auke Kok9a799d72007-09-15 14:07:45 -07006932/**
Auke Kok9a799d72007-09-15 14:07:45 -07006933 * ixgbe_set_mac - Change the Ethernet Address of the NIC
6934 * @netdev: network interface device structure
6935 * @p: pointer to an address structure
6936 *
6937 * Returns 0 on success, negative on failure
6938 **/
6939static int ixgbe_set_mac(struct net_device *netdev, void *p)
6940{
6941 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006942 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07006943 struct sockaddr *addr = p;
6944
6945 if (!is_valid_ether_addr(addr->sa_data))
6946 return -EADDRNOTAVAIL;
6947
6948 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006949 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07006950
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006951 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
6952 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006953
6954 return 0;
6955}
6956
Ben Hutchings6b73e102009-04-29 08:08:58 +00006957static int
6958ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6959{
6960 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6961 struct ixgbe_hw *hw = &adapter->hw;
6962 u16 value;
6963 int rc;
6964
6965 if (prtad != hw->phy.mdio.prtad)
6966 return -EINVAL;
6967 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6968 if (!rc)
6969 rc = value;
6970 return rc;
6971}
6972
6973static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6974 u16 addr, u16 value)
6975{
6976 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6977 struct ixgbe_hw *hw = &adapter->hw;
6978
6979 if (prtad != hw->phy.mdio.prtad)
6980 return -EINVAL;
6981 return hw->phy.ops.write_reg(hw, addr, devad, value);
6982}
6983
6984static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6985{
6986 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6987
6988 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6989}
6990
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006991/**
6992 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006993 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006994 * @netdev: network interface device structure
6995 *
6996 * Returns non-zero on failure
6997 **/
6998static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6999{
7000 int err = 0;
7001 struct ixgbe_adapter *adapter = netdev_priv(dev);
7002 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7003
7004 if (is_valid_ether_addr(mac->san_addr)) {
7005 rtnl_lock();
7006 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7007 rtnl_unlock();
7008 }
7009 return err;
7010}
7011
7012/**
7013 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00007014 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007015 * @netdev: network interface device structure
7016 *
7017 * Returns non-zero on failure
7018 **/
7019static int ixgbe_del_sanmac_netdev(struct net_device *dev)
7020{
7021 int err = 0;
7022 struct ixgbe_adapter *adapter = netdev_priv(dev);
7023 struct ixgbe_mac_info *mac = &adapter->hw.mac;
7024
7025 if (is_valid_ether_addr(mac->san_addr)) {
7026 rtnl_lock();
7027 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
7028 rtnl_unlock();
7029 }
7030 return err;
7031}
7032
Auke Kok9a799d72007-09-15 14:07:45 -07007033#ifdef CONFIG_NET_POLL_CONTROLLER
7034/*
7035 * Polling 'interrupt' - used by things like netconsole to send skbs
7036 * without having to re-enable interrupts. It's not called while
7037 * the interrupt routine is executing.
7038 */
7039static void ixgbe_netpoll(struct net_device *netdev)
7040{
7041 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007042 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07007043
Alexander Duyck1a647bd2010-01-13 01:49:13 +00007044 /* if interface is down do nothing */
7045 if (test_bit(__IXGBE_DOWN, &adapter->state))
7046 return;
7047
Auke Kok9a799d72007-09-15 14:07:45 -07007048 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00007049 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
7050 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
7051 for (i = 0; i < num_q_vectors; i++) {
7052 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
7053 ixgbe_msix_clean_many(0, q_vector);
7054 }
7055 } else {
7056 ixgbe_intr(adapter->pdev->irq, netdev);
7057 }
Auke Kok9a799d72007-09-15 14:07:45 -07007058 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07007059}
7060#endif
7061
Eric Dumazetde1036b2010-10-20 23:00:04 +00007062static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
7063 struct rtnl_link_stats64 *stats)
7064{
7065 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7066 int i;
7067
Eric Dumazet1a515022010-11-16 19:26:42 -08007068 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007069 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08007070 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00007071 u64 bytes, packets;
7072 unsigned int start;
7073
Eric Dumazet1a515022010-11-16 19:26:42 -08007074 if (ring) {
7075 do {
7076 start = u64_stats_fetch_begin_bh(&ring->syncp);
7077 packets = ring->stats.packets;
7078 bytes = ring->stats.bytes;
7079 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7080 stats->rx_packets += packets;
7081 stats->rx_bytes += bytes;
7082 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00007083 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00007084
7085 for (i = 0; i < adapter->num_tx_queues; i++) {
7086 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
7087 u64 bytes, packets;
7088 unsigned int start;
7089
7090 if (ring) {
7091 do {
7092 start = u64_stats_fetch_begin_bh(&ring->syncp);
7093 packets = ring->stats.packets;
7094 bytes = ring->stats.bytes;
7095 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
7096 stats->tx_packets += packets;
7097 stats->tx_bytes += bytes;
7098 }
7099 }
Eric Dumazet1a515022010-11-16 19:26:42 -08007100 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00007101 /* following stats updated by ixgbe_watchdog_task() */
7102 stats->multicast = netdev->stats.multicast;
7103 stats->rx_errors = netdev->stats.rx_errors;
7104 stats->rx_length_errors = netdev->stats.rx_length_errors;
7105 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
7106 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
7107 return stats;
7108}
7109
John Fastabend8b1c0b22011-05-03 02:26:48 +00007110/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
7111 * #adapter: pointer to ixgbe_adapter
7112 * @tc: number of traffic classes currently enabled
7113 *
7114 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
7115 * 802.1Q priority maps to a packet buffer that exists.
7116 */
7117static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
7118{
7119 struct ixgbe_hw *hw = &adapter->hw;
7120 u32 reg, rsave;
7121 int i;
7122
7123 /* 82598 have a static priority to TC mapping that can not
7124 * be changed so no validation is needed.
7125 */
7126 if (hw->mac.type == ixgbe_mac_82598EB)
7127 return;
7128
7129 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
7130 rsave = reg;
7131
7132 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
7133 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
7134
7135 /* If up2tc is out of bounds default to zero */
7136 if (up2tc > tc)
7137 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
7138 }
7139
7140 if (reg != rsave)
7141 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
7142
7143 return;
7144}
7145
7146
7147/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
7148 * classes.
7149 *
7150 * @netdev: net device to configure
7151 * @tc: number of traffic classes to enable
7152 */
7153int ixgbe_setup_tc(struct net_device *dev, u8 tc)
7154{
John Fastabend8b1c0b22011-05-03 02:26:48 +00007155 struct ixgbe_adapter *adapter = netdev_priv(dev);
7156 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00007157
7158 /* If DCB is anabled do not remove traffic classes, multiple
7159 * traffic classes are required to implement DCB
7160 */
7161 if (!tc && (adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7162 return 0;
7163
7164 /* Hardware supports up to 8 traffic classes */
7165 if (tc > MAX_TRAFFIC_CLASS ||
7166 (hw->mac.type == ixgbe_mac_82598EB && tc < MAX_TRAFFIC_CLASS))
7167 return -EINVAL;
7168
7169 /* Hardware has to reinitialize queues and interrupts to
7170 * match packet buffer alignment. Unfortunantly, the
7171 * hardware is not flexible enough to do this dynamically.
7172 */
7173 if (netif_running(dev))
7174 ixgbe_close(dev);
7175 ixgbe_clear_interrupt_scheme(adapter);
7176
7177 if (tc)
7178 netdev_set_num_tc(dev, tc);
7179 else
7180 netdev_reset_tc(dev);
7181
John Fastabend8b1c0b22011-05-03 02:26:48 +00007182 ixgbe_init_interrupt_scheme(adapter);
7183 ixgbe_validate_rtr(adapter, tc);
7184 if (netif_running(dev))
7185 ixgbe_open(dev);
7186
7187 return 0;
7188}
Eric Dumazetde1036b2010-10-20 23:00:04 +00007189
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007190static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007191 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007192 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08007193 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07007194 .ndo_select_queue = ixgbe_select_queue,
Chris Leeche90d4002009-03-10 16:00:24 +00007195 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007196 .ndo_set_multicast_list = ixgbe_set_rx_mode,
7197 .ndo_validate_addr = eth_validate_addr,
7198 .ndo_set_mac_address = ixgbe_set_mac,
7199 .ndo_change_mtu = ixgbe_change_mtu,
7200 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007201 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7202 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007203 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007204 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7205 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7206 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
7207 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007208 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabend24095aa2011-02-23 05:58:03 +00007209 .ndo_setup_tc = ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007210#ifdef CONFIG_NET_POLL_CONTROLLER
7211 .ndo_poll_controller = ixgbe_netpoll,
7212#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007213#ifdef IXGBE_FCOE
7214 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007215 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007216 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007217 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7218 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007219 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Yi Zou332d4a72009-05-13 13:11:53 +00007220#endif /* IXGBE_FCOE */
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007221};
7222
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007223static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7224 const struct ixgbe_info *ii)
7225{
7226#ifdef CONFIG_PCI_IOV
7227 struct ixgbe_hw *hw = &adapter->hw;
7228 int err;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00007229 int num_vf_macvlans, i;
7230 struct vf_macvlans *mv_list;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007231
Greg Rose3377eba792010-12-07 08:16:45 +00007232 if (hw->mac.type == ixgbe_mac_82598EB || !max_vfs)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007233 return;
7234
7235 /* The 82599 supports up to 64 VFs per physical function
7236 * but this implementation limits allocation to 63 so that
7237 * basic networking resources are still available to the
7238 * physical function
7239 */
7240 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
7241 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
7242 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
7243 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007244 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007245 goto err_novfs;
7246 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +00007247
7248 num_vf_macvlans = hw->mac.num_rar_entries -
7249 (IXGBE_MAX_PF_MACVLANS + 1 + adapter->num_vfs);
7250
7251 adapter->mv_list = mv_list = kcalloc(num_vf_macvlans,
7252 sizeof(struct vf_macvlans),
7253 GFP_KERNEL);
7254 if (mv_list) {
7255 /* Initialize list of VF macvlans */
7256 INIT_LIST_HEAD(&adapter->vf_mvs.l);
7257 for (i = 0; i < num_vf_macvlans; i++) {
7258 mv_list->vf = -1;
7259 mv_list->free = true;
7260 mv_list->rar_entry = hw->mac.num_rar_entries -
7261 (i + adapter->num_vfs + 1);
7262 list_add(&mv_list->l, &adapter->vf_mvs.l);
7263 mv_list++;
7264 }
7265 }
7266
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007267 /* If call to enable VFs succeeded then allocate memory
7268 * for per VF control structures.
7269 */
7270 adapter->vfinfo =
7271 kcalloc(adapter->num_vfs,
7272 sizeof(struct vf_data_storage), GFP_KERNEL);
7273 if (adapter->vfinfo) {
7274 /* Now that we're sure SR-IOV is enabled
7275 * and memory allocated set up the mailbox parameters
7276 */
7277 ixgbe_init_mbx_params_pf(hw);
7278 memcpy(&hw->mbx.ops, ii->mbx_ops,
7279 sizeof(hw->mbx.ops));
7280
7281 /* Disable RSC when in SR-IOV mode */
7282 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
7283 IXGBE_FLAG2_RSC_ENABLED);
7284 return;
7285 }
7286
7287 /* Oh oh */
Emil Tantilov396e7992010-07-01 20:05:12 +00007288 e_err(probe, "Unable to allocate memory for VF Data Storage - "
7289 "SRIOV disabled\n");
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007290 pci_disable_sriov(adapter->pdev);
7291
7292err_novfs:
7293 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
7294 adapter->num_vfs = 0;
7295#endif /* CONFIG_PCI_IOV */
7296}
7297
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007298/**
Auke Kok9a799d72007-09-15 14:07:45 -07007299 * ixgbe_probe - Device Initialization Routine
7300 * @pdev: PCI device information struct
7301 * @ent: entry in ixgbe_pci_tbl
7302 *
7303 * Returns 0 on success, negative on failure
7304 *
7305 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7306 * The OS initialization, configuring of the adapter private structure,
7307 * and a hardware reset occur.
7308 **/
7309static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007310 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007311{
7312 struct net_device *netdev;
7313 struct ixgbe_adapter *adapter = NULL;
7314 struct ixgbe_hw *hw;
7315 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007316 static int cards_found;
7317 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007318 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007319 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007320#ifdef IXGBE_FCOE
7321 u16 device_caps;
7322#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007323 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007324
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007325 /* Catch broken hardware that put the wrong VF device ID in
7326 * the PCIe SR-IOV capability.
7327 */
7328 if (pdev->is_virtfn) {
7329 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7330 pci_name(pdev), pdev->vendor, pdev->device);
7331 return -EINVAL;
7332 }
7333
gouji-new9ce77662009-05-06 10:44:45 +00007334 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007335 if (err)
7336 return err;
7337
Nick Nunley1b507732010-04-27 13:10:27 +00007338 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7339 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007340 pci_using_dac = 1;
7341 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007342 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007343 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007344 err = dma_set_coherent_mask(&pdev->dev,
7345 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007346 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007347 dev_err(&pdev->dev,
7348 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007349 goto err_dma;
7350 }
7351 }
7352 pci_using_dac = 0;
7353 }
7354
gouji-new9ce77662009-05-06 10:44:45 +00007355 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007356 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007357 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007358 dev_err(&pdev->dev,
7359 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007360 goto err_pci_reg;
7361 }
7362
Frans Pop19d5afd2009-10-02 10:04:12 -07007363 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007364
Auke Kok9a799d72007-09-15 14:07:45 -07007365 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007366 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007367
John Fastabende901acd2011-04-26 07:26:08 +00007368#ifdef CONFIG_IXGBE_DCB
7369 indices *= MAX_TRAFFIC_CLASS;
7370#endif
7371
John Fastabendc85a2612010-02-25 23:15:21 +00007372 if (ii->mac == ixgbe_mac_82598EB)
7373 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7374 else
7375 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7376
John Fastabende901acd2011-04-26 07:26:08 +00007377#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007378 indices += min_t(unsigned int, num_possible_cpus(),
7379 IXGBE_MAX_FCOE_INDICES);
7380#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007381 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007382 if (!netdev) {
7383 err = -ENOMEM;
7384 goto err_alloc_etherdev;
7385 }
7386
Auke Kok9a799d72007-09-15 14:07:45 -07007387 SET_NETDEV_DEV(netdev, &pdev->dev);
7388
Auke Kok9a799d72007-09-15 14:07:45 -07007389 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007390 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007391
7392 adapter->netdev = netdev;
7393 adapter->pdev = pdev;
7394 hw = &adapter->hw;
7395 hw->back = adapter;
7396 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7397
Jeff Kirsher05857982008-09-11 19:57:00 -07007398 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007399 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007400 if (!hw->hw_addr) {
7401 err = -EIO;
7402 goto err_ioremap;
7403 }
7404
7405 for (i = 1; i <= 5; i++) {
7406 if (pci_resource_len(pdev, i) == 0)
7407 continue;
7408 }
7409
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007410 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007411 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007412 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007413 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007414
Auke Kok9a799d72007-09-15 14:07:45 -07007415 adapter->bd_number = cards_found;
7416
Auke Kok9a799d72007-09-15 14:07:45 -07007417 /* Setup hw api */
7418 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007419 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007420
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007421 /* EEPROM */
7422 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7423 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7424 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7425 if (!(eec & (1 << 8)))
7426 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7427
7428 /* PHY */
7429 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007430 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007431 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7432 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7433 hw->phy.mdio.mmds = 0;
7434 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7435 hw->phy.mdio.dev = netdev;
7436 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7437 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007438
Don Skidmore8ca783a2009-05-26 20:40:47 -07007439 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007440
7441 /* setup the private structure */
7442 err = ixgbe_sw_init(adapter);
7443 if (err)
7444 goto err_sw_init;
7445
Don Skidmoree86bff02010-02-11 04:14:08 +00007446 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007447 switch (adapter->hw.mac.type) {
7448 case ixgbe_mac_82599EB:
7449 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007450 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007451 break;
7452 default:
7453 break;
7454 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007455
Don Skidmorebf069c92009-05-07 10:39:54 +00007456 /*
7457 * If there is a fan on this device and it has failed log the
7458 * failure.
7459 */
7460 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7461 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7462 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007463 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007464 }
7465
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007466 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007467 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007468 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007469 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007470 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7471 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007472 err = 0;
7473 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007474 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007475 "module type was detected.\n");
7476 e_dev_err("Reload the driver after installing a supported "
7477 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007478 goto err_sw_init;
7479 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007480 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007481 goto err_sw_init;
7482 }
7483
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007484 ixgbe_probe_vf(adapter, ii);
7485
Emil Tantilov396e7992010-07-01 20:05:12 +00007486 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007487 NETIF_F_IP_CSUM |
7488 NETIF_F_HW_VLAN_TX |
7489 NETIF_F_HW_VLAN_RX |
7490 NETIF_F_HW_VLAN_FILTER;
Auke Kok9a799d72007-09-15 14:07:45 -07007491
Jesse Brandeburge9990a92008-08-26 04:27:24 -07007492 netdev->features |= NETIF_F_IPV6_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007493 netdev->features |= NETIF_F_TSO;
Auke Kok9a799d72007-09-15 14:07:45 -07007494 netdev->features |= NETIF_F_TSO6;
Herbert Xu78b6f4c2009-01-18 21:49:45 -08007495 netdev->features |= NETIF_F_GRO;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007496 netdev->features |= NETIF_F_RXHASH;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007497
Don Skidmore58be7662011-04-12 09:42:11 +00007498 switch (adapter->hw.mac.type) {
7499 case ixgbe_mac_82599EB:
7500 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007501 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore58be7662011-04-12 09:42:11 +00007502 break;
7503 default:
7504 break;
7505 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007506
Jeff Kirsherad31c402008-06-05 04:05:30 -07007507 netdev->vlan_features |= NETIF_F_TSO;
7508 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007509 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007510 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007511 netdev->vlan_features |= NETIF_F_SG;
7512
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007513 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7514 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7515 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007516
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007517#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007518 netdev->dcbnl_ops = &dcbnl_ops;
7519#endif
7520
Yi Zoueacd73f2009-05-13 13:11:06 +00007521#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007522 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007523 if (hw->mac.ops.get_device_caps) {
7524 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007525 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7526 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007527 }
7528 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007529 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7530 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7531 netdev->vlan_features |= NETIF_F_FSO;
7532 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7533 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007534#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007535 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007536 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007537 netdev->vlan_features |= NETIF_F_HIGHDMA;
7538 }
Auke Kok9a799d72007-09-15 14:07:45 -07007539
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007540 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007541 netdev->features |= NETIF_F_LRO;
7542
Auke Kok9a799d72007-09-15 14:07:45 -07007543 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007544 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007545 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007546 err = -EIO;
7547 goto err_eeprom;
7548 }
7549
7550 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7551 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7552
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007553 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007554 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007555 err = -EIO;
7556 goto err_eeprom;
7557 }
7558
Don Skidmorec6ecf392010-12-03 03:31:51 +00007559 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7560 if (hw->mac.ops.disable_tx_laser &&
7561 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00007562 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00007563 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00007564 hw->mac.ops.disable_tx_laser(hw);
7565
Alexander Duyck70864002011-04-27 09:13:56 +00007566 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
7567 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007568
Alexander Duyck70864002011-04-27 09:13:56 +00007569 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7570 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007571
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007572 err = ixgbe_init_interrupt_scheme(adapter);
7573 if (err)
7574 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007575
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007576 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
7577 netdev->features &= ~NETIF_F_RXHASH;
7578
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007579 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007580 case IXGBE_DEV_ID_82599_SFP:
7581 /* Only this subdevice supports WOL */
7582 if (pdev->subsystem_device == IXGBE_SUBDEV_ID_82599_SFP)
7583 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
7584 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
7585 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007586 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7587 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007588 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7589 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
7590 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
7591 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007592 case IXGBE_DEV_ID_82599_KX4:
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00007593 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
Joe Perchese8e9f692010-09-07 21:34:53 +00007594 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007595 break;
7596 default:
7597 adapter->wol = 0;
7598 break;
7599 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007600 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7601
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007602 /* pick up the PCI bus settings for reporting later */
7603 hw->mac.ops.get_bus_info(hw);
7604
Auke Kok9a799d72007-09-15 14:07:45 -07007605 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007606 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007607 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7608 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007609 "Unknown"),
7610 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7611 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7612 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7613 "Unknown"),
7614 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007615
7616 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7617 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007618 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007619 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007620 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007621 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007622 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007623 else
Don Skidmore289700db2010-12-03 03:32:58 +00007624 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7625 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007626
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007627 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007628 e_dev_warn("PCI-Express bandwidth available for this card is "
7629 "not sufficient for optimal performance.\n");
7630 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7631 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007632 }
7633
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -08007634 /* save off EEPROM version number */
7635 hw->eeprom.ops.read(hw, 0x29, &adapter->eeprom_version);
7636
Auke Kok9a799d72007-09-15 14:07:45 -07007637 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007638 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007639
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007640 if (err == IXGBE_ERR_EEPROM_VERSION) {
7641 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007642 e_dev_warn("This device is a pre-production adapter/LOM. "
7643 "Please be aware there may be issues associated "
7644 "with your hardware. If you are experiencing "
7645 "problems please contact your Intel or hardware "
7646 "representative who provided you with this "
7647 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007648 }
Auke Kok9a799d72007-09-15 14:07:45 -07007649 strcpy(netdev->name, "eth%d");
7650 err = register_netdev(netdev);
7651 if (err)
7652 goto err_register;
7653
Jesse Brandeburg54386462009-04-17 20:44:27 +00007654 /* carrier off reporting is important to ethtool even BEFORE open */
7655 netif_carrier_off(netdev);
7656
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007657#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007658 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007659 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007660 ixgbe_setup_dca(adapter);
7661 }
7662#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007663 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007664 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007665 for (i = 0; i < adapter->num_vfs; i++)
7666 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7667 }
7668
Emil Tantilov9612de92011-05-07 07:40:20 +00007669 /* Inform firmware of driver version */
7670 if (hw->mac.ops.set_fw_drv_ver)
Don Skidmorea38a1042011-05-20 03:05:14 +00007671 hw->mac.ops.set_fw_drv_ver(hw, MAJ, MIN, BUILD,
7672 FW_CEM_UNUSED_VER);
Emil Tantilov9612de92011-05-07 07:40:20 +00007673
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007674 /* add san mac addr to netdev */
7675 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007676
Emil Tantilov849c4542010-06-03 16:53:41 +00007677 e_dev_info("Intel(R) 10 Gigabit Network Connection\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007678 cards_found++;
7679 return 0;
7680
7681err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007682 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007683 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007684err_sw_init:
7685err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007686 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7687 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007688 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007689 iounmap(hw->hw_addr);
7690err_ioremap:
7691 free_netdev(netdev);
7692err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007693 pci_release_selected_regions(pdev,
7694 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007695err_pci_reg:
7696err_dma:
7697 pci_disable_device(pdev);
7698 return err;
7699}
7700
7701/**
7702 * ixgbe_remove - Device Removal Routine
7703 * @pdev: PCI device information struct
7704 *
7705 * ixgbe_remove is called by the PCI subsystem to alert the driver
7706 * that it should release a PCI device. The could be caused by a
7707 * Hot-Plug event, or because the driver is going to be removed from
7708 * memory.
7709 **/
7710static void __devexit ixgbe_remove(struct pci_dev *pdev)
7711{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007712 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7713 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007714
7715 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007716 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007717
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007718#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007719 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7720 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7721 dca_remove_requester(&pdev->dev);
7722 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7723 }
7724
7725#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007726#ifdef IXGBE_FCOE
7727 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7728 ixgbe_cleanup_fcoe(adapter);
7729
7730#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007731
7732 /* remove the added san mac */
7733 ixgbe_del_sanmac_netdev(netdev);
7734
Donald Skidmorec4900be2008-11-20 21:11:42 -08007735 if (netdev->reg_state == NETREG_REGISTERED)
7736 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007737
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007738 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7739 ixgbe_disable_sriov(adapter);
7740
Alexander Duyck7a921c92009-05-06 10:43:28 +00007741 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007742
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007743 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007744
7745 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007746 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007747 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007748
Emil Tantilov849c4542010-06-03 16:53:41 +00007749 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007750
Auke Kok9a799d72007-09-15 14:07:45 -07007751 free_netdev(netdev);
7752
Frans Pop19d5afd2009-10-02 10:04:12 -07007753 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007754
Auke Kok9a799d72007-09-15 14:07:45 -07007755 pci_disable_device(pdev);
7756}
7757
7758/**
7759 * ixgbe_io_error_detected - called when PCI error is detected
7760 * @pdev: Pointer to PCI device
7761 * @state: The current pci connection state
7762 *
7763 * This function is called after a PCI bus error affecting
7764 * this device has been detected.
7765 */
7766static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007767 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007768{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007769 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7770 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007771
7772 netif_device_detach(netdev);
7773
Breno Leitao3044b8d2009-05-06 10:44:26 +00007774 if (state == pci_channel_io_perm_failure)
7775 return PCI_ERS_RESULT_DISCONNECT;
7776
Auke Kok9a799d72007-09-15 14:07:45 -07007777 if (netif_running(netdev))
7778 ixgbe_down(adapter);
7779 pci_disable_device(pdev);
7780
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007781 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007782 return PCI_ERS_RESULT_NEED_RESET;
7783}
7784
7785/**
7786 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7787 * @pdev: Pointer to PCI device
7788 *
7789 * Restart the card from scratch, as if from a cold-boot.
7790 */
7791static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7792{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007793 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007794 pci_ers_result_t result;
7795 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007796
gouji-new9ce77662009-05-06 10:44:45 +00007797 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007798 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007799 result = PCI_ERS_RESULT_DISCONNECT;
7800 } else {
7801 pci_set_master(pdev);
7802 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007803 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007804
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007805 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007806
7807 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007808 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007809 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007810 }
Auke Kok9a799d72007-09-15 14:07:45 -07007811
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007812 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7813 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007814 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7815 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007816 /* non-fatal, continue */
7817 }
Auke Kok9a799d72007-09-15 14:07:45 -07007818
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007819 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007820}
7821
7822/**
7823 * ixgbe_io_resume - called when traffic can start flowing again.
7824 * @pdev: Pointer to PCI device
7825 *
7826 * This callback is called when the error recovery driver tells us that
7827 * its OK to resume normal operation.
7828 */
7829static void ixgbe_io_resume(struct pci_dev *pdev)
7830{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007831 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7832 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007833
7834 if (netif_running(netdev)) {
7835 if (ixgbe_up(adapter)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007836 e_info(probe, "ixgbe_up failed after reset\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007837 return;
7838 }
7839 }
7840
7841 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007842}
7843
7844static struct pci_error_handlers ixgbe_err_handler = {
7845 .error_detected = ixgbe_io_error_detected,
7846 .slot_reset = ixgbe_io_slot_reset,
7847 .resume = ixgbe_io_resume,
7848};
7849
7850static struct pci_driver ixgbe_driver = {
7851 .name = ixgbe_driver_name,
7852 .id_table = ixgbe_pci_tbl,
7853 .probe = ixgbe_probe,
7854 .remove = __devexit_p(ixgbe_remove),
7855#ifdef CONFIG_PM
7856 .suspend = ixgbe_suspend,
7857 .resume = ixgbe_resume,
7858#endif
7859 .shutdown = ixgbe_shutdown,
7860 .err_handler = &ixgbe_err_handler
7861};
7862
7863/**
7864 * ixgbe_init_module - Driver Registration Routine
7865 *
7866 * ixgbe_init_module is the first routine called when the driver is
7867 * loaded. All it does is register with the PCI subsystem.
7868 **/
7869static int __init ixgbe_init_module(void)
7870{
7871 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007872 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007873 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007874
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007875#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007876 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007877#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007878
Auke Kok9a799d72007-09-15 14:07:45 -07007879 ret = pci_register_driver(&ixgbe_driver);
7880 return ret;
7881}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007882
Auke Kok9a799d72007-09-15 14:07:45 -07007883module_init(ixgbe_init_module);
7884
7885/**
7886 * ixgbe_exit_module - Driver Exit Cleanup Routine
7887 *
7888 * ixgbe_exit_module is called just before the driver is removed
7889 * from memory.
7890 **/
7891static void __exit ixgbe_exit_module(void)
7892{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007893#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007894 dca_unregister_notify(&dca_notifier);
7895#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007896 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007897 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007898}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007899
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007900#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007901static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007902 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007903{
7904 int ret_val;
7905
7906 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007907 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007908
7909 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7910}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007911
Alexander Duyckb4533682009-03-31 21:32:42 +00007912#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007913
Auke Kok9a799d72007-09-15 14:07:45 -07007914module_exit(ixgbe_exit_module);
7915
7916/* ixgbe_main.c */