blob: 0564c659fb9456e44da66f4342418d1f86617e69 [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>
Jiri Pirko01789342011-08-16 06:29:00 +000045#include <linux/if.h>
Auke Kok9a799d72007-09-15 14:07:45 -070046#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040047#include <linux/prefetch.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000048#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070049
50#include "ixgbe.h"
51#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000052#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000053#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070054
55char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070056static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000057 "Intel(R) 10 Gigabit PCI Express Network Driver";
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000058#define MAJ 3
Don Skidmorea38a1042011-05-20 03:05:14 +000059#define MIN 4
Don Skidmorec89c7112011-04-14 07:40:11 +000060#define BUILD 8
Jeff Kirsher75e3d3c2011-03-17 18:11:38 +000061#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
Don Skidmorea38a1042011-05-20 03:05:14 +000062 __stringify(BUILD) "-k"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070063const char ixgbe_driver_version[] = DRV_VERSION;
Don Skidmorea52055e2011-02-23 09:58:39 +000064static const char ixgbe_copyright[] =
65 "Copyright (c) 1999-2011 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070066
67static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070068 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000069 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e12010-11-16 19:27:16 -080070 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070071};
72
73/* ixgbe_pci_tbl - PCI Device ID Table
74 *
75 * Wildcard entries (PCI_ANY_ID) should come last
76 * Last entry must be all 0s
77 *
78 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
79 * Class, Class Mask, private data (not used) }
80 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000081static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Don Skidmore1e336d02009-01-26 20:57:51 -080082 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598),
83 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070084 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070085 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070086 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070087 board_82598 },
Jesse Brandeburg0befdb32008-10-31 00:46:40 -070088 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT),
89 board_82598 },
Peter P Waskiewicz Jr3845bec2009-07-16 15:50:52 +000090 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2),
91 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070092 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4),
Auke Kok3957d632007-10-31 15:22:10 -070093 board_82598 },
Jesse Brandeburg8d792cd2008-08-08 16:24:19 -070094 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT),
95 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -080096 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT),
97 board_82598 },
98 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM),
99 board_82598 },
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -0700100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR),
101 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -0800102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM),
103 board_82598 },
Don Skidmore2f21bdd2009-02-01 01:18:23 -0800104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX),
105 board_82598 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4),
107 board_82599 },
Peter P Waskiewicz Jr1fcf03e2009-05-17 20:58:04 +0000108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM),
109 board_82599 },
Don Skidmore74757d42009-12-08 07:22:23 +0000110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR),
111 board_82599 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP),
113 board_82599 },
Don Skidmore38ad1c82009-10-08 15:35:58 +0000114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM),
115 board_82599 },
Don Skidmoredbfec662009-10-02 08:58:25 +0000116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ),
117 board_82599 },
Peter P Waskiewicz Jr8911184f2009-09-14 07:47:49 +0000118 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4),
119 board_82599 },
Don Skidmoredbffcb22010-12-03 03:32:34 +0000120 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE),
121 board_82599 },
122 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE),
123 board_82599 },
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700124 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM),
125 board_82599 },
Don Skidmore312eb932009-10-02 08:58:04 +0000126 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE),
127 board_82599 },
Don Skidmoreb93a2222010-11-16 19:27:17 -0800128 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T),
Don Skidmored9946532010-12-09 06:55:19 +0000129 board_X540 },
Emil Tantilov4c40ef02011-03-24 07:06:02 +0000130 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2),
131 board_82599 },
Don Skidmore4f6290c2011-05-14 06:36:35 +0000132 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS),
133 board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700134
135 /* required last entry */
136 {0, }
137};
138MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
139
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400140#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800141static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000142 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800143static struct notifier_block dca_notifier = {
144 .notifier_call = ixgbe_notify_dca,
145 .next = NULL,
146 .priority = 0
147};
148#endif
149
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000150#ifdef CONFIG_PCI_IOV
151static unsigned int max_vfs;
152module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000153MODULE_PARM_DESC(max_vfs,
154 "Maximum number of virtual functions to allocate per physical function");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000155#endif /* CONFIG_PCI_IOV */
156
Auke Kok9a799d72007-09-15 14:07:45 -0700157MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
158MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
159MODULE_LICENSE("GPL");
160MODULE_VERSION(DRV_VERSION);
161
162#define DEFAULT_DEBUG_LEVEL_SHIFT 3
163
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000164static inline void ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
165{
166 struct ixgbe_hw *hw = &adapter->hw;
167 u32 gcr;
168 u32 gpie;
169 u32 vmdctl;
170
171#ifdef CONFIG_PCI_IOV
172 /* disable iov and allow time for transactions to clear */
173 pci_disable_sriov(adapter->pdev);
174#endif
175
176 /* turn off device IOV mode */
177 gcr = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
178 gcr &= ~(IXGBE_GCR_EXT_SRIOV);
179 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr);
180 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
181 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
182 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
183
184 /* set default pool back to 0 */
185 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
186 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
187 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
Jesse Brandeburg945a5152011-07-20 00:56:21 +0000188 IXGBE_WRITE_FLUSH(hw);
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000189
190 /* take a breather then clean up driver data */
191 msleep(100);
Joe Perchese8e9f692010-09-07 21:34:53 +0000192
193 kfree(adapter->vfinfo);
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000194 adapter->vfinfo = NULL;
195
196 adapter->num_vfs = 0;
197 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
198}
199
Alexander Duyck70864002011-04-27 09:13:56 +0000200static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter)
201{
202 if (!test_bit(__IXGBE_DOWN, &adapter->state) &&
203 !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state))
204 schedule_work(&adapter->service_task);
205}
206
207static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter)
208{
209 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state));
210
211 /* flush memory to make sure state is correct before next watchog */
212 smp_mb__before_clear_bit();
213 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
214}
215
Taku Izumidcd79ae2010-04-27 14:39:53 +0000216struct ixgbe_reg_info {
217 u32 ofs;
218 char *name;
219};
220
221static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
222
223 /* General Registers */
224 {IXGBE_CTRL, "CTRL"},
225 {IXGBE_STATUS, "STATUS"},
226 {IXGBE_CTRL_EXT, "CTRL_EXT"},
227
228 /* Interrupt Registers */
229 {IXGBE_EICR, "EICR"},
230
231 /* RX Registers */
232 {IXGBE_SRRCTL(0), "SRRCTL"},
233 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
234 {IXGBE_RDLEN(0), "RDLEN"},
235 {IXGBE_RDH(0), "RDH"},
236 {IXGBE_RDT(0), "RDT"},
237 {IXGBE_RXDCTL(0), "RXDCTL"},
238 {IXGBE_RDBAL(0), "RDBAL"},
239 {IXGBE_RDBAH(0), "RDBAH"},
240
241 /* TX Registers */
242 {IXGBE_TDBAL(0), "TDBAL"},
243 {IXGBE_TDBAH(0), "TDBAH"},
244 {IXGBE_TDLEN(0), "TDLEN"},
245 {IXGBE_TDH(0), "TDH"},
246 {IXGBE_TDT(0), "TDT"},
247 {IXGBE_TXDCTL(0), "TXDCTL"},
248
249 /* List Terminator */
250 {}
251};
252
253
254/*
255 * ixgbe_regdump - register printout routine
256 */
257static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
258{
259 int i = 0, j = 0;
260 char rname[16];
261 u32 regs[64];
262
263 switch (reginfo->ofs) {
264 case IXGBE_SRRCTL(0):
265 for (i = 0; i < 64; i++)
266 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
267 break;
268 case IXGBE_DCA_RXCTRL(0):
269 for (i = 0; i < 64; i++)
270 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
271 break;
272 case IXGBE_RDLEN(0):
273 for (i = 0; i < 64; i++)
274 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
275 break;
276 case IXGBE_RDH(0):
277 for (i = 0; i < 64; i++)
278 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
279 break;
280 case IXGBE_RDT(0):
281 for (i = 0; i < 64; i++)
282 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
283 break;
284 case IXGBE_RXDCTL(0):
285 for (i = 0; i < 64; i++)
286 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
287 break;
288 case IXGBE_RDBAL(0):
289 for (i = 0; i < 64; i++)
290 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
291 break;
292 case IXGBE_RDBAH(0):
293 for (i = 0; i < 64; i++)
294 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
295 break;
296 case IXGBE_TDBAL(0):
297 for (i = 0; i < 64; i++)
298 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
299 break;
300 case IXGBE_TDBAH(0):
301 for (i = 0; i < 64; i++)
302 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
303 break;
304 case IXGBE_TDLEN(0):
305 for (i = 0; i < 64; i++)
306 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
307 break;
308 case IXGBE_TDH(0):
309 for (i = 0; i < 64; i++)
310 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
311 break;
312 case IXGBE_TDT(0):
313 for (i = 0; i < 64; i++)
314 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
315 break;
316 case IXGBE_TXDCTL(0):
317 for (i = 0; i < 64; i++)
318 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
319 break;
320 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000321 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000322 IXGBE_READ_REG(hw, reginfo->ofs));
323 return;
324 }
325
326 for (i = 0; i < 8; i++) {
327 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000328 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000329 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000330 pr_cont(" %08x", regs[i*8+j]);
331 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000332 }
333
334}
335
336/*
337 * ixgbe_dump - Print registers, tx-rings and rx-rings
338 */
339static void ixgbe_dump(struct ixgbe_adapter *adapter)
340{
341 struct net_device *netdev = adapter->netdev;
342 struct ixgbe_hw *hw = &adapter->hw;
343 struct ixgbe_reg_info *reginfo;
344 int n = 0;
345 struct ixgbe_ring *tx_ring;
346 struct ixgbe_tx_buffer *tx_buffer_info;
347 union ixgbe_adv_tx_desc *tx_desc;
348 struct my_u0 { u64 a; u64 b; } *u0;
349 struct ixgbe_ring *rx_ring;
350 union ixgbe_adv_rx_desc *rx_desc;
351 struct ixgbe_rx_buffer *rx_buffer_info;
352 u32 staterr;
353 int i = 0;
354
355 if (!netif_msg_hw(adapter))
356 return;
357
358 /* Print netdevice Info */
359 if (netdev) {
360 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000361 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000362 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000363 pr_info("%-15s %016lX %016lX %016lX\n",
364 netdev->name,
365 netdev->state,
366 netdev->trans_start,
367 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000368 }
369
370 /* Print Registers */
371 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000372 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000373 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
374 reginfo->name; reginfo++) {
375 ixgbe_regdump(hw, reginfo);
376 }
377
378 /* Print TX Ring Summary */
379 if (!netdev || !netif_running(netdev))
380 goto exit;
381
382 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000383 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000384 for (n = 0; n < adapter->num_tx_queues; n++) {
385 tx_ring = adapter->tx_ring[n];
386 tx_buffer_info =
387 &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Alexander Duyckd3d00232011-07-15 02:31:25 +0000388 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000389 n, tx_ring->next_to_use, tx_ring->next_to_clean,
390 (u64)tx_buffer_info->dma,
391 tx_buffer_info->length,
392 tx_buffer_info->next_to_watch,
393 (u64)tx_buffer_info->time_stamp);
394 }
395
396 /* Print TX Rings */
397 if (!netif_msg_tx_done(adapter))
398 goto rx_ring_summary;
399
400 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
401
402 /* Transmit Descriptor Formats
403 *
404 * Advanced Transmit Descriptor
405 * +--------------------------------------------------------------+
406 * 0 | Buffer Address [63:0] |
407 * +--------------------------------------------------------------+
408 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
409 * +--------------------------------------------------------------+
410 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
411 */
412
413 for (n = 0; n < adapter->num_tx_queues; n++) {
414 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000415 pr_info("------------------------------------\n");
416 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
417 pr_info("------------------------------------\n");
418 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000419 "[PlPOIdStDDt Ln] [bi->dma ] "
420 "leng ntw timestamp bi->skb\n");
421
422 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000423 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000424 tx_buffer_info = &tx_ring->tx_buffer_info[i];
425 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000426 pr_info("T [0x%03X] %016llX %016llX %016llX"
Alexander Duyckd3d00232011-07-15 02:31:25 +0000427 " %04X %p %016llX %p", i,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000428 le64_to_cpu(u0->a),
429 le64_to_cpu(u0->b),
430 (u64)tx_buffer_info->dma,
431 tx_buffer_info->length,
432 tx_buffer_info->next_to_watch,
433 (u64)tx_buffer_info->time_stamp,
434 tx_buffer_info->skb);
435 if (i == tx_ring->next_to_use &&
436 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000437 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000438 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000439 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000440 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000441 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000442 else
Joe Perchesc7689572010-09-07 21:35:17 +0000443 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000444
445 if (netif_msg_pktdata(adapter) &&
446 tx_buffer_info->dma != 0)
447 print_hex_dump(KERN_INFO, "",
448 DUMP_PREFIX_ADDRESS, 16, 1,
449 phys_to_virt(tx_buffer_info->dma),
450 tx_buffer_info->length, true);
451 }
452 }
453
454 /* Print RX Rings Summary */
455rx_ring_summary:
456 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000457 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000458 for (n = 0; n < adapter->num_rx_queues; n++) {
459 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000460 pr_info("%5d %5X %5X\n",
461 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000462 }
463
464 /* Print RX Rings */
465 if (!netif_msg_rx_status(adapter))
466 goto exit;
467
468 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
469
470 /* Advanced Receive Descriptor (Read) Format
471 * 63 1 0
472 * +-----------------------------------------------------+
473 * 0 | Packet Buffer Address [63:1] |A0/NSE|
474 * +----------------------------------------------+------+
475 * 8 | Header Buffer Address [63:1] | DD |
476 * +-----------------------------------------------------+
477 *
478 *
479 * Advanced Receive Descriptor (Write-Back) Format
480 *
481 * 63 48 47 32 31 30 21 20 16 15 4 3 0
482 * +------------------------------------------------------+
483 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
484 * | Checksum Ident | | | | Type | Type |
485 * +------------------------------------------------------+
486 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
487 * +------------------------------------------------------+
488 * 63 48 47 32 31 20 19 0
489 */
490 for (n = 0; n < adapter->num_rx_queues; n++) {
491 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000492 pr_info("------------------------------------\n");
493 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
494 pr_info("------------------------------------\n");
495 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000496 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
497 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000498 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000499 "[vl er S cks ln] ---------------- [bi->skb] "
500 "<-- Adv Rx Write-Back format\n");
501
502 for (i = 0; i < rx_ring->count; i++) {
503 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +0000504 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000505 u0 = (struct my_u0 *)rx_desc;
506 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
507 if (staterr & IXGBE_RXD_STAT_DD) {
508 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000509 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000510 "%016llX ---------------- %p", i,
511 le64_to_cpu(u0->a),
512 le64_to_cpu(u0->b),
513 rx_buffer_info->skb);
514 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000515 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000516 "%016llX %016llX %p", i,
517 le64_to_cpu(u0->a),
518 le64_to_cpu(u0->b),
519 (u64)rx_buffer_info->dma,
520 rx_buffer_info->skb);
521
522 if (netif_msg_pktdata(adapter)) {
523 print_hex_dump(KERN_INFO, "",
524 DUMP_PREFIX_ADDRESS, 16, 1,
525 phys_to_virt(rx_buffer_info->dma),
526 rx_ring->rx_buf_len, true);
527
528 if (rx_ring->rx_buf_len
529 < IXGBE_RXBUFFER_2048)
530 print_hex_dump(KERN_INFO, "",
531 DUMP_PREFIX_ADDRESS, 16, 1,
532 phys_to_virt(
533 rx_buffer_info->page_dma +
534 rx_buffer_info->page_offset
535 ),
536 PAGE_SIZE/2, true);
537 }
538 }
539
540 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000541 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000542 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000543 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000544 else
Joe Perchesc7689572010-09-07 21:35:17 +0000545 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000546
547 }
548 }
549
550exit:
551 return;
552}
553
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800554static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
555{
556 u32 ctrl_ext;
557
558 /* Let firmware take over control of h/w */
559 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
560 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000561 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800562}
563
564static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
565{
566 u32 ctrl_ext;
567
568 /* Let firmware know the driver has taken over */
569 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
570 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000571 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800572}
Auke Kok9a799d72007-09-15 14:07:45 -0700573
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000574/*
575 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
576 * @adapter: pointer to adapter struct
577 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
578 * @queue: queue to map the corresponding interrupt to
579 * @msix_vector: the vector to map to the corresponding queue
580 *
581 */
582static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000583 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700584{
585 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000586 struct ixgbe_hw *hw = &adapter->hw;
587 switch (hw->mac.type) {
588 case ixgbe_mac_82598EB:
589 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
590 if (direction == -1)
591 direction = 0;
592 index = (((direction * 64) + queue) >> 2) & 0x1F;
593 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
594 ivar &= ~(0xFF << (8 * (queue & 0x3)));
595 ivar |= (msix_vector << (8 * (queue & 0x3)));
596 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
597 break;
598 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800599 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000600 if (direction == -1) {
601 /* other causes */
602 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
603 index = ((queue & 1) * 8);
604 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
605 ivar &= ~(0xFF << index);
606 ivar |= (msix_vector << index);
607 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
608 break;
609 } else {
610 /* tx or rx causes */
611 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
612 index = ((16 * (queue & 1)) + (8 * direction));
613 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
614 ivar &= ~(0xFF << index);
615 ivar |= (msix_vector << index);
616 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
617 break;
618 }
619 default:
620 break;
621 }
Auke Kok9a799d72007-09-15 14:07:45 -0700622}
623
Alexander Duyckfe49f042009-06-04 16:00:09 +0000624static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000625 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000626{
627 u32 mask;
628
Alexander Duyckbd508172010-11-16 19:27:03 -0800629 switch (adapter->hw.mac.type) {
630 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000631 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
632 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800633 break;
634 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800635 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000636 mask = (qmask & 0xFFFFFFFF);
637 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
638 mask = (qmask >> 32);
639 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800640 break;
641 default:
642 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000643 }
644}
645
Alexander Duyckd3d00232011-07-15 02:31:25 +0000646static inline void ixgbe_unmap_tx_resource(struct ixgbe_ring *ring,
647 struct ixgbe_tx_buffer *tx_buffer)
648{
649 if (tx_buffer->dma) {
650 if (tx_buffer->tx_flags & IXGBE_TX_FLAGS_MAPPED_AS_PAGE)
651 dma_unmap_page(ring->dev,
652 tx_buffer->dma,
653 tx_buffer->length,
654 DMA_TO_DEVICE);
655 else
656 dma_unmap_single(ring->dev,
657 tx_buffer->dma,
658 tx_buffer->length,
659 DMA_TO_DEVICE);
660 }
661 tx_buffer->dma = 0;
662}
663
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800664void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *tx_ring,
665 struct ixgbe_tx_buffer *tx_buffer_info)
Auke Kok9a799d72007-09-15 14:07:45 -0700666{
Alexander Duyckd3d00232011-07-15 02:31:25 +0000667 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
668 if (tx_buffer_info->skb)
Auke Kok9a799d72007-09-15 14:07:45 -0700669 dev_kfree_skb_any(tx_buffer_info->skb);
Alexander Duyckd3d00232011-07-15 02:31:25 +0000670 tx_buffer_info->skb = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -0700671 /* tx_buffer_info must be completely set up in the transmit path */
672}
673
John Fastabendc84d3242010-11-16 19:27:12 -0800674static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700675{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700676 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800677 struct ixgbe_hw_stats *hwstats = &adapter->stats;
678 u32 data = 0;
679 u32 xoff[8] = {0};
680 int i;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700681
John Fastabendc84d3242010-11-16 19:27:12 -0800682 if ((hw->fc.current_mode == ixgbe_fc_full) ||
683 (hw->fc.current_mode == ixgbe_fc_rx_pause)) {
684 switch (hw->mac.type) {
685 case ixgbe_mac_82598EB:
686 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
687 break;
688 default:
689 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
690 }
691 hwstats->lxoffrxc += data;
692
693 /* refill credits (no tx hang) if we received xoff */
694 if (!data)
695 return;
696
697 for (i = 0; i < adapter->num_tx_queues; i++)
698 clear_bit(__IXGBE_HANG_CHECK_ARMED,
699 &adapter->tx_ring[i]->state);
700 return;
701 } else if (!(adapter->dcb_cfg.pfc_mode_enable))
702 return;
703
704 /* update stats for each tc, only valid with PFC enabled */
705 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
706 switch (hw->mac.type) {
707 case ixgbe_mac_82598EB:
708 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
709 break;
710 default:
711 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
712 }
713 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700714 }
715
John Fastabendc84d3242010-11-16 19:27:12 -0800716 /* disarm tx queues that have received xoff frames */
717 for (i = 0; i < adapter->num_tx_queues; i++) {
718 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
John Fastabendfb5475f2011-04-26 07:26:36 +0000719 u8 tc = tx_ring->dcb_tc;
John Fastabendc84d3242010-11-16 19:27:12 -0800720
721 if (xoff[tc])
722 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
723 }
724}
725
726static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
727{
728 return ring->tx_stats.completed;
729}
730
731static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
732{
733 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
734 struct ixgbe_hw *hw = &adapter->hw;
735
736 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
737 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
738
739 if (head != tail)
740 return (head < tail) ?
741 tail - head : (tail + ring->count - head);
742
743 return 0;
744}
745
746static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
747{
748 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
749 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
750 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
751 bool ret = false;
752
753 clear_check_for_tx_hang(tx_ring);
754
755 /*
756 * Check for a hung queue, but be thorough. This verifies
757 * that a transmit has been completed since the previous
758 * check AND there is at least one packet pending. The
759 * ARMED bit is set to indicate a potential hang. The
760 * bit is cleared if a pause frame is received to remove
761 * false hang detection due to PFC or 802.3x frames. By
762 * requiring this to fail twice we avoid races with
763 * pfc clearing the ARMED bit and conditions where we
764 * run the check_tx_hang logic with a transmit completion
765 * pending but without time to complete it yet.
766 */
767 if ((tx_done_old == tx_done) && tx_pending) {
768 /* make sure it is true for two checks in a row */
769 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
770 &tx_ring->state);
771 } else {
772 /* update completed stats and continue */
773 tx_ring->tx_stats.tx_done_old = tx_done;
774 /* reset the countdown */
775 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
776 }
777
778 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700779}
780
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000781/**
782 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
783 * @adapter: driver private struct
784 **/
785static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter)
786{
787
788 /* Do the reset outside of interrupt context */
789 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
790 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
791 ixgbe_service_event_schedule(adapter);
792 }
793}
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700794
Auke Kok9a799d72007-09-15 14:07:45 -0700795/**
796 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000797 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700798 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700799 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000800static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000801 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700802{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000803 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000804 struct ixgbe_tx_buffer *tx_buffer;
805 union ixgbe_adv_tx_desc *tx_desc;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700806 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck59224552011-08-31 00:01:06 +0000807 unsigned int budget = q_vector->tx.work_limit;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000808 u16 i = tx_ring->next_to_clean;
Auke Kok9a799d72007-09-15 14:07:45 -0700809
Alexander Duyckd3d00232011-07-15 02:31:25 +0000810 tx_buffer = &tx_ring->tx_buffer_info[i];
811 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800812
Alexander Duyck30065e62011-07-15 03:05:14 +0000813 for (; budget; budget--) {
Alexander Duyckd3d00232011-07-15 02:31:25 +0000814 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Auke Kok9a799d72007-09-15 14:07:45 -0700815
Alexander Duyckd3d00232011-07-15 02:31:25 +0000816 /* if next_to_watch is not set then there is no work pending */
817 if (!eop_desc)
818 break;
819
820 /* if DD is not set pending work has not been completed */
821 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
822 break;
823
824 /* count the packet as being completed */
825 tx_ring->tx_stats.completed++;
826
827 /* clear next_to_watch to prevent false hangs */
828 tx_buffer->next_to_watch = NULL;
829
830 /* prevent any other reads prior to eop_desc being verified */
831 rmb();
832
833 do {
834 ixgbe_unmap_tx_resource(tx_ring, tx_buffer);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800835 tx_desc->wb.status = 0;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000836 if (likely(tx_desc == eop_desc)) {
837 eop_desc = NULL;
838 dev_kfree_skb_any(tx_buffer->skb);
839 tx_buffer->skb = NULL;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800840
Alexander Duyckd3d00232011-07-15 02:31:25 +0000841 total_bytes += tx_buffer->bytecount;
842 total_packets += tx_buffer->gso_segs;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800843 }
844
Alexander Duyckd3d00232011-07-15 02:31:25 +0000845 tx_buffer++;
846 tx_desc++;
847 i++;
848 if (unlikely(i == tx_ring->count)) {
849 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700850
Alexander Duyckd3d00232011-07-15 02:31:25 +0000851 tx_buffer = tx_ring->tx_buffer_info;
852 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
853 }
854
855 } while (eop_desc);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800856 }
857
Auke Kok9a799d72007-09-15 14:07:45 -0700858 tx_ring->next_to_clean = i;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000859 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duyckb9537992010-11-16 19:26:58 -0800860 tx_ring->stats.bytes += total_bytes;
Alexander Duyckbd198052011-06-11 01:45:08 +0000861 tx_ring->stats.packets += total_packets;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000862 u64_stats_update_end(&tx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +0000863 q_vector->tx.total_bytes += total_bytes;
864 q_vector->tx.total_packets += total_packets;
Alexander Duyckb9537992010-11-16 19:26:58 -0800865
John Fastabendc84d3242010-11-16 19:27:12 -0800866 if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) {
Alexander Duyckb9537992010-11-16 19:26:58 -0800867 /* schedule immediate reset if we believe we hung */
John Fastabendc84d3242010-11-16 19:27:12 -0800868 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckd3d00232011-07-15 02:31:25 +0000869 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
John Fastabendc84d3242010-11-16 19:27:12 -0800870 e_err(drv, "Detected Tx Unit Hang\n"
871 " Tx Queue <%d>\n"
872 " TDH, TDT <%x>, <%x>\n"
873 " next_to_use <%x>\n"
874 " next_to_clean <%x>\n"
875 "tx_buffer_info[next_to_clean]\n"
876 " time_stamp <%lx>\n"
877 " jiffies <%lx>\n",
878 tx_ring->queue_index,
879 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
880 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Alexander Duyckd3d00232011-07-15 02:31:25 +0000881 tx_ring->next_to_use, i,
882 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
John Fastabendc84d3242010-11-16 19:27:12 -0800883
884 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
885
886 e_info(probe,
887 "tx hang %d detected on queue %d, resetting adapter\n",
888 adapter->tx_timeout_count + 1, tx_ring->queue_index);
889
890 /* schedule immediate reset if we believe we hung */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +0000891 ixgbe_tx_timeout_reset(adapter);
Alexander Duyckb9537992010-11-16 19:26:58 -0800892
893 /* the adapter is about to reset, no point in enabling stuff */
Alexander Duyck59224552011-08-31 00:01:06 +0000894 return true;
Alexander Duyckb9537992010-11-16 19:26:58 -0800895 }
Auke Kok9a799d72007-09-15 14:07:45 -0700896
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800897#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyck30065e62011-07-15 03:05:14 +0000898 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
Alexander Duyck7d4987d2011-05-27 05:31:37 +0000899 (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800900 /* Make sure that anybody stopping the queue after this
901 * sees the new next_to_clean.
902 */
903 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800904 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800905 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800906 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800907 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800908 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800909 }
Auke Kok9a799d72007-09-15 14:07:45 -0700910
Alexander Duyck59224552011-08-31 00:01:06 +0000911 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -0700912}
913
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400914#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800915static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800916 struct ixgbe_ring *rx_ring,
917 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800918{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800919 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800920 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800921 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800922
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800923 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
924 switch (hw->mac.type) {
925 case ixgbe_mac_82598EB:
926 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000927 rxctrl |= dca3_get_tag(rx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800928 break;
929 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800930 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800931 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000932 rxctrl |= (dca3_get_tag(rx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800933 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
934 break;
935 default:
936 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800937 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800938 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
939 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
940 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800941 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800942}
943
944static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800945 struct ixgbe_ring *tx_ring,
946 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800947{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000948 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800949 u32 txctrl;
950 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800951
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800952 switch (hw->mac.type) {
953 case ixgbe_mac_82598EB:
954 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
955 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000956 txctrl |= dca3_get_tag(tx_ring->dev, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800957 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800958 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
959 break;
960 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800961 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800962 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
963 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
Alexander Duyck263a84e2011-07-15 03:05:46 +0000964 txctrl |= (dca3_get_tag(tx_ring->dev, cpu) <<
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800965 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
966 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800967 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
968 break;
969 default:
970 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800971 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800972}
973
974static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
975{
976 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000977 struct ixgbe_ring *ring;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800978 int cpu = get_cpu();
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800979
980 if (q_vector->cpu == cpu)
981 goto out_no_update;
982
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000983 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
984 ixgbe_update_tx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800985
Alexander Duyckefe3d3c2011-07-15 03:05:21 +0000986 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
987 ixgbe_update_rx_dca(adapter, ring, cpu);
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800988
989 q_vector->cpu = cpu;
990out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800991 put_cpu();
992}
993
994static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
995{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800996 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800997 int i;
998
999 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1000 return;
1001
Alexander Duycke35ec122009-05-21 13:07:12 +00001002 /* always use CB2 mode, difference is masked in the CB driver */
1003 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1004
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001005 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
1006 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1007 else
1008 num_q_vectors = 1;
1009
1010 for (i = 0; i < num_q_vectors; i++) {
1011 adapter->q_vector[i]->cpu = -1;
1012 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001013 }
1014}
1015
1016static int __ixgbe_notify_dca(struct device *dev, void *data)
1017{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001018 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001019 unsigned long event = *(unsigned long *)data;
1020
Don Skidmore2a72c312011-07-20 02:27:05 +00001021 if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE))
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001022 return 0;
1023
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001024 switch (event) {
1025 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001026 /* if we're already enabled, don't do it again */
1027 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1028 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001029 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001030 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001031 ixgbe_setup_dca(adapter);
1032 break;
1033 }
1034 /* Fall Through since DCA is disabled. */
1035 case DCA_PROVIDER_REMOVE:
1036 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1037 dca_remove_requester(dev);
1038 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1039 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1040 }
1041 break;
1042 }
1043
Denis V. Lunev652f0932008-03-27 14:39:17 +03001044 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001045}
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001046#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001047
1048static inline void ixgbe_rx_hash(union ixgbe_adv_rx_desc *rx_desc,
1049 struct sk_buff *skb)
1050{
1051 skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
1052}
1053
Auke Kok9a799d72007-09-15 14:07:45 -07001054/**
Alexander Duyckff886df2011-06-11 01:45:13 +00001055 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1056 * @adapter: address of board private structure
1057 * @rx_desc: advanced rx descriptor
1058 *
1059 * Returns : true if it is FCoE pkt
1060 */
1061static inline bool ixgbe_rx_is_fcoe(struct ixgbe_adapter *adapter,
1062 union ixgbe_adv_rx_desc *rx_desc)
1063{
1064 __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1065
1066 return (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
1067 ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) ==
1068 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE <<
1069 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT)));
1070}
1071
1072/**
Auke Kok9a799d72007-09-15 14:07:45 -07001073 * ixgbe_receive_skb - Send a completed packet up the stack
1074 * @adapter: board private structure
1075 * @skb: packet to send up
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001076 * @status: hardware indication of status of receive
1077 * @rx_ring: rx descriptor ring (for a specific queue) to setup
1078 * @rx_desc: rx descriptor
Auke Kok9a799d72007-09-15 14:07:45 -07001079 **/
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001080static void ixgbe_receive_skb(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001081 struct sk_buff *skb, u8 status,
1082 struct ixgbe_ring *ring,
1083 union ixgbe_adv_rx_desc *rx_desc)
Auke Kok9a799d72007-09-15 14:07:45 -07001084{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001085 struct ixgbe_adapter *adapter = q_vector->adapter;
1086 struct napi_struct *napi = &q_vector->napi;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001087 bool is_vlan = (status & IXGBE_RXD_STAT_VP);
1088 u16 tag = le16_to_cpu(rx_desc->wb.upper.vlan);
Auke Kok9a799d72007-09-15 14:07:45 -07001089
Jesse Grossf62bbb52010-10-20 13:56:10 +00001090 if (is_vlan && (tag & VLAN_VID_MASK))
1091 __vlan_hwaccel_put_tag(skb, tag);
1092
1093 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1094 napi_gro_receive(napi, skb);
1095 else
1096 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001097}
1098
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001099/**
1100 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1101 * @adapter: address of board private structure
1102 * @status_err: hardware indication of status of receive
1103 * @skb: skb currently being received and modified
Alexander Duyckff886df2011-06-11 01:45:13 +00001104 * @status_err: status error value of last descriptor in packet
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001105 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001106static inline void ixgbe_rx_checksum(struct ixgbe_adapter *adapter,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001107 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckff886df2011-06-11 01:45:13 +00001108 struct sk_buff *skb,
1109 u32 status_err)
Auke Kok9a799d72007-09-15 14:07:45 -07001110{
Alexander Duyckff886df2011-06-11 01:45:13 +00001111 skb->ip_summed = CHECKSUM_NONE;
Auke Kok9a799d72007-09-15 14:07:45 -07001112
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001113 /* Rx csum disabled */
1114 if (!(adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07001115 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001116
1117 /* if IP and error */
1118 if ((status_err & IXGBE_RXD_STAT_IPCS) &&
1119 (status_err & IXGBE_RXDADV_ERR_IPE)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001120 adapter->hw_csum_rx_error++;
1121 return;
1122 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001123
1124 if (!(status_err & IXGBE_RXD_STAT_L4CS))
1125 return;
1126
1127 if (status_err & IXGBE_RXDADV_ERR_TCPE) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001128 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1129
1130 /*
1131 * 82599 errata, UDP frames with a 0 checksum can be marked as
1132 * checksum errors.
1133 */
1134 if ((pkt_info & IXGBE_RXDADV_PKTTYPE_UDP) &&
1135 (adapter->hw.mac.type == ixgbe_mac_82599EB))
1136 return;
1137
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001138 adapter->hw_csum_rx_error++;
1139 return;
1140 }
1141
Auke Kok9a799d72007-09-15 14:07:45 -07001142 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001143 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001144}
1145
Alexander Duyck84ea2592010-11-16 19:26:49 -08001146static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001147{
1148 /*
1149 * Force memory writes to complete before letting h/w
1150 * know there are new descriptors to fetch. (Only
1151 * applicable for weak-ordered memory model archs,
1152 * such as IA-64).
1153 */
1154 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001155 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001156}
1157
Auke Kok9a799d72007-09-15 14:07:45 -07001158/**
1159 * ixgbe_alloc_rx_buffers - Replace used receive buffers; packet split
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001160 * @rx_ring: ring to place buffers on
1161 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001162 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001163void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001164{
Auke Kok9a799d72007-09-15 14:07:45 -07001165 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001166 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001167 struct sk_buff *skb;
1168 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001169
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001170 /* do nothing if no valid netdev defined */
1171 if (!rx_ring->netdev)
1172 return;
1173
Auke Kok9a799d72007-09-15 14:07:45 -07001174 while (cleaned_count--) {
Alexander Duyck31f05a22010-08-19 13:40:31 +00001175 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001176 bi = &rx_ring->rx_buffer_info[i];
1177 skb = bi->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001178
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001179 if (!skb) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001180 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001181 rx_ring->rx_buf_len);
Auke Kok9a799d72007-09-15 14:07:45 -07001182 if (!skb) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001183 rx_ring->rx_stats.alloc_rx_buff_failed++;
Auke Kok9a799d72007-09-15 14:07:45 -07001184 goto no_buffers;
1185 }
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001186 /* initialize queue mapping */
1187 skb_record_rx_queue(skb, rx_ring->queue_index);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001188 bi->skb = skb;
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001189 }
Auke Kok9a799d72007-09-15 14:07:45 -07001190
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001191 if (!bi->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001192 bi->dma = dma_map_single(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001193 skb->data,
Joe Perchese8e9f692010-09-07 21:34:53 +00001194 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00001195 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001196 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001197 rx_ring->rx_stats.alloc_rx_buff_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001198 bi->dma = 0;
1199 goto no_buffers;
1200 }
Auke Kok9a799d72007-09-15 14:07:45 -07001201 }
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001202
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001203 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001204 if (!bi->page) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001205 bi->page = netdev_alloc_page(rx_ring->netdev);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001206 if (!bi->page) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001207 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001208 goto no_buffers;
1209 }
1210 }
1211
1212 if (!bi->page_dma) {
1213 /* use a half page if we're re-using */
1214 bi->page_offset ^= PAGE_SIZE / 2;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001215 bi->page_dma = dma_map_page(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001216 bi->page,
1217 bi->page_offset,
1218 PAGE_SIZE / 2,
1219 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001220 if (dma_mapping_error(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001221 bi->page_dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001222 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001223 bi->page_dma = 0;
1224 goto no_buffers;
1225 }
1226 }
1227
1228 /* Refresh the desc even if buffer_addrs didn't change
1229 * because each write-back erases this info. */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001230 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1231 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001232 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001233 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Alexander Duyck84418e32010-08-19 13:40:54 +00001234 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001235 }
1236
1237 i++;
1238 if (i == rx_ring->count)
1239 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001240 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001241
Auke Kok9a799d72007-09-15 14:07:45 -07001242no_buffers:
1243 if (rx_ring->next_to_use != i) {
1244 rx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08001245 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001246 }
1247}
1248
Alexander Duyckc267fc12010-11-16 19:27:00 -08001249static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001250{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001251 /* HW will not DMA in data larger than the given buffer, even if it
1252 * parses the (NFS, of course) header to be larger. In that case, it
1253 * fills the header buffer and spills the rest into the page.
1254 */
1255 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1256 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1257 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1258 if (hlen > IXGBE_RX_HDR_SIZE)
1259 hlen = IXGBE_RX_HDR_SIZE;
1260 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001261}
1262
Alexander Duyckf8212f92009-04-27 22:42:37 +00001263/**
1264 * ixgbe_transform_rsc_queue - change rsc queue into a full packet
1265 * @skb: pointer to the last skb in the rsc queue
1266 *
1267 * This function changes a queue full of hw rsc buffers into a completed
1268 * packet. It uses the ->prev pointers to find the first packet and then
1269 * turns it into the frag list owner.
1270 **/
Alexander Duyckaa801752010-11-16 19:27:02 -08001271static inline struct sk_buff *ixgbe_transform_rsc_queue(struct sk_buff *skb)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001272{
1273 unsigned int frag_list_size = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001274 unsigned int skb_cnt = 1;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001275
1276 while (skb->prev) {
1277 struct sk_buff *prev = skb->prev;
1278 frag_list_size += skb->len;
1279 skb->prev = NULL;
1280 skb = prev;
Alexander Duyckaa801752010-11-16 19:27:02 -08001281 skb_cnt++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001282 }
1283
1284 skb_shinfo(skb)->frag_list = skb->next;
1285 skb->next = NULL;
1286 skb->len += frag_list_size;
1287 skb->data_len += frag_list_size;
1288 skb->truesize += frag_list_size;
Alexander Duyckaa801752010-11-16 19:27:02 -08001289 IXGBE_RSC_CB(skb)->skb_cnt = skb_cnt;
1290
Alexander Duyckf8212f92009-04-27 22:42:37 +00001291 return skb;
1292}
1293
Alexander Duyckaa801752010-11-16 19:27:02 -08001294static inline bool ixgbe_get_rsc_state(union ixgbe_adv_rx_desc *rx_desc)
1295{
1296 return !!(le32_to_cpu(rx_desc->wb.lower.lo_dword.data) &
1297 IXGBE_RXDADV_RSCCNT_MASK);
1298}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001299
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001300static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001301 struct ixgbe_ring *rx_ring,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001302 int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07001303{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001304 struct ixgbe_adapter *adapter = q_vector->adapter;
Auke Kok9a799d72007-09-15 14:07:45 -07001305 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
1306 struct ixgbe_rx_buffer *rx_buffer_info, *next_buffer;
1307 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001308 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001309 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001310#ifdef IXGBE_FCOE
1311 int ddp_bytes = 0;
1312#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001313 u32 staterr;
1314 u16 i;
1315 u16 cleaned_count = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001316 bool pkt_is_rsc = false;
Auke Kok9a799d72007-09-15 14:07:45 -07001317
1318 i = rx_ring->next_to_clean;
Alexander Duyck31f05a22010-08-19 13:40:31 +00001319 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001320 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kok9a799d72007-09-15 14:07:45 -07001321
1322 while (staterr & IXGBE_RXD_STAT_DD) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001323 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001324
Milton Miller3c945e52010-02-19 17:44:42 +00001325 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001326
Alexander Duyckc267fc12010-11-16 19:27:00 -08001327 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1328
Auke Kok9a799d72007-09-15 14:07:45 -07001329 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001330 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001331 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001332
Alexander Duyckc267fc12010-11-16 19:27:00 -08001333 if (ring_is_rsc_enabled(rx_ring))
Alexander Duyckaa801752010-11-16 19:27:02 -08001334 pkt_is_rsc = ixgbe_get_rsc_state(rx_desc);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001335
1336 /* if this is a skb from previous receive DMA will be 0 */
Alexander Duyck21fa4e62009-06-04 15:59:49 +00001337 if (rx_buffer_info->dma) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001338 u16 hlen;
Alexander Duyckaa801752010-11-16 19:27:02 -08001339 if (pkt_is_rsc &&
Alexander Duyckc267fc12010-11-16 19:27:00 -08001340 !(staterr & IXGBE_RXD_STAT_EOP) &&
1341 !skb->prev) {
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001342 /*
1343 * When HWRSC is enabled, delay unmapping
1344 * of the first packet. It carries the
1345 * header information, HW may still
1346 * access the header after the writeback.
1347 * Only unmap it when EOP is reached
1348 */
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001349 IXGBE_RSC_CB(skb)->delay_unmap = true;
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001350 IXGBE_RSC_CB(skb)->dma = rx_buffer_info->dma;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001351 } else {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001352 dma_unmap_single(rx_ring->dev,
Joe Perchese8e9f692010-09-07 21:34:53 +00001353 rx_buffer_info->dma,
1354 rx_ring->rx_buf_len,
1355 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001356 }
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00001357 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001358
1359 if (ring_is_ps_enabled(rx_ring)) {
1360 hlen = ixgbe_get_hlen(rx_desc);
1361 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1362 } else {
1363 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1364 }
1365
1366 skb_put(skb, hlen);
1367 } else {
1368 /* assume packet split since header is unmapped */
1369 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001370 }
1371
1372 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001373 dma_unmap_page(rx_ring->dev,
1374 rx_buffer_info->page_dma,
1375 PAGE_SIZE / 2,
1376 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001377 rx_buffer_info->page_dma = 0;
1378 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001379 rx_buffer_info->page,
1380 rx_buffer_info->page_offset,
1381 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001382
Alexander Duyckc267fc12010-11-16 19:27:00 -08001383 if ((page_count(rx_buffer_info->page) == 1) &&
1384 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001385 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001386 else
1387 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001388
1389 skb->len += upper_len;
1390 skb->data_len += upper_len;
1391 skb->truesize += upper_len;
1392 }
1393
1394 i++;
1395 if (i == rx_ring->count)
1396 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001397
Alexander Duyck31f05a22010-08-19 13:40:31 +00001398 next_rxd = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001399 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001400 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001401
Alexander Duyckaa801752010-11-16 19:27:02 -08001402 if (pkt_is_rsc) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001403 u32 nextp = (staterr & IXGBE_RXDADV_NEXTP_MASK) >>
1404 IXGBE_RXDADV_NEXTP_SHIFT;
1405 next_buffer = &rx_ring->rx_buffer_info[nextp];
Alexander Duyckf8212f92009-04-27 22:42:37 +00001406 } else {
1407 next_buffer = &rx_ring->rx_buffer_info[i];
1408 }
1409
Alexander Duyckc267fc12010-11-16 19:27:00 -08001410 if (!(staterr & IXGBE_RXD_STAT_EOP)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001411 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001412 rx_buffer_info->skb = next_buffer->skb;
1413 rx_buffer_info->dma = next_buffer->dma;
1414 next_buffer->skb = skb;
1415 next_buffer->dma = 0;
1416 } else {
1417 skb->next = next_buffer->skb;
1418 skb->next->prev = skb;
1419 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001420 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001421 goto next_desc;
1422 }
1423
Alexander Duyckaa801752010-11-16 19:27:02 -08001424 if (skb->prev) {
1425 skb = ixgbe_transform_rsc_queue(skb);
1426 /* if we got here without RSC the packet is invalid */
1427 if (!pkt_is_rsc) {
1428 __pskb_trim(skb, 0);
1429 rx_buffer_info->skb = skb;
1430 goto next_desc;
1431 }
1432 }
Alexander Duyckc267fc12010-11-16 19:27:00 -08001433
1434 if (ring_is_rsc_enabled(rx_ring)) {
1435 if (IXGBE_RSC_CB(skb)->delay_unmap) {
1436 dma_unmap_single(rx_ring->dev,
1437 IXGBE_RSC_CB(skb)->dma,
1438 rx_ring->rx_buf_len,
1439 DMA_FROM_DEVICE);
1440 IXGBE_RSC_CB(skb)->dma = 0;
1441 IXGBE_RSC_CB(skb)->delay_unmap = false;
1442 }
Alexander Duyckaa801752010-11-16 19:27:02 -08001443 }
1444 if (pkt_is_rsc) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001445 if (ring_is_ps_enabled(rx_ring))
1446 rx_ring->rx_stats.rsc_count +=
Alexander Duyckaa801752010-11-16 19:27:02 -08001447 skb_shinfo(skb)->nr_frags;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001448 else
Alexander Duyckaa801752010-11-16 19:27:02 -08001449 rx_ring->rx_stats.rsc_count +=
1450 IXGBE_RSC_CB(skb)->skb_cnt;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001451 rx_ring->rx_stats.rsc_flush++;
1452 }
1453
1454 /* ERR_MASK will only have valid bits if EOP set */
Alexander Duyckff886df2011-06-11 01:45:13 +00001455 if (unlikely(staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK)) {
1456 dev_kfree_skb_any(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001457 goto next_desc;
1458 }
1459
Alexander Duyckff886df2011-06-11 01:45:13 +00001460 ixgbe_rx_checksum(adapter, rx_desc, skb, staterr);
Emil Tantilov67a74ee2011-04-23 04:50:40 +00001461 if (adapter->netdev->features & NETIF_F_RXHASH)
1462 ixgbe_rx_hash(rx_desc, skb);
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001463
1464 /* probably a little skewed due to removing CRC */
1465 total_rx_bytes += skb->len;
1466 total_rx_packets++;
1467
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001468 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Yi Zou332d4a72009-05-13 13:11:53 +00001469#ifdef IXGBE_FCOE
1470 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Alexander Duyckff886df2011-06-11 01:45:13 +00001471 if (ixgbe_rx_is_fcoe(adapter, rx_desc)) {
1472 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb,
1473 staterr);
David S. Miller823dcd22011-08-20 10:39:12 -07001474 if (!ddp_bytes) {
1475 dev_kfree_skb_any(skb);
Yi Zou332d4a72009-05-13 13:11:53 +00001476 goto next_desc;
David S. Miller823dcd22011-08-20 10:39:12 -07001477 }
Yi Zou3d8fd382009-06-08 14:38:44 +00001478 }
Yi Zou332d4a72009-05-13 13:11:53 +00001479#endif /* IXGBE_FCOE */
Alexander Duyckfdaff1c2009-05-06 10:43:47 +00001480 ixgbe_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
Auke Kok9a799d72007-09-15 14:07:45 -07001481
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001482 budget--;
Auke Kok9a799d72007-09-15 14:07:45 -07001483next_desc:
1484 rx_desc->wb.upper.status_error = 0;
1485
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001486 if (!budget)
Alexander Duyckc267fc12010-11-16 19:27:00 -08001487 break;
1488
Auke Kok9a799d72007-09-15 14:07:45 -07001489 /* return some buffers to hardware, one at a time is too slow */
1490 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001491 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001492 cleaned_count = 0;
1493 }
1494
1495 /* use prefetched values */
1496 rx_desc = next_rxd;
Auke Kok9a799d72007-09-15 14:07:45 -07001497 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001498 }
1499
Auke Kok9a799d72007-09-15 14:07:45 -07001500 rx_ring->next_to_clean = i;
Alexander Duyck7d4987d2011-05-27 05:31:37 +00001501 cleaned_count = ixgbe_desc_unused(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07001502
1503 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001504 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001505
Yi Zou3d8fd382009-06-08 14:38:44 +00001506#ifdef IXGBE_FCOE
1507 /* include DDPed FCoE data */
1508 if (ddp_bytes > 0) {
1509 unsigned int mss;
1510
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001511 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001512 sizeof(struct fc_frame_header) -
1513 sizeof(struct fcoe_crc_eof);
1514 if (mss > 512)
1515 mss &= ~511;
1516 total_rx_bytes += ddp_bytes;
1517 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1518 }
1519#endif /* IXGBE_FCOE */
1520
Alexander Duyckc267fc12010-11-16 19:27:00 -08001521 u64_stats_update_begin(&rx_ring->syncp);
1522 rx_ring->stats.packets += total_rx_packets;
1523 rx_ring->stats.bytes += total_rx_bytes;
1524 u64_stats_update_end(&rx_ring->syncp);
Alexander Duyckbd198052011-06-11 01:45:08 +00001525 q_vector->rx.total_packets += total_rx_packets;
1526 q_vector->rx.total_bytes += total_rx_bytes;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001527
1528 return !!budget;
Auke Kok9a799d72007-09-15 14:07:45 -07001529}
1530
Auke Kok9a799d72007-09-15 14:07:45 -07001531/**
1532 * ixgbe_configure_msix - Configure MSI-X hardware
1533 * @adapter: board private structure
1534 *
1535 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1536 * interrupts.
1537 **/
1538static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1539{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001540 struct ixgbe_q_vector *q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001541 int q_vectors, v_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001542 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001543
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001544 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1545
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001546 /*
1547 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001548 * corresponding register.
1549 */
1550 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001551 struct ixgbe_ring *ring;
Alexander Duyck7a921c92009-05-06 10:43:28 +00001552 q_vector = adapter->q_vector[v_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001553
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001554 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
1555 ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001556
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001557 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
1558 ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001559
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001560 if (q_vector->tx.ring && !q_vector->rx.ring)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001561 /* tx only */
1562 q_vector->eitr = adapter->tx_eitr_param;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001563 else if (q_vector->rx.ring)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001564 /* rx or mixed */
1565 q_vector->eitr = adapter->rx_eitr_param;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001566
Alexander Duyckfe49f042009-06-04 16:00:09 +00001567 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07001568 }
1569
Alexander Duyckbd508172010-11-16 19:27:03 -08001570 switch (adapter->hw.mac.type) {
1571 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001572 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001573 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001574 break;
1575 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001576 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001577 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001578 break;
1579
1580 default:
1581 break;
1582 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001583 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001584
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001585 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001586 mask = IXGBE_EIMS_ENABLE_MASK;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001587 if (adapter->num_vfs)
1588 mask &= ~(IXGBE_EIMS_OTHER |
1589 IXGBE_EIMS_MAILBOX |
1590 IXGBE_EIMS_LSC);
1591 else
1592 mask &= ~(IXGBE_EIMS_OTHER | IXGBE_EIMS_LSC);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001593 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001594}
1595
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001596enum latency_range {
1597 lowest_latency = 0,
1598 low_latency = 1,
1599 bulk_latency = 2,
1600 latency_invalid = 255
1601};
1602
1603/**
1604 * ixgbe_update_itr - update the dynamic ITR value based on statistics
Alexander Duyckbd198052011-06-11 01:45:08 +00001605 * @q_vector: structure containing interrupt and ring information
1606 * @ring_container: structure containing ring performance data
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001607 *
1608 * Stores a new ITR value based on packets and byte
1609 * counts during the last interrupt. The advantage of per interrupt
1610 * computation is faster updates and more accurate ITR for the current
1611 * traffic pattern. Constants in this function were computed
1612 * based on theoretical maximum wire speed and thresholds were set based
1613 * on testing data as well as attempting to minimize response time
1614 * while increasing bulk throughput.
1615 * this functionality is controlled by the InterruptThrottleRate module
1616 * parameter (see ixgbe_param.c)
1617 **/
Alexander Duyckbd198052011-06-11 01:45:08 +00001618static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector,
1619 struct ixgbe_ring_container *ring_container)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001620{
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001621 u64 bytes_perint;
Alexander Duyckbd198052011-06-11 01:45:08 +00001622 struct ixgbe_adapter *adapter = q_vector->adapter;
1623 int bytes = ring_container->total_bytes;
1624 int packets = ring_container->total_packets;
1625 u32 timepassed_us;
1626 u8 itr_setting = ring_container->itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001627
1628 if (packets == 0)
Alexander Duyckbd198052011-06-11 01:45:08 +00001629 return;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001630
1631 /* simple throttlerate management
1632 * 0-20MB/s lowest (100000 ints/s)
1633 * 20-100MB/s low (20000 ints/s)
1634 * 100-1249MB/s bulk (8000 ints/s)
1635 */
1636 /* what was last interrupt timeslice? */
Alexander Duyckbd198052011-06-11 01:45:08 +00001637 timepassed_us = 1000000/q_vector->eitr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001638 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1639
1640 switch (itr_setting) {
1641 case lowest_latency:
1642 if (bytes_perint > adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001643 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001644 break;
1645 case low_latency:
1646 if (bytes_perint > adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001647 itr_setting = bulk_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001648 else if (bytes_perint <= adapter->eitr_low)
Alexander Duyckbd198052011-06-11 01:45:08 +00001649 itr_setting = lowest_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001650 break;
1651 case bulk_latency:
1652 if (bytes_perint <= adapter->eitr_high)
Alexander Duyckbd198052011-06-11 01:45:08 +00001653 itr_setting = low_latency;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001654 break;
1655 }
1656
Alexander Duyckbd198052011-06-11 01:45:08 +00001657 /* clear work counters since we have the values we need */
1658 ring_container->total_bytes = 0;
1659 ring_container->total_packets = 0;
1660
1661 /* write updated itr to ring container */
1662 ring_container->itr = itr_setting;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001663}
1664
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001665/**
1666 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001667 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001668 *
1669 * This function is made to be called by ethtool and by the driver
1670 * when it needs to update EITR registers at runtime. Hardware
1671 * specific quirks/differences are taken care of here.
1672 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001673void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001674{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001675 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001676 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001677 int v_idx = q_vector->v_idx;
1678 u32 itr_reg = EITR_INTS_PER_SEC_TO_REG(q_vector->eitr);
1679
Alexander Duyckbd508172010-11-16 19:27:03 -08001680 switch (adapter->hw.mac.type) {
1681 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001682 /* must write high and low 16 bits to reset counter */
1683 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001684 break;
1685 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001686 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001687 /*
Don Skidmoreb93a2222010-11-16 19:27:17 -08001688 * 82599 and X540 can support a value of zero, so allow it for
Jesse Brandeburgf8d1dca2010-04-27 01:37:20 +00001689 * max interrupt rate, but there is an errata where it can
1690 * not be zero with RSC
1691 */
1692 if (itr_reg == 8 &&
1693 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
1694 itr_reg = 0;
1695
1696 /*
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001697 * set the WDIS bit to not clear the timer bits and cause an
1698 * immediate assertion of the interrupt
1699 */
1700 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001701 break;
1702 default:
1703 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001704 }
1705 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1706}
1707
Alexander Duyckbd198052011-06-11 01:45:08 +00001708static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001709{
Alexander Duyckbd198052011-06-11 01:45:08 +00001710 u32 new_itr = q_vector->eitr;
1711 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001712
Alexander Duyckbd198052011-06-11 01:45:08 +00001713 ixgbe_update_itr(q_vector, &q_vector->tx);
1714 ixgbe_update_itr(q_vector, &q_vector->rx);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001715
Alexander Duyck08c88332011-06-11 01:45:03 +00001716 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001717
1718 switch (current_itr) {
1719 /* counts and packets in update_itr are dependent on these numbers */
1720 case lowest_latency:
1721 new_itr = 100000;
1722 break;
1723 case low_latency:
1724 new_itr = 20000; /* aka hwitr = ~200 */
1725 break;
1726 case bulk_latency:
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001727 new_itr = 8000;
1728 break;
Alexander Duyckbd198052011-06-11 01:45:08 +00001729 default:
1730 break;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001731 }
1732
1733 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001734 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08001735 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001736
Alexander Duyckbd198052011-06-11 01:45:08 +00001737 /* save the algorithm value here */
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001738 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001739
1740 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001741 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001742}
1743
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001744/**
Alexander Duyckf0f97782011-04-22 04:08:09 +00001745 * ixgbe_check_overtemp_subtask - check for over tempurature
1746 * @adapter: pointer to adapter
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001747 **/
Alexander Duyckf0f97782011-04-22 04:08:09 +00001748static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001749{
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001750 struct ixgbe_hw *hw = &adapter->hw;
1751 u32 eicr = adapter->interrupt_event;
1752
Alexander Duyckf0f97782011-04-22 04:08:09 +00001753 if (test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perches7ca647b2010-09-07 21:35:40 +00001754 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001755
Alexander Duyckf0f97782011-04-22 04:08:09 +00001756 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1757 !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT))
1758 return;
1759
1760 adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1761
Joe Perches7ca647b2010-09-07 21:35:40 +00001762 switch (hw->device_id) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00001763 case IXGBE_DEV_ID_82599_T3_LOM:
1764 /*
1765 * Since the warning interrupt is for both ports
1766 * we don't have to check if:
1767 * - This interrupt wasn't for our port.
1768 * - We may have missed the interrupt so always have to
1769 * check if we got a LSC
1770 */
1771 if (!(eicr & IXGBE_EICR_GPI_SDP0) &&
1772 !(eicr & IXGBE_EICR_LSC))
1773 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001774
Alexander Duyckf0f97782011-04-22 04:08:09 +00001775 if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) {
1776 u32 autoneg;
1777 bool link_up = false;
1778
Joe Perches7ca647b2010-09-07 21:35:40 +00001779 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1780
Alexander Duyckf0f97782011-04-22 04:08:09 +00001781 if (link_up)
1782 return;
1783 }
1784
1785 /* Check if this is not due to overtemp */
1786 if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP)
1787 return;
1788
1789 break;
Joe Perches7ca647b2010-09-07 21:35:40 +00001790 default:
1791 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1792 return;
1793 break;
1794 }
1795 e_crit(drv,
1796 "Network adapter has been stopped because it has over heated. "
1797 "Restart the computer. If the problem persists, "
1798 "power off the system and replace the adapter\n");
Alexander Duyckf0f97782011-04-22 04:08:09 +00001799
1800 adapter->interrupt_event = 0;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001801}
1802
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001803static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1804{
1805 struct ixgbe_hw *hw = &adapter->hw;
1806
1807 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1808 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001809 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001810 /* write to clear the interrupt */
1811 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1812 }
1813}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001814
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001815static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
1816{
1817 struct ixgbe_hw *hw = &adapter->hw;
1818
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001819 if (eicr & IXGBE_EICR_GPI_SDP2) {
1820 /* Clear the interrupt */
1821 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
Alexander Duyck70864002011-04-27 09:13:56 +00001822 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1823 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
1824 ixgbe_service_event_schedule(adapter);
1825 }
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001826 }
1827
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001828 if (eicr & IXGBE_EICR_GPI_SDP1) {
1829 /* Clear the interrupt */
1830 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck70864002011-04-27 09:13:56 +00001831 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1832 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
1833 ixgbe_service_event_schedule(adapter);
1834 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001835 }
1836}
1837
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001838static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
1839{
1840 struct ixgbe_hw *hw = &adapter->hw;
1841
1842 adapter->lsc_int++;
1843 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1844 adapter->link_check_timeout = jiffies;
1845 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1846 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00001847 IXGBE_WRITE_FLUSH(hw);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00001848 ixgbe_service_event_schedule(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001849 }
1850}
1851
Auke Kok9a799d72007-09-15 14:07:45 -07001852static irqreturn_t ixgbe_msix_lsc(int irq, void *data)
1853{
Alexander Duycka65151ba22011-05-27 05:31:32 +00001854 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07001855 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore54037502009-02-21 15:42:56 -08001856 u32 eicr;
1857
1858 /*
1859 * Workaround for Silicon errata. Use clear-by-write instead
1860 * of clear-by-read. Reading with EICS will return the
1861 * interrupt causes without clearing, which later be done
1862 * with the write to EICR.
1863 */
1864 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
1865 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07001866
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001867 if (eicr & IXGBE_EICR_LSC)
1868 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001869
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001870 if (eicr & IXGBE_EICR_MAILBOX)
1871 ixgbe_msg_task(adapter);
1872
Alexander Duyckbd508172010-11-16 19:27:03 -08001873 switch (hw->mac.type) {
1874 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001875 case ixgbe_mac_X540:
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001876 /* Handle Flow Director Full threshold interrupt */
1877 if (eicr & IXGBE_EICR_FLOW_DIR) {
Alexander Duyckd034acf2011-04-27 09:25:34 +00001878 int reinit_count = 0;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001879 int i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001880 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckd034acf2011-04-27 09:25:34 +00001881 struct ixgbe_ring *ring = adapter->tx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001882 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckd034acf2011-04-27 09:25:34 +00001883 &ring->state))
1884 reinit_count++;
1885 }
1886 if (reinit_count) {
1887 /* no more flow director interrupts until after init */
1888 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR);
1889 eicr &= ~IXGBE_EICR_FLOW_DIR;
1890 adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
1891 ixgbe_service_event_schedule(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001892 }
1893 }
Alexander Duyckf0f97782011-04-22 04:08:09 +00001894 ixgbe_check_sfp_event(adapter, eicr);
1895 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1896 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
1897 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1898 adapter->interrupt_event = eicr;
1899 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
1900 ixgbe_service_event_schedule(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001901 }
1902 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001903 break;
1904 default:
1905 break;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001906 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001907
1908 ixgbe_check_fan_failure(adapter, eicr);
1909
Alexander Duyck70864002011-04-27 09:13:56 +00001910 /* re-enable the original interrupt state, no lsc, no queues */
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001911 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyck70864002011-04-27 09:13:56 +00001912 IXGBE_WRITE_REG(hw, IXGBE_EIMS, eicr &
1913 ~(IXGBE_EIMS_LSC | IXGBE_EIMS_RTX_QUEUE));
Auke Kok9a799d72007-09-15 14:07:45 -07001914
1915 return IRQ_HANDLED;
1916}
1917
Alexander Duyckfe49f042009-06-04 16:00:09 +00001918static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
1919 u64 qmask)
1920{
1921 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001922 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001923
Alexander Duyckbd508172010-11-16 19:27:03 -08001924 switch (hw->mac.type) {
1925 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001926 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001927 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
1928 break;
1929 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001930 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001931 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001932 if (mask)
1933 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001934 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001935 if (mask)
1936 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
1937 break;
1938 default:
1939 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001940 }
1941 /* skip the flush */
1942}
1943
1944static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001945 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00001946{
1947 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001948 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001949
Alexander Duyckbd508172010-11-16 19:27:03 -08001950 switch (hw->mac.type) {
1951 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001952 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001953 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
1954 break;
1955 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001956 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001957 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001958 if (mask)
1959 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001960 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001961 if (mask)
1962 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
1963 break;
1964 default:
1965 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001966 }
1967 /* skip the flush */
1968}
1969
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001970static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001971{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001972 struct ixgbe_q_vector *q_vector = data;
Auke Kok9a799d72007-09-15 14:07:45 -07001973
Jesse Brandeburg9b471442009-12-03 11:33:54 +00001974 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00001975
1976 if (q_vector->rx.ring || q_vector->tx.ring)
1977 napi_schedule(&q_vector->napi);
Alexander Duyck91281fd2009-06-04 16:00:27 +00001978
Auke Kok9a799d72007-09-15 14:07:45 -07001979 return IRQ_HANDLED;
1980}
1981
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001982static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001983 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07001984{
Alexander Duyck7a921c92009-05-06 10:43:28 +00001985 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08001986 struct ixgbe_ring *rx_ring = a->rx_ring[r_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00001987
Alexander Duyck22745432010-11-16 19:27:10 -08001988 rx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00001989 rx_ring->next = q_vector->rx.ring;
1990 q_vector->rx.ring = rx_ring;
1991 q_vector->rx.count++;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001992}
Auke Kok9a799d72007-09-15 14:07:45 -07001993
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001994static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001995 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001996{
Alexander Duyck7a921c92009-05-06 10:43:28 +00001997 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08001998 struct ixgbe_ring *tx_ring = a->tx_ring[t_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00001999
Alexander Duyck22745432010-11-16 19:27:10 -08002000 tx_ring->q_vector = q_vector;
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002001 tx_ring->next = q_vector->tx.ring;
2002 q_vector->tx.ring = tx_ring;
2003 q_vector->tx.count++;
Alexander Duyckbd198052011-06-11 01:45:08 +00002004 q_vector->tx.work_limit = a->tx_work_limit;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002005}
Auke Kok9a799d72007-09-15 14:07:45 -07002006
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002007/**
2008 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2009 * @adapter: board private structure to initialize
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002010 *
2011 * This function maps descriptor rings to the queue-specific vectors
2012 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2013 * one vector per ring/queue, but on a constrained vector budget, we
2014 * group the rings as "efficiently" as possible. You would add new
2015 * mapping configurations in here.
2016 **/
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002017static int ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002018{
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002019 int q_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002020 int v_start = 0;
2021 int rxr_idx = 0, txr_idx = 0;
2022 int rxr_remaining = adapter->num_rx_queues;
2023 int txr_remaining = adapter->num_tx_queues;
2024 int i, j;
2025 int rqpv, tqpv;
2026 int err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002027
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002028 /* No mapping required if MSI-X is disabled. */
2029 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07002030 goto out;
2031
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002032 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2033
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002034 /*
2035 * The ideal configuration...
2036 * We have enough vectors to map one per queue.
2037 */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002038 if (q_vectors == adapter->num_rx_queues + adapter->num_tx_queues) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002039 for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
2040 map_vector_to_rxq(adapter, v_start, rxr_idx);
2041
2042 for (; txr_idx < txr_remaining; v_start++, txr_idx++)
2043 map_vector_to_txq(adapter, v_start, txr_idx);
2044
2045 goto out;
2046 }
2047
2048 /*
2049 * If we don't have enough vectors for a 1-to-1
2050 * mapping, we'll have to group them so there are
2051 * multiple queues per vector.
2052 */
2053 /* Re-adjusting *qpv takes care of the remainder. */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002054 for (i = v_start; i < q_vectors; i++) {
2055 rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002056 for (j = 0; j < rqpv; j++) {
2057 map_vector_to_rxq(adapter, i, rxr_idx);
2058 rxr_idx++;
2059 rxr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002060 }
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002061 tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002062 for (j = 0; j < tqpv; j++) {
2063 map_vector_to_txq(adapter, i, txr_idx);
2064 txr_idx++;
2065 txr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002066 }
Auke Kok9a799d72007-09-15 14:07:45 -07002067 }
Auke Kok9a799d72007-09-15 14:07:45 -07002068out:
Auke Kok9a799d72007-09-15 14:07:45 -07002069 return err;
2070}
2071
2072/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002073 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2074 * @adapter: board private structure
2075 *
2076 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2077 * interrupts from the kernel.
2078 **/
2079static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2080{
2081 struct net_device *netdev = adapter->netdev;
Alexander Duyck207867f2011-07-15 03:05:37 +00002082 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2083 int vector, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002084 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002085
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002086 err = ixgbe_map_rings_to_vectors(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002087 if (err)
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002088 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002089
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002090 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002091 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
Alexander Duyck207867f2011-07-15 03:05:37 +00002092 struct msix_entry *entry = &adapter->msix_entries[vector];
Robert Olssoncb13fc22008-11-25 16:43:52 -08002093
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002094 if (q_vector->tx.ring && q_vector->rx.ring) {
Don Skidmore9fe93af2010-12-03 09:33:54 +00002095 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002096 "%s-%s-%d", netdev->name, "TxRx", ri++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002097 ti++;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002098 } else if (q_vector->rx.ring) {
2099 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2100 "%s-%s-%d", netdev->name, "rx", ri++);
2101 } else if (q_vector->tx.ring) {
2102 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2103 "%s-%s-%d", netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002104 } else {
2105 /* skip this unused q_vector */
2106 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002107 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002108 err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0,
2109 q_vector->name, q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002110 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002111 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002112 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002113 goto free_queue_irqs;
2114 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002115 /* If Flow Director is enabled, set interrupt affinity */
2116 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
2117 /* assign the mask for this irq */
2118 irq_set_affinity_hint(entry->vector,
2119 q_vector->affinity_mask);
2120 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002121 }
2122
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002123 sprintf(adapter->lsc_int_name, "%s:lsc", netdev->name);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002124 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002125 ixgbe_msix_lsc, 0, adapter->lsc_int_name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002126 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002127 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002128 goto free_queue_irqs;
2129 }
2130
2131 return 0;
2132
2133free_queue_irqs:
Alexander Duyck207867f2011-07-15 03:05:37 +00002134 while (vector) {
2135 vector--;
2136 irq_set_affinity_hint(adapter->msix_entries[vector].vector,
2137 NULL);
2138 free_irq(adapter->msix_entries[vector].vector,
2139 adapter->q_vector[vector]);
2140 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002141 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2142 pci_disable_msix(adapter->pdev);
2143 kfree(adapter->msix_entries);
2144 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002145 return err;
2146}
2147
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002148/**
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002149 * ixgbe_irq_enable - Enable default interrupt generation settings
2150 * @adapter: board private structure
2151 **/
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002152static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2153 bool flush)
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002154{
2155 u32 mask;
Nelson, Shannon835462f2009-04-27 22:42:54 +00002156
2157 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002158 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
2159 mask |= IXGBE_EIMS_GPI_SDP0;
David S. Miller6ab33d52008-11-20 16:44:00 -08002160 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2161 mask |= IXGBE_EIMS_GPI_SDP1;
Alexander Duyckbd508172010-11-16 19:27:03 -08002162 switch (adapter->hw.mac.type) {
2163 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002164 case ixgbe_mac_X540:
Jesse Brandeburg2a41ff82009-03-13 22:14:30 +00002165 mask |= IXGBE_EIMS_ECC;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002166 mask |= IXGBE_EIMS_GPI_SDP1;
2167 mask |= IXGBE_EIMS_GPI_SDP2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002168 if (adapter->num_vfs)
2169 mask |= IXGBE_EIMS_MAILBOX;
Alexander Duyckbd508172010-11-16 19:27:03 -08002170 break;
2171 default:
2172 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002173 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00002174 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00002175 mask |= IXGBE_EIMS_FLOW_DIR;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002176
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002177 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002178 if (queues)
2179 ixgbe_irq_enable_queues(adapter, ~0);
2180 if (flush)
2181 IXGBE_WRITE_FLUSH(&adapter->hw);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002182
2183 if (adapter->num_vfs > 32) {
2184 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2185 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2186 }
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002187}
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002188
2189/**
2190 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002191 * @irq: interrupt number
2192 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002193 **/
2194static irqreturn_t ixgbe_intr(int irq, void *data)
2195{
Alexander Duycka65151ba22011-05-27 05:31:32 +00002196 struct ixgbe_adapter *adapter = data;
Auke Kok9a799d72007-09-15 14:07:45 -07002197 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002198 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002199 u32 eicr;
2200
Don Skidmore54037502009-02-21 15:42:56 -08002201 /*
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002202 * Workaround for silicon errata on 82598. Mask the interrupts
Don Skidmore54037502009-02-21 15:42:56 -08002203 * before the read of EICR.
2204 */
2205 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2206
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002207 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
2208 * therefore no explict interrupt disable is necessary */
2209 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002210 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002211 /*
2212 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002213 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002214 * have disabled interrupts due to EIAM
2215 * finish the workaround of silicon errata on 82598. Unmask
2216 * the interrupt that we masked before the EICR read.
2217 */
2218 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2219 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002220 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002221 }
Auke Kok9a799d72007-09-15 14:07:45 -07002222
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002223 if (eicr & IXGBE_EICR_LSC)
2224 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002225
Alexander Duyckbd508172010-11-16 19:27:03 -08002226 switch (hw->mac.type) {
2227 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002228 ixgbe_check_sfp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002229 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2230 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
Alexander Duyckf0f97782011-04-22 04:08:09 +00002231 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
2232 adapter->interrupt_event = eicr;
2233 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT;
2234 ixgbe_service_event_schedule(adapter);
2235 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002236 }
2237 break;
2238 default:
2239 break;
2240 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002241
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002242 ixgbe_check_fan_failure(adapter, eicr);
2243
Alexander Duyck7a921c92009-05-06 10:43:28 +00002244 if (napi_schedule_prep(&(q_vector->napi))) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002245 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002246 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002247 }
2248
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002249 /*
2250 * re-enable link(maybe) and non-queue interrupts, no flush.
2251 * ixgbe_poll will re-enable the queue interrupts
2252 */
2253
2254 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2255 ixgbe_irq_enable(adapter, false, false);
2256
Auke Kok9a799d72007-09-15 14:07:45 -07002257 return IRQ_HANDLED;
2258}
2259
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002260static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2261{
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002262 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2263 int i;
2264
2265 /* legacy and MSI only use one vector */
2266 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
2267 q_vectors = 1;
2268
2269 for (i = 0; i < adapter->num_rx_queues; i++) {
2270 adapter->rx_ring[i]->q_vector = NULL;
2271 adapter->rx_ring[i]->next = NULL;
2272 }
2273 for (i = 0; i < adapter->num_tx_queues; i++) {
2274 adapter->tx_ring[i]->q_vector = NULL;
2275 adapter->tx_ring[i]->next = NULL;
2276 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002277
2278 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002279 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00002280 memset(&q_vector->rx, 0, sizeof(struct ixgbe_ring_container));
2281 memset(&q_vector->tx, 0, sizeof(struct ixgbe_ring_container));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002282 }
2283}
2284
Auke Kok9a799d72007-09-15 14:07:45 -07002285/**
2286 * ixgbe_request_irq - initialize interrupts
2287 * @adapter: board private structure
2288 *
2289 * Attempts to configure interrupts using the best available
2290 * capabilities of the hardware and kernel.
2291 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002292static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002293{
2294 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002295 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002296
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002297 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2298 err = ixgbe_request_msix_irqs(adapter);
2299 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002300 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002301 netdev->name, adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002302 } else {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002303 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Alexander Duycka65151ba22011-05-27 05:31:32 +00002304 netdev->name, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002305 }
2306
Auke Kok9a799d72007-09-15 14:07:45 -07002307 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002308 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002309
Auke Kok9a799d72007-09-15 14:07:45 -07002310 return err;
2311}
2312
2313static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2314{
Auke Kok9a799d72007-09-15 14:07:45 -07002315 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002316 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002317
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002318 q_vectors = adapter->num_msix_vectors;
2319
2320 i = q_vectors - 1;
Alexander Duycka65151ba22011-05-27 05:31:32 +00002321 free_irq(adapter->msix_entries[i].vector, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002322
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002323 i--;
2324 for (; i >= 0; i--) {
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002325 /* free only the irqs that were actually requested */
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00002326 if (!adapter->q_vector[i]->rx.ring &&
2327 !adapter->q_vector[i]->tx.ring)
Alexander Duyck894ff7c2011-02-15 02:12:05 +00002328 continue;
2329
Alexander Duyck207867f2011-07-15 03:05:37 +00002330 /* clear the affinity_mask in the IRQ descriptor */
2331 irq_set_affinity_hint(adapter->msix_entries[i].vector,
2332 NULL);
2333
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002334 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002335 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002336 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002337 } else {
Alexander Duycka65151ba22011-05-27 05:31:32 +00002338 free_irq(adapter->pdev->irq, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002339 }
Alexander Duyck207867f2011-07-15 03:05:37 +00002340
2341 /* clear q_vector state information */
2342 ixgbe_reset_q_vectors(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002343}
2344
2345/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002346 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2347 * @adapter: board private structure
2348 **/
2349static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2350{
Alexander Duyckbd508172010-11-16 19:27:03 -08002351 switch (adapter->hw.mac.type) {
2352 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002353 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002354 break;
2355 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002356 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002357 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2358 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002359 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002360 if (adapter->num_vfs > 32)
2361 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002362 break;
2363 default:
2364 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002365 }
2366 IXGBE_WRITE_FLUSH(&adapter->hw);
2367 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2368 int i;
2369 for (i = 0; i < adapter->num_msix_vectors; i++)
2370 synchronize_irq(adapter->msix_entries[i].vector);
2371 } else {
2372 synchronize_irq(adapter->pdev->irq);
2373 }
2374}
2375
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002376/**
Auke Kok9a799d72007-09-15 14:07:45 -07002377 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2378 *
2379 **/
2380static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2381{
Auke Kok9a799d72007-09-15 14:07:45 -07002382 struct ixgbe_hw *hw = &adapter->hw;
2383
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002384 IXGBE_WRITE_REG(hw, IXGBE_EITR(0),
Joe Perchese8e9f692010-09-07 21:34:53 +00002385 EITR_INTS_PER_SEC_TO_REG(adapter->rx_eitr_param));
Auke Kok9a799d72007-09-15 14:07:45 -07002386
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002387 ixgbe_set_ivar(adapter, 0, 0, 0);
2388 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002389
2390 map_vector_to_rxq(adapter, 0, 0);
2391 map_vector_to_txq(adapter, 0, 0);
2392
Emil Tantilov396e7992010-07-01 20:05:12 +00002393 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002394}
2395
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002396/**
2397 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2398 * @adapter: board private structure
2399 * @ring: structure containing ring specific data
2400 *
2401 * Configure the Tx descriptor ring after a reset.
2402 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002403void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2404 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002405{
2406 struct ixgbe_hw *hw = &adapter->hw;
2407 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002408 int wait_loop = 10;
2409 u32 txdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002410 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002411
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002412 /* disable queue to avoid issues while updating state */
2413 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2414 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx),
2415 txdctl & ~IXGBE_TXDCTL_ENABLE);
2416 IXGBE_WRITE_FLUSH(hw);
2417
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002418 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002419 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002420 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2421 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2422 ring->count * sizeof(union ixgbe_adv_tx_desc));
2423 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2424 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002425 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002426
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002427 /* configure fetching thresholds */
2428 if (adapter->rx_itr_setting == 0) {
2429 /* cannot set wthresh when itr==0 */
2430 txdctl &= ~0x007F0000;
2431 } else {
2432 /* enable WTHRESH=8 descriptors, to encourage burst writeback */
2433 txdctl |= (8 << 16);
2434 }
2435 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
2436 /* PThresh workaround for Tx hang with DFP enabled. */
2437 txdctl |= 32;
2438 }
2439
2440 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002441 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2442 adapter->atr_sample_rate) {
2443 ring->atr_sample_rate = adapter->atr_sample_rate;
2444 ring->atr_count = 0;
2445 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2446 } else {
2447 ring->atr_sample_rate = 0;
2448 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002449
John Fastabendc84d3242010-11-16 19:27:12 -08002450 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2451
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002452 /* enable queue */
2453 txdctl |= IXGBE_TXDCTL_ENABLE;
2454 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2455
2456 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2457 if (hw->mac.type == ixgbe_mac_82598EB &&
2458 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2459 return;
2460
2461 /* poll to verify queue is enabled */
2462 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002463 usleep_range(1000, 2000);
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002464 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2465 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2466 if (!wait_loop)
2467 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002468}
2469
Alexander Duyck120ff942010-08-19 13:34:50 +00002470static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2471{
2472 struct ixgbe_hw *hw = &adapter->hw;
2473 u32 rttdcs;
John Fastabend72a32f12011-04-26 07:25:58 +00002474 u32 reg;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002475 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck120ff942010-08-19 13:34:50 +00002476
2477 if (hw->mac.type == ixgbe_mac_82598EB)
2478 return;
2479
2480 /* disable the arbiter while setting MTQC */
2481 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2482 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2483 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2484
2485 /* set transmit pool layout */
John Fastabend8b1c0b22011-05-03 02:26:48 +00002486 switch (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Alexander Duyck120ff942010-08-19 13:34:50 +00002487 case (IXGBE_FLAG_SRIOV_ENABLED):
2488 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2489 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2490 break;
Alexander Duyck120ff942010-08-19 13:34:50 +00002491 default:
John Fastabend8b1c0b22011-05-03 02:26:48 +00002492 if (!tcs)
2493 reg = IXGBE_MTQC_64Q_1PB;
2494 else if (tcs <= 4)
2495 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ;
2496 else
2497 reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
2498
2499 IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
2500
2501 /* Enable Security TX Buffer IFG for multiple pb */
2502 if (tcs) {
2503 reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
2504 reg |= IXGBE_SECTX_DCB;
2505 IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
2506 }
Alexander Duyck120ff942010-08-19 13:34:50 +00002507 break;
2508 }
2509
2510 /* re-enable the arbiter */
2511 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2512 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2513}
2514
Auke Kok9a799d72007-09-15 14:07:45 -07002515/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002516 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002517 * @adapter: board private structure
2518 *
2519 * Configure the Tx unit of the MAC after a reset.
2520 **/
2521static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2522{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002523 struct ixgbe_hw *hw = &adapter->hw;
2524 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002525 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002526
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002527 ixgbe_setup_mtqc(adapter);
2528
2529 if (hw->mac.type != ixgbe_mac_82598EB) {
2530 /* DMATXCTL.EN must be before Tx queues are enabled */
2531 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2532 dmatxctl |= IXGBE_DMATXCTL_TE;
2533 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2534 }
2535
Auke Kok9a799d72007-09-15 14:07:45 -07002536 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002537 for (i = 0; i < adapter->num_tx_queues; i++)
2538 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002539}
2540
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002541#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002542
Yi Zoua6616b42009-08-06 13:05:23 +00002543static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002544 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002545{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002546 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002547 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002548
Alexander Duyckbd508172010-11-16 19:27:03 -08002549 switch (adapter->hw.mac.type) {
2550 case ixgbe_mac_82598EB: {
2551 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2552 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002553 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002554 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002555 break;
2556 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002557 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002558 default:
2559 break;
2560 }
2561
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002562 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002563
2564 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2565 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002566 if (adapter->num_vfs)
2567 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002568
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002569 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2570 IXGBE_SRRCTL_BSIZEHDR_MASK;
2571
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002572 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002573#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2574 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2575#else
2576 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2577#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002578 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002579 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002580 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2581 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002582 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002583 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002584
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002585 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002586}
2587
Alexander Duyck05abb122010-08-19 13:35:41 +00002588static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002589{
Alexander Duyck05abb122010-08-19 13:35:41 +00002590 struct ixgbe_hw *hw = &adapter->hw;
2591 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002592 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2593 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002594 u32 mrqc = 0, reta = 0;
2595 u32 rxcsum;
2596 int i, j;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002597 u8 tcs = netdev_get_num_tc(adapter->netdev);
John Fastabend86b4db32011-04-26 07:26:19 +00002598 int maxq = adapter->ring_feature[RING_F_RSS].indices;
2599
2600 if (tcs)
2601 maxq = min(maxq, adapter->num_tx_queues / tcs);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002602
Alexander Duyck05abb122010-08-19 13:35:41 +00002603 /* Fill out hash function seeds */
2604 for (i = 0; i < 10; i++)
2605 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002606
Alexander Duyck05abb122010-08-19 13:35:41 +00002607 /* Fill out redirection table */
2608 for (i = 0, j = 0; i < 128; i++, j++) {
John Fastabend86b4db32011-04-26 07:26:19 +00002609 if (j == maxq)
Alexander Duyck05abb122010-08-19 13:35:41 +00002610 j = 0;
2611 /* reta = 4-byte sliding window of
2612 * 0x00..(indices-1)(indices-1)00..etc. */
2613 reta = (reta << 8) | (j * 0x11);
2614 if ((i & 3) == 3)
2615 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2616 }
2617
2618 /* Disable indicating checksum in descriptor, enables RSS hash */
2619 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2620 rxcsum |= IXGBE_RXCSUM_PCSD;
2621 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2622
John Fastabend8b1c0b22011-05-03 02:26:48 +00002623 if (adapter->hw.mac.type == ixgbe_mac_82598EB &&
2624 (adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002625 mrqc = IXGBE_MRQC_RSSEN;
John Fastabend8b1c0b22011-05-03 02:26:48 +00002626 } else {
2627 int mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
2628 | IXGBE_FLAG_SRIOV_ENABLED);
2629
2630 switch (mask) {
2631 case (IXGBE_FLAG_RSS_ENABLED):
2632 if (!tcs)
2633 mrqc = IXGBE_MRQC_RSSEN;
2634 else if (tcs <= 4)
2635 mrqc = IXGBE_MRQC_RTRSS4TCEN;
2636 else
2637 mrqc = IXGBE_MRQC_RTRSS8TCEN;
2638 break;
2639 case (IXGBE_FLAG_SRIOV_ENABLED):
2640 mrqc = IXGBE_MRQC_VMDQEN;
2641 break;
2642 default:
2643 break;
2644 }
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002645 }
2646
Alexander Duyck05abb122010-08-19 13:35:41 +00002647 /* Perform hash on these packet types */
2648 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2649 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2650 | IXGBE_MRQC_RSS_FIELD_IPV6
2651 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2652
2653 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002654}
2655
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002656/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002657 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2658 * @adapter: address of board private structure
2659 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002660 **/
Don Skidmore082757a2011-07-21 05:55:00 +00002661static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002662 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002663{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002664 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002665 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea552009-11-23 10:45:11 -08002666 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002667 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002668
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002669 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002670 return;
2671
2672 rx_buf_len = ring->rx_buf_len;
2673 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002674 rscctrl |= IXGBE_RSCCTL_RSCEN;
2675 /*
2676 * we must limit the number of descriptors so that the
2677 * total size of max desc * buf_len is not greater
2678 * than 65535
2679 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002680 if (ring_is_ps_enabled(ring)) {
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002681#if (MAX_SKB_FRAGS > 16)
2682 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2683#elif (MAX_SKB_FRAGS > 8)
2684 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2685#elif (MAX_SKB_FRAGS > 4)
2686 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2687#else
2688 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2689#endif
2690 } else {
2691 if (rx_buf_len < IXGBE_RXBUFFER_4096)
2692 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2693 else if (rx_buf_len < IXGBE_RXBUFFER_8192)
2694 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2695 else
2696 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2697 }
Alexander Duyck73670962010-08-19 13:38:34 +00002698 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002699}
2700
Alexander Duyck9e10e042010-08-19 13:40:06 +00002701/**
2702 * ixgbe_set_uta - Set unicast filter table address
2703 * @adapter: board private structure
2704 *
2705 * The unicast table address is a register array of 32-bit registers.
2706 * The table is meant to be used in a way similar to how the MTA is used
2707 * however due to certain limitations in the hardware it is necessary to
2708 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2709 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2710 **/
2711static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2712{
2713 struct ixgbe_hw *hw = &adapter->hw;
2714 int i;
2715
2716 /* The UTA table only exists on 82599 hardware and newer */
2717 if (hw->mac.type < ixgbe_mac_82599EB)
2718 return;
2719
2720 /* we only need to do this if VMDq is enabled */
2721 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2722 return;
2723
2724 for (i = 0; i < 128; i++)
2725 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2726}
2727
2728#define IXGBE_MAX_RX_DESC_POLL 10
2729static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2730 struct ixgbe_ring *ring)
2731{
2732 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002733 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2734 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002735 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002736
2737 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2738 if (hw->mac.type == ixgbe_mac_82598EB &&
2739 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2740 return;
2741
2742 do {
Don Skidmore032b4322011-03-18 09:32:53 +00002743 usleep_range(1000, 2000);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002744 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2745 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
2746
2747 if (!wait_loop) {
2748 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
2749 "the polling period\n", reg_idx);
2750 }
2751}
2752
Yi Zou2d39d572011-01-06 14:29:56 +00002753void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter,
2754 struct ixgbe_ring *ring)
2755{
2756 struct ixgbe_hw *hw = &adapter->hw;
2757 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2758 u32 rxdctl;
2759 u8 reg_idx = ring->reg_idx;
2760
2761 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2762 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
2763
2764 /* write value back with RXDCTL.ENABLE bit cleared */
2765 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2766
2767 if (hw->mac.type == ixgbe_mac_82598EB &&
2768 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2769 return;
2770
2771 /* the hardware may take up to 100us to really disable the rx queue */
2772 do {
2773 udelay(10);
2774 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2775 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
2776
2777 if (!wait_loop) {
2778 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within "
2779 "the polling period\n", reg_idx);
2780 }
2781}
2782
Alexander Duyck84418e32010-08-19 13:40:54 +00002783void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
2784 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00002785{
2786 struct ixgbe_hw *hw = &adapter->hw;
2787 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002788 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002789 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00002790
Alexander Duyck9e10e042010-08-19 13:40:06 +00002791 /* disable queue to avoid issues while updating state */
2792 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
Yi Zou2d39d572011-01-06 14:29:56 +00002793 ixgbe_disable_rx_queue(adapter, ring);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002794
Alexander Duyckacd37172010-08-19 13:36:05 +00002795 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
2796 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
2797 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
2798 ring->count * sizeof(union ixgbe_adv_rx_desc));
2799 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
2800 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002801 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002802
2803 ixgbe_configure_srrctl(adapter, ring);
2804 ixgbe_configure_rscctl(adapter, ring);
2805
Greg Rosee9f98072011-01-26 01:06:07 +00002806 /* If operating in IOV mode set RLPML for X540 */
2807 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
2808 hw->mac.type == ixgbe_mac_X540) {
2809 rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK;
2810 rxdctl |= ((ring->netdev->mtu + ETH_HLEN +
2811 ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN);
2812 }
2813
Alexander Duyck9e10e042010-08-19 13:40:06 +00002814 if (hw->mac.type == ixgbe_mac_82598EB) {
2815 /*
2816 * enable cache line friendly hardware writes:
2817 * PTHRESH=32 descriptors (half the internal cache),
2818 * this also removes ugly rx_no_buffer_count increment
2819 * HTHRESH=4 descriptors (to minimize latency on fetch)
2820 * WTHRESH=8 burst writeback up to two cache lines
2821 */
2822 rxdctl &= ~0x3FFFFF;
2823 rxdctl |= 0x080420;
2824 }
2825
2826 /* enable receive descriptor ring */
2827 rxdctl |= IXGBE_RXDCTL_ENABLE;
2828 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2829
2830 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyck7d4987d2011-05-27 05:31:37 +00002831 ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00002832}
2833
Alexander Duyck48654522010-08-19 13:36:27 +00002834static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
2835{
2836 struct ixgbe_hw *hw = &adapter->hw;
2837 int p;
2838
2839 /* PSRTYPE must be initialized in non 82598 adapters */
2840 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002841 IXGBE_PSRTYPE_UDPHDR |
2842 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00002843 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002844 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00002845
2846 if (hw->mac.type == ixgbe_mac_82598EB)
2847 return;
2848
2849 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
2850 psrtype |= (adapter->num_rx_queues_per_pool << 29);
2851
2852 for (p = 0; p < adapter->num_rx_pools; p++)
2853 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
2854 psrtype);
2855}
2856
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002857static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
2858{
2859 struct ixgbe_hw *hw = &adapter->hw;
2860 u32 gcr_ext;
2861 u32 vt_reg_bits;
2862 u32 reg_offset, vf_shift;
2863 u32 vmdctl;
2864
2865 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2866 return;
2867
2868 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2869 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
2870 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
2871 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
2872
2873 vf_shift = adapter->num_vfs % 32;
2874 reg_offset = (adapter->num_vfs > 32) ? 1 : 0;
2875
2876 /* Enable only the PF's pool for Tx/Rx */
2877 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
2878 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
2879 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
2880 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
2881 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
2882
2883 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
2884 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
2885
2886 /*
2887 * Set up VF register offsets for selected VT Mode,
2888 * i.e. 32 or 64 VFs for SR-IOV
2889 */
2890 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
2891 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
2892 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
2893 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
2894
2895 /* enable Tx loopback for VF/PF communication */
2896 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rosea985b6c32010-11-18 03:02:52 +00002897 /* Enable MAC Anti-Spoofing */
Greg Rosea1cbb15c2011-05-13 01:33:48 +00002898 hw->mac.ops.set_mac_anti_spoofing(hw,
2899 (adapter->antispoofing_enabled =
2900 (adapter->num_vfs != 0)),
Greg Rosea985b6c32010-11-18 03:02:52 +00002901 adapter->num_vfs);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002902}
2903
Alexander Duyck477de6e2010-08-19 13:38:11 +00002904static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002905{
Auke Kok9a799d72007-09-15 14:07:45 -07002906 struct ixgbe_hw *hw = &adapter->hw;
2907 struct net_device *netdev = adapter->netdev;
2908 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07002909 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00002910 struct ixgbe_ring *rx_ring;
2911 int i;
2912 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00002913
Auke Kok9a799d72007-09-15 14:07:45 -07002914 /* Decide whether to use packet split mode or not */
Don Skidmorea1243392011-01-18 22:53:47 +00002915 /* On by default */
2916 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
2917
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002918 /* Do not use packet split if we're in SR-IOV Mode */
Don Skidmorea1243392011-01-18 22:53:47 +00002919 if (adapter->num_vfs)
2920 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
2921
2922 /* Disable packet split due to 82599 erratum #45 */
2923 if (hw->mac.type == ixgbe_mac_82599EB)
2924 adapter->flags &= ~IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07002925
2926 /* Set the RX buffer length according to the mode */
2927 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07002928 rx_buf_len = IXGBE_RX_HDR_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07002929 } else {
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00002930 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
Alexander Duyckf8212f92009-04-27 22:42:37 +00002931 (netdev->mtu <= ETH_DATA_LEN))
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07002932 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07002933 else
Alexander Duyck477de6e2010-08-19 13:38:11 +00002934 rx_buf_len = ALIGN(max_frame + VLAN_HLEN, 1024);
2935 }
2936
2937#ifdef IXGBE_FCOE
2938 /* adjust max frame to be able to do baby jumbo for FCoE */
2939 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
2940 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
2941 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
2942
2943#endif /* IXGBE_FCOE */
2944 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
2945 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
2946 mhadd &= ~IXGBE_MHADD_MFS_MASK;
2947 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
2948
2949 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07002950 }
2951
Auke Kok9a799d72007-09-15 14:07:45 -07002952 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00002953 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
2954 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07002955 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
2956
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002957 /*
2958 * Setup the HW Rx Head and Tail Descriptor Pointers and
2959 * the Base and Length of the Rx Descriptor Ring
2960 */
Auke Kok9a799d72007-09-15 14:07:45 -07002961 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002962 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00002963 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002964
Yi Zou6e455b892009-08-06 13:05:44 +00002965 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002966 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00002967 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002968 clear_ring_ps_enabled(rx_ring);
2969
2970 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
2971 set_ring_rsc_enabled(rx_ring);
2972 else
2973 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002974
Yi Zou63f39bd2009-05-17 12:34:35 +00002975#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00002976 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00002977 struct ixgbe_ring_feature *f;
2978 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00002979 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002980 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00002981 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
2982 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00002983 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002984 } else if (!ring_is_rsc_enabled(rx_ring) &&
2985 !ring_is_ps_enabled(rx_ring)) {
2986 rx_ring->rx_buf_len =
2987 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00002988 }
Yi Zou63f39bd2009-05-17 12:34:35 +00002989 }
Yi Zou63f39bd2009-05-17 12:34:35 +00002990#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00002991 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00002992}
2993
Alexander Duyck73670962010-08-19 13:38:34 +00002994static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
2995{
2996 struct ixgbe_hw *hw = &adapter->hw;
2997 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
2998
2999 switch (hw->mac.type) {
3000 case ixgbe_mac_82598EB:
3001 /*
3002 * For VMDq support of different descriptor types or
3003 * buffer sizes through the use of multiple SRRCTL
3004 * registers, RDRXCTL.MVMEN must be set to 1
3005 *
3006 * also, the manual doesn't mention it clearly but DCA hints
3007 * will only use queue 0's tags unless this bit is set. Side
3008 * effects of setting this bit are only that SRRCTL must be
3009 * fully programmed [0..15]
3010 */
3011 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3012 break;
3013 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003014 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003015 /* Disable RSC for ACK packets */
3016 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3017 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3018 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3019 /* hardware requires some bits to be set by default */
3020 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3021 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3022 break;
3023 default:
3024 /* We should do nothing since we don't know this hardware */
3025 return;
3026 }
3027
3028 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3029}
3030
Alexander Duyck477de6e2010-08-19 13:38:11 +00003031/**
3032 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3033 * @adapter: board private structure
3034 *
3035 * Configure the Rx unit of the MAC after a reset.
3036 **/
3037static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3038{
3039 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003040 int i;
3041 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003042
3043 /* disable receives while setting up the descriptors */
3044 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3045 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3046
3047 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003048 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003049
Alexander Duyck9e10e042010-08-19 13:40:06 +00003050 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003051 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003052
Alexander Duyck9e10e042010-08-19 13:40:06 +00003053 ixgbe_set_uta(adapter);
3054
Alexander Duyck477de6e2010-08-19 13:38:11 +00003055 /* set_rx_buffer_len must be called before ring initialization */
3056 ixgbe_set_rx_buffer_len(adapter);
3057
3058 /*
3059 * Setup the HW Rx Head and Tail Descriptor Pointers and
3060 * the Base and Length of the Rx Descriptor Ring
3061 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003062 for (i = 0; i < adapter->num_rx_queues; i++)
3063 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003064
Alexander Duyck9e10e042010-08-19 13:40:06 +00003065 /* disable drop enable for 82598 parts */
3066 if (hw->mac.type == ixgbe_mac_82598EB)
3067 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3068
3069 /* enable all receives */
3070 rxctrl |= IXGBE_RXCTRL_RXEN;
3071 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003072}
3073
Auke Kok9a799d72007-09-15 14:07:45 -07003074static void ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
3075{
3076 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003077 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003078 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003079
3080 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003081 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003082 set_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003083}
3084
3085static void ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
3086{
3087 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003088 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003089 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003090
Auke Kok9a799d72007-09-15 14:07:45 -07003091 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003092 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003093 clear_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003094}
3095
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003096/**
3097 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3098 * @adapter: driver data
3099 */
3100static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3101{
3102 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003103 u32 vlnctrl;
3104
3105 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3106 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3107 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3108}
3109
3110/**
3111 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3112 * @adapter: driver data
3113 */
3114static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3115{
3116 struct ixgbe_hw *hw = &adapter->hw;
3117 u32 vlnctrl;
3118
3119 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3120 vlnctrl |= IXGBE_VLNCTRL_VFE;
3121 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3122 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3123}
3124
3125/**
3126 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3127 * @adapter: driver data
3128 */
3129static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3130{
3131 struct ixgbe_hw *hw = &adapter->hw;
3132 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003133 int i, j;
3134
3135 switch (hw->mac.type) {
3136 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003137 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3138 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003139 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3140 break;
3141 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003142 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003143 for (i = 0; i < adapter->num_rx_queues; i++) {
3144 j = adapter->rx_ring[i]->reg_idx;
3145 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3146 vlnctrl &= ~IXGBE_RXDCTL_VME;
3147 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3148 }
3149 break;
3150 default:
3151 break;
3152 }
3153}
3154
3155/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003156 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003157 * @adapter: driver data
3158 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003159static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003160{
3161 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003162 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003163 int i, j;
3164
3165 switch (hw->mac.type) {
3166 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003167 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3168 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003169 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3170 break;
3171 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003172 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003173 for (i = 0; i < adapter->num_rx_queues; i++) {
3174 j = adapter->rx_ring[i]->reg_idx;
3175 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3176 vlnctrl |= IXGBE_RXDCTL_VME;
3177 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3178 }
3179 break;
3180 default:
3181 break;
3182 }
3183}
3184
Auke Kok9a799d72007-09-15 14:07:45 -07003185static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3186{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003187 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003188
Jesse Grossf62bbb52010-10-20 13:56:10 +00003189 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3190
3191 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3192 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003193}
3194
3195/**
Alexander Duyck28500622010-06-15 09:25:48 +00003196 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3197 * @netdev: network interface device structure
3198 *
3199 * Writes unicast address list to the RAR table.
3200 * Returns: -ENOMEM on failure/insufficient address space
3201 * 0 on no addresses written
3202 * X on writing X addresses to the RAR table
3203 **/
3204static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3205{
3206 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3207 struct ixgbe_hw *hw = &adapter->hw;
3208 unsigned int vfn = adapter->num_vfs;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00003209 unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS;
Alexander Duyck28500622010-06-15 09:25:48 +00003210 int count = 0;
3211
3212 /* return ENOMEM indicating insufficient memory for addresses */
3213 if (netdev_uc_count(netdev) > rar_entries)
3214 return -ENOMEM;
3215
3216 if (!netdev_uc_empty(netdev) && rar_entries) {
3217 struct netdev_hw_addr *ha;
3218 /* return error if we do not support writing to RAR table */
3219 if (!hw->mac.ops.set_rar)
3220 return -ENOMEM;
3221
3222 netdev_for_each_uc_addr(ha, netdev) {
3223 if (!rar_entries)
3224 break;
3225 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3226 vfn, IXGBE_RAH_AV);
3227 count++;
3228 }
3229 }
3230 /* write the addresses in reverse order to avoid write combining */
3231 for (; rar_entries > 0 ; rar_entries--)
3232 hw->mac.ops.clear_rar(hw, rar_entries);
3233
3234 return count;
3235}
3236
3237/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003238 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003239 * @netdev: network interface device structure
3240 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003241 * The set_rx_method entry point is called whenever the unicast/multicast
3242 * address list or the network interface flags are updated. This routine is
3243 * responsible for configuring the hardware for proper unicast, multicast and
3244 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003245 **/
Greg Rose7f870472010-01-09 02:25:29 +00003246void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003247{
3248 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3249 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003250 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3251 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003252
3253 /* Check for Promiscuous and All Multicast modes */
3254
3255 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3256
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003257 /* set all bits that we expect to always be set */
3258 fctrl |= IXGBE_FCTRL_BAM;
3259 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3260 fctrl |= IXGBE_FCTRL_PMCF;
3261
Alexander Duyck28500622010-06-15 09:25:48 +00003262 /* clear the bits we are changing the status of */
3263 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3264
Auke Kok9a799d72007-09-15 14:07:45 -07003265 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003266 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003267 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003268 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003269 /* don't hardware filter vlans in promisc mode */
3270 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003271 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003272 if (netdev->flags & IFF_ALLMULTI) {
3273 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003274 vmolr |= IXGBE_VMOLR_MPE;
3275 } else {
3276 /*
3277 * Write addresses to the MTA, if the attempt fails
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003278 * then we should just turn on promiscuous mode so
Alexander Duyck28500622010-06-15 09:25:48 +00003279 * that we can at least receive multicast traffic
3280 */
3281 hw->mac.ops.update_mc_addr_list(hw, netdev);
3282 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003283 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003284 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003285 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003286 /*
3287 * Write addresses to available RAR registers, if there is not
3288 * sufficient space to store all the addresses then enable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003289 * unicast promiscuous mode
Alexander Duyck28500622010-06-15 09:25:48 +00003290 */
3291 count = ixgbe_write_uc_addr_list(netdev);
3292 if (count < 0) {
3293 fctrl |= IXGBE_FCTRL_UPE;
3294 vmolr |= IXGBE_VMOLR_ROPE;
3295 }
3296 }
3297
3298 if (adapter->num_vfs) {
3299 ixgbe_restore_vf_multicasts(adapter);
3300 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3301 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3302 IXGBE_VMOLR_ROPE);
3303 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003304 }
3305
3306 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003307
3308 if (netdev->features & NETIF_F_HW_VLAN_RX)
3309 ixgbe_vlan_strip_enable(adapter);
3310 else
3311 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003312}
3313
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003314static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3315{
3316 int q_idx;
3317 struct ixgbe_q_vector *q_vector;
3318 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3319
3320 /* legacy and MSI only use one vector */
3321 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3322 q_vectors = 1;
3323
3324 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003325 q_vector = adapter->q_vector[q_idx];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003326 napi_enable(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003327 }
3328}
3329
3330static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3331{
3332 int q_idx;
3333 struct ixgbe_q_vector *q_vector;
3334 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3335
3336 /* legacy and MSI only use one vector */
3337 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3338 q_vectors = 1;
3339
3340 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003341 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003342 napi_disable(&q_vector->napi);
3343 }
3344}
3345
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003346#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003347/*
3348 * ixgbe_configure_dcb - Configure DCB hardware
3349 * @adapter: ixgbe adapter struct
3350 *
3351 * This is called by the driver on open to configure the DCB hardware.
3352 * This is also called by the gennetlink interface when reconfiguring
3353 * the DCB state.
3354 */
3355static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3356{
3357 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend9806307a2010-10-28 00:59:57 +00003358 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003359
Alexander Duyck67ebd792010-08-19 13:34:04 +00003360 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3361 if (hw->mac.type == ixgbe_mac_82598EB)
3362 netif_set_gso_max_size(adapter->netdev, 65536);
3363 return;
3364 }
3365
3366 if (hw->mac.type == ixgbe_mac_82598EB)
3367 netif_set_gso_max_size(adapter->netdev, 32768);
3368
Alexander Duyck2f90b862008-11-20 20:52:10 -08003369
Alexander Duyck2f90b862008-11-20 20:52:10 -08003370 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003371 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003372
Alexander Duyck2f90b862008-11-20 20:52:10 -08003373 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003374
3375 /* reconfigure the hardware */
John Fastabend6f70f6a2011-04-26 07:26:25 +00003376 if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) {
Alexander Duyck971060b2011-07-15 02:31:30 +00003377#ifdef IXGBE_FCOE
John Fastabendc27931d2011-02-23 05:58:25 +00003378 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3379 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3380#endif
3381 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3382 DCB_TX_CONFIG);
3383 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
3384 DCB_RX_CONFIG);
3385 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
3386 } else {
3387 struct net_device *dev = adapter->netdev;
3388
3389 if (adapter->ixgbe_ieee_ets)
3390 dev->dcbnl_ops->ieee_setets(dev,
3391 adapter->ixgbe_ieee_ets);
3392 if (adapter->ixgbe_ieee_pfc)
3393 dev->dcbnl_ops->ieee_setpfc(dev,
3394 adapter->ixgbe_ieee_pfc);
3395 }
John Fastabend8187cd42011-02-23 05:58:08 +00003396
3397 /* Enable RSS Hash per TC */
3398 if (hw->mac.type != ixgbe_mac_82598EB) {
3399 int i;
3400 u32 reg = 0;
3401
3402 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
3403 u8 msb = 0;
3404 u8 cnt = adapter->netdev->tc_to_txq[i].count;
3405
3406 while (cnt >>= 1)
3407 msb++;
3408
3409 reg |= msb << IXGBE_RQTC_SHIFT_TC(i);
3410 }
3411 IXGBE_WRITE_REG(hw, IXGBE_RQTC, reg);
3412 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08003413}
3414
3415#endif
John Fastabend80605c652011-05-02 12:34:10 +00003416
3417static void ixgbe_configure_pb(struct ixgbe_adapter *adapter)
3418{
3419 int hdrm = 0;
3420 int num_tc = netdev_get_num_tc(adapter->netdev);
3421 struct ixgbe_hw *hw = &adapter->hw;
3422
3423 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3424 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
3425 hdrm = 64 << adapter->fdir_pballoc;
3426
3427 hw->mac.ops.set_rxpba(&adapter->hw, num_tc, hdrm, PBA_STRATEGY_EQUAL);
3428}
3429
Alexander Duycke4911d52011-05-11 07:18:52 +00003430static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter)
3431{
3432 struct ixgbe_hw *hw = &adapter->hw;
3433 struct hlist_node *node, *node2;
3434 struct ixgbe_fdir_filter *filter;
3435
3436 spin_lock(&adapter->fdir_perfect_lock);
3437
3438 if (!hlist_empty(&adapter->fdir_filter_list))
3439 ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask);
3440
3441 hlist_for_each_entry_safe(filter, node, node2,
3442 &adapter->fdir_filter_list, fdir_node) {
3443 ixgbe_fdir_write_perfect_filter_82599(hw,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00003444 &filter->filter,
3445 filter->sw_idx,
3446 (filter->action == IXGBE_FDIR_DROP_QUEUE) ?
3447 IXGBE_FDIR_DROP_QUEUE :
3448 adapter->rx_ring[filter->action]->reg_idx);
Alexander Duycke4911d52011-05-11 07:18:52 +00003449 }
3450
3451 spin_unlock(&adapter->fdir_perfect_lock);
3452}
3453
Auke Kok9a799d72007-09-15 14:07:45 -07003454static void ixgbe_configure(struct ixgbe_adapter *adapter)
3455{
3456 struct net_device *netdev = adapter->netdev;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003457 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003458 int i;
3459
John Fastabend80605c652011-05-02 12:34:10 +00003460 ixgbe_configure_pb(adapter);
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003461#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003462 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003463#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003464
Jesse Grossf62bbb52010-10-20 13:56:10 +00003465 ixgbe_set_rx_mode(netdev);
3466 ixgbe_restore_vlan(adapter);
3467
Yi Zoueacd73f2009-05-13 13:11:06 +00003468#ifdef IXGBE_FCOE
3469 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3470 ixgbe_configure_fcoe(adapter);
3471
3472#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003473 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
3474 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003475 adapter->tx_ring[i]->atr_sample_rate =
Joe Perchese8e9f692010-09-07 21:34:53 +00003476 adapter->atr_sample_rate;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003477 ixgbe_init_fdir_signature_82599(hw, adapter->fdir_pballoc);
Alexander Duycke4911d52011-05-11 07:18:52 +00003478 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3479 ixgbe_init_fdir_perfect_82599(&adapter->hw,
3480 adapter->fdir_pballoc);
3481 ixgbe_fdir_filter_restore(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003482 }
Alexander Duyck933d41f2010-09-07 21:34:29 +00003483 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003484
Auke Kok9a799d72007-09-15 14:07:45 -07003485 ixgbe_configure_tx(adapter);
3486 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003487}
3488
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003489static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3490{
3491 switch (hw->phy.type) {
3492 case ixgbe_phy_sfp_avago:
3493 case ixgbe_phy_sfp_ftl:
3494 case ixgbe_phy_sfp_intel:
3495 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003496 case ixgbe_phy_sfp_passive_tyco:
3497 case ixgbe_phy_sfp_passive_unknown:
3498 case ixgbe_phy_sfp_active_unknown:
3499 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003500 return true;
3501 default:
3502 return false;
3503 }
3504}
3505
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003506/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003507 * ixgbe_sfp_link_config - set up SFP+ link
3508 * @adapter: pointer to private adapter struct
3509 **/
3510static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3511{
Alexander Duyck70864002011-04-27 09:13:56 +00003512 /*
3513 * We are assuming the worst case scenerio here, and that
3514 * is that an SFP was inserted/removed after the reset
3515 * but before SFP detection was enabled. As such the best
3516 * solution is to just start searching as soon as we start
3517 */
3518 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
3519 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003520
Alexander Duyck70864002011-04-27 09:13:56 +00003521 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003522}
3523
3524/**
3525 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003526 * @hw: pointer to private hardware struct
3527 *
3528 * Returns 0 on success, negative on failure
3529 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003530static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003531{
3532 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003533 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003534 u32 ret = IXGBE_ERR_LINK_SETUP;
3535
3536 if (hw->mac.ops.check_link)
3537 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3538
3539 if (ret)
3540 goto link_cfg_out;
3541
Emil Tantilov0b0c2b32011-02-26 06:40:16 +00003542 autoneg = hw->phy.autoneg_advertised;
3543 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Joe Perchese8e9f692010-09-07 21:34:53 +00003544 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3545 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003546 if (ret)
3547 goto link_cfg_out;
3548
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003549 if (hw->mac.ops.setup_link)
3550 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003551link_cfg_out:
3552 return ret;
3553}
3554
Alexander Duycka34bcff2010-08-19 13:39:20 +00003555static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003556{
Auke Kok9a799d72007-09-15 14:07:45 -07003557 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003558 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003559
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003560 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003561 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3562 IXGBE_GPIE_OCD;
3563 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003564 /*
3565 * use EIAM to auto-mask when MSI-X interrupt is asserted
3566 * this saves a register write for every interrupt
3567 */
3568 switch (hw->mac.type) {
3569 case ixgbe_mac_82598EB:
3570 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3571 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003572 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003573 case ixgbe_mac_X540:
3574 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003575 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3576 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3577 break;
3578 }
3579 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003580 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3581 * specifically only auto mask tx and rx interrupts */
3582 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003583 }
3584
Alexander Duycka34bcff2010-08-19 13:39:20 +00003585 /* XXX: to interrupt immediately for EICS writes, enable this */
3586 /* gpie |= IXGBE_GPIE_EIMEN; */
3587
3588 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3589 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3590 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003591 }
3592
Alexander Duycka34bcff2010-08-19 13:39:20 +00003593 /* Enable fan failure interrupt */
3594 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003595 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003596
Don Skidmore2698b202011-04-13 07:01:52 +00003597 if (hw->mac.type == ixgbe_mac_82599EB) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003598 gpie |= IXGBE_SDP1_GPIEN;
3599 gpie |= IXGBE_SDP2_GPIEN;
Don Skidmore2698b202011-04-13 07:01:52 +00003600 }
Alexander Duycka34bcff2010-08-19 13:39:20 +00003601
3602 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3603}
3604
3605static int ixgbe_up_complete(struct ixgbe_adapter *adapter)
3606{
3607 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003608 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003609 u32 ctrl_ext;
3610
3611 ixgbe_get_hw_control(adapter);
3612 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003613
Auke Kok9a799d72007-09-15 14:07:45 -07003614 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3615 ixgbe_configure_msix(adapter);
3616 else
3617 ixgbe_configure_msi_and_legacy(adapter);
3618
Don Skidmorec6ecf392010-12-03 03:31:51 +00003619 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3620 if (hw->mac.ops.enable_tx_laser &&
3621 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003622 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003623 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003624 hw->mac.ops.enable_tx_laser(hw);
3625
Auke Kok9a799d72007-09-15 14:07:45 -07003626 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003627 ixgbe_napi_enable_all(adapter);
3628
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003629 if (ixgbe_is_sfp(hw)) {
3630 ixgbe_sfp_link_config(adapter);
3631 } else {
3632 err = ixgbe_non_sfp_link_config(hw);
3633 if (err)
3634 e_err(probe, "link_config FAILED %d\n", err);
3635 }
3636
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003637 /* clear any pending interrupts, may auto mask */
3638 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003639 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003640
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003641 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003642 * If this adapter has a fan, check to see if we had a failure
3643 * before we enabled the interrupt.
3644 */
3645 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3646 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3647 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003648 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003649 }
3650
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003651 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003652 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003653
Auke Kok9a799d72007-09-15 14:07:45 -07003654 /* bring the link up in the watchdog, this could race with our first
3655 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003656 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3657 adapter->link_check_timeout = jiffies;
Alexander Duyck70864002011-04-27 09:13:56 +00003658 mod_timer(&adapter->service_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003659
3660 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3661 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3662 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3663 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
3664
Auke Kok9a799d72007-09-15 14:07:45 -07003665 return 0;
3666}
3667
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003668void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3669{
3670 WARN_ON(in_interrupt());
Alexander Duyck70864002011-04-27 09:13:56 +00003671 /* put off any impending NetWatchDogTimeout */
3672 adapter->netdev->trans_start = jiffies;
3673
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003674 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00003675 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003676 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003677 /*
3678 * If SR-IOV enabled then wait a bit before bringing the adapter
3679 * back up to give the VFs time to respond to the reset. The
3680 * two second wait is based upon the watchdog timer cycle in
3681 * the VF driver.
3682 */
3683 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3684 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003685 ixgbe_up(adapter);
3686 clear_bit(__IXGBE_RESETTING, &adapter->state);
3687}
3688
Auke Kok9a799d72007-09-15 14:07:45 -07003689int ixgbe_up(struct ixgbe_adapter *adapter)
3690{
3691 /* hardware has been reset, we need to reload some things */
3692 ixgbe_configure(adapter);
3693
3694 return ixgbe_up_complete(adapter);
3695}
3696
3697void ixgbe_reset(struct ixgbe_adapter *adapter)
3698{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003699 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07003700 int err;
3701
Alexander Duyck70864002011-04-27 09:13:56 +00003702 /* lock SFP init bit to prevent race conditions with the watchdog */
3703 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
3704 usleep_range(1000, 2000);
3705
3706 /* clear all SFP and link config related flags while holding SFP_INIT */
3707 adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP |
3708 IXGBE_FLAG2_SFP_NEEDS_RESET);
3709 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
3710
Don Skidmore8ca783a2009-05-26 20:40:47 -07003711 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003712 switch (err) {
3713 case 0:
3714 case IXGBE_ERR_SFP_NOT_PRESENT:
Alexander Duyck70864002011-04-27 09:13:56 +00003715 case IXGBE_ERR_SFP_NOT_SUPPORTED:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003716 break;
3717 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00003718 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003719 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003720 case IXGBE_ERR_EEPROM_VERSION:
3721 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00003722 e_dev_warn("This device is a pre-production adapter/LOM. "
3723 "Please be aware there may be issuesassociated with "
3724 "your hardware. If you are experiencing problems "
3725 "please contact your Intel or hardware "
3726 "representative who provided you with this "
3727 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003728 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003729 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00003730 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003731 }
Auke Kok9a799d72007-09-15 14:07:45 -07003732
Alexander Duyck70864002011-04-27 09:13:56 +00003733 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
3734
Auke Kok9a799d72007-09-15 14:07:45 -07003735 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003736 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
3737 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07003738}
3739
Auke Kok9a799d72007-09-15 14:07:45 -07003740/**
3741 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07003742 * @rx_ring: ring to free buffers from
3743 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003744static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003745{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003746 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07003747 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003748 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003749
Alexander Duyck84418e32010-08-19 13:40:54 +00003750 /* ring already cleared, nothing to do */
3751 if (!rx_ring->rx_buffer_info)
3752 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003753
Alexander Duyck84418e32010-08-19 13:40:54 +00003754 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003755 for (i = 0; i < rx_ring->count; i++) {
3756 struct ixgbe_rx_buffer *rx_buffer_info;
3757
3758 rx_buffer_info = &rx_ring->rx_buffer_info[i];
3759 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003760 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003761 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003762 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07003763 rx_buffer_info->dma = 0;
3764 }
3765 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00003766 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07003767 rx_buffer_info->skb = NULL;
Alexander Duyckf8212f92009-04-27 22:42:37 +00003768 do {
3769 struct sk_buff *this = skb;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00003770 if (IXGBE_RSC_CB(this)->delay_unmap) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003771 dma_unmap_single(dev,
Nick Nunley1b507732010-04-27 13:10:27 +00003772 IXGBE_RSC_CB(this)->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003773 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003774 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00003775 IXGBE_RSC_CB(this)->dma = 0;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00003776 IXGBE_RSC_CB(skb)->delay_unmap = false;
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00003777 }
Alexander Duyckf8212f92009-04-27 22:42:37 +00003778 skb = skb->prev;
3779 dev_kfree_skb(this);
3780 } while (skb);
Auke Kok9a799d72007-09-15 14:07:45 -07003781 }
3782 if (!rx_buffer_info->page)
3783 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003784 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003785 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00003786 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003787 rx_buffer_info->page_dma = 0;
3788 }
Auke Kok9a799d72007-09-15 14:07:45 -07003789 put_page(rx_buffer_info->page);
3790 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07003791 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003792 }
3793
3794 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
3795 memset(rx_ring->rx_buffer_info, 0, size);
3796
3797 /* Zero out the descriptor ring */
3798 memset(rx_ring->desc, 0, rx_ring->size);
3799
3800 rx_ring->next_to_clean = 0;
3801 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003802}
3803
3804/**
3805 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07003806 * @tx_ring: ring to be cleaned
3807 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003808static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003809{
3810 struct ixgbe_tx_buffer *tx_buffer_info;
3811 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003812 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003813
Alexander Duyck84418e32010-08-19 13:40:54 +00003814 /* ring already cleared, nothing to do */
3815 if (!tx_ring->tx_buffer_info)
3816 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003817
Alexander Duyck84418e32010-08-19 13:40:54 +00003818 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003819 for (i = 0; i < tx_ring->count; i++) {
3820 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003821 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07003822 }
3823
3824 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
3825 memset(tx_ring->tx_buffer_info, 0, size);
3826
3827 /* Zero out the descriptor ring */
3828 memset(tx_ring->desc, 0, tx_ring->size);
3829
3830 tx_ring->next_to_use = 0;
3831 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003832}
3833
3834/**
Auke Kok9a799d72007-09-15 14:07:45 -07003835 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
3836 * @adapter: board private structure
3837 **/
3838static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
3839{
3840 int i;
3841
3842 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003843 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07003844}
3845
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003846/**
3847 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
3848 * @adapter: board private structure
3849 **/
3850static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
3851{
3852 int i;
3853
3854 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003855 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003856}
3857
Alexander Duycke4911d52011-05-11 07:18:52 +00003858static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter)
3859{
3860 struct hlist_node *node, *node2;
3861 struct ixgbe_fdir_filter *filter;
3862
3863 spin_lock(&adapter->fdir_perfect_lock);
3864
3865 hlist_for_each_entry_safe(filter, node, node2,
3866 &adapter->fdir_filter_list, fdir_node) {
3867 hlist_del(&filter->fdir_node);
3868 kfree(filter);
3869 }
3870 adapter->fdir_filter_count = 0;
3871
3872 spin_unlock(&adapter->fdir_perfect_lock);
3873}
3874
Auke Kok9a799d72007-09-15 14:07:45 -07003875void ixgbe_down(struct ixgbe_adapter *adapter)
3876{
3877 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003878 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003879 u32 rxctrl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003880 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07003881
3882 /* signal that we are down to the interrupt handler */
3883 set_bit(__IXGBE_DOWN, &adapter->state);
3884
3885 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003886 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3887 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07003888
Yi Zou2d39d572011-01-06 14:29:56 +00003889 /* disable all enabled rx queues */
3890 for (i = 0; i < adapter->num_rx_queues; i++)
3891 /* this call also flushes the previous write */
3892 ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]);
3893
Don Skidmore032b4322011-03-18 09:32:53 +00003894 usleep_range(10000, 20000);
Auke Kok9a799d72007-09-15 14:07:45 -07003895
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003896 netif_tx_stop_all_queues(netdev);
3897
Alexander Duyck70864002011-04-27 09:13:56 +00003898 /* call carrier off first to avoid false dev_watchdog timeouts */
John Fastabendc0dfb902010-04-27 02:13:39 +00003899 netif_carrier_off(netdev);
3900 netif_tx_disable(netdev);
3901
3902 ixgbe_irq_disable(adapter);
3903
3904 ixgbe_napi_disable_all(adapter);
3905
Alexander Duyckd034acf2011-04-27 09:25:34 +00003906 adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT |
3907 IXGBE_FLAG2_RESET_REQUESTED);
Alexander Duyck70864002011-04-27 09:13:56 +00003908 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
3909
3910 del_timer_sync(&adapter->service_timer);
3911
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003912 /* disable receive for all VFs and wait one second */
Don Skidmore0a1f87c2009-09-18 09:45:43 +00003913 if (adapter->num_vfs) {
3914 /* ping all the active vfs to let them know we are going down */
Auke Kok9a799d72007-09-15 14:07:45 -07003915 ixgbe_ping_all_vfs(adapter);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003916
Auke Kok9a799d72007-09-15 14:07:45 -07003917 /* Disable all VFTE/VFRE TX/RX */
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00003918 ixgbe_disable_tx_rx(adapter);
3919
3920 /* Mark all the VFs as inactive */
3921 for (i = 0 ; i < adapter->num_vfs; i++)
3922 adapter->vfinfo[i].clear_to_send = 0;
3923 }
3924
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003925 /* disable transmits in the hardware now that interrupts are off */
3926 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003927 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
Alexander Duyck34cecbb2011-04-22 04:08:14 +00003928 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003929 }
Alexander Duyck34cecbb2011-04-22 04:08:14 +00003930
3931 /* Disable the Tx DMA engine on 82599 and X540 */
Alexander Duyckbd508172010-11-16 19:27:03 -08003932 switch (hw->mac.type) {
3933 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003934 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00003935 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00003936 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
3937 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08003938 break;
3939 default:
3940 break;
3941 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003942
Paul Larson6f4a0e42008-06-24 17:00:56 -07003943 if (!pci_channel_offline(adapter->pdev))
3944 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00003945
3946 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
3947 if (hw->mac.ops.disable_tx_laser &&
3948 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00003949 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00003950 (hw->mac.type == ixgbe_mac_82599EB))))
3951 hw->mac.ops.disable_tx_laser(hw);
3952
Auke Kok9a799d72007-09-15 14:07:45 -07003953 ixgbe_clean_all_tx_rings(adapter);
3954 ixgbe_clean_all_rx_rings(adapter);
3955
Jeff Garzik5dd2d332008-10-16 05:09:31 -04003956#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07003957 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00003958 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07003959#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003960}
3961
Auke Kok9a799d72007-09-15 14:07:45 -07003962/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003963 * ixgbe_poll - NAPI Rx polling callback
3964 * @napi: structure for representing this polling device
3965 * @budget: how many packets driver is allowed to clean
3966 *
3967 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07003968 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003969static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07003970{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00003971 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00003972 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003973 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003974 struct ixgbe_ring *ring;
3975 int per_ring_budget;
3976 bool clean_complete = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003977
Jeff Garzik5dd2d332008-10-16 05:09:31 -04003978#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08003979 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
3980 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08003981#endif
3982
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003983 for (ring = q_vector->tx.ring; ring != NULL; ring = ring->next)
3984 clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring);
Auke Kok9a799d72007-09-15 14:07:45 -07003985
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003986 /* attempt to distribute budget to each queue fairly, but don't allow
3987 * the budget to go below 1 because we'll exit polling */
3988 if (q_vector->rx.count > 1)
3989 per_ring_budget = max(budget/q_vector->rx.count, 1);
3990 else
3991 per_ring_budget = budget;
David S. Millerd2c7ddd2008-01-15 22:43:24 -08003992
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00003993 for (ring = q_vector->rx.ring; ring != NULL; ring = ring->next)
3994 clean_complete &= ixgbe_clean_rx_irq(q_vector, ring,
3995 per_ring_budget);
3996
3997 /* If all work not completed, return budget and keep polling */
3998 if (!clean_complete)
3999 return budget;
4000
4001 /* all work done, exit the polling mode */
4002 napi_complete(napi);
4003 if (adapter->rx_itr_setting & 1)
4004 ixgbe_set_itr(q_vector);
4005 if (!test_bit(__IXGBE_DOWN, &adapter->state))
4006 ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx));
4007
4008 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004009}
4010
4011/**
4012 * ixgbe_tx_timeout - Respond to a Tx Hang
4013 * @netdev: network interface device structure
4014 **/
4015static void ixgbe_tx_timeout(struct net_device *netdev)
4016{
4017 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4018
4019 /* Do the reset outside of interrupt context */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00004020 ixgbe_tx_timeout_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004021}
4022
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004023/**
4024 * ixgbe_set_rss_queues: Allocate queues for RSS
4025 * @adapter: board private structure to initialize
4026 *
4027 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4028 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4029 *
4030 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004031static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4032{
4033 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004034 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004035
4036 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004037 f->mask = 0xF;
4038 adapter->num_rx_queues = f->indices;
4039 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004040 ret = true;
4041 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004042 ret = false;
4043 }
4044
4045 return ret;
4046}
4047
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004048/**
4049 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4050 * @adapter: board private structure to initialize
4051 *
4052 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4053 * to the original CPU that initiated the Tx session. This runs in addition
4054 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4055 * Rx load across CPUs using RSS.
4056 *
4057 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004058static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004059{
4060 bool ret = false;
4061 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4062
4063 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4064 f_fdir->mask = 0;
4065
4066 /* Flow Director must have RSS enabled */
Alexander Duyck03ecf912011-05-20 07:36:17 +00004067 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4068 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004069 adapter->num_tx_queues = f_fdir->indices;
4070 adapter->num_rx_queues = f_fdir->indices;
4071 ret = true;
4072 } else {
4073 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004074 }
4075 return ret;
4076}
4077
Yi Zou0331a832009-05-17 12:33:52 +00004078#ifdef IXGBE_FCOE
4079/**
4080 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4081 * @adapter: board private structure to initialize
4082 *
4083 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4084 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4085 * rx queues out of the max number of rx queues, instead, it is used as the
4086 * index of the first rx queue used by FCoE.
4087 *
4088 **/
4089static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4090{
Yi Zou0331a832009-05-17 12:33:52 +00004091 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4092
John Fastabende5b64632011-03-08 03:44:52 +00004093 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4094 return false;
4095
John Fastabende901acd2011-04-26 07:26:08 +00004096 f->indices = min((int)num_online_cpus(), f->indices);
John Fastabende5b64632011-03-08 03:44:52 +00004097
John Fastabende901acd2011-04-26 07:26:08 +00004098 adapter->num_rx_queues = 1;
4099 adapter->num_tx_queues = 1;
John Fastabende5b64632011-03-08 03:44:52 +00004100
John Fastabende901acd2011-04-26 07:26:08 +00004101 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4102 e_info(probe, "FCoE enabled with RSS\n");
Alexander Duyck03ecf912011-05-20 07:36:17 +00004103 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
John Fastabende901acd2011-04-26 07:26:08 +00004104 ixgbe_set_fdir_queues(adapter);
4105 else
4106 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004107 }
Alexander Duyck03ecf912011-05-20 07:36:17 +00004108
John Fastabende901acd2011-04-26 07:26:08 +00004109 /* adding FCoE rx rings to the end */
4110 f->mask = adapter->num_rx_queues;
4111 adapter->num_rx_queues += f->indices;
4112 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004113
John Fastabende5b64632011-03-08 03:44:52 +00004114 return true;
4115}
4116#endif /* IXGBE_FCOE */
4117
John Fastabende901acd2011-04-26 07:26:08 +00004118/* Artificial max queue cap per traffic class in DCB mode */
4119#define DCB_QUEUE_CAP 8
4120
John Fastabende5b64632011-03-08 03:44:52 +00004121#ifdef CONFIG_IXGBE_DCB
4122static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
4123{
John Fastabende901acd2011-04-26 07:26:08 +00004124 int per_tc_q, q, i, offset = 0;
4125 struct net_device *dev = adapter->netdev;
4126 int tcs = netdev_get_num_tc(dev);
John Fastabende5b64632011-03-08 03:44:52 +00004127
John Fastabende901acd2011-04-26 07:26:08 +00004128 if (!tcs)
4129 return false;
John Fastabende5b64632011-03-08 03:44:52 +00004130
John Fastabende901acd2011-04-26 07:26:08 +00004131 /* Map queue offset and counts onto allocated tx queues */
4132 per_tc_q = min(dev->num_tx_queues / tcs, (unsigned int)DCB_QUEUE_CAP);
4133 q = min((int)num_online_cpus(), per_tc_q);
John Fastabend8b1c0b22011-05-03 02:26:48 +00004134
John Fastabend8b1c0b22011-05-03 02:26:48 +00004135 for (i = 0; i < tcs; i++) {
John Fastabende901acd2011-04-26 07:26:08 +00004136 netdev_set_prio_tc_map(dev, i, i);
4137 netdev_set_tc_queue(dev, i, q, offset);
4138 offset += q;
John Fastabende5b64632011-03-08 03:44:52 +00004139 }
4140
John Fastabende901acd2011-04-26 07:26:08 +00004141 adapter->num_tx_queues = q * tcs;
4142 adapter->num_rx_queues = q * tcs;
John Fastabende5b64632011-03-08 03:44:52 +00004143
4144#ifdef IXGBE_FCOE
John Fastabende901acd2011-04-26 07:26:08 +00004145 /* FCoE enabled queues require special configuration indexed
4146 * by feature specific indices and mask. Here we map FCoE
4147 * indices onto the DCB queue pairs allowing FCoE to own
4148 * configuration later.
John Fastabende5b64632011-03-08 03:44:52 +00004149 */
John Fastabende901acd2011-04-26 07:26:08 +00004150 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
4151 int tc;
4152 struct ixgbe_ring_feature *f =
4153 &adapter->ring_feature[RING_F_FCOE];
4154
4155 tc = netdev_get_prio_tc_map(dev, adapter->fcoe.up);
4156 f->indices = dev->tc_to_txq[tc].count;
4157 f->mask = dev->tc_to_txq[tc].offset;
4158 }
John Fastabende5b64632011-03-08 03:44:52 +00004159#endif
4160
John Fastabende901acd2011-04-26 07:26:08 +00004161 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004162}
John Fastabende5b64632011-03-08 03:44:52 +00004163#endif
Yi Zou0331a832009-05-17 12:33:52 +00004164
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004165/**
4166 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4167 * @adapter: board private structure to initialize
4168 *
4169 * IOV doesn't actually use anything, so just NAK the
4170 * request for now and let the other queue routines
4171 * figure out what to do.
4172 */
4173static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4174{
4175 return false;
4176}
4177
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004178/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004179 * ixgbe_set_num_queues: Allocate queues for device, feature dependent
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004180 * @adapter: board private structure to initialize
4181 *
4182 * This is the top level queue allocation routine. The order here is very
4183 * important, starting with the "most" number of features turned on at once,
4184 * and ending with the smallest set of features. This way large combinations
4185 * can be allocated if they're turned on, and smaller combinations are the
4186 * fallthrough conditions.
4187 *
4188 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004189static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004190{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004191 /* Start with base case */
4192 adapter->num_rx_queues = 1;
4193 adapter->num_tx_queues = 1;
4194 adapter->num_rx_pools = adapter->num_rx_queues;
4195 adapter->num_rx_queues_per_pool = 1;
4196
4197 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004198 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004199
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004200#ifdef CONFIG_IXGBE_DCB
4201 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004202 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004203
4204#endif
John Fastabende5b64632011-03-08 03:44:52 +00004205#ifdef IXGBE_FCOE
4206 if (ixgbe_set_fcoe_queues(adapter))
4207 goto done;
4208
4209#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004210 if (ixgbe_set_fdir_queues(adapter))
4211 goto done;
4212
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004213 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004214 goto done;
4215
4216 /* fallback to base case */
4217 adapter->num_rx_queues = 1;
4218 adapter->num_tx_queues = 1;
4219
4220done:
Ben Hutchings847f53f2010-09-27 08:28:56 +00004221 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004222 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004223 return netif_set_real_num_rx_queues(adapter->netdev,
4224 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004225}
4226
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004227static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004228 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004229{
4230 int err, vector_threshold;
4231
4232 /* We'll want at least 3 (vector_threshold):
4233 * 1) TxQ[0] Cleanup
4234 * 2) RxQ[0] Cleanup
4235 * 3) Other (Link Status Change, etc.)
4236 * 4) TCP Timer (optional)
4237 */
4238 vector_threshold = MIN_MSIX_COUNT;
4239
4240 /* The more we get, the more we will assign to Tx/Rx Cleanup
4241 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4242 * Right now, we simply care about how many we'll get; we'll
4243 * set them up later while requesting irq's.
4244 */
4245 while (vectors >= vector_threshold) {
4246 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004247 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004248 if (!err) /* Success in acquiring all requested vectors. */
4249 break;
4250 else if (err < 0)
4251 vectors = 0; /* Nasty failure, quit now */
4252 else /* err == number of vectors we should try again with */
4253 vectors = err;
4254 }
4255
4256 if (vectors < vector_threshold) {
4257 /* Can't allocate enough MSI-X interrupts? Oh well.
4258 * This just means we'll go with either a single MSI
4259 * vector or fall back to legacy interrupts.
4260 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004261 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4262 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004263 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4264 kfree(adapter->msix_entries);
4265 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004266 } else {
4267 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004268 /*
4269 * Adjust for only the vectors we'll use, which is minimum
4270 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4271 * vectors we were allocated.
4272 */
4273 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004274 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004275 }
4276}
4277
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004278/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004279 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004280 * @adapter: board private structure to initialize
4281 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004282 * Cache the descriptor ring offsets for RSS to the assigned rings.
4283 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004284 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004285static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004286{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004287 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004288
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004289 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4290 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004291
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004292 for (i = 0; i < adapter->num_rx_queues; i++)
4293 adapter->rx_ring[i]->reg_idx = i;
4294 for (i = 0; i < adapter->num_tx_queues; i++)
4295 adapter->tx_ring[i]->reg_idx = i;
4296
4297 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004298}
4299
4300#ifdef CONFIG_IXGBE_DCB
John Fastabende5b64632011-03-08 03:44:52 +00004301
4302/* ixgbe_get_first_reg_idx - Return first register index associated with ring */
John Fastabendb32c8dc2011-04-12 02:44:55 +00004303static void ixgbe_get_first_reg_idx(struct ixgbe_adapter *adapter, u8 tc,
4304 unsigned int *tx, unsigned int *rx)
John Fastabende5b64632011-03-08 03:44:52 +00004305{
4306 struct net_device *dev = adapter->netdev;
4307 struct ixgbe_hw *hw = &adapter->hw;
4308 u8 num_tcs = netdev_get_num_tc(dev);
4309
4310 *tx = 0;
4311 *rx = 0;
4312
4313 switch (hw->mac.type) {
4314 case ixgbe_mac_82598EB:
John Fastabendaba70d52011-04-26 07:26:14 +00004315 *tx = tc << 2;
4316 *rx = tc << 3;
John Fastabende5b64632011-03-08 03:44:52 +00004317 break;
4318 case ixgbe_mac_82599EB:
4319 case ixgbe_mac_X540:
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004320 if (num_tcs > 4) {
John Fastabende5b64632011-03-08 03:44:52 +00004321 if (tc < 3) {
4322 *tx = tc << 5;
4323 *rx = tc << 4;
4324 } else if (tc < 5) {
4325 *tx = ((tc + 2) << 4);
4326 *rx = tc << 4;
4327 } else if (tc < num_tcs) {
4328 *tx = ((tc + 8) << 3);
4329 *rx = tc << 4;
4330 }
John Fastabend4fa2e0e2011-07-18 22:38:25 +00004331 } else {
John Fastabende5b64632011-03-08 03:44:52 +00004332 *rx = tc << 5;
4333 switch (tc) {
4334 case 0:
4335 *tx = 0;
4336 break;
4337 case 1:
4338 *tx = 64;
4339 break;
4340 case 2:
4341 *tx = 96;
4342 break;
4343 case 3:
4344 *tx = 112;
4345 break;
4346 default:
4347 break;
4348 }
4349 }
4350 break;
4351 default:
4352 break;
4353 }
4354}
4355
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004356/**
4357 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4358 * @adapter: board private structure to initialize
4359 *
4360 * Cache the descriptor ring offsets for DCB to the assigned rings.
4361 *
4362 **/
4363static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4364{
John Fastabende5b64632011-03-08 03:44:52 +00004365 struct net_device *dev = adapter->netdev;
4366 int i, j, k;
4367 u8 num_tcs = netdev_get_num_tc(dev);
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004368
John Fastabend8b1c0b22011-05-03 02:26:48 +00004369 if (!num_tcs)
Alexander Duyckbd508172010-11-16 19:27:03 -08004370 return false;
4371
John Fastabende5b64632011-03-08 03:44:52 +00004372 for (i = 0, k = 0; i < num_tcs; i++) {
4373 unsigned int tx_s, rx_s;
4374 u16 count = dev->tc_to_txq[i].count;
4375
4376 ixgbe_get_first_reg_idx(adapter, i, &tx_s, &rx_s);
4377 for (j = 0; j < count; j++, k++) {
4378 adapter->tx_ring[k]->reg_idx = tx_s + j;
4379 adapter->rx_ring[k]->reg_idx = rx_s + j;
4380 adapter->tx_ring[k]->dcb_tc = i;
4381 adapter->rx_ring[k]->dcb_tc = i;
Alexander Duyckbd508172010-11-16 19:27:03 -08004382 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004383 }
John Fastabende5b64632011-03-08 03:44:52 +00004384
4385 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004386}
4387#endif
4388
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004389/**
4390 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4391 * @adapter: board private structure to initialize
4392 *
4393 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4394 *
4395 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004396static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004397{
4398 int i;
4399 bool ret = false;
4400
Alexander Duyck03ecf912011-05-20 07:36:17 +00004401 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
4402 (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004403 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004404 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004405 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004406 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004407 ret = true;
4408 }
4409
4410 return ret;
4411}
4412
Yi Zou0331a832009-05-17 12:33:52 +00004413#ifdef IXGBE_FCOE
4414/**
4415 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4416 * @adapter: board private structure to initialize
4417 *
4418 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4419 *
4420 */
4421static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4422{
Yi Zou0331a832009-05-17 12:33:52 +00004423 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004424 int i;
4425 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004426
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004427 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4428 return false;
4429
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004430 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Alexander Duyck03ecf912011-05-20 07:36:17 +00004431 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004432 ixgbe_cache_ring_fdir(adapter);
4433 else
4434 ixgbe_cache_ring_rss(adapter);
4435
4436 fcoe_rx_i = f->mask;
4437 fcoe_tx_i = f->mask;
4438 }
4439 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4440 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4441 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4442 }
4443 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004444}
4445
4446#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004447/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004448 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4449 * @adapter: board private structure to initialize
4450 *
4451 * SR-IOV doesn't use any descriptor rings but changes the default if
4452 * no other mapping is used.
4453 *
4454 */
4455static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4456{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004457 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4458 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004459 if (adapter->num_vfs)
4460 return true;
4461 else
4462 return false;
4463}
4464
4465/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004466 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4467 * @adapter: board private structure to initialize
4468 *
4469 * Once we know the feature-set enabled for the device, we'll cache
4470 * the register offset the descriptor ring is assigned to.
4471 *
4472 * Note, the order the various feature calls is important. It must start with
4473 * the "most" features enabled at the same time, then trickle down to the
4474 * least amount of features turned on at once.
4475 **/
4476static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4477{
4478 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004479 adapter->rx_ring[0]->reg_idx = 0;
4480 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004481
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004482 if (ixgbe_cache_ring_sriov(adapter))
4483 return;
4484
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004485#ifdef CONFIG_IXGBE_DCB
4486 if (ixgbe_cache_ring_dcb(adapter))
4487 return;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004488#endif
John Fastabende5b64632011-03-08 03:44:52 +00004489
4490#ifdef IXGBE_FCOE
4491 if (ixgbe_cache_ring_fcoe(adapter))
4492 return;
4493#endif /* IXGBE_FCOE */
4494
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004495 if (ixgbe_cache_ring_fdir(adapter))
4496 return;
4497
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004498 if (ixgbe_cache_ring_rss(adapter))
4499 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004500}
4501
Auke Kok9a799d72007-09-15 14:07:45 -07004502/**
4503 * ixgbe_alloc_queues - Allocate memory for all rings
4504 * @adapter: board private structure to initialize
4505 *
4506 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004507 * number of queues at compile-time. The polling_netdev array is
4508 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004509 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004510static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004511{
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004512 int rx = 0, tx = 0, nid = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004513
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004514 if (nid < 0 || !node_online(nid))
4515 nid = first_online_node;
4516
4517 for (; tx < adapter->num_tx_queues; tx++) {
4518 struct ixgbe_ring *ring;
4519
4520 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004521 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004522 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004523 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004524 goto err_allocation;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004525 ring->count = adapter->tx_ring_count;
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004526 ring->queue_index = tx;
4527 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004528 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004529 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004530
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004531 adapter->tx_ring[tx] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004532 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004533
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004534 for (; rx < adapter->num_rx_queues; rx++) {
4535 struct ixgbe_ring *ring;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004536
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004537 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004538 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004539 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004540 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004541 goto err_allocation;
4542 ring->count = adapter->rx_ring_count;
4543 ring->queue_index = rx;
4544 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004545 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004546 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004547
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004548 adapter->rx_ring[rx] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004549 }
4550
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004551 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004552
4553 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004554
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004555err_allocation:
4556 while (tx)
4557 kfree(adapter->tx_ring[--tx]);
4558
4559 while (rx)
4560 kfree(adapter->rx_ring[--rx]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004561 return -ENOMEM;
4562}
4563
4564/**
4565 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4566 * @adapter: board private structure to initialize
4567 *
4568 * Attempt to configure the interrupts using the best available
4569 * capabilities of the hardware and the kernel.
4570 **/
Al Virofeea6a52008-11-27 15:34:07 -08004571static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004572{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004573 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004574 int err = 0;
4575 int vector, v_budget;
4576
4577 /*
4578 * It's easy to be greedy for MSI-X vectors, but it really
4579 * doesn't do us much good if we have a lot more vectors
4580 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004581 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004582 */
4583 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004584 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004585
4586 /*
4587 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004588 * hw.mac->max_msix_vectors vectors. With features
4589 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4590 * descriptor queues supported by our device. Thus, we cap it off in
4591 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004592 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004593 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004594
4595 /* A failure in MSI-X entry allocation isn't fatal, but it does
4596 * mean we disable MSI-X capabilities of the adapter. */
4597 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004598 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004599 if (adapter->msix_entries) {
4600 for (vector = 0; vector < v_budget; vector++)
4601 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004602
Alexander Duyck7a921c92009-05-06 10:43:28 +00004603 ixgbe_acquire_msix_vectors(adapter, v_budget);
4604
4605 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4606 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004607 }
David S. Miller26d27842010-05-03 15:18:22 -07004608
Alexander Duyck7a921c92009-05-06 10:43:28 +00004609 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4610 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck03ecf912011-05-20 07:36:17 +00004611 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
Alexander Duyck45b9f502011-01-06 14:29:59 +00004612 e_err(probe,
Alexander Duyck03ecf912011-05-20 07:36:17 +00004613 "ATR is not supported while multiple "
Alexander Duyck45b9f502011-01-06 14:29:59 +00004614 "queues are disabled. Disabling Flow Director\n");
4615 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004616 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004617 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004618 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4619 ixgbe_disable_sriov(adapter);
4620
Ben Hutchings847f53f2010-09-27 08:28:56 +00004621 err = ixgbe_set_num_queues(adapter);
4622 if (err)
4623 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004624
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004625 err = pci_enable_msi(adapter->pdev);
4626 if (!err) {
4627 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4628 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004629 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4630 "Unable to allocate MSI interrupt, "
4631 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004632 /* reset err */
4633 err = 0;
4634 }
4635
4636out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004637 return err;
4638}
4639
Alexander Duyck7a921c92009-05-06 10:43:28 +00004640/**
4641 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4642 * @adapter: board private structure to initialize
4643 *
4644 * We allocate one q_vector per queue interrupt. If allocation fails we
4645 * return -ENOMEM.
4646 **/
4647static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4648{
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004649 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004650 struct ixgbe_q_vector *q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004651
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004652 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004653 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004654 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004655 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004656
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004657 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004658 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004659 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004660 if (!q_vector)
4661 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004662 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004663 if (!q_vector)
4664 goto err_out;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004665
Alexander Duyck7a921c92009-05-06 10:43:28 +00004666 q_vector->adapter = adapter;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004667 q_vector->v_idx = v_idx;
4668
Alexander Duyck207867f2011-07-15 03:05:37 +00004669 /* Allocate the affinity_hint cpumask, configure the mask */
4670 if (!alloc_cpumask_var(&q_vector->affinity_mask, GFP_KERNEL))
4671 goto err_out;
4672 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
4673
Alexander Duyck08c88332011-06-11 01:45:03 +00004674 if (q_vector->tx.count && !q_vector->rx.count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004675 q_vector->eitr = adapter->tx_eitr_param;
4676 else
4677 q_vector->eitr = adapter->rx_eitr_param;
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004678
4679 netif_napi_add(adapter->netdev, &q_vector->napi,
4680 ixgbe_poll, 64);
4681 adapter->q_vector[v_idx] = q_vector;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004682 }
4683
4684 return 0;
4685
4686err_out:
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004687 while (v_idx) {
4688 v_idx--;
4689 q_vector = adapter->q_vector[v_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00004690 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00004691 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004692 kfree(q_vector);
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00004693 adapter->q_vector[v_idx] = NULL;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004694 }
4695 return -ENOMEM;
4696}
4697
4698/**
4699 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
4700 * @adapter: board private structure to initialize
4701 *
4702 * This function frees the memory allocated to the q_vectors. In addition if
4703 * NAPI is enabled it will delete any references to the NAPI struct prior
4704 * to freeing the q_vector.
4705 **/
4706static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
4707{
Alexander Duyck207867f2011-07-15 03:05:37 +00004708 int v_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004709
Alexander Duyck91281fd2009-06-04 16:00:27 +00004710 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004711 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004712 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004713 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004714
Alexander Duyck207867f2011-07-15 03:05:37 +00004715 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
4716 struct ixgbe_q_vector *q_vector = adapter->q_vector[v_idx];
4717 adapter->q_vector[v_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004718 netif_napi_del(&q_vector->napi);
Alexander Duyck207867f2011-07-15 03:05:37 +00004719 free_cpumask_var(q_vector->affinity_mask);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004720 kfree(q_vector);
4721 }
4722}
4723
Don Skidmore7b25cdb2009-08-25 04:47:32 +00004724static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004725{
4726 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4727 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4728 pci_disable_msix(adapter->pdev);
4729 kfree(adapter->msix_entries);
4730 adapter->msix_entries = NULL;
4731 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
4732 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
4733 pci_disable_msi(adapter->pdev);
4734 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004735}
4736
4737/**
4738 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
4739 * @adapter: board private structure to initialize
4740 *
4741 * We determine which interrupt scheme to use based on...
4742 * - Kernel support (MSI, MSI-X)
4743 * - which can be user-defined (via MODULE_PARAM)
4744 * - Hardware queue count (num_*_queues)
4745 * - defined by miscellaneous hardware support/features (RSS, etc.)
4746 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004747int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004748{
4749 int err;
4750
4751 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00004752 err = ixgbe_set_num_queues(adapter);
4753 if (err)
4754 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004755
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004756 err = ixgbe_set_interrupt_capability(adapter);
4757 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004758 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004759 goto err_set_interrupt;
4760 }
4761
Alexander Duyck7a921c92009-05-06 10:43:28 +00004762 err = ixgbe_alloc_q_vectors(adapter);
4763 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004764 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004765 goto err_alloc_q_vectors;
4766 }
4767
4768 err = ixgbe_alloc_queues(adapter);
4769 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004770 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004771 goto err_alloc_queues;
4772 }
4773
Emil Tantilov849c4542010-06-03 16:53:41 +00004774 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00004775 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
4776 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004777
4778 set_bit(__IXGBE_DOWN, &adapter->state);
4779
4780 return 0;
4781
Alexander Duyck7a921c92009-05-06 10:43:28 +00004782err_alloc_queues:
4783 ixgbe_free_q_vectors(adapter);
4784err_alloc_q_vectors:
4785 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004786err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00004787 return err;
4788}
4789
4790/**
4791 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
4792 * @adapter: board private structure to clear interrupt scheme on
4793 *
4794 * We go through and clear interrupt specific resources and reset the structure
4795 * to pre-load conditions
4796 **/
4797void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
4798{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004799 int i;
4800
4801 for (i = 0; i < adapter->num_tx_queues; i++) {
4802 kfree(adapter->tx_ring[i]);
4803 adapter->tx_ring[i] = NULL;
4804 }
4805 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08004806 struct ixgbe_ring *ring = adapter->rx_ring[i];
4807
4808 /* ixgbe_get_stats64() might access this ring, we must wait
4809 * a grace period before freeing it.
4810 */
Lai Jiangshanbcec8b62011-03-18 11:57:21 +08004811 kfree_rcu(ring, rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004812 adapter->rx_ring[i] = NULL;
4813 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00004814
Don Skidmoreb8eb3a12010-12-01 20:54:53 +00004815 adapter->num_tx_queues = 0;
4816 adapter->num_rx_queues = 0;
4817
Alexander Duyck7a921c92009-05-06 10:43:28 +00004818 ixgbe_free_q_vectors(adapter);
4819 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004820}
4821
4822/**
4823 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4824 * @adapter: board private structure to initialize
4825 *
4826 * ixgbe_sw_init initializes the Adapter private data structure.
4827 * Fields are initialized based on PCI device information and
4828 * OS network device settings (MTU size).
4829 **/
4830static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4831{
4832 struct ixgbe_hw *hw = &adapter->hw;
4833 struct pci_dev *pdev = adapter->pdev;
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00004834 struct net_device *dev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004835 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004836#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004837 int j;
4838 struct tc_configuration *tc;
4839#endif
John Fastabend16b61be2010-11-16 19:26:44 -08004840 int max_frame = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004841
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004842 /* PCI config space info */
4843
4844 hw->vendor_id = pdev->vendor;
4845 hw->device_id = pdev->device;
4846 hw->revision_id = pdev->revision;
4847 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4848 hw->subsystem_device_id = pdev->subsystem_device;
4849
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004850 /* Set capability flags */
4851 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
4852 adapter->ring_feature[RING_F_RSS].indices = rss;
4853 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyckbd508172010-11-16 19:27:03 -08004854 switch (hw->mac.type) {
4855 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004856 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4857 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004858 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004859 break;
4860 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004861 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004862 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004863 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4864 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004865 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4866 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Alexander Duyck45b9f502011-01-06 14:29:59 +00004867 /* Flow Director hash filters enabled */
4868 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
4869 adapter->atr_sample_rate = 20;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004870 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00004871 IXGBE_MAX_FDIR_INDICES;
Alexander Duyckc04f6ca2011-05-11 07:18:36 +00004872 adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K;
Yi Zoueacd73f2009-05-13 13:11:06 +00004873#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004874 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4875 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
4876 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00004877#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004878 /* Default traffic class to use for FCoE */
John Fastabend56075a92010-07-26 20:41:31 +00004879 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004880#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004881#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004882 break;
4883 default:
4884 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004885 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004886
Alexander Duyck1fc5f032011-06-02 04:28:39 +00004887 /* n-tuple support exists, always init our spinlock */
4888 spin_lock_init(&adapter->fdir_perfect_lock);
4889
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004890#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004891 /* Configure DCB traffic classes */
4892 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4893 tc = &adapter->dcb_cfg.tc_config[j];
4894 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4895 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4896 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4897 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4898 tc->dcb_pfc = pfc_disabled;
4899 }
4900 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4901 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004902 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004903 adapter->dcb_set_bitmap = 0x00;
John Fastabend30323092011-03-01 05:25:35 +00004904 adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004905 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
John Fastabende5b64632011-03-08 03:44:52 +00004906 MAX_TRAFFIC_CLASS);
Alexander Duyck2f90b862008-11-20 20:52:10 -08004907
4908#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004909
4910 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00004911 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00004912 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004913#ifdef CONFIG_DCB
4914 adapter->last_lfc_mode = hw->fc.current_mode;
4915#endif
John Fastabend16b61be2010-11-16 19:26:44 -08004916 hw->fc.high_water = FC_HIGH_WATER(max_frame);
4917 hw->fc.low_water = FC_LOW_WATER(max_frame);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07004918 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
4919 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00004920 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07004921
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004922 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004923 adapter->rx_itr_setting = 1;
4924 adapter->rx_eitr_param = 20000;
4925 adapter->tx_itr_setting = 1;
4926 adapter->tx_eitr_param = 10000;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07004927
4928 /* set defaults for eitr in MegaBytes */
4929 adapter->eitr_low = 10;
4930 adapter->eitr_high = 20;
4931
4932 /* set default ring sizes */
4933 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
4934 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
4935
Alexander Duyckbd198052011-06-11 01:45:08 +00004936 /* set default work limits */
Alexander Duyck59224552011-08-31 00:01:06 +00004937 adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK;
Alexander Duyckbd198052011-06-11 01:45:08 +00004938
Auke Kok9a799d72007-09-15 14:07:45 -07004939 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004940 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004941 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07004942 return -EIO;
4943 }
4944
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004945 /* enable rx csum by default */
Auke Kok9a799d72007-09-15 14:07:45 -07004946 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
4947
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004948 /* get assigned NUMA node */
4949 adapter->node = dev_to_node(&pdev->dev);
4950
Auke Kok9a799d72007-09-15 14:07:45 -07004951 set_bit(__IXGBE_DOWN, &adapter->state);
4952
4953 return 0;
4954}
4955
4956/**
4957 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004958 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07004959 *
4960 * Return 0 on success, negative on failure
4961 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004962int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07004963{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004964 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07004965 int size;
4966
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004967 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004968 tx_ring->tx_buffer_info = vzalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004969 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00004970 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004971 if (!tx_ring->tx_buffer_info)
4972 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004973
4974 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08004975 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004976 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07004977
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004978 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00004979 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004980 if (!tx_ring->desc)
4981 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07004982
Jesse Brandeburg3a581072008-08-26 04:27:08 -07004983 tx_ring->next_to_use = 0;
4984 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004985 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004986
4987err:
4988 vfree(tx_ring->tx_buffer_info);
4989 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004990 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07004991 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07004992}
4993
4994/**
Alexander Duyck69888672008-09-11 20:05:39 -07004995 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4996 * @adapter: board private structure
4997 *
4998 * If this function returns with an error, then it's possible one or
4999 * more of the rings is populated (while the rest are not). It is the
5000 * callers duty to clean those orphaned rings.
5001 *
5002 * Return 0 on success, negative on failure
5003 **/
5004static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5005{
5006 int i, err = 0;
5007
5008 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005009 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005010 if (!err)
5011 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005012 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005013 break;
5014 }
5015
5016 return err;
5017}
5018
5019/**
Auke Kok9a799d72007-09-15 14:07:45 -07005020 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005021 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005022 *
5023 * Returns 0 on success, negative on failure
5024 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005025int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005026{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005027 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005028 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005029
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005030 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005031 rx_ring->rx_buffer_info = vzalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005032 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005033 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005034 if (!rx_ring->rx_buffer_info)
5035 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005036
Auke Kok9a799d72007-09-15 14:07:45 -07005037 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005038 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5039 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005040
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005041 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005042 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005043
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005044 if (!rx_ring->desc)
5045 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005046
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005047 rx_ring->next_to_clean = 0;
5048 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005049
5050 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005051err:
5052 vfree(rx_ring->rx_buffer_info);
5053 rx_ring->rx_buffer_info = NULL;
5054 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005055 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005056}
5057
5058/**
Alexander Duyck69888672008-09-11 20:05:39 -07005059 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5060 * @adapter: board private structure
5061 *
5062 * If this function returns with an error, then it's possible one or
5063 * more of the rings is populated (while the rest are not). It is the
5064 * callers duty to clean those orphaned rings.
5065 *
5066 * Return 0 on success, negative on failure
5067 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005068static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5069{
5070 int i, err = 0;
5071
5072 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005073 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005074 if (!err)
5075 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005076 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005077 break;
5078 }
5079
5080 return err;
5081}
5082
5083/**
Auke Kok9a799d72007-09-15 14:07:45 -07005084 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005085 * @tx_ring: Tx descriptor ring for a specific queue
5086 *
5087 * Free all transmit software resources
5088 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005089void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005090{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005091 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005092
5093 vfree(tx_ring->tx_buffer_info);
5094 tx_ring->tx_buffer_info = NULL;
5095
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005096 /* if not set, then don't free */
5097 if (!tx_ring->desc)
5098 return;
5099
5100 dma_free_coherent(tx_ring->dev, tx_ring->size,
5101 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005102
5103 tx_ring->desc = NULL;
5104}
5105
5106/**
5107 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5108 * @adapter: board private structure
5109 *
5110 * Free all transmit software resources
5111 **/
5112static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5113{
5114 int i;
5115
5116 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005117 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005118 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005119}
5120
5121/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005122 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005123 * @rx_ring: ring to clean the resources from
5124 *
5125 * Free all receive software resources
5126 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005127void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005128{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005129 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005130
5131 vfree(rx_ring->rx_buffer_info);
5132 rx_ring->rx_buffer_info = NULL;
5133
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005134 /* if not set, then don't free */
5135 if (!rx_ring->desc)
5136 return;
5137
5138 dma_free_coherent(rx_ring->dev, rx_ring->size,
5139 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005140
5141 rx_ring->desc = NULL;
5142}
5143
5144/**
5145 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5146 * @adapter: board private structure
5147 *
5148 * Free all receive software resources
5149 **/
5150static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5151{
5152 int i;
5153
5154 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005155 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005156 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005157}
5158
5159/**
Auke Kok9a799d72007-09-15 14:07:45 -07005160 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5161 * @netdev: network interface device structure
5162 * @new_mtu: new value for maximum frame size
5163 *
5164 * Returns 0 on success, negative on failure
5165 **/
5166static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5167{
5168 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005169 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005170 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5171
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005172 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rosee9f98072011-01-26 01:06:07 +00005173 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED &&
5174 hw->mac.type != ixgbe_mac_X540) {
5175 if ((new_mtu < 68) || (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE))
5176 return -EINVAL;
5177 } else {
5178 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
5179 return -EINVAL;
5180 }
Auke Kok9a799d72007-09-15 14:07:45 -07005181
Emil Tantilov396e7992010-07-01 20:05:12 +00005182 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005183 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005184 netdev->mtu = new_mtu;
5185
John Fastabend16b61be2010-11-16 19:26:44 -08005186 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5187 hw->fc.low_water = FC_LOW_WATER(max_frame);
5188
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005189 if (netif_running(netdev))
5190 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005191
5192 return 0;
5193}
5194
5195/**
5196 * ixgbe_open - Called when a network interface is made active
5197 * @netdev: network interface device structure
5198 *
5199 * Returns 0 on success, negative value on failure
5200 *
5201 * The open entry point is called when a network interface is made
5202 * active by the system (IFF_UP). At this point all resources needed
5203 * for transmit and receive operations are allocated, the interrupt
5204 * handler is registered with the OS, the watchdog timer is started,
5205 * and the stack is notified that the interface is ready.
5206 **/
5207static int ixgbe_open(struct net_device *netdev)
5208{
5209 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5210 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005211
Auke Kok4bebfaa2008-02-11 09:26:01 -08005212 /* disallow open during test */
5213 if (test_bit(__IXGBE_TESTING, &adapter->state))
5214 return -EBUSY;
5215
Jesse Brandeburg54386462009-04-17 20:44:27 +00005216 netif_carrier_off(netdev);
5217
Auke Kok9a799d72007-09-15 14:07:45 -07005218 /* allocate transmit descriptors */
5219 err = ixgbe_setup_all_tx_resources(adapter);
5220 if (err)
5221 goto err_setup_tx;
5222
Auke Kok9a799d72007-09-15 14:07:45 -07005223 /* allocate receive descriptors */
5224 err = ixgbe_setup_all_rx_resources(adapter);
5225 if (err)
5226 goto err_setup_rx;
5227
5228 ixgbe_configure(adapter);
5229
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005230 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005231 if (err)
5232 goto err_req_irq;
5233
Auke Kok9a799d72007-09-15 14:07:45 -07005234 err = ixgbe_up_complete(adapter);
5235 if (err)
5236 goto err_up;
5237
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07005238 netif_tx_start_all_queues(netdev);
5239
Auke Kok9a799d72007-09-15 14:07:45 -07005240 return 0;
5241
5242err_up:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005243 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005244 ixgbe_free_irq(adapter);
5245err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005246err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005247 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005248err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005249 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005250 ixgbe_reset(adapter);
5251
5252 return err;
5253}
5254
5255/**
5256 * ixgbe_close - Disables a network interface
5257 * @netdev: network interface device structure
5258 *
5259 * Returns 0, this is not allowed to fail
5260 *
5261 * The close entry point is called when an interface is de-activated
5262 * by the OS. The hardware is still under the drivers control, but
5263 * needs to be disabled. A global MAC reset is issued to stop the
5264 * hardware, and all transmit and receive resources are freed.
5265 **/
5266static int ixgbe_close(struct net_device *netdev)
5267{
5268 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005269
5270 ixgbe_down(adapter);
5271 ixgbe_free_irq(adapter);
5272
Alexander Duycke4911d52011-05-11 07:18:52 +00005273 ixgbe_fdir_filter_exit(adapter);
5274
Auke Kok9a799d72007-09-15 14:07:45 -07005275 ixgbe_free_all_tx_resources(adapter);
5276 ixgbe_free_all_rx_resources(adapter);
5277
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005278 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005279
5280 return 0;
5281}
5282
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005283#ifdef CONFIG_PM
5284static int ixgbe_resume(struct pci_dev *pdev)
5285{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005286 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5287 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005288 u32 err;
5289
5290 pci_set_power_state(pdev, PCI_D0);
5291 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005292 /*
5293 * pci_restore_state clears dev->state_saved so call
5294 * pci_save_state to restore it.
5295 */
5296 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005297
5298 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005299 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005300 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005301 return err;
5302 }
5303 pci_set_master(pdev);
5304
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005305 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005306
5307 err = ixgbe_init_interrupt_scheme(adapter);
5308 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005309 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005310 return err;
5311 }
5312
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005313 ixgbe_reset(adapter);
5314
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005315 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5316
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005317 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005318 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005319 if (err)
5320 return err;
5321 }
5322
5323 netif_device_attach(netdev);
5324
5325 return 0;
5326}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005327#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005328
5329static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005330{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005331 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5332 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005333 struct ixgbe_hw *hw = &adapter->hw;
5334 u32 ctrl, fctrl;
5335 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005336#ifdef CONFIG_PM
5337 int retval = 0;
5338#endif
5339
5340 netif_device_detach(netdev);
5341
5342 if (netif_running(netdev)) {
5343 ixgbe_down(adapter);
5344 ixgbe_free_irq(adapter);
5345 ixgbe_free_all_tx_resources(adapter);
5346 ixgbe_free_all_rx_resources(adapter);
5347 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005348
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005349 ixgbe_clear_interrupt_scheme(adapter);
John Fastabendd033d522011-02-10 14:40:01 +00005350#ifdef CONFIG_DCB
5351 kfree(adapter->ixgbe_ieee_pfc);
5352 kfree(adapter->ixgbe_ieee_ets);
5353#endif
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005354
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005355#ifdef CONFIG_PM
5356 retval = pci_save_state(pdev);
5357 if (retval)
5358 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005359
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005360#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005361 if (wufc) {
5362 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005363
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005364 /* turn on all-multi mode if wake on multicast is enabled */
5365 if (wufc & IXGBE_WUFC_MC) {
5366 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5367 fctrl |= IXGBE_FCTRL_MPE;
5368 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5369 }
5370
5371 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5372 ctrl |= IXGBE_CTRL_GIO_DIS;
5373 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5374
5375 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5376 } else {
5377 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5378 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5379 }
5380
Alexander Duyckbd508172010-11-16 19:27:03 -08005381 switch (hw->mac.type) {
5382 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005383 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005384 break;
5385 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005386 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005387 pci_wake_from_d3(pdev, !!wufc);
5388 break;
5389 default:
5390 break;
5391 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005392
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005393 *enable_wake = !!wufc;
5394
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005395 ixgbe_release_hw_control(adapter);
5396
5397 pci_disable_device(pdev);
5398
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005399 return 0;
5400}
5401
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005402#ifdef CONFIG_PM
5403static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5404{
5405 int retval;
5406 bool wake;
5407
5408 retval = __ixgbe_shutdown(pdev, &wake);
5409 if (retval)
5410 return retval;
5411
5412 if (wake) {
5413 pci_prepare_to_sleep(pdev);
5414 } else {
5415 pci_wake_from_d3(pdev, false);
5416 pci_set_power_state(pdev, PCI_D3hot);
5417 }
5418
5419 return 0;
5420}
5421#endif /* CONFIG_PM */
5422
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005423static void ixgbe_shutdown(struct pci_dev *pdev)
5424{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005425 bool wake;
5426
5427 __ixgbe_shutdown(pdev, &wake);
5428
5429 if (system_state == SYSTEM_POWER_OFF) {
5430 pci_wake_from_d3(pdev, wake);
5431 pci_set_power_state(pdev, PCI_D3hot);
5432 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005433}
5434
5435/**
Auke Kok9a799d72007-09-15 14:07:45 -07005436 * ixgbe_update_stats - Update the board statistics counters.
5437 * @adapter: board private structure
5438 **/
5439void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5440{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005441 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005442 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005443 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005444 u64 total_mpc = 0;
5445 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005446 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5447 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
5448 u64 bytes = 0, packets = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005449
Don Skidmored08935c2010-06-11 13:20:29 +00005450 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5451 test_bit(__IXGBE_RESETTING, &adapter->state))
5452 return;
5453
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005454 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005455 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005456 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005457 for (i = 0; i < 16; i++)
5458 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005459 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005460 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005461 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5462 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005463 }
5464 adapter->rsc_total_count = rsc_count;
5465 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005466 }
5467
Alexander Duyck5b7da512010-11-16 19:26:50 -08005468 for (i = 0; i < adapter->num_rx_queues; i++) {
5469 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5470 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5471 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5472 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
5473 bytes += rx_ring->stats.bytes;
5474 packets += rx_ring->stats.packets;
5475 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005476 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005477 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5478 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
5479 netdev->stats.rx_bytes = bytes;
5480 netdev->stats.rx_packets = packets;
5481
5482 bytes = 0;
5483 packets = 0;
5484 /* gather some stats to the adapter struct that are per queue */
5485 for (i = 0; i < adapter->num_tx_queues; i++) {
5486 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5487 restart_queue += tx_ring->tx_stats.restart_queue;
5488 tx_busy += tx_ring->tx_stats.tx_busy;
5489 bytes += tx_ring->stats.bytes;
5490 packets += tx_ring->stats.packets;
5491 }
5492 adapter->restart_queue = restart_queue;
5493 adapter->tx_busy = tx_busy;
5494 netdev->stats.tx_bytes = bytes;
5495 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005496
Joe Perches7ca647b2010-09-07 21:35:40 +00005497 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005498 for (i = 0; i < 8; i++) {
5499 /* for packet buffers not used, the register should read 0 */
5500 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5501 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005502 hwstats->mpc[i] += mpc;
5503 total_mpc += hwstats->mpc[i];
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005504 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005505 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5506 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5507 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5508 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5509 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005510 switch (hw->mac.type) {
5511 case ixgbe_mac_82598EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005512 hwstats->pxonrxc[i] +=
5513 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005514 break;
5515 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005516 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005517 hwstats->pxonrxc[i] +=
5518 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005519 break;
5520 default:
5521 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005522 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005523 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5524 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005525 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005526 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005527 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005528 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005529
John Fastabendc84d3242010-11-16 19:27:12 -08005530 ixgbe_update_xoff_received(adapter);
5531
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005532 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005533 switch (hw->mac.type) {
5534 case ixgbe_mac_82598EB:
5535 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005536 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5537 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5538 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5539 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08005540 case ixgbe_mac_X540:
Emil Tantilov58f6bcf2011-04-21 08:43:43 +00005541 /* OS2BMC stats are X540 only*/
5542 hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC);
5543 hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC);
5544 hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC);
5545 hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC);
5546 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005547 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005548 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005549 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005550 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005551 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005552 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005553 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005554 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5555 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005556#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005557 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5558 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5559 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5560 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5561 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5562 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Yi Zou6d455222009-05-13 13:12:16 +00005563#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005564 break;
5565 default:
5566 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005567 }
Auke Kok9a799d72007-09-15 14:07:45 -07005568 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005569 hwstats->bprc += bprc;
5570 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005571 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005572 hwstats->mprc -= bprc;
5573 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5574 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5575 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5576 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5577 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5578 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5579 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5580 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005581 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005582 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005583 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005584 hwstats->lxofftxc += lxoff;
5585 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5586 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5587 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005588 /*
5589 * 82598 errata - tx of flow control packets is included in tx counters
5590 */
5591 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005592 hwstats->gptc -= xon_off_tot;
5593 hwstats->mptc -= xon_off_tot;
5594 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5595 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5596 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5597 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5598 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5599 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5600 hwstats->ptc64 -= xon_off_tot;
5601 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5602 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5603 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5604 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5605 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5606 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005607
5608 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005609 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005610
5611 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005612 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005613 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005614 netdev->stats.rx_length_errors = hwstats->rlec;
5615 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005616 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005617}
5618
5619/**
Alexander Duyckd034acf2011-04-27 09:25:34 +00005620 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5621 * @adapter - pointer to the device adapter structure
Auke Kok9a799d72007-09-15 14:07:45 -07005622 **/
Alexander Duyckd034acf2011-04-27 09:25:34 +00005623static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07005624{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005625 struct ixgbe_hw *hw = &adapter->hw;
5626 int i;
5627
Alexander Duyckd034acf2011-04-27 09:25:34 +00005628 if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT))
5629 return;
5630
5631 adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT;
5632
5633 /* if interface is down do nothing */
5634 if (test_bit(__IXGBE_DOWN, &adapter->state))
5635 return;
5636
5637 /* do nothing if we are not using signature filters */
5638 if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE))
5639 return;
5640
5641 adapter->fdir_overflow++;
5642
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005643 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5644 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005645 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
Alexander Duyckf0f97782011-04-22 04:08:09 +00005646 &(adapter->tx_ring[i]->state));
Alexander Duyckd034acf2011-04-27 09:25:34 +00005647 /* re-enable flow director interrupts */
5648 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005649 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005650 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005651 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005652 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005653}
5654
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005655/**
5656 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
5657 * @adapter - pointer to the device adapter structure
5658 *
5659 * This function serves two purposes. First it strobes the interrupt lines
5660 * in order to make certain interrupts are occuring. Secondly it sets the
5661 * bits needed to check for TX hangs. As a result we should immediately
5662 * determine if a hang has occured.
5663 */
5664static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter)
5665{
Auke Kok9a799d72007-09-15 14:07:45 -07005666 struct ixgbe_hw *hw = &adapter->hw;
5667 u64 eics = 0;
5668 int i;
5669
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005670 /* If we're down or resetting, just bail */
5671 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5672 test_bit(__IXGBE_RESETTING, &adapter->state))
5673 return;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005674
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005675 /* Force detection of hung controller */
5676 if (netif_carrier_ok(adapter->netdev)) {
5677 for (i = 0; i < adapter->num_tx_queues; i++)
5678 set_check_for_tx_hang(adapter->tx_ring[i]);
5679 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005680
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005681 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00005682 /*
5683 * for legacy and MSI interrupts don't set any bits
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005684 * that are enabled for EIAM, because this operation
Alexander Duyckfe49f042009-06-04 16:00:09 +00005685 * would set *both* EIMS and EICS for any bit in EIAM
5686 */
5687 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5688 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005689 } else {
5690 /* get one bit for every active tx/rx interrupt vector */
5691 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
5692 struct ixgbe_q_vector *qv = adapter->q_vector[i];
Alexander Duyckefe3d3c2011-07-15 03:05:21 +00005693 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005694 eics |= ((u64)1 << i);
5695 }
Alexander Duyckfe49f042009-06-04 16:00:09 +00005696 }
5697
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005698 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyckfe49f042009-06-04 16:00:09 +00005699 ixgbe_irq_rearm_queues(adapter, eics);
5700
Alexander Duyckfe49f042009-06-04 16:00:09 +00005701}
5702
5703/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005704 * ixgbe_watchdog_update_link - update the link status
5705 * @adapter - pointer to the device adapter structure
5706 * @link_speed - pointer to a u32 to store the link_speed
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005707 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005708static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005709{
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005710 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005711 u32 link_speed = adapter->link_speed;
5712 bool link_up = adapter->link_up;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005713 int i;
5714
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005715 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE))
5716 return;
5717
5718 if (hw->mac.ops.check_link) {
5719 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005720 } else {
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005721 /* always assume link is up, if no check link function */
5722 link_speed = IXGBE_LINK_SPEED_10GB_FULL;
5723 link_up = true;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005724 }
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005725 if (link_up) {
5726 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
5727 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
5728 hw->mac.ops.fc_enable(hw, i);
5729 } else {
5730 hw->mac.ops.fc_enable(hw, 0);
5731 }
5732 }
5733
5734 if (link_up ||
5735 time_after(jiffies, (adapter->link_check_timeout +
5736 IXGBE_TRY_LINK_TIMEOUT))) {
5737 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
5738 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
5739 IXGBE_WRITE_FLUSH(hw);
5740 }
5741
5742 adapter->link_up = link_up;
5743 adapter->link_speed = link_speed;
5744}
5745
5746/**
5747 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5748 * print link up message
5749 * @adapter - pointer to the device adapter structure
5750 **/
5751static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
5752{
5753 struct net_device *netdev = adapter->netdev;
5754 struct ixgbe_hw *hw = &adapter->hw;
5755 u32 link_speed = adapter->link_speed;
5756 bool flow_rx, flow_tx;
5757
5758 /* only continue if link was previously down */
5759 if (netif_carrier_ok(netdev))
5760 return;
5761
5762 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
5763
5764 switch (hw->mac.type) {
5765 case ixgbe_mac_82598EB: {
5766 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5767 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
5768 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5769 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
5770 }
5771 break;
5772 case ixgbe_mac_X540:
5773 case ixgbe_mac_82599EB: {
5774 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5775 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5776 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5777 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5778 }
5779 break;
5780 default:
5781 flow_tx = false;
5782 flow_rx = false;
5783 break;
5784 }
5785 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
5786 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
5787 "10 Gbps" :
5788 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5789 "1 Gbps" :
5790 (link_speed == IXGBE_LINK_SPEED_100_FULL ?
5791 "100 Mbps" :
5792 "unknown speed"))),
5793 ((flow_rx && flow_tx) ? "RX/TX" :
5794 (flow_rx ? "RX" :
5795 (flow_tx ? "TX" : "None"))));
5796
5797 netif_carrier_on(netdev);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005798 ixgbe_check_vf_rate_limit(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005799}
5800
5801/**
5802 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5803 * print link down message
5804 * @adapter - pointer to the adapter structure
5805 **/
5806static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter* adapter)
5807{
5808 struct net_device *netdev = adapter->netdev;
5809 struct ixgbe_hw *hw = &adapter->hw;
5810
5811 adapter->link_up = false;
5812 adapter->link_speed = 0;
5813
5814 /* only continue if link was up previously */
5815 if (!netif_carrier_ok(netdev))
5816 return;
5817
5818 /* poll for SFP+ cable when link is down */
5819 if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB)
5820 adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP;
5821
5822 e_info(drv, "NIC Link is Down\n");
5823 netif_carrier_off(netdev);
5824}
5825
5826/**
5827 * ixgbe_watchdog_flush_tx - flush queues on link down
5828 * @adapter - pointer to the device adapter structure
5829 **/
5830static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter)
5831{
5832 int i;
5833 int some_tx_pending = 0;
5834
5835 if (!netif_carrier_ok(adapter->netdev)) {
5836 for (i = 0; i < adapter->num_tx_queues; i++) {
5837 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5838 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5839 some_tx_pending = 1;
5840 break;
5841 }
5842 }
5843
5844 if (some_tx_pending) {
5845 /* We've lost link, so the controller stops DMA,
5846 * but we've got queued Tx work that's never going
5847 * to get done, so reset controller to flush Tx.
5848 * (Do the reset outside of interrupt context).
5849 */
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00005850 adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED;
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005851 }
5852 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005853}
5854
Greg Rosea985b6c32010-11-18 03:02:52 +00005855static void ixgbe_spoof_check(struct ixgbe_adapter *adapter)
5856{
5857 u32 ssvpc;
5858
5859 /* Do not perform spoof check for 82598 */
5860 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
5861 return;
5862
5863 ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC);
5864
5865 /*
5866 * ssvpc register is cleared on read, if zero then no
5867 * spoofed packets in the last interval.
5868 */
5869 if (!ssvpc)
5870 return;
5871
5872 e_warn(drv, "%d Spoofed packets detected\n", ssvpc);
5873}
5874
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005875/**
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005876 * ixgbe_watchdog_subtask - check and bring link up
5877 * @adapter - pointer to the device adapter structure
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005878 **/
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005879static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter)
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005880{
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005881 /* if interface is down do nothing */
5882 if (test_bit(__IXGBE_DOWN, &adapter->state))
5883 return;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005884
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005885 ixgbe_watchdog_update_link(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005886
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005887 if (adapter->link_up)
5888 ixgbe_watchdog_link_is_up(adapter);
5889 else
5890 ixgbe_watchdog_link_is_down(adapter);
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005891
Greg Rosea985b6c32010-11-18 03:02:52 +00005892 ixgbe_spoof_check(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005893 ixgbe_update_stats(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00005894
5895 ixgbe_watchdog_flush_tx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005896}
5897
Alexander Duyck70864002011-04-27 09:13:56 +00005898/**
5899 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
5900 * @adapter - the ixgbe adapter structure
5901 **/
5902static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter)
5903{
5904 struct ixgbe_hw *hw = &adapter->hw;
5905 s32 err;
5906
5907 /* not searching for SFP so there is nothing to do here */
5908 if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) &&
5909 !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5910 return;
5911
5912 /* someone else is in init, wait until next service event */
5913 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5914 return;
5915
5916 err = hw->phy.ops.identify_sfp(hw);
5917 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5918 goto sfp_out;
5919
5920 if (err == IXGBE_ERR_SFP_NOT_PRESENT) {
5921 /* If no cable is present, then we need to reset
5922 * the next time we find a good cable. */
5923 adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET;
5924 }
5925
5926 /* exit on error */
5927 if (err)
5928 goto sfp_out;
5929
5930 /* exit if reset not needed */
5931 if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET))
5932 goto sfp_out;
5933
5934 adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET;
5935
5936 /*
5937 * A module may be identified correctly, but the EEPROM may not have
5938 * support for that module. setup_sfp() will fail in that case, so
5939 * we should not allow that module to load.
5940 */
5941 if (hw->mac.type == ixgbe_mac_82598EB)
5942 err = hw->phy.ops.reset(hw);
5943 else
5944 err = hw->mac.ops.setup_sfp(hw);
5945
5946 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED)
5947 goto sfp_out;
5948
5949 adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG;
5950 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
5951
5952sfp_out:
5953 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5954
5955 if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) &&
5956 (adapter->netdev->reg_state == NETREG_REGISTERED)) {
5957 e_dev_err("failed to initialize because an unsupported "
5958 "SFP+ module type was detected.\n");
5959 e_dev_err("Reload the driver after installing a "
5960 "supported module.\n");
5961 unregister_netdev(adapter->netdev);
5962 }
5963}
5964
5965/**
5966 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
5967 * @adapter - the ixgbe adapter structure
5968 **/
5969static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter)
5970{
5971 struct ixgbe_hw *hw = &adapter->hw;
5972 u32 autoneg;
5973 bool negotiation;
5974
5975 if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG))
5976 return;
5977
5978 /* someone else is in init, wait until next service event */
5979 if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
5980 return;
5981
5982 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG;
5983
5984 autoneg = hw->phy.autoneg_advertised;
5985 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
5986 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
5987 hw->mac.autotry_restart = false;
5988 if (hw->mac.ops.setup_link)
5989 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
5990
5991 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5992 adapter->link_check_timeout = jiffies;
5993 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
5994}
5995
5996/**
5997 * ixgbe_service_timer - Timer Call-back
5998 * @data: pointer to adapter cast into an unsigned long
5999 **/
6000static void ixgbe_service_timer(unsigned long data)
6001{
6002 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
6003 unsigned long next_event_offset;
6004
6005 /* poll faster when waiting for link */
6006 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)
6007 next_event_offset = HZ / 10;
6008 else
6009 next_event_offset = HZ * 2;
6010
6011 /* Reset the timer */
6012 mod_timer(&adapter->service_timer, next_event_offset + jiffies);
6013
6014 ixgbe_service_event_schedule(adapter);
6015}
6016
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006017static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter)
6018{
6019 if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED))
6020 return;
6021
6022 adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED;
6023
6024 /* If we're already down or resetting, just bail */
6025 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
6026 test_bit(__IXGBE_RESETTING, &adapter->state))
6027 return;
6028
6029 ixgbe_dump(adapter);
6030 netdev_err(adapter->netdev, "Reset adapter\n");
6031 adapter->tx_timeout_count++;
6032
6033 ixgbe_reinit_locked(adapter);
6034}
6035
Alexander Duyck70864002011-04-27 09:13:56 +00006036/**
6037 * ixgbe_service_task - manages and runs subtasks
6038 * @work: pointer to work_struct containing our data
6039 **/
6040static void ixgbe_service_task(struct work_struct *work)
6041{
6042 struct ixgbe_adapter *adapter = container_of(work,
6043 struct ixgbe_adapter,
6044 service_task);
6045
Alexander Duyckc83c6cb2011-04-27 09:21:16 +00006046 ixgbe_reset_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006047 ixgbe_sfp_detection_subtask(adapter);
6048 ixgbe_sfp_link_config_subtask(adapter);
Alexander Duyckf0f97782011-04-22 04:08:09 +00006049 ixgbe_check_overtemp_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006050 ixgbe_watchdog_subtask(adapter);
Alexander Duyckd034acf2011-04-27 09:25:34 +00006051 ixgbe_fdir_reinit_subtask(adapter);
Alexander Duyck93c52dd2011-04-22 04:07:54 +00006052 ixgbe_check_hang_subtask(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00006053
6054 ixgbe_service_event_complete(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006055}
6056
Alexander Duyck897ab152011-05-27 05:31:47 +00006057void ixgbe_tx_ctxtdesc(struct ixgbe_ring *tx_ring, u32 vlan_macip_lens,
6058 u32 fcoe_sof_eof, u32 type_tucmd, u32 mss_l4len_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07006059{
6060 struct ixgbe_adv_tx_context_desc *context_desc;
Alexander Duyck897ab152011-05-27 05:31:47 +00006061 u16 i = tx_ring->next_to_use;
6062
6063 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
6064
6065 i++;
6066 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
6067
6068 /* set bits to identify this as an advanced context descriptor */
6069 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
6070
6071 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6072 context_desc->seqnum_seed = cpu_to_le32(fcoe_sof_eof);
6073 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
6074 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6075}
6076
6077static int ixgbe_tso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
6078 u32 tx_flags, __be16 protocol, u8 *hdr_len)
6079{
Auke Kok9a799d72007-09-15 14:07:45 -07006080 int err;
Alexander Duyck897ab152011-05-27 05:31:47 +00006081 u32 vlan_macip_lens, type_tucmd;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006082 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006083
Alexander Duyck897ab152011-05-27 05:31:47 +00006084 if (!skb_is_gso(skb))
6085 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006086
Alexander Duyck897ab152011-05-27 05:31:47 +00006087 if (skb_header_cloned(skb)) {
6088 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6089 if (err)
6090 return err;
Joe Perches7ca647b2010-09-07 21:35:40 +00006091 }
6092
Alexander Duyck897ab152011-05-27 05:31:47 +00006093 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
6094 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
6095
6096 if (protocol == __constant_htons(ETH_P_IP)) {
6097 struct iphdr *iph = ip_hdr(skb);
6098 iph->tot_len = 0;
6099 iph->check = 0;
6100 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
6101 iph->daddr, 0,
6102 IPPROTO_TCP,
6103 0);
6104 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6105 } else if (skb_is_gso_v6(skb)) {
6106 ipv6_hdr(skb)->payload_len = 0;
6107 tcp_hdr(skb)->check =
6108 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
6109 &ipv6_hdr(skb)->daddr,
6110 0, IPPROTO_TCP, 0);
6111 }
6112
6113 l4len = tcp_hdrlen(skb);
6114 *hdr_len = skb_transport_offset(skb) + l4len;
6115
6116 /* mss_l4len_id: use 1 as index for TSO */
6117 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
6118 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
6119 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
6120
6121 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
6122 vlan_macip_lens = skb_network_header_len(skb);
6123 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6124 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6125
6126 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd,
6127 mss_l4len_idx);
6128
6129 return 1;
Joe Perches7ca647b2010-09-07 21:35:40 +00006130}
6131
Alexander Duyck897ab152011-05-27 05:31:47 +00006132static bool ixgbe_tx_csum(struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006133 struct sk_buff *skb, u32 tx_flags,
6134 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006135{
Alexander Duyck897ab152011-05-27 05:31:47 +00006136 u32 vlan_macip_lens = 0;
6137 u32 mss_l4len_idx = 0;
6138 u32 type_tucmd = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006139
Alexander Duyck897ab152011-05-27 05:31:47 +00006140 if (skb->ip_summed != CHECKSUM_PARTIAL) {
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006141 if (!(tx_flags & IXGBE_TX_FLAGS_HW_VLAN) &&
6142 !(tx_flags & IXGBE_TX_FLAGS_TXSW))
Alexander Duyck897ab152011-05-27 05:31:47 +00006143 return false;
6144 } else {
6145 u8 l4_hdr = 0;
6146 switch (protocol) {
6147 case __constant_htons(ETH_P_IP):
6148 vlan_macip_lens |= skb_network_header_len(skb);
6149 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
6150 l4_hdr = ip_hdr(skb)->protocol;
6151 break;
6152 case __constant_htons(ETH_P_IPV6):
6153 vlan_macip_lens |= skb_network_header_len(skb);
6154 l4_hdr = ipv6_hdr(skb)->nexthdr;
6155 break;
6156 default:
6157 if (unlikely(net_ratelimit())) {
6158 dev_warn(tx_ring->dev,
6159 "partial checksum but proto=%x!\n",
6160 skb->protocol);
6161 }
6162 break;
6163 }
Auke Kok9a799d72007-09-15 14:07:45 -07006164
Alexander Duyck897ab152011-05-27 05:31:47 +00006165 switch (l4_hdr) {
6166 case IPPROTO_TCP:
6167 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6168 mss_l4len_idx = tcp_hdrlen(skb) <<
6169 IXGBE_ADVTXD_L4LEN_SHIFT;
6170 break;
6171 case IPPROTO_SCTP:
6172 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6173 mss_l4len_idx = sizeof(struct sctphdr) <<
6174 IXGBE_ADVTXD_L4LEN_SHIFT;
6175 break;
6176 case IPPROTO_UDP:
6177 mss_l4len_idx = sizeof(struct udphdr) <<
6178 IXGBE_ADVTXD_L4LEN_SHIFT;
6179 break;
6180 default:
6181 if (unlikely(net_ratelimit())) {
6182 dev_warn(tx_ring->dev,
6183 "partial checksum but l4 proto=%x!\n",
6184 skb->protocol);
6185 }
6186 break;
6187 }
Auke Kok9a799d72007-09-15 14:07:45 -07006188 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006189
Alexander Duyck897ab152011-05-27 05:31:47 +00006190 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
6191 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
6192
6193 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0,
6194 type_tucmd, mss_l4len_idx);
6195
6196 return (skb->ip_summed == CHECKSUM_PARTIAL);
Auke Kok9a799d72007-09-15 14:07:45 -07006197}
6198
Alexander Duyckd3d00232011-07-15 02:31:25 +00006199static __le32 ixgbe_tx_cmd_type(u32 tx_flags)
6200{
6201 /* set type for advanced descriptor with frame checksum insertion */
6202 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
6203 IXGBE_ADVTXD_DCMD_IFCS |
6204 IXGBE_ADVTXD_DCMD_DEXT);
6205
6206 /* set HW vlan bit if vlan is present */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006207 if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN)
Alexander Duyckd3d00232011-07-15 02:31:25 +00006208 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
6209
6210 /* set segmentation enable bits for TSO/FSO */
6211#ifdef IXGBE_FCOE
6212 if ((tx_flags & IXGBE_TX_FLAGS_TSO) || (tx_flags & IXGBE_TX_FLAGS_FSO))
6213#else
6214 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6215#endif
6216 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
6217
6218 return cmd_type;
6219}
6220
6221static __le32 ixgbe_tx_olinfo_status(u32 tx_flags, unsigned int paylen)
6222{
6223 __le32 olinfo_status =
6224 cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
6225
6226 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6227 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM |
6228 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6229 /* enble IPv4 checksum for TSO */
6230 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6231 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
6232 }
6233
6234 /* enable L4 checksum for TSO and TX checksum offload */
6235 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6236 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
6237
6238#ifdef IXGBE_FCOE
6239 /* use index 1 context for FCOE/FSO */
6240 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6241 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC |
6242 (1 << IXGBE_ADVTXD_IDX_SHIFT));
6243
6244#endif
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006245 /*
6246 * Check Context must be set if Tx switch is enabled, which it
6247 * always is for case where virtual functions are running
6248 */
6249 if (tx_flags & IXGBE_TX_FLAGS_TXSW)
6250 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
6251
Alexander Duyckd3d00232011-07-15 02:31:25 +00006252 return olinfo_status;
6253}
6254
6255#define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6256 IXGBE_TXD_CMD_RS)
6257
6258static void ixgbe_tx_map(struct ixgbe_ring *tx_ring,
6259 struct sk_buff *skb,
6260 struct ixgbe_tx_buffer *first,
6261 u32 tx_flags,
6262 const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006263{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006264 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006265 struct ixgbe_tx_buffer *tx_buffer_info;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006266 union ixgbe_adv_tx_desc *tx_desc;
6267 dma_addr_t dma;
6268 __le32 cmd_type, olinfo_status;
6269 struct skb_frag_struct *frag;
6270 unsigned int f = 0;
6271 unsigned int data_len = skb->data_len;
6272 unsigned int size = skb_headlen(skb);
6273 u32 offset = 0;
6274 u32 paylen = skb->len - hdr_len;
6275 u16 i = tx_ring->next_to_use;
6276 u16 gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006277
Alexander Duyckd3d00232011-07-15 02:31:25 +00006278#ifdef IXGBE_FCOE
6279 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6280 if (data_len >= sizeof(struct fcoe_crc_eof)) {
6281 data_len -= sizeof(struct fcoe_crc_eof);
6282 } else {
6283 size -= sizeof(struct fcoe_crc_eof) - data_len;
6284 data_len = 0;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006285 }
Auke Kok9a799d72007-09-15 14:07:45 -07006286 }
6287
Alexander Duyckd3d00232011-07-15 02:31:25 +00006288#endif
6289 dma = dma_map_single(dev, skb->data, size, DMA_TO_DEVICE);
6290 if (dma_mapping_error(dev, dma))
6291 goto dma_error;
6292
6293 cmd_type = ixgbe_tx_cmd_type(tx_flags);
6294 olinfo_status = ixgbe_tx_olinfo_status(tx_flags, paylen);
6295
6296 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
6297
6298 for (;;) {
6299 while (size > IXGBE_MAX_DATA_PER_TXD) {
6300 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6301 tx_desc->read.cmd_type_len =
6302 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
6303 tx_desc->read.olinfo_status = olinfo_status;
6304
6305 offset += IXGBE_MAX_DATA_PER_TXD;
6306 size -= IXGBE_MAX_DATA_PER_TXD;
6307
6308 tx_desc++;
6309 i++;
6310 if (i == tx_ring->count) {
6311 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
6312 i = 0;
6313 }
6314 }
6315
6316 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6317 tx_buffer_info->length = offset + size;
6318 tx_buffer_info->tx_flags = tx_flags;
6319 tx_buffer_info->dma = dma;
6320
6321 tx_desc->read.buffer_addr = cpu_to_le64(dma + offset);
6322 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
6323 tx_desc->read.olinfo_status = olinfo_status;
6324
6325 if (!data_len)
6326 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006327
6328 frag = &skb_shinfo(skb)->frags[f];
Alexander Duyckd3d00232011-07-15 02:31:25 +00006329#ifdef IXGBE_FCOE
6330 size = min_t(unsigned int, data_len, frag->size);
6331#else
6332 size = frag->size;
6333#endif
6334 data_len -= size;
6335 f++;
Auke Kok9a799d72007-09-15 14:07:45 -07006336
Alexander Duyckd3d00232011-07-15 02:31:25 +00006337 offset = 0;
6338 tx_flags |= IXGBE_TX_FLAGS_MAPPED_AS_PAGE;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006339
Alexander Duyckd3d00232011-07-15 02:31:25 +00006340 dma = dma_map_page(dev, frag->page, frag->page_offset,
6341 size, DMA_TO_DEVICE);
6342 if (dma_mapping_error(dev, dma))
6343 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006344
Alexander Duyckd3d00232011-07-15 02:31:25 +00006345 tx_desc++;
6346 i++;
6347 if (i == tx_ring->count) {
6348 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, 0);
6349 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006350 }
6351 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006352
Alexander Duyckd3d00232011-07-15 02:31:25 +00006353 tx_desc->read.cmd_type_len |= cpu_to_le32(IXGBE_TXD_CMD);
6354
6355 i++;
6356 if (i == tx_ring->count)
6357 i = 0;
6358
6359 tx_ring->next_to_use = i;
6360
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006361 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6362 gso_segs = skb_shinfo(skb)->gso_segs;
6363#ifdef IXGBE_FCOE
6364 /* adjust for FCoE Sequence Offload */
6365 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6366 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6367 skb_shinfo(skb)->gso_size);
6368#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006369 else
6370 gso_segs = 1;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006371
6372 /* multiply data chunks by size of headers */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006373 tx_buffer_info->bytecount = paylen + (gso_segs * hdr_len);
6374 tx_buffer_info->gso_segs = gso_segs;
6375 tx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07006376
Alexander Duyckd3d00232011-07-15 02:31:25 +00006377 /* set the timestamp */
6378 first->time_stamp = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07006379
6380 /*
6381 * Force memory writes to complete before letting h/w
6382 * know there are new descriptors to fetch. (Only
6383 * applicable for weak-ordered memory model archs,
6384 * such as IA-64).
6385 */
6386 wmb();
6387
Alexander Duyckd3d00232011-07-15 02:31:25 +00006388 /* set next_to_watch value indicating a packet is present */
6389 first->next_to_watch = tx_desc;
6390
6391 /* notify HW of packet */
Alexander Duyck84ea2592010-11-16 19:26:49 -08006392 writel(i, tx_ring->tail);
Alexander Duyckd3d00232011-07-15 02:31:25 +00006393
6394 return;
6395dma_error:
6396 dev_err(dev, "TX DMA map failed\n");
6397
6398 /* clear dma mappings for failed tx_buffer_info map */
6399 for (;;) {
6400 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6401 ixgbe_unmap_tx_resource(tx_ring, tx_buffer_info);
6402 if (tx_buffer_info == first)
6403 break;
6404 if (i == 0)
6405 i = tx_ring->count;
6406 i--;
6407 }
6408
6409 dev_kfree_skb_any(skb);
6410
6411 tx_ring->next_to_use = i;
Auke Kok9a799d72007-09-15 14:07:45 -07006412}
6413
Alexander Duyck69830522011-01-06 14:29:58 +00006414static void ixgbe_atr(struct ixgbe_ring *ring, struct sk_buff *skb,
6415 u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006416{
Alexander Duyck69830522011-01-06 14:29:58 +00006417 struct ixgbe_q_vector *q_vector = ring->q_vector;
6418 union ixgbe_atr_hash_dword input = { .dword = 0 };
6419 union ixgbe_atr_hash_dword common = { .dword = 0 };
6420 union {
6421 unsigned char *network;
6422 struct iphdr *ipv4;
6423 struct ipv6hdr *ipv6;
6424 } hdr;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006425 struct tcphdr *th;
Alexander Duyck905e4a42011-01-06 14:29:57 +00006426 __be16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006427
Alexander Duyck69830522011-01-06 14:29:58 +00006428 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6429 if (!q_vector)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006430 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006431
Alexander Duyck69830522011-01-06 14:29:58 +00006432 /* do nothing if sampling is disabled */
6433 if (!ring->atr_sample_rate)
6434 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006435
Alexander Duyck69830522011-01-06 14:29:58 +00006436 ring->atr_count++;
6437
6438 /* snag network header to get L4 type and address */
6439 hdr.network = skb_network_header(skb);
6440
6441 /* Currently only IPv4/IPv6 with TCP is supported */
6442 if ((protocol != __constant_htons(ETH_P_IPV6) ||
6443 hdr.ipv6->nexthdr != IPPROTO_TCP) &&
6444 (protocol != __constant_htons(ETH_P_IP) ||
6445 hdr.ipv4->protocol != IPPROTO_TCP))
6446 return;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006447
6448 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006449
Alexander Duyck66f32a82011-06-29 05:43:22 +00006450 /* skip this packet since it is invalid or the socket is closing */
6451 if (!th || th->fin)
Alexander Duyck69830522011-01-06 14:29:58 +00006452 return;
6453
6454 /* sample on all syn packets or once every atr sample count */
6455 if (!th->syn && (ring->atr_count < ring->atr_sample_rate))
6456 return;
6457
6458 /* reset sample count */
6459 ring->atr_count = 0;
6460
6461 vlan_id = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT);
6462
6463 /*
6464 * src and dst are inverted, think how the receiver sees them
6465 *
6466 * The input is broken into two sections, a non-compressed section
6467 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6468 * is XORed together and stored in the compressed dword.
6469 */
6470 input.formatted.vlan_id = vlan_id;
6471
6472 /*
6473 * since src port and flex bytes occupy the same word XOR them together
6474 * and write the value to source port portion of compressed dword
6475 */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006476 if (tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN))
Alexander Duyck69830522011-01-06 14:29:58 +00006477 common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q);
6478 else
6479 common.port.src ^= th->dest ^ protocol;
6480 common.port.dst ^= th->source;
6481
6482 if (protocol == __constant_htons(ETH_P_IP)) {
6483 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
6484 common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr;
6485 } else {
6486 input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6;
6487 common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^
6488 hdr.ipv6->saddr.s6_addr32[1] ^
6489 hdr.ipv6->saddr.s6_addr32[2] ^
6490 hdr.ipv6->saddr.s6_addr32[3] ^
6491 hdr.ipv6->daddr.s6_addr32[0] ^
6492 hdr.ipv6->daddr.s6_addr32[1] ^
6493 hdr.ipv6->daddr.s6_addr32[2] ^
6494 hdr.ipv6->daddr.s6_addr32[3];
6495 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006496
6497 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
Alexander Duyck69830522011-01-06 14:29:58 +00006498 ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw,
6499 input, common, ring->queue_index);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006500}
6501
Alexander Duyck63544e92011-05-27 05:31:42 +00006502static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006503{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006504 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006505 /* Herbert's original patch had:
6506 * smp_mb__after_netif_stop_queue();
6507 * but since that doesn't exist yet, just open code it. */
6508 smp_mb();
6509
6510 /* We need to check again in a case another CPU has just
6511 * made room available. */
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006512 if (likely(ixgbe_desc_unused(tx_ring) < size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006513 return -EBUSY;
6514
6515 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006516 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006517 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006518 return 0;
6519}
6520
Alexander Duyck82d4e462011-06-11 01:44:58 +00006521static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006522{
Alexander Duyck7d4987d2011-05-27 05:31:37 +00006523 if (likely(ixgbe_desc_unused(tx_ring) >= size))
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006524 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006525 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006526}
6527
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006528static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6529{
6530 struct ixgbe_adapter *adapter = netdev_priv(dev);
Alexander Duyck64407522011-06-11 01:44:53 +00006531 int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
6532 smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006533#ifdef IXGBE_FCOE
Alexander Duyck64407522011-06-11 01:44:53 +00006534 __be16 protocol = vlan_get_protocol(skb);
Hao Zheng5e09a102010-11-11 13:47:59 +00006535
John Fastabende5b64632011-03-08 03:44:52 +00006536 if (((protocol == htons(ETH_P_FCOE)) ||
6537 (protocol == htons(ETH_P_FIP))) &&
6538 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
6539 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6540 txq += adapter->ring_feature[RING_F_FCOE].mask;
6541 return txq;
John Fastabend56075a92010-07-26 20:41:31 +00006542 }
6543#endif
6544
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006545 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6546 while (unlikely(txq >= dev->real_num_tx_queues))
6547 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006548 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006549 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006550
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006551 return skb_tx_hash(dev, skb);
6552}
6553
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006554netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006555 struct ixgbe_adapter *adapter,
6556 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006557{
Alexander Duyckd3d00232011-07-15 02:31:25 +00006558 struct ixgbe_tx_buffer *first;
Yi Zou5f715822009-12-03 11:32:44 +00006559 int tso;
Alexander Duyckd3d00232011-07-15 02:31:25 +00006560 u32 tx_flags = 0;
Alexander Duycka535c302011-05-27 05:31:52 +00006561#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6562 unsigned short f;
6563#endif
Alexander Duycka535c302011-05-27 05:31:52 +00006564 u16 count = TXD_USE_COUNT(skb_headlen(skb));
Alexander Duyck66f32a82011-06-29 05:43:22 +00006565 __be16 protocol = skb->protocol;
Alexander Duyck63544e92011-05-27 05:31:42 +00006566 u8 hdr_len = 0;
Hao Zheng5e09a102010-11-11 13:47:59 +00006567
Alexander Duycka535c302011-05-27 05:31:52 +00006568 /*
6569 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
6570 * + 1 desc for skb_head_len/IXGBE_MAX_DATA_PER_TXD,
6571 * + 2 desc gap to keep tail from touching head,
6572 * + 1 desc for context descriptor,
6573 * otherwise try next time
6574 */
6575#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6576 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
6577 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6578#else
6579 count += skb_shinfo(skb)->nr_frags;
6580#endif
6581 if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) {
6582 tx_ring->tx_stats.tx_busy++;
6583 return NETDEV_TX_BUSY;
6584 }
6585
Alexander Duyck7f9643f2011-06-29 05:43:27 +00006586#ifdef CONFIG_PCI_IOV
6587 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
6588 tx_flags |= IXGBE_TX_FLAGS_TXSW;
6589
6590#endif
Alexander Duyck66f32a82011-06-29 05:43:22 +00006591 /* if we have a HW VLAN tag being added default to the HW one */
Jesse Grosseab6d182010-10-20 13:56:03 +00006592 if (vlan_tx_tag_present(skb)) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006593 tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6594 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6595 /* else if it is a SW VLAN check the next protocol and store the tag */
6596 } else if (protocol == __constant_htons(ETH_P_8021Q)) {
6597 struct vlan_hdr *vhdr, _vhdr;
6598 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
6599 if (!vhdr)
6600 goto out_drop;
6601
6602 protocol = vhdr->h_vlan_encapsulated_proto;
6603 tx_flags |= ntohs(vhdr->h_vlan_TCI) << IXGBE_TX_FLAGS_VLAN_SHIFT;
6604 tx_flags |= IXGBE_TX_FLAGS_SW_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006605 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006606
Alexander Duyck66f32a82011-06-29 05:43:22 +00006607 if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) &&
Alexander Duyck09dca472011-07-20 00:09:10 +00006608 ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) ||
6609 (skb->priority != TC_PRIO_CONTROL))) {
Alexander Duyck66f32a82011-06-29 05:43:22 +00006610 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
6611 tx_flags |= tx_ring->dcb_tc <<
6612 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT;
6613 if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) {
6614 struct vlan_ethhdr *vhdr;
6615 if (skb_header_cloned(skb) &&
6616 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
6617 goto out_drop;
6618 vhdr = (struct vlan_ethhdr *)skb->data;
6619 vhdr->h_vlan_TCI = htons(tx_flags >>
6620 IXGBE_TX_FLAGS_VLAN_SHIFT);
6621 } else {
6622 tx_flags |= IXGBE_TX_FLAGS_HW_VLAN;
6623 }
6624 }
Alexander Duycka535c302011-05-27 05:31:52 +00006625
Alexander Duycka535c302011-05-27 05:31:52 +00006626 /* record the location of the first descriptor for this packet */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006627 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
Alexander Duycka535c302011-05-27 05:31:52 +00006628
Yi Zoueacd73f2009-05-13 13:11:06 +00006629#ifdef IXGBE_FCOE
Alexander Duyck66f32a82011-06-29 05:43:22 +00006630 /* setup tx offload for FCoE */
6631 if ((protocol == __constant_htons(ETH_P_FCOE)) &&
6632 (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) {
Alexander Duyck897ab152011-05-27 05:31:47 +00006633 tso = ixgbe_fso(tx_ring, skb, tx_flags, &hdr_len);
6634 if (tso < 0)
6635 goto out_drop;
6636 else if (tso)
Alexander Duyck66f32a82011-06-29 05:43:22 +00006637 tx_flags |= IXGBE_TX_FLAGS_FSO |
6638 IXGBE_TX_FLAGS_FCOE;
6639 else
6640 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Auke Kok9a799d72007-09-15 14:07:45 -07006641
Alexander Duyck66f32a82011-06-29 05:43:22 +00006642 goto xmit_fcoe;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006643 }
Auke Kok9a799d72007-09-15 14:07:45 -07006644
Auke Kok9a799d72007-09-15 14:07:45 -07006645#endif /* IXGBE_FCOE */
Alexander Duyck66f32a82011-06-29 05:43:22 +00006646 /* setup IPv4/IPv6 offloads */
6647 if (protocol == __constant_htons(ETH_P_IP))
6648 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006649
Alexander Duyck66f32a82011-06-29 05:43:22 +00006650 tso = ixgbe_tso(tx_ring, skb, tx_flags, protocol, &hdr_len);
6651 if (tso < 0)
Auke Kok9a799d72007-09-15 14:07:45 -07006652 goto out_drop;
Alexander Duyck66f32a82011-06-29 05:43:22 +00006653 else if (tso)
6654 tx_flags |= IXGBE_TX_FLAGS_TSO;
6655 else if (ixgbe_tx_csum(tx_ring, skb, tx_flags, protocol))
6656 tx_flags |= IXGBE_TX_FLAGS_CSUM;
6657
6658 /* add the ATR filter if ATR is on */
6659 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state))
6660 ixgbe_atr(tx_ring, skb, tx_flags, protocol);
6661
6662#ifdef IXGBE_FCOE
6663xmit_fcoe:
6664#endif /* IXGBE_FCOE */
Alexander Duyckd3d00232011-07-15 02:31:25 +00006665 ixgbe_tx_map(tx_ring, skb, first, tx_flags, hdr_len);
6666
6667 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006668
6669 return NETDEV_TX_OK;
Alexander Duyck897ab152011-05-27 05:31:47 +00006670
6671out_drop:
6672 dev_kfree_skb_any(skb);
6673 return NETDEV_TX_OK;
Auke Kok9a799d72007-09-15 14:07:45 -07006674}
6675
6676static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
6677{
6678 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6679 struct ixgbe_ring *tx_ring;
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006680
Auke Kok9a799d72007-09-15 14:07:45 -07006681 tx_ring = adapter->tx_ring[skb->queue_mapping];
6682 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
6683}
6684
6685/**
6686 * ixgbe_set_mac - Change the Ethernet Address of the NIC
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006687 * @netdev: network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07006688 * @p: pointer to an address structure
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006689 *
Auke Kok9a799d72007-09-15 14:07:45 -07006690 * Returns 0 on success, negative on failure
6691 **/
6692static int ixgbe_set_mac(struct net_device *netdev, void *p)
6693{
Ben Hutchings6b73e102009-04-29 08:08:58 +00006694 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6695 struct ixgbe_hw *hw = &adapter->hw;
6696 struct sockaddr *addr = p;
6697
6698 if (!is_valid_ether_addr(addr->sa_data))
6699 return -EADDRNOTAVAIL;
6700
6701 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
6702 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
6703
6704 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
6705 IXGBE_RAH_AV);
6706
6707 return 0;
6708}
6709
6710static int
6711ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6712{
6713 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6714 struct ixgbe_hw *hw = &adapter->hw;
6715 u16 value;
6716 int rc;
6717
6718 if (prtad != hw->phy.mdio.prtad)
6719 return -EINVAL;
6720 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6721 if (!rc)
6722 rc = value;
6723 return rc;
6724}
6725
6726static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6727 u16 addr, u16 value)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006728{
6729 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jiri Pirko31278e72009-06-17 01:12:19 +00006730 struct ixgbe_hw *hw = &adapter->hw;
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006731
6732 if (prtad != hw->phy.mdio.prtad)
6733 return -EINVAL;
6734 return hw->phy.ops.write_reg(hw, addr, devad, value);
6735}
6736
6737static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6738{
6739 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6740
6741 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6742}
6743
6744/**
6745 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
6746 * netdev->dev_addrs
6747 * @netdev: network interface device structure
6748 *
6749 * Returns non-zero on failure
6750 **/
Jiri Pirko31278e72009-06-17 01:12:19 +00006751static int ixgbe_add_sanmac_netdev(struct net_device *dev)
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006752{
6753 int err = 0;
6754 struct ixgbe_adapter *adapter = netdev_priv(dev);
6755 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6756
6757 if (is_valid_ether_addr(mac->san_addr)) {
6758 rtnl_lock();
6759 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6760 rtnl_unlock();
6761 }
6762 return err;
6763}
6764
6765/**
6766 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
6767 * netdev->dev_addrs
6768 * @netdev: network interface device structure
6769 *
Auke Kok9a799d72007-09-15 14:07:45 -07006770 * Returns non-zero on failure
6771 **/
6772static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6773{
6774 int err = 0;
6775 struct ixgbe_adapter *adapter = netdev_priv(dev);
6776 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6777
6778 if (is_valid_ether_addr(mac->san_addr)) {
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006779 rtnl_lock();
Auke Kok9a799d72007-09-15 14:07:45 -07006780 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006781 rtnl_unlock();
6782 }
6783 return err;
6784}
Auke Kok9a799d72007-09-15 14:07:45 -07006785
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006786#ifdef CONFIG_NET_POLL_CONTROLLER
6787/*
6788 * Polling 'interrupt' - used by things like netconsole to send skbs
6789 * without having to re-enable interrupts. It's not called while
6790 * the interrupt routine is executing.
6791 */
6792static void ixgbe_netpoll(struct net_device *netdev)
6793{
6794 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006795 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006796
6797 /* if interface is down do nothing */
6798 if (test_bit(__IXGBE_DOWN, &adapter->state))
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006799 return;
6800
6801 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Stephen Hemminger00829822008-11-20 20:14:53 -08006802 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006803 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Chris Leeche90d4002009-03-10 16:00:24 +00006804 for (i = 0; i < num_q_vectors; i++) {
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006805 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Alexander Duyck4ff7fb12011-08-31 00:01:11 +00006806 ixgbe_msix_clean_rings(0, q_vector);
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006807 }
6808 } else {
6809 ixgbe_intr(adapter->pdev->irq, netdev);
6810 }
6811 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
6812}
6813#endif
6814
Eric Dumazetde1036b2010-10-20 23:00:04 +00006815static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6816 struct rtnl_link_stats64 *stats)
6817{
6818 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6819 int i;
6820
Eric Dumazet1a515022010-11-16 19:26:42 -08006821 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006822 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006823 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006824 u64 bytes, packets;
6825 unsigned int start;
6826
Eric Dumazet1a515022010-11-16 19:26:42 -08006827 if (ring) {
6828 do {
6829 start = u64_stats_fetch_begin_bh(&ring->syncp);
6830 packets = ring->stats.packets;
6831 bytes = ring->stats.bytes;
6832 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6833 stats->rx_packets += packets;
6834 stats->rx_bytes += bytes;
6835 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006836 }
Eric Dumazet1ac9ad12011-01-12 12:13:14 +00006837
6838 for (i = 0; i < adapter->num_tx_queues; i++) {
6839 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]);
6840 u64 bytes, packets;
6841 unsigned int start;
6842
6843 if (ring) {
6844 do {
6845 start = u64_stats_fetch_begin_bh(&ring->syncp);
6846 packets = ring->stats.packets;
6847 bytes = ring->stats.bytes;
6848 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6849 stats->tx_packets += packets;
6850 stats->tx_bytes += bytes;
6851 }
6852 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006853 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006854 /* following stats updated by ixgbe_watchdog_task() */
6855 stats->multicast = netdev->stats.multicast;
6856 stats->rx_errors = netdev->stats.rx_errors;
6857 stats->rx_length_errors = netdev->stats.rx_length_errors;
6858 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6859 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6860 return stats;
6861}
6862
John Fastabend8b1c0b22011-05-03 02:26:48 +00006863/* ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6864 * #adapter: pointer to ixgbe_adapter
6865 * @tc: number of traffic classes currently enabled
6866 *
6867 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6868 * 802.1Q priority maps to a packet buffer that exists.
6869 */
6870static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc)
6871{
6872 struct ixgbe_hw *hw = &adapter->hw;
6873 u32 reg, rsave;
6874 int i;
6875
6876 /* 82598 have a static priority to TC mapping that can not
6877 * be changed so no validation is needed.
6878 */
6879 if (hw->mac.type == ixgbe_mac_82598EB)
6880 return;
6881
6882 reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
6883 rsave = reg;
6884
6885 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
6886 u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT);
6887
6888 /* If up2tc is out of bounds default to zero */
6889 if (up2tc > tc)
6890 reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT);
6891 }
6892
6893 if (reg != rsave)
6894 IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
6895
6896 return;
6897}
6898
6899
6900/* ixgbe_setup_tc - routine to configure net_device for multiple traffic
6901 * classes.
6902 *
6903 * @netdev: net device to configure
6904 * @tc: number of traffic classes to enable
6905 */
6906int ixgbe_setup_tc(struct net_device *dev, u8 tc)
6907{
John Fastabend8b1c0b22011-05-03 02:26:48 +00006908 struct ixgbe_adapter *adapter = netdev_priv(dev);
6909 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend8b1c0b22011-05-03 02:26:48 +00006910
John Fastabende7589ea2011-07-18 22:38:36 +00006911 /* Multiple traffic classes requires multiple queues */
6912 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
6913 e_err(drv, "Enable failed, needs MSI-X\n");
6914 return -EINVAL;
6915 }
John Fastabend8b1c0b22011-05-03 02:26:48 +00006916
6917 /* Hardware supports up to 8 traffic classes */
6918 if (tc > MAX_TRAFFIC_CLASS ||
6919 (hw->mac.type == ixgbe_mac_82598EB && tc < MAX_TRAFFIC_CLASS))
6920 return -EINVAL;
6921
6922 /* Hardware has to reinitialize queues and interrupts to
6923 * match packet buffer alignment. Unfortunantly, the
6924 * hardware is not flexible enough to do this dynamically.
6925 */
6926 if (netif_running(dev))
6927 ixgbe_close(dev);
6928 ixgbe_clear_interrupt_scheme(adapter);
6929
John Fastabende7589ea2011-07-18 22:38:36 +00006930 if (tc) {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006931 netdev_set_num_tc(dev, tc);
John Fastabende7589ea2011-07-18 22:38:36 +00006932 adapter->last_lfc_mode = adapter->hw.fc.current_mode;
6933
6934 adapter->flags |= IXGBE_FLAG_DCB_ENABLED;
6935 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
6936
6937 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
6938 adapter->hw.fc.requested_mode = ixgbe_fc_none;
6939 } else {
John Fastabend8b1c0b22011-05-03 02:26:48 +00006940 netdev_reset_tc(dev);
6941
John Fastabende7589ea2011-07-18 22:38:36 +00006942 adapter->hw.fc.requested_mode = adapter->last_lfc_mode;
6943
6944 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
6945 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
6946
6947 adapter->temp_dcb_cfg.pfc_mode_enable = false;
6948 adapter->dcb_cfg.pfc_mode_enable = false;
6949 }
6950
John Fastabend8b1c0b22011-05-03 02:26:48 +00006951 ixgbe_init_interrupt_scheme(adapter);
6952 ixgbe_validate_rtr(adapter, tc);
6953 if (netif_running(dev))
6954 ixgbe_open(dev);
6955
6956 return 0;
6957}
Eric Dumazetde1036b2010-10-20 23:00:04 +00006958
Don Skidmore082757a2011-07-21 05:55:00 +00006959void ixgbe_do_reset(struct net_device *netdev)
6960{
6961 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6962
6963 if (netif_running(netdev))
6964 ixgbe_reinit_locked(adapter);
6965 else
6966 ixgbe_reset(adapter);
6967}
6968
6969static u32 ixgbe_fix_features(struct net_device *netdev, u32 data)
6970{
6971 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6972
6973#ifdef CONFIG_DCB
6974 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
6975 data &= ~NETIF_F_HW_VLAN_RX;
6976#endif
6977
6978 /* return error if RXHASH is being enabled when RSS is not supported */
6979 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
6980 data &= ~NETIF_F_RXHASH;
6981
6982 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
6983 if (!(data & NETIF_F_RXCSUM))
6984 data &= ~NETIF_F_LRO;
6985
6986 /* Turn off LRO if not RSC capable or invalid ITR settings */
6987 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) {
6988 data &= ~NETIF_F_LRO;
6989 } else if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
6990 (adapter->rx_itr_setting != 1 &&
6991 adapter->rx_itr_setting > IXGBE_MAX_RSC_INT_RATE)) {
6992 data &= ~NETIF_F_LRO;
6993 e_info(probe, "rx-usecs set too low, not enabling RSC\n");
6994 }
6995
6996 return data;
6997}
6998
6999static int ixgbe_set_features(struct net_device *netdev, u32 data)
7000{
7001 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7002 bool need_reset = false;
7003
7004 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7005 if (!(data & NETIF_F_RXCSUM))
7006 adapter->flags &= ~IXGBE_FLAG_RX_CSUM_ENABLED;
7007 else
7008 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
7009
7010 /* Make sure RSC matches LRO, reset if change */
7011 if (!!(data & NETIF_F_LRO) !=
7012 !!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7013 adapter->flags2 ^= IXGBE_FLAG2_RSC_ENABLED;
7014 switch (adapter->hw.mac.type) {
7015 case ixgbe_mac_X540:
7016 case ixgbe_mac_82599EB:
7017 need_reset = true;
7018 break;
7019 default:
7020 break;
7021 }
7022 }
7023
7024 /*
7025 * Check if Flow Director n-tuple support was enabled or disabled. If
7026 * the state changed, we need to reset.
7027 */
7028 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
7029 /* turn off ATR, enable perfect filters and reset */
7030 if (data & NETIF_F_NTUPLE) {
7031 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7032 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7033 need_reset = true;
7034 }
7035 } else if (!(data & NETIF_F_NTUPLE)) {
7036 /* turn off Flow Director, set ATR and reset */
7037 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7038 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
7039 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7040 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7041 need_reset = true;
7042 }
7043
7044 if (need_reset)
7045 ixgbe_do_reset(netdev);
7046
7047 return 0;
7048
7049}
7050
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007051static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00007052 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007053 .ndo_stop = ixgbe_close,
7054 .ndo_start_xmit = ixgbe_xmit_frame,
7055 .ndo_select_queue = ixgbe_select_queue,
7056 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007057 .ndo_validate_addr = eth_validate_addr,
7058 .ndo_set_mac_address = ixgbe_set_mac,
7059 .ndo_change_mtu = ixgbe_change_mtu,
7060 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007061 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
7062 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00007063 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00007064 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
7065 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
7066 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
7067 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00007068 .ndo_get_stats64 = ixgbe_get_stats64,
John Fastabend24095aa2011-02-23 05:58:03 +00007069 .ndo_setup_tc = ixgbe_setup_tc,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007070#ifdef CONFIG_NET_POLL_CONTROLLER
7071 .ndo_poll_controller = ixgbe_netpoll,
7072#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007073#ifdef IXGBE_FCOE
7074 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
Yi Zou68a683c2011-02-01 07:22:16 +00007075 .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target,
Yi Zou332d4a72009-05-13 13:11:53 +00007076 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00007077 .ndo_fcoe_enable = ixgbe_fcoe_enable,
7078 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00007079 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Yi Zou332d4a72009-05-13 13:11:53 +00007080#endif /* IXGBE_FCOE */
Don Skidmore082757a2011-07-21 05:55:00 +00007081 .ndo_set_features = ixgbe_set_features,
7082 .ndo_fix_features = ixgbe_fix_features,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007083};
7084
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007085static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7086 const struct ixgbe_info *ii)
7087{
7088#ifdef CONFIG_PCI_IOV
7089 struct ixgbe_hw *hw = &adapter->hw;
7090 int err;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00007091 int num_vf_macvlans, i;
7092 struct vf_macvlans *mv_list;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007093
Greg Rose3377eba792010-12-07 08:16:45 +00007094 if (hw->mac.type == ixgbe_mac_82598EB || !max_vfs)
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007095 return;
7096
7097 /* The 82599 supports up to 64 VFs per physical function
7098 * but this implementation limits allocation to 63 so that
7099 * basic networking resources are still available to the
7100 * physical function
7101 */
7102 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
7103 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
7104 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
7105 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007106 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007107 goto err_novfs;
7108 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +00007109
7110 num_vf_macvlans = hw->mac.num_rar_entries -
7111 (IXGBE_MAX_PF_MACVLANS + 1 + adapter->num_vfs);
7112
7113 adapter->mv_list = mv_list = kcalloc(num_vf_macvlans,
7114 sizeof(struct vf_macvlans),
7115 GFP_KERNEL);
7116 if (mv_list) {
7117 /* Initialize list of VF macvlans */
7118 INIT_LIST_HEAD(&adapter->vf_mvs.l);
7119 for (i = 0; i < num_vf_macvlans; i++) {
7120 mv_list->vf = -1;
7121 mv_list->free = true;
7122 mv_list->rar_entry = hw->mac.num_rar_entries -
7123 (i + adapter->num_vfs + 1);
7124 list_add(&mv_list->l, &adapter->vf_mvs.l);
7125 mv_list++;
7126 }
7127 }
7128
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007129 /* If call to enable VFs succeeded then allocate memory
7130 * for per VF control structures.
7131 */
7132 adapter->vfinfo =
7133 kcalloc(adapter->num_vfs,
7134 sizeof(struct vf_data_storage), GFP_KERNEL);
7135 if (adapter->vfinfo) {
7136 /* Now that we're sure SR-IOV is enabled
7137 * and memory allocated set up the mailbox parameters
7138 */
7139 ixgbe_init_mbx_params_pf(hw);
7140 memcpy(&hw->mbx.ops, ii->mbx_ops,
7141 sizeof(hw->mbx.ops));
7142
7143 /* Disable RSC when in SR-IOV mode */
7144 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
7145 IXGBE_FLAG2_RSC_ENABLED);
7146 return;
7147 }
7148
7149 /* Oh oh */
Emil Tantilov396e7992010-07-01 20:05:12 +00007150 e_err(probe, "Unable to allocate memory for VF Data Storage - "
7151 "SRIOV disabled\n");
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007152 pci_disable_sriov(adapter->pdev);
7153
7154err_novfs:
7155 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
7156 adapter->num_vfs = 0;
7157#endif /* CONFIG_PCI_IOV */
7158}
7159
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007160/**
Auke Kok9a799d72007-09-15 14:07:45 -07007161 * ixgbe_probe - Device Initialization Routine
7162 * @pdev: PCI device information struct
7163 * @ent: entry in ixgbe_pci_tbl
7164 *
7165 * Returns 0 on success, negative on failure
7166 *
7167 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7168 * The OS initialization, configuring of the adapter private structure,
7169 * and a hardware reset occur.
7170 **/
7171static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007172 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07007173{
7174 struct net_device *netdev;
7175 struct ixgbe_adapter *adapter = NULL;
7176 struct ixgbe_hw *hw;
7177 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07007178 static int cards_found;
7179 int i, err, pci_using_dac;
Don Skidmore289700db2010-12-03 03:32:58 +00007180 u8 part_str[IXGBE_PBANUM_LENGTH];
John Fastabendc85a2612010-02-25 23:15:21 +00007181 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00007182#ifdef IXGBE_FCOE
7183 u16 device_caps;
7184#endif
Don Skidmore289700db2010-12-03 03:32:58 +00007185 u32 eec;
Auke Kok9a799d72007-09-15 14:07:45 -07007186
Andy Gospodarekbded64a2010-07-21 06:40:31 +00007187 /* Catch broken hardware that put the wrong VF device ID in
7188 * the PCIe SR-IOV capability.
7189 */
7190 if (pdev->is_virtfn) {
7191 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
7192 pci_name(pdev), pdev->vendor, pdev->device);
7193 return -EINVAL;
7194 }
7195
gouji-new9ce77662009-05-06 10:44:45 +00007196 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007197 if (err)
7198 return err;
7199
Nick Nunley1b507732010-04-27 13:10:27 +00007200 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
7201 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07007202 pci_using_dac = 1;
7203 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00007204 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007205 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00007206 err = dma_set_coherent_mask(&pdev->dev,
7207 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07007208 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007209 dev_err(&pdev->dev,
7210 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007211 goto err_dma;
7212 }
7213 }
7214 pci_using_dac = 0;
7215 }
7216
gouji-new9ce77662009-05-06 10:44:45 +00007217 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007218 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07007219 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00007220 dev_err(&pdev->dev,
7221 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07007222 goto err_pci_reg;
7223 }
7224
Frans Pop19d5afd2009-10-02 10:04:12 -07007225 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007226
Auke Kok9a799d72007-09-15 14:07:45 -07007227 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07007228 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007229
John Fastabende901acd2011-04-26 07:26:08 +00007230#ifdef CONFIG_IXGBE_DCB
7231 indices *= MAX_TRAFFIC_CLASS;
7232#endif
7233
John Fastabendc85a2612010-02-25 23:15:21 +00007234 if (ii->mac == ixgbe_mac_82598EB)
7235 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7236 else
7237 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7238
John Fastabende901acd2011-04-26 07:26:08 +00007239#ifdef IXGBE_FCOE
John Fastabendc85a2612010-02-25 23:15:21 +00007240 indices += min_t(unsigned int, num_possible_cpus(),
7241 IXGBE_MAX_FCOE_INDICES);
7242#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007243 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007244 if (!netdev) {
7245 err = -ENOMEM;
7246 goto err_alloc_etherdev;
7247 }
7248
Auke Kok9a799d72007-09-15 14:07:45 -07007249 SET_NETDEV_DEV(netdev, &pdev->dev);
7250
Auke Kok9a799d72007-09-15 14:07:45 -07007251 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007252 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007253
7254 adapter->netdev = netdev;
7255 adapter->pdev = pdev;
7256 hw = &adapter->hw;
7257 hw->back = adapter;
7258 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7259
Jeff Kirsher05857982008-09-11 19:57:00 -07007260 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007261 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007262 if (!hw->hw_addr) {
7263 err = -EIO;
7264 goto err_ioremap;
7265 }
7266
7267 for (i = 1; i <= 5; i++) {
7268 if (pci_resource_len(pdev, i) == 0)
7269 continue;
7270 }
7271
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007272 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007273 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007274 netdev->watchdog_timeo = 5 * HZ;
Don Skidmore9fe93af2010-12-03 09:33:54 +00007275 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
Auke Kok9a799d72007-09-15 14:07:45 -07007276
Auke Kok9a799d72007-09-15 14:07:45 -07007277 adapter->bd_number = cards_found;
7278
Auke Kok9a799d72007-09-15 14:07:45 -07007279 /* Setup hw api */
7280 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007281 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007282
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007283 /* EEPROM */
7284 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7285 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7286 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7287 if (!(eec & (1 << 8)))
7288 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7289
7290 /* PHY */
7291 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007292 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007293 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7294 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7295 hw->phy.mdio.mmds = 0;
7296 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7297 hw->phy.mdio.dev = netdev;
7298 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7299 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007300
Don Skidmore8ca783a2009-05-26 20:40:47 -07007301 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007302
7303 /* setup the private structure */
7304 err = ixgbe_sw_init(adapter);
7305 if (err)
7306 goto err_sw_init;
7307
Don Skidmoree86bff02010-02-11 04:14:08 +00007308 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007309 switch (adapter->hw.mac.type) {
7310 case ixgbe_mac_82599EB:
7311 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007312 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007313 break;
7314 default:
7315 break;
7316 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007317
Don Skidmorebf069c92009-05-07 10:39:54 +00007318 /*
7319 * If there is a fan on this device and it has failed log the
7320 * failure.
7321 */
7322 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7323 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7324 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007325 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007326 }
7327
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007328 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007329 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007330 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007331 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007332 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7333 hw->mac.type == ixgbe_mac_82598EB) {
Don Skidmore8ca783a2009-05-26 20:40:47 -07007334 err = 0;
7335 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Alexander Duyck70864002011-04-27 09:13:56 +00007336 e_dev_err("failed to load because an unsupported SFP+ "
Emil Tantilov849c4542010-06-03 16:53:41 +00007337 "module type was detected.\n");
7338 e_dev_err("Reload the driver after installing a supported "
7339 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007340 goto err_sw_init;
7341 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007342 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007343 goto err_sw_init;
7344 }
7345
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007346 ixgbe_probe_vf(adapter, ii);
7347
Emil Tantilov396e7992010-07-01 20:05:12 +00007348 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007349 NETIF_F_IP_CSUM |
Don Skidmore082757a2011-07-21 05:55:00 +00007350 NETIF_F_IPV6_CSUM |
Joe Perchese8e9f692010-09-07 21:34:53 +00007351 NETIF_F_HW_VLAN_TX |
7352 NETIF_F_HW_VLAN_RX |
Don Skidmore082757a2011-07-21 05:55:00 +00007353 NETIF_F_HW_VLAN_FILTER |
7354 NETIF_F_TSO |
7355 NETIF_F_TSO6 |
Don Skidmore082757a2011-07-21 05:55:00 +00007356 NETIF_F_RXHASH |
7357 NETIF_F_RXCSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007358
Don Skidmore082757a2011-07-21 05:55:00 +00007359 netdev->hw_features = netdev->features;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007360
Don Skidmore58be7662011-04-12 09:42:11 +00007361 switch (adapter->hw.mac.type) {
7362 case ixgbe_mac_82599EB:
7363 case ixgbe_mac_X540:
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007364 netdev->features |= NETIF_F_SCTP_CSUM;
Don Skidmore082757a2011-07-21 05:55:00 +00007365 netdev->hw_features |= NETIF_F_SCTP_CSUM |
7366 NETIF_F_NTUPLE;
Don Skidmore58be7662011-04-12 09:42:11 +00007367 break;
7368 default:
7369 break;
7370 }
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007371
Jeff Kirsherad31c402008-06-05 04:05:30 -07007372 netdev->vlan_features |= NETIF_F_TSO;
7373 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007374 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007375 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007376 netdev->vlan_features |= NETIF_F_SG;
7377
Jiri Pirko01789342011-08-16 06:29:00 +00007378 netdev->priv_flags |= IFF_UNICAST_FLT;
7379
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007380 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7381 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7382 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007383
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007384#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007385 netdev->dcbnl_ops = &dcbnl_ops;
7386#endif
7387
Yi Zoueacd73f2009-05-13 13:11:06 +00007388#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007389 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007390 if (hw->mac.ops.get_device_caps) {
7391 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007392 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7393 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007394 }
7395 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007396 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7397 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7398 netdev->vlan_features |= NETIF_F_FSO;
7399 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7400 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007401#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007402 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007403 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007404 netdev->vlan_features |= NETIF_F_HIGHDMA;
7405 }
Auke Kok9a799d72007-09-15 14:07:45 -07007406
Don Skidmore082757a2011-07-21 05:55:00 +00007407 if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)
7408 netdev->hw_features |= NETIF_F_LRO;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007409 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007410 netdev->features |= NETIF_F_LRO;
7411
Auke Kok9a799d72007-09-15 14:07:45 -07007412 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007413 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007414 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007415 err = -EIO;
7416 goto err_eeprom;
7417 }
7418
7419 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7420 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7421
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007422 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007423 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007424 err = -EIO;
7425 goto err_eeprom;
7426 }
7427
Don Skidmorec6ecf392010-12-03 03:31:51 +00007428 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7429 if (hw->mac.ops.disable_tx_laser &&
7430 ((hw->phy.multispeed_fiber) ||
Don Skidmore9f911702010-12-03 13:24:05 +00007431 ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) &&
Don Skidmorec6ecf392010-12-03 03:31:51 +00007432 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00007433 hw->mac.ops.disable_tx_laser(hw);
7434
Alexander Duyck70864002011-04-27 09:13:56 +00007435 setup_timer(&adapter->service_timer, &ixgbe_service_timer,
7436 (unsigned long) adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007437
Alexander Duyck70864002011-04-27 09:13:56 +00007438 INIT_WORK(&adapter->service_task, ixgbe_service_task);
7439 clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007440
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007441 err = ixgbe_init_interrupt_scheme(adapter);
7442 if (err)
7443 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007444
Don Skidmore082757a2011-07-21 05:55:00 +00007445 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) {
7446 netdev->hw_features &= ~NETIF_F_RXHASH;
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007447 netdev->features &= ~NETIF_F_RXHASH;
Don Skidmore082757a2011-07-21 05:55:00 +00007448 }
Emil Tantilov67a74ee2011-04-23 04:50:40 +00007449
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007450 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007451 case IXGBE_DEV_ID_82599_SFP:
7452 /* Only this subdevice supports WOL */
7453 if (pdev->subsystem_device == IXGBE_SUBDEV_ID_82599_SFP)
Andy Gospodarek9417c462011-07-16 07:31:33 +00007454 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0b077fe2010-12-03 03:32:13 +00007455 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007456 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7457 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007458 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
Andy Gospodarek9417c462011-07-16 07:31:33 +00007459 adapter->wol = IXGBE_WUFC_MAG;
Don Skidmore0b077fe2010-12-03 03:32:13 +00007460 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007461 case IXGBE_DEV_ID_82599_KX4:
Andy Gospodarek9417c462011-07-16 07:31:33 +00007462 adapter->wol = IXGBE_WUFC_MAG;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007463 break;
7464 default:
7465 adapter->wol = 0;
7466 break;
7467 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007468 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7469
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007470 /* pick up the PCI bus settings for reporting later */
7471 hw->mac.ops.get_bus_info(hw);
7472
Auke Kok9a799d72007-09-15 14:07:45 -07007473 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007474 e_dev_info("(PCI Express:%s:%s) %pM\n",
Don Skidmore67163442011-04-26 08:00:00 +00007475 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" :
7476 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" :
Joe Perchese8e9f692010-09-07 21:34:53 +00007477 "Unknown"),
7478 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7479 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7480 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7481 "Unknown"),
7482 netdev->dev_addr);
Don Skidmore289700db2010-12-03 03:32:58 +00007483
7484 err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH);
7485 if (err)
Don Skidmore9fe93af2010-12-03 09:33:54 +00007486 strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007487 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Don Skidmore289700db2010-12-03 03:32:58 +00007488 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
Emil Tantilov849c4542010-06-03 16:53:41 +00007489 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
Don Skidmore289700db2010-12-03 03:32:58 +00007490 part_str);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007491 else
Don Skidmore289700db2010-12-03 03:32:58 +00007492 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7493 hw->mac.type, hw->phy.type, part_str);
Auke Kok9a799d72007-09-15 14:07:45 -07007494
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007495 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007496 e_dev_warn("PCI-Express bandwidth available for this card is "
7497 "not sufficient for optimal performance.\n");
7498 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7499 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007500 }
7501
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -08007502 /* save off EEPROM version number */
7503 hw->eeprom.ops.read(hw, 0x29, &adapter->eeprom_version);
7504
Auke Kok9a799d72007-09-15 14:07:45 -07007505 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007506 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007507
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007508 if (err == IXGBE_ERR_EEPROM_VERSION) {
7509 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007510 e_dev_warn("This device is a pre-production adapter/LOM. "
7511 "Please be aware there may be issues associated "
7512 "with your hardware. If you are experiencing "
7513 "problems please contact your Intel or hardware "
7514 "representative who provided you with this "
7515 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007516 }
Auke Kok9a799d72007-09-15 14:07:45 -07007517 strcpy(netdev->name, "eth%d");
7518 err = register_netdev(netdev);
7519 if (err)
7520 goto err_register;
7521
Jesse Brandeburg54386462009-04-17 20:44:27 +00007522 /* carrier off reporting is important to ethtool even BEFORE open */
7523 netif_carrier_off(netdev);
7524
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007525#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007526 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007527 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007528 ixgbe_setup_dca(adapter);
7529 }
7530#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007531 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007532 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007533 for (i = 0; i < adapter->num_vfs; i++)
7534 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7535 }
7536
Emil Tantilov9612de92011-05-07 07:40:20 +00007537 /* Inform firmware of driver version */
7538 if (hw->mac.ops.set_fw_drv_ver)
Don Skidmorea38a1042011-05-20 03:05:14 +00007539 hw->mac.ops.set_fw_drv_ver(hw, MAJ, MIN, BUILD,
7540 FW_CEM_UNUSED_VER);
Emil Tantilov9612de92011-05-07 07:40:20 +00007541
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007542 /* add san mac addr to netdev */
7543 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007544
Emil Tantilov849c4542010-06-03 16:53:41 +00007545 e_dev_info("Intel(R) 10 Gigabit Network Connection\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007546 cards_found++;
7547 return 0;
7548
7549err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007550 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007551 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007552err_sw_init:
7553err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007554 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7555 ixgbe_disable_sriov(adapter);
Alexander Duyck70864002011-04-27 09:13:56 +00007556 adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
Auke Kok9a799d72007-09-15 14:07:45 -07007557 iounmap(hw->hw_addr);
7558err_ioremap:
7559 free_netdev(netdev);
7560err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007561 pci_release_selected_regions(pdev,
7562 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007563err_pci_reg:
7564err_dma:
7565 pci_disable_device(pdev);
7566 return err;
7567}
7568
7569/**
7570 * ixgbe_remove - Device Removal Routine
7571 * @pdev: PCI device information struct
7572 *
7573 * ixgbe_remove is called by the PCI subsystem to alert the driver
7574 * that it should release a PCI device. The could be caused by a
7575 * Hot-Plug event, or because the driver is going to be removed from
7576 * memory.
7577 **/
7578static void __devexit ixgbe_remove(struct pci_dev *pdev)
7579{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007580 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7581 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007582
7583 set_bit(__IXGBE_DOWN, &adapter->state);
Alexander Duyck70864002011-04-27 09:13:56 +00007584 cancel_work_sync(&adapter->service_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007585
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007586#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007587 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7588 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7589 dca_remove_requester(&pdev->dev);
7590 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7591 }
7592
7593#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007594#ifdef IXGBE_FCOE
7595 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7596 ixgbe_cleanup_fcoe(adapter);
7597
7598#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007599
7600 /* remove the added san mac */
7601 ixgbe_del_sanmac_netdev(netdev);
7602
Donald Skidmorec4900be2008-11-20 21:11:42 -08007603 if (netdev->reg_state == NETREG_REGISTERED)
7604 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007605
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007606 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7607 ixgbe_disable_sriov(adapter);
7608
Alexander Duyck7a921c92009-05-06 10:43:28 +00007609 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007610
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007611 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007612
7613 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007614 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007615 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007616
Emil Tantilov849c4542010-06-03 16:53:41 +00007617 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007618
Auke Kok9a799d72007-09-15 14:07:45 -07007619 free_netdev(netdev);
7620
Frans Pop19d5afd2009-10-02 10:04:12 -07007621 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007622
Auke Kok9a799d72007-09-15 14:07:45 -07007623 pci_disable_device(pdev);
7624}
7625
7626/**
7627 * ixgbe_io_error_detected - called when PCI error is detected
7628 * @pdev: Pointer to PCI device
7629 * @state: The current pci connection state
7630 *
7631 * This function is called after a PCI bus error affecting
7632 * this device has been detected.
7633 */
7634static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007635 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007636{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007637 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7638 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007639
7640 netif_device_detach(netdev);
7641
Breno Leitao3044b8d2009-05-06 10:44:26 +00007642 if (state == pci_channel_io_perm_failure)
7643 return PCI_ERS_RESULT_DISCONNECT;
7644
Auke Kok9a799d72007-09-15 14:07:45 -07007645 if (netif_running(netdev))
7646 ixgbe_down(adapter);
7647 pci_disable_device(pdev);
7648
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007649 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007650 return PCI_ERS_RESULT_NEED_RESET;
7651}
7652
7653/**
7654 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7655 * @pdev: Pointer to PCI device
7656 *
7657 * Restart the card from scratch, as if from a cold-boot.
7658 */
7659static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7660{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007661 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007662 pci_ers_result_t result;
7663 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007664
gouji-new9ce77662009-05-06 10:44:45 +00007665 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007666 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007667 result = PCI_ERS_RESULT_DISCONNECT;
7668 } else {
7669 pci_set_master(pdev);
7670 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007671 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007672
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007673 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007674
7675 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007676 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007677 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007678 }
Auke Kok9a799d72007-09-15 14:07:45 -07007679
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007680 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7681 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007682 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7683 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007684 /* non-fatal, continue */
7685 }
Auke Kok9a799d72007-09-15 14:07:45 -07007686
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007687 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007688}
7689
7690/**
7691 * ixgbe_io_resume - called when traffic can start flowing again.
7692 * @pdev: Pointer to PCI device
7693 *
7694 * This callback is called when the error recovery driver tells us that
7695 * its OK to resume normal operation.
7696 */
7697static void ixgbe_io_resume(struct pci_dev *pdev)
7698{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007699 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7700 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007701
7702 if (netif_running(netdev)) {
7703 if (ixgbe_up(adapter)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007704 e_info(probe, "ixgbe_up failed after reset\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007705 return;
7706 }
7707 }
7708
7709 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007710}
7711
7712static struct pci_error_handlers ixgbe_err_handler = {
7713 .error_detected = ixgbe_io_error_detected,
7714 .slot_reset = ixgbe_io_slot_reset,
7715 .resume = ixgbe_io_resume,
7716};
7717
7718static struct pci_driver ixgbe_driver = {
7719 .name = ixgbe_driver_name,
7720 .id_table = ixgbe_pci_tbl,
7721 .probe = ixgbe_probe,
7722 .remove = __devexit_p(ixgbe_remove),
7723#ifdef CONFIG_PM
7724 .suspend = ixgbe_suspend,
7725 .resume = ixgbe_resume,
7726#endif
7727 .shutdown = ixgbe_shutdown,
7728 .err_handler = &ixgbe_err_handler
7729};
7730
7731/**
7732 * ixgbe_init_module - Driver Registration Routine
7733 *
7734 * ixgbe_init_module is the first routine called when the driver is
7735 * loaded. All it does is register with the PCI subsystem.
7736 **/
7737static int __init ixgbe_init_module(void)
7738{
7739 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007740 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007741 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007742
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007743#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007744 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007745#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007746
Auke Kok9a799d72007-09-15 14:07:45 -07007747 ret = pci_register_driver(&ixgbe_driver);
7748 return ret;
7749}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007750
Auke Kok9a799d72007-09-15 14:07:45 -07007751module_init(ixgbe_init_module);
7752
7753/**
7754 * ixgbe_exit_module - Driver Exit Cleanup Routine
7755 *
7756 * ixgbe_exit_module is called just before the driver is removed
7757 * from memory.
7758 **/
7759static void __exit ixgbe_exit_module(void)
7760{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007761#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007762 dca_unregister_notify(&dca_notifier);
7763#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007764 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007765 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007766}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007767
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007768#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007769static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007770 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007771{
7772 int ret_val;
7773
7774 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007775 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007776
7777 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7778}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007779
Alexander Duyckb4533682009-03-31 21:32:42 +00007780#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007781
Auke Kok9a799d72007-09-15 14:07:45 -07007782module_exit(ixgbe_exit_module);
7783
7784/* ixgbe_main.c */