blob: 5f4c93d40a459785588ccebcc290431eabf7f65d [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Shannon Nelson8c47eaa2010-01-13 01:49:34 +00004 Copyright(c) 1999 - 2010 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>
35#include <linux/ip.h>
36#include <linux/tcp.h>
Lucy Liu60127862009-07-22 14:07:33 +000037#include <linux/pkt_sched.h>
Auke Kok9a799d72007-09-15 14:07:45 -070038#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <net/checksum.h>
41#include <net/ip6_checksum.h>
42#include <linux/ethtool.h>
43#include <linux/if_vlan.h>
Yi Zoueacd73f2009-05-13 13:11:06 +000044#include <scsi/fc/fc_fcoe.h>
Auke Kok9a799d72007-09-15 14:07:45 -070045
46#include "ixgbe.h"
47#include "ixgbe_common.h"
Don Skidmoreee5f7842009-11-06 12:56:20 +000048#include "ixgbe_dcb_82599.h"
Greg Rose1cdd1ec2010-01-09 02:26:46 +000049#include "ixgbe_sriov.h"
Auke Kok9a799d72007-09-15 14:07:45 -070050
51char ixgbe_driver_name[] = "ixgbe";
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070052static const char ixgbe_driver_string[] =
Joe Perchese8e9f692010-09-07 21:34:53 +000053 "Intel(R) 10 Gigabit PCI Express Network Driver";
Auke Kok9a799d72007-09-15 14:07:45 -070054
Don Skidmore9a2d09c2010-11-21 09:55:10 -080055#define DRV_VERSION "3.0.12-k2"
Stephen Hemminger9c8eb722007-10-29 10:46:24 -070056const char ixgbe_driver_version[] = DRV_VERSION;
Shannon Nelson8c47eaa2010-01-13 01:49:34 +000057static char ixgbe_copyright[] = "Copyright (c) 1999-2010 Intel Corporation.";
Auke Kok9a799d72007-09-15 14:07:45 -070058
59static const struct ixgbe_info *ixgbe_info_tbl[] = {
Peter P Waskiewiczb4617242008-09-11 20:04:46 -070060 [board_82598] = &ixgbe_82598_info,
PJ Waskiewicze8e26352009-02-27 15:45:05 +000061 [board_82599] = &ixgbe_82599_info,
Don Skidmorefe15e8e2010-11-16 19:27:16 -080062 [board_X540] = &ixgbe_X540_info,
Auke Kok9a799d72007-09-15 14:07:45 -070063};
64
65/* ixgbe_pci_tbl - PCI Device ID Table
66 *
67 * Wildcard entries (PCI_ANY_ID) should come last
68 * Last entry must be all 0s
69 *
70 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
71 * Class, Class Mask, private data (not used) }
72 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000073static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Don Skidmore1e336d02009-01-26 20:57:51 -080074 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598),
75 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070076 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070077 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070078 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070079 board_82598 },
Jesse Brandeburg0befdb32008-10-31 00:46:40 -070080 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT),
81 board_82598 },
Peter P Waskiewicz Jr3845bec2009-07-16 15:50:52 +000082 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2),
83 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070084 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4),
Auke Kok3957d632007-10-31 15:22:10 -070085 board_82598 },
Jesse Brandeburg8d792cd2008-08-08 16:24:19 -070086 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT),
87 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -080088 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT),
89 board_82598 },
90 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM),
91 board_82598 },
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -070092 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR),
93 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -080094 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM),
95 board_82598 },
Don Skidmore2f21bdd2009-02-01 01:18:23 -080096 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX),
97 board_82598 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +000098 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4),
99 board_82599 },
Peter P Waskiewicz Jr1fcf03e2009-05-17 20:58:04 +0000100 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM),
101 board_82599 },
Don Skidmore74757d42009-12-08 07:22:23 +0000102 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR),
103 board_82599 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000104 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP),
105 board_82599 },
Don Skidmore38ad1c82009-10-08 15:35:58 +0000106 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM),
107 board_82599 },
Don Skidmoredbfec662009-10-02 08:58:25 +0000108 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ),
109 board_82599 },
Peter P Waskiewicz Jr89111842009-09-14 07:47:49 +0000110 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4),
111 board_82599 },
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700112 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM),
113 board_82599 },
Don Skidmore312eb932009-10-02 08:58:04 +0000114 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE),
115 board_82599 },
Don Skidmoreb93a2222010-11-16 19:27:17 -0800116 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T),
117 board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700118
119 /* required last entry */
120 {0, }
121};
122MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
123
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400124#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800125static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000126 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800127static struct notifier_block dca_notifier = {
128 .notifier_call = ixgbe_notify_dca,
129 .next = NULL,
130 .priority = 0
131};
132#endif
133
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000134#ifdef CONFIG_PCI_IOV
135static unsigned int max_vfs;
136module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000137MODULE_PARM_DESC(max_vfs,
138 "Maximum number of virtual functions to allocate per physical function");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000139#endif /* CONFIG_PCI_IOV */
140
Auke Kok9a799d72007-09-15 14:07:45 -0700141MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
142MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
143MODULE_LICENSE("GPL");
144MODULE_VERSION(DRV_VERSION);
145
146#define DEFAULT_DEBUG_LEVEL_SHIFT 3
147
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000148static inline void ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
149{
150 struct ixgbe_hw *hw = &adapter->hw;
151 u32 gcr;
152 u32 gpie;
153 u32 vmdctl;
154
155#ifdef CONFIG_PCI_IOV
156 /* disable iov and allow time for transactions to clear */
157 pci_disable_sriov(adapter->pdev);
158#endif
159
160 /* turn off device IOV mode */
161 gcr = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
162 gcr &= ~(IXGBE_GCR_EXT_SRIOV);
163 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr);
164 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
165 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
166 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
167
168 /* set default pool back to 0 */
169 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
170 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
171 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
172
173 /* take a breather then clean up driver data */
174 msleep(100);
Joe Perchese8e9f692010-09-07 21:34:53 +0000175
176 kfree(adapter->vfinfo);
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000177 adapter->vfinfo = NULL;
178
179 adapter->num_vfs = 0;
180 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
181}
182
Taku Izumidcd79ae2010-04-27 14:39:53 +0000183struct ixgbe_reg_info {
184 u32 ofs;
185 char *name;
186};
187
188static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
189
190 /* General Registers */
191 {IXGBE_CTRL, "CTRL"},
192 {IXGBE_STATUS, "STATUS"},
193 {IXGBE_CTRL_EXT, "CTRL_EXT"},
194
195 /* Interrupt Registers */
196 {IXGBE_EICR, "EICR"},
197
198 /* RX Registers */
199 {IXGBE_SRRCTL(0), "SRRCTL"},
200 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
201 {IXGBE_RDLEN(0), "RDLEN"},
202 {IXGBE_RDH(0), "RDH"},
203 {IXGBE_RDT(0), "RDT"},
204 {IXGBE_RXDCTL(0), "RXDCTL"},
205 {IXGBE_RDBAL(0), "RDBAL"},
206 {IXGBE_RDBAH(0), "RDBAH"},
207
208 /* TX Registers */
209 {IXGBE_TDBAL(0), "TDBAL"},
210 {IXGBE_TDBAH(0), "TDBAH"},
211 {IXGBE_TDLEN(0), "TDLEN"},
212 {IXGBE_TDH(0), "TDH"},
213 {IXGBE_TDT(0), "TDT"},
214 {IXGBE_TXDCTL(0), "TXDCTL"},
215
216 /* List Terminator */
217 {}
218};
219
220
221/*
222 * ixgbe_regdump - register printout routine
223 */
224static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
225{
226 int i = 0, j = 0;
227 char rname[16];
228 u32 regs[64];
229
230 switch (reginfo->ofs) {
231 case IXGBE_SRRCTL(0):
232 for (i = 0; i < 64; i++)
233 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
234 break;
235 case IXGBE_DCA_RXCTRL(0):
236 for (i = 0; i < 64; i++)
237 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
238 break;
239 case IXGBE_RDLEN(0):
240 for (i = 0; i < 64; i++)
241 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
242 break;
243 case IXGBE_RDH(0):
244 for (i = 0; i < 64; i++)
245 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
246 break;
247 case IXGBE_RDT(0):
248 for (i = 0; i < 64; i++)
249 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
250 break;
251 case IXGBE_RXDCTL(0):
252 for (i = 0; i < 64; i++)
253 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
254 break;
255 case IXGBE_RDBAL(0):
256 for (i = 0; i < 64; i++)
257 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
258 break;
259 case IXGBE_RDBAH(0):
260 for (i = 0; i < 64; i++)
261 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
262 break;
263 case IXGBE_TDBAL(0):
264 for (i = 0; i < 64; i++)
265 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
266 break;
267 case IXGBE_TDBAH(0):
268 for (i = 0; i < 64; i++)
269 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
270 break;
271 case IXGBE_TDLEN(0):
272 for (i = 0; i < 64; i++)
273 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
274 break;
275 case IXGBE_TDH(0):
276 for (i = 0; i < 64; i++)
277 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
278 break;
279 case IXGBE_TDT(0):
280 for (i = 0; i < 64; i++)
281 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
282 break;
283 case IXGBE_TXDCTL(0):
284 for (i = 0; i < 64; i++)
285 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
286 break;
287 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000288 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000289 IXGBE_READ_REG(hw, reginfo->ofs));
290 return;
291 }
292
293 for (i = 0; i < 8; i++) {
294 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000295 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000296 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000297 pr_cont(" %08x", regs[i*8+j]);
298 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000299 }
300
301}
302
303/*
304 * ixgbe_dump - Print registers, tx-rings and rx-rings
305 */
306static void ixgbe_dump(struct ixgbe_adapter *adapter)
307{
308 struct net_device *netdev = adapter->netdev;
309 struct ixgbe_hw *hw = &adapter->hw;
310 struct ixgbe_reg_info *reginfo;
311 int n = 0;
312 struct ixgbe_ring *tx_ring;
313 struct ixgbe_tx_buffer *tx_buffer_info;
314 union ixgbe_adv_tx_desc *tx_desc;
315 struct my_u0 { u64 a; u64 b; } *u0;
316 struct ixgbe_ring *rx_ring;
317 union ixgbe_adv_rx_desc *rx_desc;
318 struct ixgbe_rx_buffer *rx_buffer_info;
319 u32 staterr;
320 int i = 0;
321
322 if (!netif_msg_hw(adapter))
323 return;
324
325 /* Print netdevice Info */
326 if (netdev) {
327 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000328 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000329 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000330 pr_info("%-15s %016lX %016lX %016lX\n",
331 netdev->name,
332 netdev->state,
333 netdev->trans_start,
334 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000335 }
336
337 /* Print Registers */
338 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000339 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000340 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
341 reginfo->name; reginfo++) {
342 ixgbe_regdump(hw, reginfo);
343 }
344
345 /* Print TX Ring Summary */
346 if (!netdev || !netif_running(netdev))
347 goto exit;
348
349 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000350 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000351 for (n = 0; n < adapter->num_tx_queues; n++) {
352 tx_ring = adapter->tx_ring[n];
353 tx_buffer_info =
354 &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Joe Perchesc7689572010-09-07 21:35:17 +0000355 pr_info(" %5d %5X %5X %016llX %04X %3X %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000356 n, tx_ring->next_to_use, tx_ring->next_to_clean,
357 (u64)tx_buffer_info->dma,
358 tx_buffer_info->length,
359 tx_buffer_info->next_to_watch,
360 (u64)tx_buffer_info->time_stamp);
361 }
362
363 /* Print TX Rings */
364 if (!netif_msg_tx_done(adapter))
365 goto rx_ring_summary;
366
367 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
368
369 /* Transmit Descriptor Formats
370 *
371 * Advanced Transmit Descriptor
372 * +--------------------------------------------------------------+
373 * 0 | Buffer Address [63:0] |
374 * +--------------------------------------------------------------+
375 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
376 * +--------------------------------------------------------------+
377 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
378 */
379
380 for (n = 0; n < adapter->num_tx_queues; n++) {
381 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000382 pr_info("------------------------------------\n");
383 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
384 pr_info("------------------------------------\n");
385 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000386 "[PlPOIdStDDt Ln] [bi->dma ] "
387 "leng ntw timestamp bi->skb\n");
388
389 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000390 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000391 tx_buffer_info = &tx_ring->tx_buffer_info[i];
392 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000393 pr_info("T [0x%03X] %016llX %016llX %016llX"
Taku Izumidcd79ae2010-04-27 14:39:53 +0000394 " %04X %3X %016llX %p", i,
395 le64_to_cpu(u0->a),
396 le64_to_cpu(u0->b),
397 (u64)tx_buffer_info->dma,
398 tx_buffer_info->length,
399 tx_buffer_info->next_to_watch,
400 (u64)tx_buffer_info->time_stamp,
401 tx_buffer_info->skb);
402 if (i == tx_ring->next_to_use &&
403 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000404 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000405 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000406 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000407 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000408 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000409 else
Joe Perchesc7689572010-09-07 21:35:17 +0000410 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000411
412 if (netif_msg_pktdata(adapter) &&
413 tx_buffer_info->dma != 0)
414 print_hex_dump(KERN_INFO, "",
415 DUMP_PREFIX_ADDRESS, 16, 1,
416 phys_to_virt(tx_buffer_info->dma),
417 tx_buffer_info->length, true);
418 }
419 }
420
421 /* Print RX Rings Summary */
422rx_ring_summary:
423 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000424 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000425 for (n = 0; n < adapter->num_rx_queues; n++) {
426 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000427 pr_info("%5d %5X %5X\n",
428 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000429 }
430
431 /* Print RX Rings */
432 if (!netif_msg_rx_status(adapter))
433 goto exit;
434
435 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
436
437 /* Advanced Receive Descriptor (Read) Format
438 * 63 1 0
439 * +-----------------------------------------------------+
440 * 0 | Packet Buffer Address [63:1] |A0/NSE|
441 * +----------------------------------------------+------+
442 * 8 | Header Buffer Address [63:1] | DD |
443 * +-----------------------------------------------------+
444 *
445 *
446 * Advanced Receive Descriptor (Write-Back) Format
447 *
448 * 63 48 47 32 31 30 21 20 16 15 4 3 0
449 * +------------------------------------------------------+
450 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
451 * | Checksum Ident | | | | Type | Type |
452 * +------------------------------------------------------+
453 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
454 * +------------------------------------------------------+
455 * 63 48 47 32 31 20 19 0
456 */
457 for (n = 0; n < adapter->num_rx_queues; n++) {
458 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000459 pr_info("------------------------------------\n");
460 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
461 pr_info("------------------------------------\n");
462 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000463 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
464 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000465 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000466 "[vl er S cks ln] ---------------- [bi->skb] "
467 "<-- Adv Rx Write-Back format\n");
468
469 for (i = 0; i < rx_ring->count; i++) {
470 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +0000471 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000472 u0 = (struct my_u0 *)rx_desc;
473 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
474 if (staterr & IXGBE_RXD_STAT_DD) {
475 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000476 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000477 "%016llX ---------------- %p", i,
478 le64_to_cpu(u0->a),
479 le64_to_cpu(u0->b),
480 rx_buffer_info->skb);
481 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000482 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000483 "%016llX %016llX %p", i,
484 le64_to_cpu(u0->a),
485 le64_to_cpu(u0->b),
486 (u64)rx_buffer_info->dma,
487 rx_buffer_info->skb);
488
489 if (netif_msg_pktdata(adapter)) {
490 print_hex_dump(KERN_INFO, "",
491 DUMP_PREFIX_ADDRESS, 16, 1,
492 phys_to_virt(rx_buffer_info->dma),
493 rx_ring->rx_buf_len, true);
494
495 if (rx_ring->rx_buf_len
496 < IXGBE_RXBUFFER_2048)
497 print_hex_dump(KERN_INFO, "",
498 DUMP_PREFIX_ADDRESS, 16, 1,
499 phys_to_virt(
500 rx_buffer_info->page_dma +
501 rx_buffer_info->page_offset
502 ),
503 PAGE_SIZE/2, true);
504 }
505 }
506
507 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000508 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000509 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000510 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000511 else
Joe Perchesc7689572010-09-07 21:35:17 +0000512 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000513
514 }
515 }
516
517exit:
518 return;
519}
520
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800521static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
522{
523 u32 ctrl_ext;
524
525 /* Let firmware take over control of h/w */
526 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
527 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000528 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800529}
530
531static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
532{
533 u32 ctrl_ext;
534
535 /* Let firmware know the driver has taken over */
536 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
537 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000538 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800539}
Auke Kok9a799d72007-09-15 14:07:45 -0700540
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000541/*
542 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
543 * @adapter: pointer to adapter struct
544 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
545 * @queue: queue to map the corresponding interrupt to
546 * @msix_vector: the vector to map to the corresponding queue
547 *
548 */
549static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000550 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700551{
552 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000553 struct ixgbe_hw *hw = &adapter->hw;
554 switch (hw->mac.type) {
555 case ixgbe_mac_82598EB:
556 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
557 if (direction == -1)
558 direction = 0;
559 index = (((direction * 64) + queue) >> 2) & 0x1F;
560 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
561 ivar &= ~(0xFF << (8 * (queue & 0x3)));
562 ivar |= (msix_vector << (8 * (queue & 0x3)));
563 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
564 break;
565 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800566 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000567 if (direction == -1) {
568 /* other causes */
569 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
570 index = ((queue & 1) * 8);
571 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
572 ivar &= ~(0xFF << index);
573 ivar |= (msix_vector << index);
574 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
575 break;
576 } else {
577 /* tx or rx causes */
578 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
579 index = ((16 * (queue & 1)) + (8 * direction));
580 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
581 ivar &= ~(0xFF << index);
582 ivar |= (msix_vector << index);
583 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
584 break;
585 }
586 default:
587 break;
588 }
Auke Kok9a799d72007-09-15 14:07:45 -0700589}
590
Alexander Duyckfe49f042009-06-04 16:00:09 +0000591static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000592 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000593{
594 u32 mask;
595
Alexander Duyckbd508172010-11-16 19:27:03 -0800596 switch (adapter->hw.mac.type) {
597 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000598 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
599 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800600 break;
601 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800602 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000603 mask = (qmask & 0xFFFFFFFF);
604 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
605 mask = (qmask >> 32);
606 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800607 break;
608 default:
609 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000610 }
611}
612
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800613void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *tx_ring,
614 struct ixgbe_tx_buffer *tx_buffer_info)
Auke Kok9a799d72007-09-15 14:07:45 -0700615{
Alexander Duycke5a43542009-12-02 16:46:56 +0000616 if (tx_buffer_info->dma) {
617 if (tx_buffer_info->mapped_as_page)
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800618 dma_unmap_page(tx_ring->dev,
Alexander Duycke5a43542009-12-02 16:46:56 +0000619 tx_buffer_info->dma,
620 tx_buffer_info->length,
Nick Nunley1b507732010-04-27 13:10:27 +0000621 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +0000622 else
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800623 dma_unmap_single(tx_ring->dev,
Alexander Duycke5a43542009-12-02 16:46:56 +0000624 tx_buffer_info->dma,
625 tx_buffer_info->length,
Nick Nunley1b507732010-04-27 13:10:27 +0000626 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +0000627 tx_buffer_info->dma = 0;
628 }
Auke Kok9a799d72007-09-15 14:07:45 -0700629 if (tx_buffer_info->skb) {
630 dev_kfree_skb_any(tx_buffer_info->skb);
631 tx_buffer_info->skb = NULL;
632 }
Alexander Duyck44df32c2009-03-31 21:34:23 +0000633 tx_buffer_info->time_stamp = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700634 /* tx_buffer_info must be completely set up in the transmit path */
635}
636
Yi Zou26f23d82009-11-06 12:56:00 +0000637/**
John Fastabendc84d3242010-11-16 19:27:12 -0800638 * ixgbe_dcb_txq_to_tc - convert a reg index to a traffic class
639 * @adapter: driver private struct
640 * @index: reg idx of queue to query (0-127)
Yi Zou26f23d82009-11-06 12:56:00 +0000641 *
John Fastabendc84d3242010-11-16 19:27:12 -0800642 * Helper function to determine the traffic index for a paticular
643 * register index.
Yi Zou26f23d82009-11-06 12:56:00 +0000644 *
John Fastabendc84d3242010-11-16 19:27:12 -0800645 * Returns : a tc index for use in range 0-7, or 0-3
Yi Zou26f23d82009-11-06 12:56:00 +0000646 */
John Fastabendc84d3242010-11-16 19:27:12 -0800647u8 ixgbe_dcb_txq_to_tc(struct ixgbe_adapter *adapter, u8 reg_idx)
Yi Zou26f23d82009-11-06 12:56:00 +0000648{
John Fastabendc84d3242010-11-16 19:27:12 -0800649 int tc = -1;
650 int dcb_i = adapter->ring_feature[RING_F_DCB].indices;
Yi Zou26f23d82009-11-06 12:56:00 +0000651
John Fastabendc84d3242010-11-16 19:27:12 -0800652 /* if DCB is not enabled the queues have no TC */
653 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
654 return tc;
Yi Zou26f23d82009-11-06 12:56:00 +0000655
John Fastabendc84d3242010-11-16 19:27:12 -0800656 /* check valid range */
657 if (reg_idx >= adapter->hw.mac.max_tx_queues)
658 return tc;
659
660 switch (adapter->hw.mac.type) {
661 case ixgbe_mac_82598EB:
662 tc = reg_idx >> 2;
663 break;
664 default:
665 if (dcb_i != 4 && dcb_i != 8)
PJ Waskiewicz6837e892010-01-06 17:50:29 +0000666 break;
John Fastabendc84d3242010-11-16 19:27:12 -0800667
668 /* if VMDq is enabled the lowest order bits determine TC */
669 if (adapter->flags & (IXGBE_FLAG_SRIOV_ENABLED |
670 IXGBE_FLAG_VMDQ_ENABLED)) {
671 tc = reg_idx & (dcb_i - 1);
Alexander Duyckbd508172010-11-16 19:27:03 -0800672 break;
Yi Zou26f23d82009-11-06 12:56:00 +0000673 }
John Fastabendc84d3242010-11-16 19:27:12 -0800674
675 /*
676 * Convert the reg_idx into the correct TC. This bitmask
677 * targets the last full 32 ring traffic class and assigns
678 * it a value of 1. From there the rest of the rings are
679 * based on shifting the mask further up to include the
680 * reg_idx / 16 and then reg_idx / 8. It assumes dcB_i
681 * will only ever be 8 or 4 and that reg_idx will never
682 * be greater then 128. The code without the power of 2
683 * optimizations would be:
684 * (((reg_idx % 32) + 32) * dcb_i) >> (9 - reg_idx / 32)
685 */
686 tc = ((reg_idx & 0X1F) + 0x20) * dcb_i;
687 tc >>= 9 - (reg_idx >> 5);
Yi Zou26f23d82009-11-06 12:56:00 +0000688 }
John Fastabendc84d3242010-11-16 19:27:12 -0800689
690 return tc;
Yi Zou26f23d82009-11-06 12:56:00 +0000691}
692
John Fastabendc84d3242010-11-16 19:27:12 -0800693static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -0700694{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700695 struct ixgbe_hw *hw = &adapter->hw;
John Fastabendc84d3242010-11-16 19:27:12 -0800696 struct ixgbe_hw_stats *hwstats = &adapter->stats;
697 u32 data = 0;
698 u32 xoff[8] = {0};
699 int i;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700700
John Fastabendc84d3242010-11-16 19:27:12 -0800701 if ((hw->fc.current_mode == ixgbe_fc_full) ||
702 (hw->fc.current_mode == ixgbe_fc_rx_pause)) {
703 switch (hw->mac.type) {
704 case ixgbe_mac_82598EB:
705 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
706 break;
707 default:
708 data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
709 }
710 hwstats->lxoffrxc += data;
711
712 /* refill credits (no tx hang) if we received xoff */
713 if (!data)
714 return;
715
716 for (i = 0; i < adapter->num_tx_queues; i++)
717 clear_bit(__IXGBE_HANG_CHECK_ARMED,
718 &adapter->tx_ring[i]->state);
719 return;
720 } else if (!(adapter->dcb_cfg.pfc_mode_enable))
721 return;
722
723 /* update stats for each tc, only valid with PFC enabled */
724 for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) {
725 switch (hw->mac.type) {
726 case ixgbe_mac_82598EB:
727 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
728 break;
729 default:
730 xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
731 }
732 hwstats->pxoffrxc[i] += xoff[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700733 }
734
John Fastabendc84d3242010-11-16 19:27:12 -0800735 /* disarm tx queues that have received xoff frames */
736 for (i = 0; i < adapter->num_tx_queues; i++) {
737 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
738 u32 tc = ixgbe_dcb_txq_to_tc(adapter, tx_ring->reg_idx);
739
740 if (xoff[tc])
741 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
742 }
743}
744
745static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring)
746{
747 return ring->tx_stats.completed;
748}
749
750static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring)
751{
752 struct ixgbe_adapter *adapter = netdev_priv(ring->netdev);
753 struct ixgbe_hw *hw = &adapter->hw;
754
755 u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx));
756 u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx));
757
758 if (head != tail)
759 return (head < tail) ?
760 tail - head : (tail + ring->count - head);
761
762 return 0;
763}
764
765static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring)
766{
767 u32 tx_done = ixgbe_get_tx_completed(tx_ring);
768 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
769 u32 tx_pending = ixgbe_get_tx_pending(tx_ring);
770 bool ret = false;
771
772 clear_check_for_tx_hang(tx_ring);
773
774 /*
775 * Check for a hung queue, but be thorough. This verifies
776 * that a transmit has been completed since the previous
777 * check AND there is at least one packet pending. The
778 * ARMED bit is set to indicate a potential hang. The
779 * bit is cleared if a pause frame is received to remove
780 * false hang detection due to PFC or 802.3x frames. By
781 * requiring this to fail twice we avoid races with
782 * pfc clearing the ARMED bit and conditions where we
783 * run the check_tx_hang logic with a transmit completion
784 * pending but without time to complete it yet.
785 */
786 if ((tx_done_old == tx_done) && tx_pending) {
787 /* make sure it is true for two checks in a row */
788 ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED,
789 &tx_ring->state);
790 } else {
791 /* update completed stats and continue */
792 tx_ring->tx_stats.tx_done_old = tx_done;
793 /* reset the countdown */
794 clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state);
795 }
796
797 return ret;
Auke Kok9a799d72007-09-15 14:07:45 -0700798}
799
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700800#define IXGBE_MAX_TXD_PWR 14
801#define IXGBE_MAX_DATA_PER_TXD (1 << IXGBE_MAX_TXD_PWR)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800802
803/* Tx Descriptors needed, worst case */
804#define TXD_USE_COUNT(S) (((S) >> IXGBE_MAX_TXD_PWR) + \
805 (((S) & (IXGBE_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
806#define DESC_NEEDED (TXD_USE_COUNT(IXGBE_MAX_DATA_PER_TXD) /* skb->data */ + \
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700807 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1) /* for context */
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800808
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700809static void ixgbe_tx_timeout(struct net_device *netdev);
810
Auke Kok9a799d72007-09-15 14:07:45 -0700811/**
812 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000813 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700814 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700815 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000816static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000817 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700818{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000819 struct ixgbe_adapter *adapter = q_vector->adapter;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800820 union ixgbe_adv_tx_desc *tx_desc, *eop_desc;
821 struct ixgbe_tx_buffer *tx_buffer_info;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700822 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyckb9537992010-11-16 19:26:58 -0800823 u16 i, eop, count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700824
825 i = tx_ring->next_to_clean;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800826 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000827 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800828
829 while ((eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)) &&
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +0000830 (count < tx_ring->work_limit)) {
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800831 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000832 rmb(); /* read buffer_info after eop_desc */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800833 for ( ; !cleaned; count++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000834 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -0700835 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700836
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800837 tx_desc->wb.status = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800838 cleaned = (i == eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800839
Auke Kok9a799d72007-09-15 14:07:45 -0700840 i++;
841 if (i == tx_ring->count)
842 i = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800843
844 if (cleaned && tx_buffer_info->skb) {
845 total_bytes += tx_buffer_info->bytecount;
846 total_packets += tx_buffer_info->gso_segs;
847 }
848
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800849 ixgbe_unmap_and_free_tx_resource(tx_ring,
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800850 tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -0700851 }
852
John Fastabendc84d3242010-11-16 19:27:12 -0800853 tx_ring->tx_stats.completed++;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800854 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000855 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
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 Duyckb9537992010-11-16 19:26:58 -0800859 tx_ring->total_bytes += total_bytes;
860 tx_ring->total_packets += total_packets;
861 u64_stats_update_begin(&tx_ring->syncp);
862 tx_ring->stats.packets += total_packets;
863 tx_ring->stats.bytes += total_bytes;
864 u64_stats_update_end(&tx_ring->syncp);
865
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;
869 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
870 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)),
881 tx_ring->next_to_use, eop,
882 tx_ring->tx_buffer_info[eop].time_stamp, jiffies);
883
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 Duyckb9537992010-11-16 19:26:58 -0800891 ixgbe_tx_timeout(adapter->netdev);
892
893 /* the adapter is about to reset, no point in enabling stuff */
894 return true;
895 }
Auke Kok9a799d72007-09-15 14:07:45 -0700896
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800897#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800898 if (unlikely(count && netif_carrier_ok(tx_ring->netdev) &&
Joe Perchese8e9f692010-09-07 21:34:53 +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
Eric Dumazet807540b2010-09-23 05:40:09 +0000911 return count < tx_ring->work_limit;
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;
927 rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
928 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;
932 rxctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
933 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);
941 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_WRO_EN |
942 IXGBE_DCA_RXCTRL_DESC_HSRO_EN);
943 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800944}
945
946static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800947 struct ixgbe_ring *tx_ring,
948 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800949{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000950 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800951 u32 txctrl;
952 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800953
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800954 switch (hw->mac.type) {
955 case ixgbe_mac_82598EB:
956 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
957 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
958 txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
959 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
960 txctrl &= ~IXGBE_DCA_TXCTRL_TX_WB_RO_EN;
961 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
962 break;
963 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -0800964 case ixgbe_mac_X540:
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800965 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
966 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
967 txctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
968 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
969 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
970 txctrl &= ~IXGBE_DCA_TXCTRL_TX_WB_RO_EN;
971 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
972 break;
973 default:
974 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800975 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800976}
977
978static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
979{
980 struct ixgbe_adapter *adapter = q_vector->adapter;
981 int cpu = get_cpu();
982 long r_idx;
983 int i;
984
985 if (q_vector->cpu == cpu)
986 goto out_no_update;
987
988 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
989 for (i = 0; i < q_vector->txr_count; i++) {
990 ixgbe_update_tx_dca(adapter, adapter->tx_ring[r_idx], cpu);
991 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
992 r_idx + 1);
993 }
994
995 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
996 for (i = 0; i < q_vector->rxr_count; i++) {
997 ixgbe_update_rx_dca(adapter, adapter->rx_ring[r_idx], cpu);
998 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
999 r_idx + 1);
1000 }
1001
1002 q_vector->cpu = cpu;
1003out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001004 put_cpu();
1005}
1006
1007static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
1008{
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001009 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001010 int i;
1011
1012 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1013 return;
1014
Alexander Duycke35ec122009-05-21 13:07:12 +00001015 /* always use CB2 mode, difference is masked in the CB driver */
1016 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
1017
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001018 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
1019 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1020 else
1021 num_q_vectors = 1;
1022
1023 for (i = 0; i < num_q_vectors; i++) {
1024 adapter->q_vector[i]->cpu = -1;
1025 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001026 }
1027}
1028
1029static int __ixgbe_notify_dca(struct device *dev, void *data)
1030{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08001031 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001032 unsigned long event = *(unsigned long *)data;
1033
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001034 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
1035 return 0;
1036
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001037 switch (event) {
1038 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001039 /* if we're already enabled, don't do it again */
1040 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1041 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +03001042 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07001043 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001044 ixgbe_setup_dca(adapter);
1045 break;
1046 }
1047 /* Fall Through since DCA is disabled. */
1048 case DCA_PROVIDER_REMOVE:
1049 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
1050 dca_remove_requester(dev);
1051 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
1052 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
1053 }
1054 break;
1055 }
1056
Denis V. Lunev652f0932008-03-27 14:39:17 +03001057 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001058}
1059
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001060#endif /* CONFIG_IXGBE_DCA */
Auke Kok9a799d72007-09-15 14:07:45 -07001061/**
1062 * ixgbe_receive_skb - Send a completed packet up the stack
1063 * @adapter: board private structure
1064 * @skb: packet to send up
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001065 * @status: hardware indication of status of receive
1066 * @rx_ring: rx descriptor ring (for a specific queue) to setup
1067 * @rx_desc: rx descriptor
Auke Kok9a799d72007-09-15 14:07:45 -07001068 **/
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001069static void ixgbe_receive_skb(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001070 struct sk_buff *skb, u8 status,
1071 struct ixgbe_ring *ring,
1072 union ixgbe_adv_rx_desc *rx_desc)
Auke Kok9a799d72007-09-15 14:07:45 -07001073{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001074 struct ixgbe_adapter *adapter = q_vector->adapter;
1075 struct napi_struct *napi = &q_vector->napi;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001076 bool is_vlan = (status & IXGBE_RXD_STAT_VP);
1077 u16 tag = le16_to_cpu(rx_desc->wb.upper.vlan);
Auke Kok9a799d72007-09-15 14:07:45 -07001078
Jesse Grossf62bbb52010-10-20 13:56:10 +00001079 if (is_vlan && (tag & VLAN_VID_MASK))
1080 __vlan_hwaccel_put_tag(skb, tag);
1081
1082 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
1083 napi_gro_receive(napi, skb);
1084 else
1085 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001086}
1087
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001088/**
1089 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1090 * @adapter: address of board private structure
1091 * @status_err: hardware indication of status of receive
1092 * @skb: skb currently being received and modified
1093 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001094static inline void ixgbe_rx_checksum(struct ixgbe_adapter *adapter,
Don Skidmore8bae1b22009-07-23 18:00:39 +00001095 union ixgbe_adv_rx_desc *rx_desc,
1096 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -07001097{
Don Skidmore8bae1b22009-07-23 18:00:39 +00001098 u32 status_err = le32_to_cpu(rx_desc->wb.upper.status_error);
1099
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001100 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001101
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001102 /* Rx csum disabled */
1103 if (!(adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07001104 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001105
1106 /* if IP and error */
1107 if ((status_err & IXGBE_RXD_STAT_IPCS) &&
1108 (status_err & IXGBE_RXDADV_ERR_IPE)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001109 adapter->hw_csum_rx_error++;
1110 return;
1111 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001112
1113 if (!(status_err & IXGBE_RXD_STAT_L4CS))
1114 return;
1115
1116 if (status_err & IXGBE_RXDADV_ERR_TCPE) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001117 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1118
1119 /*
1120 * 82599 errata, UDP frames with a 0 checksum can be marked as
1121 * checksum errors.
1122 */
1123 if ((pkt_info & IXGBE_RXDADV_PKTTYPE_UDP) &&
1124 (adapter->hw.mac.type == ixgbe_mac_82599EB))
1125 return;
1126
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001127 adapter->hw_csum_rx_error++;
1128 return;
1129 }
1130
Auke Kok9a799d72007-09-15 14:07:45 -07001131 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001132 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001133}
1134
Alexander Duyck84ea2592010-11-16 19:26:49 -08001135static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001136{
1137 /*
1138 * Force memory writes to complete before letting h/w
1139 * know there are new descriptors to fetch. (Only
1140 * applicable for weak-ordered memory model archs,
1141 * such as IA-64).
1142 */
1143 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001144 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001145}
1146
Auke Kok9a799d72007-09-15 14:07:45 -07001147/**
1148 * ixgbe_alloc_rx_buffers - Replace used receive buffers; packet split
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001149 * @rx_ring: ring to place buffers on
1150 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001151 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001152void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001153{
Auke Kok9a799d72007-09-15 14:07:45 -07001154 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001155 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001156 struct sk_buff *skb;
1157 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001158
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001159 /* do nothing if no valid netdev defined */
1160 if (!rx_ring->netdev)
1161 return;
1162
Auke Kok9a799d72007-09-15 14:07:45 -07001163 while (cleaned_count--) {
Alexander Duyck31f05a22010-08-19 13:40:31 +00001164 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001165 bi = &rx_ring->rx_buffer_info[i];
1166 skb = bi->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001167
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001168 if (!skb) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001169 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001170 rx_ring->rx_buf_len);
Auke Kok9a799d72007-09-15 14:07:45 -07001171 if (!skb) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001172 rx_ring->rx_stats.alloc_rx_buff_failed++;
Auke Kok9a799d72007-09-15 14:07:45 -07001173 goto no_buffers;
1174 }
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001175 /* initialize queue mapping */
1176 skb_record_rx_queue(skb, rx_ring->queue_index);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001177 bi->skb = skb;
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001178 }
Auke Kok9a799d72007-09-15 14:07:45 -07001179
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001180 if (!bi->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001181 bi->dma = dma_map_single(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001182 skb->data,
Joe Perchese8e9f692010-09-07 21:34:53 +00001183 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00001184 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001185 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001186 rx_ring->rx_stats.alloc_rx_buff_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001187 bi->dma = 0;
1188 goto no_buffers;
1189 }
Auke Kok9a799d72007-09-15 14:07:45 -07001190 }
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001191
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001192 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001193 if (!bi->page) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001194 bi->page = netdev_alloc_page(rx_ring->netdev);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001195 if (!bi->page) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001196 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001197 goto no_buffers;
1198 }
1199 }
1200
1201 if (!bi->page_dma) {
1202 /* use a half page if we're re-using */
1203 bi->page_offset ^= PAGE_SIZE / 2;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001204 bi->page_dma = dma_map_page(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001205 bi->page,
1206 bi->page_offset,
1207 PAGE_SIZE / 2,
1208 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001209 if (dma_mapping_error(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001210 bi->page_dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001211 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001212 bi->page_dma = 0;
1213 goto no_buffers;
1214 }
1215 }
1216
1217 /* Refresh the desc even if buffer_addrs didn't change
1218 * because each write-back erases this info. */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001219 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1220 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001221 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001222 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Alexander Duyck84418e32010-08-19 13:40:54 +00001223 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001224 }
1225
1226 i++;
1227 if (i == rx_ring->count)
1228 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001229 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001230
Auke Kok9a799d72007-09-15 14:07:45 -07001231no_buffers:
1232 if (rx_ring->next_to_use != i) {
1233 rx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08001234 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001235 }
1236}
1237
Alexander Duyckc267fc12010-11-16 19:27:00 -08001238static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001239{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001240 /* HW will not DMA in data larger than the given buffer, even if it
1241 * parses the (NFS, of course) header to be larger. In that case, it
1242 * fills the header buffer and spills the rest into the page.
1243 */
1244 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1245 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1246 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1247 if (hlen > IXGBE_RX_HDR_SIZE)
1248 hlen = IXGBE_RX_HDR_SIZE;
1249 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001250}
1251
Alexander Duyckf8212f92009-04-27 22:42:37 +00001252/**
1253 * ixgbe_transform_rsc_queue - change rsc queue into a full packet
1254 * @skb: pointer to the last skb in the rsc queue
1255 *
1256 * This function changes a queue full of hw rsc buffers into a completed
1257 * packet. It uses the ->prev pointers to find the first packet and then
1258 * turns it into the frag list owner.
1259 **/
Alexander Duyckaa801752010-11-16 19:27:02 -08001260static inline struct sk_buff *ixgbe_transform_rsc_queue(struct sk_buff *skb)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001261{
1262 unsigned int frag_list_size = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001263 unsigned int skb_cnt = 1;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001264
1265 while (skb->prev) {
1266 struct sk_buff *prev = skb->prev;
1267 frag_list_size += skb->len;
1268 skb->prev = NULL;
1269 skb = prev;
Alexander Duyckaa801752010-11-16 19:27:02 -08001270 skb_cnt++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001271 }
1272
1273 skb_shinfo(skb)->frag_list = skb->next;
1274 skb->next = NULL;
1275 skb->len += frag_list_size;
1276 skb->data_len += frag_list_size;
1277 skb->truesize += frag_list_size;
Alexander Duyckaa801752010-11-16 19:27:02 -08001278 IXGBE_RSC_CB(skb)->skb_cnt = skb_cnt;
1279
Alexander Duyckf8212f92009-04-27 22:42:37 +00001280 return skb;
1281}
1282
Alexander Duyckaa801752010-11-16 19:27:02 -08001283static inline bool ixgbe_get_rsc_state(union ixgbe_adv_rx_desc *rx_desc)
1284{
1285 return !!(le32_to_cpu(rx_desc->wb.lower.lo_dword.data) &
1286 IXGBE_RXDADV_RSCCNT_MASK);
1287}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001288
Alexander Duyckc267fc12010-11-16 19:27:00 -08001289static void ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001290 struct ixgbe_ring *rx_ring,
1291 int *work_done, int work_to_do)
Auke Kok9a799d72007-09-15 14:07:45 -07001292{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001293 struct ixgbe_adapter *adapter = q_vector->adapter;
Auke Kok9a799d72007-09-15 14:07:45 -07001294 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
1295 struct ixgbe_rx_buffer *rx_buffer_info, *next_buffer;
1296 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001297 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001298 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001299#ifdef IXGBE_FCOE
1300 int ddp_bytes = 0;
1301#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001302 u32 staterr;
1303 u16 i;
1304 u16 cleaned_count = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001305 bool pkt_is_rsc = false;
Auke Kok9a799d72007-09-15 14:07:45 -07001306
1307 i = rx_ring->next_to_clean;
Alexander Duyck31f05a22010-08-19 13:40:31 +00001308 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001309 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kok9a799d72007-09-15 14:07:45 -07001310
1311 while (staterr & IXGBE_RXD_STAT_DD) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001312 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001313
Milton Miller3c945e52010-02-19 17:44:42 +00001314 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001315
Alexander Duyckc267fc12010-11-16 19:27:00 -08001316 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1317
Auke Kok9a799d72007-09-15 14:07:45 -07001318 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001319 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001320 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001321
Alexander Duyckc267fc12010-11-16 19:27:00 -08001322 if (ring_is_rsc_enabled(rx_ring))
Alexander Duyckaa801752010-11-16 19:27:02 -08001323 pkt_is_rsc = ixgbe_get_rsc_state(rx_desc);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001324
1325 /* if this is a skb from previous receive DMA will be 0 */
Alexander Duyck21fa4e62009-06-04 15:59:49 +00001326 if (rx_buffer_info->dma) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001327 u16 hlen;
Alexander Duyckaa801752010-11-16 19:27:02 -08001328 if (pkt_is_rsc &&
Alexander Duyckc267fc12010-11-16 19:27:00 -08001329 !(staterr & IXGBE_RXD_STAT_EOP) &&
1330 !skb->prev) {
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001331 /*
1332 * When HWRSC is enabled, delay unmapping
1333 * of the first packet. It carries the
1334 * header information, HW may still
1335 * access the header after the writeback.
1336 * Only unmap it when EOP is reached
1337 */
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001338 IXGBE_RSC_CB(skb)->delay_unmap = true;
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001339 IXGBE_RSC_CB(skb)->dma = rx_buffer_info->dma;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001340 } else {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001341 dma_unmap_single(rx_ring->dev,
Joe Perchese8e9f692010-09-07 21:34:53 +00001342 rx_buffer_info->dma,
1343 rx_ring->rx_buf_len,
1344 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001345 }
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00001346 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001347
1348 if (ring_is_ps_enabled(rx_ring)) {
1349 hlen = ixgbe_get_hlen(rx_desc);
1350 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1351 } else {
1352 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1353 }
1354
1355 skb_put(skb, hlen);
1356 } else {
1357 /* assume packet split since header is unmapped */
1358 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001359 }
1360
1361 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001362 dma_unmap_page(rx_ring->dev,
1363 rx_buffer_info->page_dma,
1364 PAGE_SIZE / 2,
1365 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001366 rx_buffer_info->page_dma = 0;
1367 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001368 rx_buffer_info->page,
1369 rx_buffer_info->page_offset,
1370 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001371
Alexander Duyckc267fc12010-11-16 19:27:00 -08001372 if ((page_count(rx_buffer_info->page) == 1) &&
1373 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001374 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001375 else
1376 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001377
1378 skb->len += upper_len;
1379 skb->data_len += upper_len;
1380 skb->truesize += upper_len;
1381 }
1382
1383 i++;
1384 if (i == rx_ring->count)
1385 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001386
Alexander Duyck31f05a22010-08-19 13:40:31 +00001387 next_rxd = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001388 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001389 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001390
Alexander Duyckaa801752010-11-16 19:27:02 -08001391 if (pkt_is_rsc) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001392 u32 nextp = (staterr & IXGBE_RXDADV_NEXTP_MASK) >>
1393 IXGBE_RXDADV_NEXTP_SHIFT;
1394 next_buffer = &rx_ring->rx_buffer_info[nextp];
Alexander Duyckf8212f92009-04-27 22:42:37 +00001395 } else {
1396 next_buffer = &rx_ring->rx_buffer_info[i];
1397 }
1398
Alexander Duyckc267fc12010-11-16 19:27:00 -08001399 if (!(staterr & IXGBE_RXD_STAT_EOP)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001400 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001401 rx_buffer_info->skb = next_buffer->skb;
1402 rx_buffer_info->dma = next_buffer->dma;
1403 next_buffer->skb = skb;
1404 next_buffer->dma = 0;
1405 } else {
1406 skb->next = next_buffer->skb;
1407 skb->next->prev = skb;
1408 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001409 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001410 goto next_desc;
1411 }
1412
Alexander Duyckaa801752010-11-16 19:27:02 -08001413 if (skb->prev) {
1414 skb = ixgbe_transform_rsc_queue(skb);
1415 /* if we got here without RSC the packet is invalid */
1416 if (!pkt_is_rsc) {
1417 __pskb_trim(skb, 0);
1418 rx_buffer_info->skb = skb;
1419 goto next_desc;
1420 }
1421 }
Alexander Duyckc267fc12010-11-16 19:27:00 -08001422
1423 if (ring_is_rsc_enabled(rx_ring)) {
1424 if (IXGBE_RSC_CB(skb)->delay_unmap) {
1425 dma_unmap_single(rx_ring->dev,
1426 IXGBE_RSC_CB(skb)->dma,
1427 rx_ring->rx_buf_len,
1428 DMA_FROM_DEVICE);
1429 IXGBE_RSC_CB(skb)->dma = 0;
1430 IXGBE_RSC_CB(skb)->delay_unmap = false;
1431 }
Alexander Duyckaa801752010-11-16 19:27:02 -08001432 }
1433 if (pkt_is_rsc) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001434 if (ring_is_ps_enabled(rx_ring))
1435 rx_ring->rx_stats.rsc_count +=
Alexander Duyckaa801752010-11-16 19:27:02 -08001436 skb_shinfo(skb)->nr_frags;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001437 else
Alexander Duyckaa801752010-11-16 19:27:02 -08001438 rx_ring->rx_stats.rsc_count +=
1439 IXGBE_RSC_CB(skb)->skb_cnt;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001440 rx_ring->rx_stats.rsc_flush++;
1441 }
1442
1443 /* ERR_MASK will only have valid bits if EOP set */
Auke Kok9a799d72007-09-15 14:07:45 -07001444 if (staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001445 /* trim packet back to size 0 and recycle it */
1446 __pskb_trim(skb, 0);
1447 rx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001448 goto next_desc;
1449 }
1450
Don Skidmore8bae1b22009-07-23 18:00:39 +00001451 ixgbe_rx_checksum(adapter, rx_desc, skb);
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001452
1453 /* probably a little skewed due to removing CRC */
1454 total_rx_bytes += skb->len;
1455 total_rx_packets++;
1456
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001457 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Yi Zou332d4a72009-05-13 13:11:53 +00001458#ifdef IXGBE_FCOE
1459 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Yi Zou3d8fd382009-06-08 14:38:44 +00001460 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
1461 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
1462 if (!ddp_bytes)
Yi Zou332d4a72009-05-13 13:11:53 +00001463 goto next_desc;
Yi Zou3d8fd382009-06-08 14:38:44 +00001464 }
Yi Zou332d4a72009-05-13 13:11:53 +00001465#endif /* IXGBE_FCOE */
Alexander Duyckfdaff1c2009-05-06 10:43:47 +00001466 ixgbe_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
Auke Kok9a799d72007-09-15 14:07:45 -07001467
1468next_desc:
1469 rx_desc->wb.upper.status_error = 0;
1470
Alexander Duyckc267fc12010-11-16 19:27:00 -08001471 (*work_done)++;
1472 if (*work_done >= work_to_do)
1473 break;
1474
Auke Kok9a799d72007-09-15 14:07:45 -07001475 /* return some buffers to hardware, one at a time is too slow */
1476 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001477 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001478 cleaned_count = 0;
1479 }
1480
1481 /* use prefetched values */
1482 rx_desc = next_rxd;
Auke Kok9a799d72007-09-15 14:07:45 -07001483 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001484 }
1485
Auke Kok9a799d72007-09-15 14:07:45 -07001486 rx_ring->next_to_clean = i;
1487 cleaned_count = IXGBE_DESC_UNUSED(rx_ring);
1488
1489 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001490 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001491
Yi Zou3d8fd382009-06-08 14:38:44 +00001492#ifdef IXGBE_FCOE
1493 /* include DDPed FCoE data */
1494 if (ddp_bytes > 0) {
1495 unsigned int mss;
1496
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001497 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001498 sizeof(struct fc_frame_header) -
1499 sizeof(struct fcoe_crc_eof);
1500 if (mss > 512)
1501 mss &= ~511;
1502 total_rx_bytes += ddp_bytes;
1503 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1504 }
1505#endif /* IXGBE_FCOE */
1506
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001507 rx_ring->total_packets += total_rx_packets;
1508 rx_ring->total_bytes += total_rx_bytes;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001509 u64_stats_update_begin(&rx_ring->syncp);
1510 rx_ring->stats.packets += total_rx_packets;
1511 rx_ring->stats.bytes += total_rx_bytes;
1512 u64_stats_update_end(&rx_ring->syncp);
Auke Kok9a799d72007-09-15 14:07:45 -07001513}
1514
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001515static int ixgbe_clean_rxonly(struct napi_struct *, int);
Auke Kok9a799d72007-09-15 14:07:45 -07001516/**
1517 * ixgbe_configure_msix - Configure MSI-X hardware
1518 * @adapter: board private structure
1519 *
1520 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1521 * interrupts.
1522 **/
1523static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1524{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001525 struct ixgbe_q_vector *q_vector;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001526 int i, q_vectors, v_idx, r_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001527 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001528
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001529 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1530
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001531 /*
1532 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001533 * corresponding register.
1534 */
1535 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00001536 q_vector = adapter->q_vector[v_idx];
Akinobu Mita984b3f52010-03-05 13:41:37 -08001537 /* XXX for_each_set_bit(...) */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001538 r_idx = find_first_bit(q_vector->rxr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001539 adapter->num_rx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001540
1541 for (i = 0; i < q_vector->rxr_count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001542 u8 reg_idx = adapter->rx_ring[r_idx]->reg_idx;
1543 ixgbe_set_ivar(adapter, 0, reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001544 r_idx = find_next_bit(q_vector->rxr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001545 adapter->num_rx_queues,
1546 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001547 }
1548 r_idx = find_first_bit(q_vector->txr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001549 adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001550
1551 for (i = 0; i < q_vector->txr_count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001552 u8 reg_idx = adapter->tx_ring[r_idx]->reg_idx;
1553 ixgbe_set_ivar(adapter, 1, reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001554 r_idx = find_next_bit(q_vector->txr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001555 adapter->num_tx_queues,
1556 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001557 }
1558
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001559 if (q_vector->txr_count && !q_vector->rxr_count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001560 /* tx only */
1561 q_vector->eitr = adapter->tx_eitr_param;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001562 else if (q_vector->rxr_count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001563 /* rx or mixed */
1564 q_vector->eitr = adapter->rx_eitr_param;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001565
Alexander Duyckfe49f042009-06-04 16:00:09 +00001566 ixgbe_write_eitr(q_vector);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00001567 /* If Flow Director is enabled, set interrupt affinity */
1568 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
1569 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
1570 /*
1571 * Allocate the affinity_hint cpumask, assign the mask
1572 * for this vector, and set our affinity_hint for
1573 * this irq.
1574 */
1575 if (!alloc_cpumask_var(&q_vector->affinity_mask,
1576 GFP_KERNEL))
1577 return;
1578 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
1579 irq_set_affinity_hint(adapter->msix_entries[v_idx].vector,
1580 q_vector->affinity_mask);
1581 }
Auke Kok9a799d72007-09-15 14:07:45 -07001582 }
1583
Alexander Duyckbd508172010-11-16 19:27:03 -08001584 switch (adapter->hw.mac.type) {
1585 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001586 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001587 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001588 break;
1589 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001590 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001591 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001592 break;
1593
1594 default:
1595 break;
1596 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001597 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001598
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001599 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001600 mask = IXGBE_EIMS_ENABLE_MASK;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001601 if (adapter->num_vfs)
1602 mask &= ~(IXGBE_EIMS_OTHER |
1603 IXGBE_EIMS_MAILBOX |
1604 IXGBE_EIMS_LSC);
1605 else
1606 mask &= ~(IXGBE_EIMS_OTHER | IXGBE_EIMS_LSC);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001607 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001608}
1609
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001610enum latency_range {
1611 lowest_latency = 0,
1612 low_latency = 1,
1613 bulk_latency = 2,
1614 latency_invalid = 255
1615};
1616
1617/**
1618 * ixgbe_update_itr - update the dynamic ITR value based on statistics
1619 * @adapter: pointer to adapter
1620 * @eitr: eitr setting (ints per sec) to give last timeslice
1621 * @itr_setting: current throttle rate in ints/second
1622 * @packets: the number of packets during this measurement interval
1623 * @bytes: the number of bytes during this measurement interval
1624 *
1625 * Stores a new ITR value based on packets and byte
1626 * counts during the last interrupt. The advantage of per interrupt
1627 * computation is faster updates and more accurate ITR for the current
1628 * traffic pattern. Constants in this function were computed
1629 * based on theoretical maximum wire speed and thresholds were set based
1630 * on testing data as well as attempting to minimize response time
1631 * while increasing bulk throughput.
1632 * this functionality is controlled by the InterruptThrottleRate module
1633 * parameter (see ixgbe_param.c)
1634 **/
1635static u8 ixgbe_update_itr(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001636 u32 eitr, u8 itr_setting,
1637 int packets, int bytes)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001638{
1639 unsigned int retval = itr_setting;
1640 u32 timepassed_us;
1641 u64 bytes_perint;
1642
1643 if (packets == 0)
1644 goto update_itr_done;
1645
1646
1647 /* simple throttlerate management
1648 * 0-20MB/s lowest (100000 ints/s)
1649 * 20-100MB/s low (20000 ints/s)
1650 * 100-1249MB/s bulk (8000 ints/s)
1651 */
1652 /* what was last interrupt timeslice? */
1653 timepassed_us = 1000000/eitr;
1654 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1655
1656 switch (itr_setting) {
1657 case lowest_latency:
1658 if (bytes_perint > adapter->eitr_low)
1659 retval = low_latency;
1660 break;
1661 case low_latency:
1662 if (bytes_perint > adapter->eitr_high)
1663 retval = bulk_latency;
1664 else if (bytes_perint <= adapter->eitr_low)
1665 retval = lowest_latency;
1666 break;
1667 case bulk_latency:
1668 if (bytes_perint <= adapter->eitr_high)
1669 retval = low_latency;
1670 break;
1671 }
1672
1673update_itr_done:
1674 return retval;
1675}
1676
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001677/**
1678 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001679 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001680 *
1681 * This function is made to be called by ethtool and by the driver
1682 * when it needs to update EITR registers at runtime. Hardware
1683 * specific quirks/differences are taken care of here.
1684 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001685void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001686{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001687 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001688 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001689 int v_idx = q_vector->v_idx;
1690 u32 itr_reg = EITR_INTS_PER_SEC_TO_REG(q_vector->eitr);
1691
Alexander Duyckbd508172010-11-16 19:27:03 -08001692 switch (adapter->hw.mac.type) {
1693 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001694 /* must write high and low 16 bits to reset counter */
1695 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001696 break;
1697 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001698 case ixgbe_mac_X540:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001699 /*
Don Skidmoreb93a2222010-11-16 19:27:17 -08001700 * 82599 and X540 can support a value of zero, so allow it for
Jesse Brandeburgf8d1dca2010-04-27 01:37:20 +00001701 * max interrupt rate, but there is an errata where it can
1702 * not be zero with RSC
1703 */
1704 if (itr_reg == 8 &&
1705 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
1706 itr_reg = 0;
1707
1708 /*
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001709 * set the WDIS bit to not clear the timer bits and cause an
1710 * immediate assertion of the interrupt
1711 */
1712 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001713 break;
1714 default:
1715 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001716 }
1717 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1718}
1719
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001720static void ixgbe_set_itr_msix(struct ixgbe_q_vector *q_vector)
1721{
1722 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck125601b2010-11-16 19:27:08 -08001723 int i, r_idx;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001724 u32 new_itr;
1725 u8 current_itr, ret_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001726
1727 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
1728 for (i = 0; i < q_vector->txr_count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001729 struct ixgbe_ring *tx_ring = adapter->tx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001730 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001731 q_vector->tx_itr,
1732 tx_ring->total_packets,
1733 tx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001734 /* if the result for this queue would decrease interrupt
1735 * rate for this vector then use that result */
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001736 q_vector->tx_itr = ((q_vector->tx_itr > ret_itr) ?
Joe Perchese8e9f692010-09-07 21:34:53 +00001737 q_vector->tx_itr - 1 : ret_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001738 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001739 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001740 }
1741
1742 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
1743 for (i = 0; i < q_vector->rxr_count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001744 struct ixgbe_ring *rx_ring = adapter->rx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001745 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001746 q_vector->rx_itr,
1747 rx_ring->total_packets,
1748 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001749 /* if the result for this queue would decrease interrupt
1750 * rate for this vector then use that result */
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001751 q_vector->rx_itr = ((q_vector->rx_itr > ret_itr) ?
Joe Perchese8e9f692010-09-07 21:34:53 +00001752 q_vector->rx_itr - 1 : ret_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001753 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001754 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001755 }
1756
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001757 current_itr = max(q_vector->rx_itr, q_vector->tx_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001758
1759 switch (current_itr) {
1760 /* counts and packets in update_itr are dependent on these numbers */
1761 case lowest_latency:
1762 new_itr = 100000;
1763 break;
1764 case low_latency:
1765 new_itr = 20000; /* aka hwitr = ~200 */
1766 break;
1767 case bulk_latency:
1768 default:
1769 new_itr = 8000;
1770 break;
1771 }
1772
1773 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001774 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08001775 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001776
1777 /* save the algorithm value here, not the smoothed one */
1778 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001779
1780 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001781 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001782}
1783
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001784/**
1785 * ixgbe_check_overtemp_task - worker thread to check over tempurature
1786 * @work: pointer to work_struct containing our data
1787 **/
1788static void ixgbe_check_overtemp_task(struct work_struct *work)
1789{
1790 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00001791 struct ixgbe_adapter,
1792 check_overtemp_task);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001793 struct ixgbe_hw *hw = &adapter->hw;
1794 u32 eicr = adapter->interrupt_event;
1795
Joe Perches7ca647b2010-09-07 21:35:40 +00001796 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
1797 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001798
Joe Perches7ca647b2010-09-07 21:35:40 +00001799 switch (hw->device_id) {
1800 case IXGBE_DEV_ID_82599_T3_LOM: {
1801 u32 autoneg;
1802 bool link_up = false;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001803
Joe Perches7ca647b2010-09-07 21:35:40 +00001804 if (hw->mac.ops.check_link)
1805 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1806
1807 if (((eicr & IXGBE_EICR_GPI_SDP0) && (!link_up)) ||
1808 (eicr & IXGBE_EICR_LSC))
1809 /* Check if this is due to overtemp */
1810 if (hw->phy.ops.check_overtemp(hw) == IXGBE_ERR_OVERTEMP)
1811 break;
1812 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001813 }
Joe Perches7ca647b2010-09-07 21:35:40 +00001814 default:
1815 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1816 return;
1817 break;
1818 }
1819 e_crit(drv,
1820 "Network adapter has been stopped because it has over heated. "
1821 "Restart the computer. If the problem persists, "
1822 "power off the system and replace the adapter\n");
1823 /* write to clear the interrupt */
1824 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP0);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001825}
1826
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001827static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1828{
1829 struct ixgbe_hw *hw = &adapter->hw;
1830
1831 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1832 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001833 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001834 /* write to clear the interrupt */
1835 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1836 }
1837}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001838
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001839static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
1840{
1841 struct ixgbe_hw *hw = &adapter->hw;
1842
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001843 if (eicr & IXGBE_EICR_GPI_SDP2) {
1844 /* Clear the interrupt */
1845 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
1846 if (!test_bit(__IXGBE_DOWN, &adapter->state))
1847 schedule_work(&adapter->sfp_config_module_task);
1848 }
1849
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001850 if (eicr & IXGBE_EICR_GPI_SDP1) {
1851 /* Clear the interrupt */
1852 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001853 if (!test_bit(__IXGBE_DOWN, &adapter->state))
1854 schedule_work(&adapter->multispeed_fiber_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001855 }
1856}
1857
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001858static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
1859{
1860 struct ixgbe_hw *hw = &adapter->hw;
1861
1862 adapter->lsc_int++;
1863 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1864 adapter->link_check_timeout = jiffies;
1865 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1866 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00001867 IXGBE_WRITE_FLUSH(hw);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001868 schedule_work(&adapter->watchdog_task);
1869 }
1870}
1871
Auke Kok9a799d72007-09-15 14:07:45 -07001872static irqreturn_t ixgbe_msix_lsc(int irq, void *data)
1873{
1874 struct net_device *netdev = data;
1875 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1876 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore54037502009-02-21 15:42:56 -08001877 u32 eicr;
1878
1879 /*
1880 * Workaround for Silicon errata. Use clear-by-write instead
1881 * of clear-by-read. Reading with EICS will return the
1882 * interrupt causes without clearing, which later be done
1883 * with the write to EICR.
1884 */
1885 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
1886 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07001887
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001888 if (eicr & IXGBE_EICR_LSC)
1889 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001890
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001891 if (eicr & IXGBE_EICR_MAILBOX)
1892 ixgbe_msg_task(adapter);
1893
Alexander Duyckbd508172010-11-16 19:27:03 -08001894 switch (hw->mac.type) {
1895 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001896 case ixgbe_mac_X540:
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001897 /* Handle Flow Director Full threshold interrupt */
1898 if (eicr & IXGBE_EICR_FLOW_DIR) {
1899 int i;
1900 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_FLOW_DIR);
1901 /* Disable transmits before FDIR Re-initialization */
1902 netif_tx_stop_all_queues(netdev);
1903 for (i = 0; i < adapter->num_tx_queues; i++) {
1904 struct ixgbe_ring *tx_ring =
Joe Perchese8e9f692010-09-07 21:34:53 +00001905 adapter->tx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001906 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
1907 &tx_ring->state))
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001908 schedule_work(&adapter->fdir_reinit_task);
1909 }
1910 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001911 ixgbe_check_sfp_event(adapter, eicr);
1912 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1913 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
1914 adapter->interrupt_event = eicr;
1915 schedule_work(&adapter->check_overtemp_task);
1916 }
1917 break;
1918 default:
1919 break;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001920 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001921
1922 ixgbe_check_fan_failure(adapter, eicr);
1923
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001924 if (!test_bit(__IXGBE_DOWN, &adapter->state))
1925 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_OTHER);
Auke Kok9a799d72007-09-15 14:07:45 -07001926
1927 return IRQ_HANDLED;
1928}
1929
Alexander Duyckfe49f042009-06-04 16:00:09 +00001930static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
1931 u64 qmask)
1932{
1933 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001934 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001935
Alexander Duyckbd508172010-11-16 19:27:03 -08001936 switch (hw->mac.type) {
1937 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001938 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001939 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
1940 break;
1941 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001942 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001943 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001944 if (mask)
1945 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001946 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001947 if (mask)
1948 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
1949 break;
1950 default:
1951 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001952 }
1953 /* skip the flush */
1954}
1955
1956static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001957 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00001958{
1959 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001960 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001961
Alexander Duyckbd508172010-11-16 19:27:03 -08001962 switch (hw->mac.type) {
1963 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001964 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001965 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
1966 break;
1967 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001968 case ixgbe_mac_X540:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001969 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001970 if (mask)
1971 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001972 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001973 if (mask)
1974 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
1975 break;
1976 default:
1977 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001978 }
1979 /* skip the flush */
1980}
1981
Auke Kok9a799d72007-09-15 14:07:45 -07001982static irqreturn_t ixgbe_msix_clean_tx(int irq, void *data)
1983{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001984 struct ixgbe_q_vector *q_vector = data;
1985 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001986 struct ixgbe_ring *tx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001987 int i, r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07001988
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001989 if (!q_vector->txr_count)
1990 return IRQ_HANDLED;
1991
1992 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
1993 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001994 tx_ring = adapter->tx_ring[r_idx];
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001995 tx_ring->total_bytes = 0;
1996 tx_ring->total_packets = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001997 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001998 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001999 }
2000
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002001 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002002 napi_schedule(&q_vector->napi);
2003
Auke Kok9a799d72007-09-15 14:07:45 -07002004 return IRQ_HANDLED;
2005}
2006
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002007/**
2008 * ixgbe_msix_clean_rx - single unshared vector rx clean (all queues)
2009 * @irq: unused
2010 * @data: pointer to our q_vector struct for this interrupt vector
2011 **/
Auke Kok9a799d72007-09-15 14:07:45 -07002012static irqreturn_t ixgbe_msix_clean_rx(int irq, void *data)
2013{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002014 struct ixgbe_q_vector *q_vector = data;
2015 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002016 struct ixgbe_ring *rx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002017 int r_idx;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002018 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07002019
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002020#ifdef CONFIG_IXGBE_DCA
2021 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2022 ixgbe_update_dca(q_vector);
2023#endif
2024
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002025 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002026 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002027 rx_ring = adapter->rx_ring[r_idx];
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002028 rx_ring->total_bytes = 0;
2029 rx_ring->total_packets = 0;
2030 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002031 r_idx + 1);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002032 }
2033
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002034 if (!q_vector->rxr_count)
2035 return IRQ_HANDLED;
2036
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002037 /* EIAM disabled interrupts (on this vector) for us */
Ben Hutchings288379f2009-01-19 16:43:59 -08002038 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002039
Auke Kok9a799d72007-09-15 14:07:45 -07002040 return IRQ_HANDLED;
2041}
2042
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002043static irqreturn_t ixgbe_msix_clean_many(int irq, void *data)
2044{
Alexander Duyck91281fd2009-06-04 16:00:27 +00002045 struct ixgbe_q_vector *q_vector = data;
2046 struct ixgbe_adapter *adapter = q_vector->adapter;
2047 struct ixgbe_ring *ring;
2048 int r_idx;
2049 int i;
2050
2051 if (!q_vector->txr_count && !q_vector->rxr_count)
2052 return IRQ_HANDLED;
2053
2054 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2055 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002056 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002057 ring->total_bytes = 0;
2058 ring->total_packets = 0;
2059 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002060 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002061 }
2062
2063 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
2064 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002065 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002066 ring->total_bytes = 0;
2067 ring->total_packets = 0;
2068 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002069 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002070 }
2071
Jesse Brandeburg9b471442009-12-03 11:33:54 +00002072 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002073 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002074
2075 return IRQ_HANDLED;
2076}
2077
2078/**
2079 * ixgbe_clean_rxonly - msix (aka one shot) rx clean routine
2080 * @napi: napi struct with our devices info in it
2081 * @budget: amount of work driver is allowed to do this pass, in packets
2082 *
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002083 * This function is optimized for cleaning one queue only on a single
2084 * q_vector!!!
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002085 **/
Auke Kok9a799d72007-09-15 14:07:45 -07002086static int ixgbe_clean_rxonly(struct napi_struct *napi, int budget)
2087{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002088 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002089 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002090 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002091 struct ixgbe_ring *rx_ring = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07002092 int work_done = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002093 long r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07002094
Jeff Garzik5dd2d332008-10-16 05:09:31 -04002095#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08002096 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002097 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08002098#endif
Auke Kok9a799d72007-09-15 14:07:45 -07002099
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002100 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
2101 rx_ring = adapter->rx_ring[r_idx];
2102
Herbert Xu78b6f4c2009-01-18 21:49:45 -08002103 ixgbe_clean_rx_irq(q_vector, rx_ring, &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07002104
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002105 /* If all Rx work done, exit the polling mode */
2106 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002107 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002108 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002109 ixgbe_set_itr_msix(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002110 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002111 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002112 ((u64)1 << q_vector->v_idx));
Auke Kok9a799d72007-09-15 14:07:45 -07002113 }
2114
2115 return work_done;
2116}
2117
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002118/**
Alexander Duyck91281fd2009-06-04 16:00:27 +00002119 * ixgbe_clean_rxtx_many - msix (aka one shot) rx clean routine
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002120 * @napi: napi struct with our devices info in it
2121 * @budget: amount of work driver is allowed to do this pass, in packets
2122 *
2123 * This function will clean more than one rx queue associated with a
2124 * q_vector.
2125 **/
Alexander Duyck91281fd2009-06-04 16:00:27 +00002126static int ixgbe_clean_rxtx_many(struct napi_struct *napi, int budget)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002127{
2128 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002129 container_of(napi, struct ixgbe_q_vector, napi);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002130 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002131 struct ixgbe_ring *ring = NULL;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002132 int work_done = 0, i;
2133 long r_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002134 bool tx_clean_complete = true;
2135
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002136#ifdef CONFIG_IXGBE_DCA
2137 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2138 ixgbe_update_dca(q_vector);
2139#endif
2140
Alexander Duyck91281fd2009-06-04 16:00:27 +00002141 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2142 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002143 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002144 tx_clean_complete &= ixgbe_clean_tx_irq(q_vector, ring);
2145 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002146 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002147 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002148
2149 /* attempt to distribute budget to each queue fairly, but don't allow
2150 * the budget to go below 1 because we'll exit polling */
2151 budget /= (q_vector->rxr_count ?: 1);
2152 budget = max(budget, 1);
2153 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
2154 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002155 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002156 ixgbe_clean_rx_irq(q_vector, ring, &work_done, budget);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002157 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002158 r_idx + 1);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002159 }
2160
2161 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002162 ring = adapter->rx_ring[r_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002163 /* If all Rx work done, exit the polling mode */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07002164 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002165 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002166 if (adapter->rx_itr_setting & 1)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002167 ixgbe_set_itr_msix(q_vector);
2168 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002169 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002170 ((u64)1 << q_vector->v_idx));
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002171 return 0;
2172 }
2173
2174 return work_done;
2175}
Alexander Duyck91281fd2009-06-04 16:00:27 +00002176
2177/**
2178 * ixgbe_clean_txonly - msix (aka one shot) tx clean routine
2179 * @napi: napi struct with our devices info in it
2180 * @budget: amount of work driver is allowed to do this pass, in packets
2181 *
2182 * This function is optimized for cleaning one queue only on a single
2183 * q_vector!!!
2184 **/
2185static int ixgbe_clean_txonly(struct napi_struct *napi, int budget)
2186{
2187 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002188 container_of(napi, struct ixgbe_q_vector, napi);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002189 struct ixgbe_adapter *adapter = q_vector->adapter;
2190 struct ixgbe_ring *tx_ring = NULL;
2191 int work_done = 0;
2192 long r_idx;
2193
Alexander Duyck91281fd2009-06-04 16:00:27 +00002194#ifdef CONFIG_IXGBE_DCA
2195 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002196 ixgbe_update_dca(q_vector);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002197#endif
2198
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002199 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2200 tx_ring = adapter->tx_ring[r_idx];
2201
Alexander Duyck91281fd2009-06-04 16:00:27 +00002202 if (!ixgbe_clean_tx_irq(q_vector, tx_ring))
2203 work_done = budget;
2204
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002205 /* If all Tx work done, exit the polling mode */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002206 if (work_done < budget) {
2207 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002208 if (adapter->tx_itr_setting & 1)
Alexander Duyck91281fd2009-06-04 16:00:27 +00002209 ixgbe_set_itr_msix(q_vector);
2210 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perchese8e9f692010-09-07 21:34:53 +00002211 ixgbe_irq_enable_queues(adapter,
2212 ((u64)1 << q_vector->v_idx));
Alexander Duyck91281fd2009-06-04 16:00:27 +00002213 }
2214
2215 return work_done;
2216}
2217
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002218static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002219 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07002220{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002221 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002222 struct ixgbe_ring *rx_ring = a->rx_ring[r_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002223
2224 set_bit(r_idx, q_vector->rxr_idx);
2225 q_vector->rxr_count++;
Alexander Duyck22745432010-11-16 19:27:10 -08002226 rx_ring->q_vector = q_vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002227}
Auke Kok9a799d72007-09-15 14:07:45 -07002228
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002229static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002230 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002231{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002232 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
Alexander Duyck22745432010-11-16 19:27:10 -08002233 struct ixgbe_ring *tx_ring = a->tx_ring[t_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00002234
2235 set_bit(t_idx, q_vector->txr_idx);
2236 q_vector->txr_count++;
Alexander Duyck22745432010-11-16 19:27:10 -08002237 tx_ring->q_vector = q_vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002238}
Auke Kok9a799d72007-09-15 14:07:45 -07002239
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002240/**
2241 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2242 * @adapter: board private structure to initialize
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002243 *
2244 * This function maps descriptor rings to the queue-specific vectors
2245 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2246 * one vector per ring/queue, but on a constrained vector budget, we
2247 * group the rings as "efficiently" as possible. You would add new
2248 * mapping configurations in here.
2249 **/
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002250static int ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002251{
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002252 int q_vectors;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002253 int v_start = 0;
2254 int rxr_idx = 0, txr_idx = 0;
2255 int rxr_remaining = adapter->num_rx_queues;
2256 int txr_remaining = adapter->num_tx_queues;
2257 int i, j;
2258 int rqpv, tqpv;
2259 int err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002260
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002261 /* No mapping required if MSI-X is disabled. */
2262 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07002263 goto out;
2264
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002265 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2266
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002267 /*
2268 * The ideal configuration...
2269 * We have enough vectors to map one per queue.
2270 */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002271 if (q_vectors == adapter->num_rx_queues + adapter->num_tx_queues) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002272 for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
2273 map_vector_to_rxq(adapter, v_start, rxr_idx);
2274
2275 for (; txr_idx < txr_remaining; v_start++, txr_idx++)
2276 map_vector_to_txq(adapter, v_start, txr_idx);
2277
2278 goto out;
2279 }
2280
2281 /*
2282 * If we don't have enough vectors for a 1-to-1
2283 * mapping, we'll have to group them so there are
2284 * multiple queues per vector.
2285 */
2286 /* Re-adjusting *qpv takes care of the remainder. */
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002287 for (i = v_start; i < q_vectors; i++) {
2288 rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002289 for (j = 0; j < rqpv; j++) {
2290 map_vector_to_rxq(adapter, i, rxr_idx);
2291 rxr_idx++;
2292 rxr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002293 }
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002294 tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - i);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002295 for (j = 0; j < tqpv; j++) {
2296 map_vector_to_txq(adapter, i, txr_idx);
2297 txr_idx++;
2298 txr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002299 }
Auke Kok9a799d72007-09-15 14:07:45 -07002300 }
Auke Kok9a799d72007-09-15 14:07:45 -07002301out:
Auke Kok9a799d72007-09-15 14:07:45 -07002302 return err;
2303}
2304
2305/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002306 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2307 * @adapter: board private structure
2308 *
2309 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2310 * interrupts from the kernel.
2311 **/
2312static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2313{
2314 struct net_device *netdev = adapter->netdev;
2315 irqreturn_t (*handler)(int, void *);
2316 int i, vector, q_vectors, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002317 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002318
2319 /* Decrement for Other and TCP Timer vectors */
2320 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2321
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002322 err = ixgbe_map_rings_to_vectors(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002323 if (err)
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002324 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002325
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002326#define SET_HANDLER(_v) (((_v)->rxr_count && (_v)->txr_count) \
2327 ? &ixgbe_msix_clean_many : \
2328 (_v)->rxr_count ? &ixgbe_msix_clean_rx : \
2329 (_v)->txr_count ? &ixgbe_msix_clean_tx : \
2330 NULL)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002331 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002332 struct ixgbe_q_vector *q_vector = adapter->q_vector[vector];
2333 handler = SET_HANDLER(q_vector);
Robert Olssoncb13fc22008-11-25 16:43:52 -08002334
Joe Perchese8e9f692010-09-07 21:34:53 +00002335 if (handler == &ixgbe_msix_clean_rx) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002336 sprintf(q_vector->name, "%s-%s-%d",
Robert Olssoncb13fc22008-11-25 16:43:52 -08002337 netdev->name, "rx", ri++);
Joe Perchese8e9f692010-09-07 21:34:53 +00002338 } else if (handler == &ixgbe_msix_clean_tx) {
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002339 sprintf(q_vector->name, "%s-%s-%d",
Robert Olssoncb13fc22008-11-25 16:43:52 -08002340 netdev->name, "tx", ti++);
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002341 } else if (handler == &ixgbe_msix_clean_many) {
2342 sprintf(q_vector->name, "%s-%s-%d",
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002343 netdev->name, "TxRx", ri++);
2344 ti++;
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002345 } else {
2346 /* skip this unused q_vector */
2347 continue;
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002348 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002349 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002350 handler, 0, q_vector->name,
2351 q_vector);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002352 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002353 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002354 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002355 goto free_queue_irqs;
2356 }
2357 }
2358
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002359 sprintf(adapter->lsc_int_name, "%s:lsc", netdev->name);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002360 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyckd0759eb2010-11-16 19:27:09 -08002361 ixgbe_msix_lsc, 0, adapter->lsc_int_name, netdev);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002362 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002363 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002364 goto free_queue_irqs;
2365 }
2366
2367 return 0;
2368
2369free_queue_irqs:
2370 for (i = vector - 1; i >= 0; i--)
2371 free_irq(adapter->msix_entries[--vector].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002372 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002373 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2374 pci_disable_msix(adapter->pdev);
2375 kfree(adapter->msix_entries);
2376 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002377 return err;
2378}
2379
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002380static void ixgbe_set_itr(struct ixgbe_adapter *adapter)
2381{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002382 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002383 struct ixgbe_ring *rx_ring = adapter->rx_ring[0];
2384 struct ixgbe_ring *tx_ring = adapter->tx_ring[0];
Alexander Duyck125601b2010-11-16 19:27:08 -08002385 u32 new_itr = q_vector->eitr;
2386 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002387
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002388 q_vector->tx_itr = ixgbe_update_itr(adapter, new_itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002389 q_vector->tx_itr,
2390 tx_ring->total_packets,
2391 tx_ring->total_bytes);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002392 q_vector->rx_itr = ixgbe_update_itr(adapter, new_itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002393 q_vector->rx_itr,
2394 rx_ring->total_packets,
2395 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002396
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002397 current_itr = max(q_vector->rx_itr, q_vector->tx_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002398
2399 switch (current_itr) {
2400 /* counts and packets in update_itr are dependent on these numbers */
2401 case lowest_latency:
2402 new_itr = 100000;
2403 break;
2404 case low_latency:
2405 new_itr = 20000; /* aka hwitr = ~200 */
2406 break;
2407 case bulk_latency:
2408 new_itr = 8000;
2409 break;
2410 default:
2411 break;
2412 }
2413
2414 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002415 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08002416 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002417
Alexander Duyck125601b2010-11-16 19:27:08 -08002418 /* save the algorithm value here */
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002419 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002420
2421 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002422 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002423}
2424
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002425/**
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002426 * ixgbe_irq_enable - Enable default interrupt generation settings
2427 * @adapter: board private structure
2428 **/
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002429static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2430 bool flush)
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002431{
2432 u32 mask;
Nelson, Shannon835462f2009-04-27 22:42:54 +00002433
2434 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002435 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
2436 mask |= IXGBE_EIMS_GPI_SDP0;
David S. Miller6ab33d52008-11-20 16:44:00 -08002437 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2438 mask |= IXGBE_EIMS_GPI_SDP1;
Alexander Duyckbd508172010-11-16 19:27:03 -08002439 switch (adapter->hw.mac.type) {
2440 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002441 case ixgbe_mac_X540:
Jesse Brandeburg2a41ff82009-03-13 22:14:30 +00002442 mask |= IXGBE_EIMS_ECC;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002443 mask |= IXGBE_EIMS_GPI_SDP1;
2444 mask |= IXGBE_EIMS_GPI_SDP2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002445 if (adapter->num_vfs)
2446 mask |= IXGBE_EIMS_MAILBOX;
Alexander Duyckbd508172010-11-16 19:27:03 -08002447 break;
2448 default:
2449 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002450 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00002451 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
2452 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
2453 mask |= IXGBE_EIMS_FLOW_DIR;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002454
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002455 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002456 if (queues)
2457 ixgbe_irq_enable_queues(adapter, ~0);
2458 if (flush)
2459 IXGBE_WRITE_FLUSH(&adapter->hw);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002460
2461 if (adapter->num_vfs > 32) {
2462 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2463 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2464 }
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002465}
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002466
2467/**
2468 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002469 * @irq: interrupt number
2470 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002471 **/
2472static irqreturn_t ixgbe_intr(int irq, void *data)
2473{
2474 struct net_device *netdev = data;
2475 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2476 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002477 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002478 u32 eicr;
2479
Don Skidmore54037502009-02-21 15:42:56 -08002480 /*
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002481 * Workaround for silicon errata on 82598. Mask the interrupts
Don Skidmore54037502009-02-21 15:42:56 -08002482 * before the read of EICR.
2483 */
2484 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2485
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002486 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
2487 * therefore no explict interrupt disable is necessary */
2488 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002489 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002490 /*
2491 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002492 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002493 * have disabled interrupts due to EIAM
2494 * finish the workaround of silicon errata on 82598. Unmask
2495 * the interrupt that we masked before the EICR read.
2496 */
2497 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2498 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002499 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002500 }
Auke Kok9a799d72007-09-15 14:07:45 -07002501
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002502 if (eicr & IXGBE_EICR_LSC)
2503 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002504
Alexander Duyckbd508172010-11-16 19:27:03 -08002505 switch (hw->mac.type) {
2506 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002507 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002508 ixgbe_check_sfp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002509 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2510 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
2511 adapter->interrupt_event = eicr;
2512 schedule_work(&adapter->check_overtemp_task);
2513 }
2514 break;
2515 default:
2516 break;
2517 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002518
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002519 ixgbe_check_fan_failure(adapter, eicr);
2520
Alexander Duyck7a921c92009-05-06 10:43:28 +00002521 if (napi_schedule_prep(&(q_vector->napi))) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002522 adapter->tx_ring[0]->total_packets = 0;
2523 adapter->tx_ring[0]->total_bytes = 0;
2524 adapter->rx_ring[0]->total_packets = 0;
2525 adapter->rx_ring[0]->total_bytes = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002526 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002527 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002528 }
2529
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002530 /*
2531 * re-enable link(maybe) and non-queue interrupts, no flush.
2532 * ixgbe_poll will re-enable the queue interrupts
2533 */
2534
2535 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2536 ixgbe_irq_enable(adapter, false, false);
2537
Auke Kok9a799d72007-09-15 14:07:45 -07002538 return IRQ_HANDLED;
2539}
2540
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002541static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2542{
2543 int i, q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2544
2545 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002546 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002547 bitmap_zero(q_vector->rxr_idx, MAX_RX_QUEUES);
2548 bitmap_zero(q_vector->txr_idx, MAX_TX_QUEUES);
2549 q_vector->rxr_count = 0;
2550 q_vector->txr_count = 0;
2551 }
2552}
2553
Auke Kok9a799d72007-09-15 14:07:45 -07002554/**
2555 * ixgbe_request_irq - initialize interrupts
2556 * @adapter: board private structure
2557 *
2558 * Attempts to configure interrupts using the best available
2559 * capabilities of the hardware and kernel.
2560 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002561static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002562{
2563 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002564 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002565
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002566 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2567 err = ixgbe_request_msix_irqs(adapter);
2568 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002569 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Joe Perchese8e9f692010-09-07 21:34:53 +00002570 netdev->name, netdev);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002571 } else {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002572 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Joe Perchese8e9f692010-09-07 21:34:53 +00002573 netdev->name, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002574 }
2575
Auke Kok9a799d72007-09-15 14:07:45 -07002576 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002577 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002578
Auke Kok9a799d72007-09-15 14:07:45 -07002579 return err;
2580}
2581
2582static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2583{
2584 struct net_device *netdev = adapter->netdev;
2585
2586 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002587 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002588
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002589 q_vectors = adapter->num_msix_vectors;
2590
2591 i = q_vectors - 1;
Auke Kok9a799d72007-09-15 14:07:45 -07002592 free_irq(adapter->msix_entries[i].vector, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002593
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002594 i--;
2595 for (; i >= 0; i--) {
2596 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002597 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002598 }
2599
2600 ixgbe_reset_q_vectors(adapter);
2601 } else {
2602 free_irq(adapter->pdev->irq, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002603 }
2604}
2605
2606/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002607 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2608 * @adapter: board private structure
2609 **/
2610static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2611{
Alexander Duyckbd508172010-11-16 19:27:03 -08002612 switch (adapter->hw.mac.type) {
2613 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002614 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002615 break;
2616 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002617 case ixgbe_mac_X540:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002618 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2619 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002620 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002621 if (adapter->num_vfs > 32)
2622 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002623 break;
2624 default:
2625 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002626 }
2627 IXGBE_WRITE_FLUSH(&adapter->hw);
2628 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2629 int i;
2630 for (i = 0; i < adapter->num_msix_vectors; i++)
2631 synchronize_irq(adapter->msix_entries[i].vector);
2632 } else {
2633 synchronize_irq(adapter->pdev->irq);
2634 }
2635}
2636
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002637/**
Auke Kok9a799d72007-09-15 14:07:45 -07002638 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2639 *
2640 **/
2641static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2642{
Auke Kok9a799d72007-09-15 14:07:45 -07002643 struct ixgbe_hw *hw = &adapter->hw;
2644
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002645 IXGBE_WRITE_REG(hw, IXGBE_EITR(0),
Joe Perchese8e9f692010-09-07 21:34:53 +00002646 EITR_INTS_PER_SEC_TO_REG(adapter->rx_eitr_param));
Auke Kok9a799d72007-09-15 14:07:45 -07002647
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002648 ixgbe_set_ivar(adapter, 0, 0, 0);
2649 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002650
2651 map_vector_to_rxq(adapter, 0, 0);
2652 map_vector_to_txq(adapter, 0, 0);
2653
Emil Tantilov396e7992010-07-01 20:05:12 +00002654 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002655}
2656
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002657/**
2658 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2659 * @adapter: board private structure
2660 * @ring: structure containing ring specific data
2661 *
2662 * Configure the Tx descriptor ring after a reset.
2663 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002664void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2665 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002666{
2667 struct ixgbe_hw *hw = &adapter->hw;
2668 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002669 int wait_loop = 10;
2670 u32 txdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002671 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002672
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002673 /* disable queue to avoid issues while updating state */
2674 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2675 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx),
2676 txdctl & ~IXGBE_TXDCTL_ENABLE);
2677 IXGBE_WRITE_FLUSH(hw);
2678
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002679 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002680 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002681 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2682 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2683 ring->count * sizeof(union ixgbe_adv_tx_desc));
2684 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2685 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002686 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002687
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002688 /* configure fetching thresholds */
2689 if (adapter->rx_itr_setting == 0) {
2690 /* cannot set wthresh when itr==0 */
2691 txdctl &= ~0x007F0000;
2692 } else {
2693 /* enable WTHRESH=8 descriptors, to encourage burst writeback */
2694 txdctl |= (8 << 16);
2695 }
2696 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
2697 /* PThresh workaround for Tx hang with DFP enabled. */
2698 txdctl |= 32;
2699 }
2700
2701 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002702 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2703 adapter->atr_sample_rate) {
2704 ring->atr_sample_rate = adapter->atr_sample_rate;
2705 ring->atr_count = 0;
2706 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2707 } else {
2708 ring->atr_sample_rate = 0;
2709 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002710
John Fastabendc84d3242010-11-16 19:27:12 -08002711 clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state);
2712
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002713 /* enable queue */
2714 txdctl |= IXGBE_TXDCTL_ENABLE;
2715 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2716
2717 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2718 if (hw->mac.type == ixgbe_mac_82598EB &&
2719 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2720 return;
2721
2722 /* poll to verify queue is enabled */
2723 do {
2724 msleep(1);
2725 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2726 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2727 if (!wait_loop)
2728 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002729}
2730
Alexander Duyck120ff942010-08-19 13:34:50 +00002731static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2732{
2733 struct ixgbe_hw *hw = &adapter->hw;
2734 u32 rttdcs;
2735 u32 mask;
2736
2737 if (hw->mac.type == ixgbe_mac_82598EB)
2738 return;
2739
2740 /* disable the arbiter while setting MTQC */
2741 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2742 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2743 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2744
2745 /* set transmit pool layout */
2746 mask = (IXGBE_FLAG_SRIOV_ENABLED | IXGBE_FLAG_DCB_ENABLED);
2747 switch (adapter->flags & mask) {
2748
2749 case (IXGBE_FLAG_SRIOV_ENABLED):
2750 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2751 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2752 break;
2753
2754 case (IXGBE_FLAG_DCB_ENABLED):
2755 /* We enable 8 traffic classes, DCB only */
2756 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2757 (IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ));
2758 break;
2759
2760 default:
2761 IXGBE_WRITE_REG(hw, IXGBE_MTQC, IXGBE_MTQC_64Q_1PB);
2762 break;
2763 }
2764
2765 /* re-enable the arbiter */
2766 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2767 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2768}
2769
Auke Kok9a799d72007-09-15 14:07:45 -07002770/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002771 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002772 * @adapter: board private structure
2773 *
2774 * Configure the Tx unit of the MAC after a reset.
2775 **/
2776static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2777{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002778 struct ixgbe_hw *hw = &adapter->hw;
2779 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002780 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002781
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002782 ixgbe_setup_mtqc(adapter);
2783
2784 if (hw->mac.type != ixgbe_mac_82598EB) {
2785 /* DMATXCTL.EN must be before Tx queues are enabled */
2786 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2787 dmatxctl |= IXGBE_DMATXCTL_TE;
2788 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2789 }
2790
Auke Kok9a799d72007-09-15 14:07:45 -07002791 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002792 for (i = 0; i < adapter->num_tx_queues; i++)
2793 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002794}
2795
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002796#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002797
Yi Zoua6616b42009-08-06 13:05:23 +00002798static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002799 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002800{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002801 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002802 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002803
Alexander Duyckbd508172010-11-16 19:27:03 -08002804 switch (adapter->hw.mac.type) {
2805 case ixgbe_mac_82598EB: {
2806 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2807 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002808 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002809 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002810 break;
2811 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08002812 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08002813 default:
2814 break;
2815 }
2816
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002817 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002818
2819 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2820 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002821 if (adapter->num_vfs)
2822 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002823
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002824 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2825 IXGBE_SRRCTL_BSIZEHDR_MASK;
2826
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002827 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002828#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2829 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2830#else
2831 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2832#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002833 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002834 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002835 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2836 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002837 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002838 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002839
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002840 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002841}
2842
Alexander Duyck05abb122010-08-19 13:35:41 +00002843static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002844{
Alexander Duyck05abb122010-08-19 13:35:41 +00002845 struct ixgbe_hw *hw = &adapter->hw;
2846 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002847 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2848 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002849 u32 mrqc = 0, reta = 0;
2850 u32 rxcsum;
2851 int i, j;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002852 int mask;
2853
Alexander Duyck05abb122010-08-19 13:35:41 +00002854 /* Fill out hash function seeds */
2855 for (i = 0; i < 10; i++)
2856 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002857
Alexander Duyck05abb122010-08-19 13:35:41 +00002858 /* Fill out redirection table */
2859 for (i = 0, j = 0; i < 128; i++, j++) {
2860 if (j == adapter->ring_feature[RING_F_RSS].indices)
2861 j = 0;
2862 /* reta = 4-byte sliding window of
2863 * 0x00..(indices-1)(indices-1)00..etc. */
2864 reta = (reta << 8) | (j * 0x11);
2865 if ((i & 3) == 3)
2866 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2867 }
2868
2869 /* Disable indicating checksum in descriptor, enables RSS hash */
2870 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2871 rxcsum |= IXGBE_RXCSUM_PCSD;
2872 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2873
2874 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
2875 mask = adapter->flags & IXGBE_FLAG_RSS_ENABLED;
2876 else
2877 mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002878#ifdef CONFIG_IXGBE_DCB
Alexander Duyck05abb122010-08-19 13:35:41 +00002879 | IXGBE_FLAG_DCB_ENABLED
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002880#endif
Alexander Duyck05abb122010-08-19 13:35:41 +00002881 | IXGBE_FLAG_SRIOV_ENABLED
2882 );
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002883
2884 switch (mask) {
2885 case (IXGBE_FLAG_RSS_ENABLED):
2886 mrqc = IXGBE_MRQC_RSSEN;
2887 break;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002888 case (IXGBE_FLAG_SRIOV_ENABLED):
2889 mrqc = IXGBE_MRQC_VMDQEN;
2890 break;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002891#ifdef CONFIG_IXGBE_DCB
2892 case (IXGBE_FLAG_DCB_ENABLED):
2893 mrqc = IXGBE_MRQC_RT8TCEN;
2894 break;
2895#endif /* CONFIG_IXGBE_DCB */
2896 default:
2897 break;
2898 }
2899
Alexander Duyck05abb122010-08-19 13:35:41 +00002900 /* Perform hash on these packet types */
2901 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2902 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2903 | IXGBE_MRQC_RSS_FIELD_IPV6
2904 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2905
2906 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002907}
2908
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002909/**
Don Skidmoreb93a2222010-11-16 19:27:17 -08002910 * ixgbe_clear_rscctl - disable RSC for the indicated ring
2911 * @adapter: address of board private structure
2912 * @ring: structure containing ring specific data
2913 **/
2914void ixgbe_clear_rscctl(struct ixgbe_adapter *adapter,
2915 struct ixgbe_ring *ring)
2916{
2917 struct ixgbe_hw *hw = &adapter->hw;
2918 u32 rscctrl;
2919 u8 reg_idx = ring->reg_idx;
2920
2921 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
2922 rscctrl &= ~IXGBE_RSCCTL_RSCEN;
2923 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
2924}
2925
2926/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002927 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2928 * @adapter: address of board private structure
2929 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002930 **/
Don Skidmoreb93a2222010-11-16 19:27:17 -08002931void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
Alexander Duyck73670962010-08-19 13:38:34 +00002932 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002933{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002934 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002935 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea52009-11-23 10:45:11 -08002936 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002937 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002938
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002939 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002940 return;
2941
2942 rx_buf_len = ring->rx_buf_len;
2943 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002944 rscctrl |= IXGBE_RSCCTL_RSCEN;
2945 /*
2946 * we must limit the number of descriptors so that the
2947 * total size of max desc * buf_len is not greater
2948 * than 65535
2949 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002950 if (ring_is_ps_enabled(ring)) {
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002951#if (MAX_SKB_FRAGS > 16)
2952 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2953#elif (MAX_SKB_FRAGS > 8)
2954 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2955#elif (MAX_SKB_FRAGS > 4)
2956 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2957#else
2958 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2959#endif
2960 } else {
2961 if (rx_buf_len < IXGBE_RXBUFFER_4096)
2962 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2963 else if (rx_buf_len < IXGBE_RXBUFFER_8192)
2964 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2965 else
2966 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2967 }
Alexander Duyck73670962010-08-19 13:38:34 +00002968 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002969}
2970
Alexander Duyck9e10e042010-08-19 13:40:06 +00002971/**
2972 * ixgbe_set_uta - Set unicast filter table address
2973 * @adapter: board private structure
2974 *
2975 * The unicast table address is a register array of 32-bit registers.
2976 * The table is meant to be used in a way similar to how the MTA is used
2977 * however due to certain limitations in the hardware it is necessary to
2978 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2979 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2980 **/
2981static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2982{
2983 struct ixgbe_hw *hw = &adapter->hw;
2984 int i;
2985
2986 /* The UTA table only exists on 82599 hardware and newer */
2987 if (hw->mac.type < ixgbe_mac_82599EB)
2988 return;
2989
2990 /* we only need to do this if VMDq is enabled */
2991 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2992 return;
2993
2994 for (i = 0; i < 128; i++)
2995 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2996}
2997
2998#define IXGBE_MAX_RX_DESC_POLL 10
2999static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
3000 struct ixgbe_ring *ring)
3001{
3002 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003003 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
3004 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003005 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003006
3007 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3008 if (hw->mac.type == ixgbe_mac_82598EB &&
3009 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
3010 return;
3011
3012 do {
3013 msleep(1);
3014 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3015 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
3016
3017 if (!wait_loop) {
3018 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
3019 "the polling period\n", reg_idx);
3020 }
3021}
3022
Alexander Duyck84418e32010-08-19 13:40:54 +00003023void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
3024 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00003025{
3026 struct ixgbe_hw *hw = &adapter->hw;
3027 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00003028 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003029 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00003030
Alexander Duyck9e10e042010-08-19 13:40:06 +00003031 /* disable queue to avoid issues while updating state */
3032 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
3033 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx),
3034 rxdctl & ~IXGBE_RXDCTL_ENABLE);
3035 IXGBE_WRITE_FLUSH(hw);
3036
Alexander Duyckacd37172010-08-19 13:36:05 +00003037 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
3038 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
3039 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
3040 ring->count * sizeof(union ixgbe_adv_rx_desc));
3041 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
3042 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08003043 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00003044
3045 ixgbe_configure_srrctl(adapter, ring);
3046 ixgbe_configure_rscctl(adapter, ring);
3047
3048 if (hw->mac.type == ixgbe_mac_82598EB) {
3049 /*
3050 * enable cache line friendly hardware writes:
3051 * PTHRESH=32 descriptors (half the internal cache),
3052 * this also removes ugly rx_no_buffer_count increment
3053 * HTHRESH=4 descriptors (to minimize latency on fetch)
3054 * WTHRESH=8 burst writeback up to two cache lines
3055 */
3056 rxdctl &= ~0x3FFFFF;
3057 rxdctl |= 0x080420;
3058 }
3059
3060 /* enable receive descriptor ring */
3061 rxdctl |= IXGBE_RXDCTL_ENABLE;
3062 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
3063
3064 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyckfc77dc32010-11-16 19:26:51 -08003065 ixgbe_alloc_rx_buffers(ring, IXGBE_DESC_UNUSED(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00003066}
3067
Alexander Duyck48654522010-08-19 13:36:27 +00003068static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
3069{
3070 struct ixgbe_hw *hw = &adapter->hw;
3071 int p;
3072
3073 /* PSRTYPE must be initialized in non 82598 adapters */
3074 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003075 IXGBE_PSRTYPE_UDPHDR |
3076 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00003077 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00003078 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00003079
3080 if (hw->mac.type == ixgbe_mac_82598EB)
3081 return;
3082
3083 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
3084 psrtype |= (adapter->num_rx_queues_per_pool << 29);
3085
3086 for (p = 0; p < adapter->num_rx_pools; p++)
3087 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
3088 psrtype);
3089}
3090
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003091static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
3092{
3093 struct ixgbe_hw *hw = &adapter->hw;
3094 u32 gcr_ext;
3095 u32 vt_reg_bits;
3096 u32 reg_offset, vf_shift;
3097 u32 vmdctl;
3098
3099 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
3100 return;
3101
3102 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
3103 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
3104 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
3105 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
3106
3107 vf_shift = adapter->num_vfs % 32;
3108 reg_offset = (adapter->num_vfs > 32) ? 1 : 0;
3109
3110 /* Enable only the PF's pool for Tx/Rx */
3111 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
3112 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
3113 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
3114 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
3115 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3116
3117 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
3118 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
3119
3120 /*
3121 * Set up VF register offsets for selected VT Mode,
3122 * i.e. 32 or 64 VFs for SR-IOV
3123 */
3124 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
3125 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
3126 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
3127 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
3128
3129 /* enable Tx loopback for VF/PF communication */
3130 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
3131}
3132
Alexander Duyck477de6e2010-08-19 13:38:11 +00003133static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003134{
Auke Kok9a799d72007-09-15 14:07:45 -07003135 struct ixgbe_hw *hw = &adapter->hw;
3136 struct net_device *netdev = adapter->netdev;
3137 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003138 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003139 struct ixgbe_ring *rx_ring;
3140 int i;
3141 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003142
Auke Kok9a799d72007-09-15 14:07:45 -07003143 /* Decide whether to use packet split mode or not */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003144 /* Do not use packet split if we're in SR-IOV Mode */
3145 if (!adapter->num_vfs)
3146 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07003147
3148 /* Set the RX buffer length according to the mode */
3149 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003150 rx_buf_len = IXGBE_RX_HDR_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003151 } else {
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00003152 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
Alexander Duyckf8212f92009-04-27 22:42:37 +00003153 (netdev->mtu <= ETH_DATA_LEN))
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003154 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003155 else
Alexander Duyck477de6e2010-08-19 13:38:11 +00003156 rx_buf_len = ALIGN(max_frame + VLAN_HLEN, 1024);
3157 }
3158
3159#ifdef IXGBE_FCOE
3160 /* adjust max frame to be able to do baby jumbo for FCoE */
3161 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3162 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3163 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3164
3165#endif /* IXGBE_FCOE */
3166 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3167 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3168 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3169 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3170
3171 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003172 }
3173
Auke Kok9a799d72007-09-15 14:07:45 -07003174 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003175 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3176 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003177 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3178
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003179 /*
3180 * Setup the HW Rx Head and Tail Descriptor Pointers and
3181 * the Base and Length of the Rx Descriptor Ring
3182 */
Auke Kok9a799d72007-09-15 14:07:45 -07003183 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003184 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00003185 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003186
Yi Zou6e455b892009-08-06 13:05:44 +00003187 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003188 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00003189 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003190 clear_ring_ps_enabled(rx_ring);
3191
3192 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3193 set_ring_rsc_enabled(rx_ring);
3194 else
3195 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003196
Yi Zou63f39bd2009-05-17 12:34:35 +00003197#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003198 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003199 struct ixgbe_ring_feature *f;
3200 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003201 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003202 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003203 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3204 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003205 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003206 } else if (!ring_is_rsc_enabled(rx_ring) &&
3207 !ring_is_ps_enabled(rx_ring)) {
3208 rx_ring->rx_buf_len =
3209 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003210 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003211 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003212#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003213 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003214}
3215
Alexander Duyck73670962010-08-19 13:38:34 +00003216static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3217{
3218 struct ixgbe_hw *hw = &adapter->hw;
3219 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3220
3221 switch (hw->mac.type) {
3222 case ixgbe_mac_82598EB:
3223 /*
3224 * For VMDq support of different descriptor types or
3225 * buffer sizes through the use of multiple SRRCTL
3226 * registers, RDRXCTL.MVMEN must be set to 1
3227 *
3228 * also, the manual doesn't mention it clearly but DCA hints
3229 * will only use queue 0's tags unless this bit is set. Side
3230 * effects of setting this bit are only that SRRCTL must be
3231 * fully programmed [0..15]
3232 */
3233 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3234 break;
3235 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003236 case ixgbe_mac_X540:
Alexander Duyck73670962010-08-19 13:38:34 +00003237 /* Disable RSC for ACK packets */
3238 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3239 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3240 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3241 /* hardware requires some bits to be set by default */
3242 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3243 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3244 break;
3245 default:
3246 /* We should do nothing since we don't know this hardware */
3247 return;
3248 }
3249
3250 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3251}
3252
Alexander Duyck477de6e2010-08-19 13:38:11 +00003253/**
3254 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3255 * @adapter: board private structure
3256 *
3257 * Configure the Rx unit of the MAC after a reset.
3258 **/
3259static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3260{
3261 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003262 int i;
3263 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003264
3265 /* disable receives while setting up the descriptors */
3266 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3267 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3268
3269 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003270 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003271
Alexander Duyck9e10e042010-08-19 13:40:06 +00003272 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003273 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003274
Alexander Duyck9e10e042010-08-19 13:40:06 +00003275 ixgbe_set_uta(adapter);
3276
Alexander Duyck477de6e2010-08-19 13:38:11 +00003277 /* set_rx_buffer_len must be called before ring initialization */
3278 ixgbe_set_rx_buffer_len(adapter);
3279
3280 /*
3281 * Setup the HW Rx Head and Tail Descriptor Pointers and
3282 * the Base and Length of the Rx Descriptor Ring
3283 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003284 for (i = 0; i < adapter->num_rx_queues; i++)
3285 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003286
Alexander Duyck9e10e042010-08-19 13:40:06 +00003287 /* disable drop enable for 82598 parts */
3288 if (hw->mac.type == ixgbe_mac_82598EB)
3289 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3290
3291 /* enable all receives */
3292 rxctrl |= IXGBE_RXCTRL_RXEN;
3293 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003294}
3295
Auke Kok9a799d72007-09-15 14:07:45 -07003296static void ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
3297{
3298 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003299 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003300 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003301
3302 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003303 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003304 set_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003305}
3306
3307static void ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
3308{
3309 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003310 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003311 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003312
Auke Kok9a799d72007-09-15 14:07:45 -07003313 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003314 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003315 clear_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003316}
3317
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003318/**
3319 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3320 * @adapter: driver data
3321 */
3322static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3323{
3324 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003325 u32 vlnctrl;
3326
3327 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3328 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3329 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3330}
3331
3332/**
3333 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3334 * @adapter: driver data
3335 */
3336static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3337{
3338 struct ixgbe_hw *hw = &adapter->hw;
3339 u32 vlnctrl;
3340
3341 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3342 vlnctrl |= IXGBE_VLNCTRL_VFE;
3343 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3344 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3345}
3346
3347/**
3348 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3349 * @adapter: driver data
3350 */
3351static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3352{
3353 struct ixgbe_hw *hw = &adapter->hw;
3354 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003355 int i, j;
3356
3357 switch (hw->mac.type) {
3358 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003359 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3360 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003361 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3362 break;
3363 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003364 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003365 for (i = 0; i < adapter->num_rx_queues; i++) {
3366 j = adapter->rx_ring[i]->reg_idx;
3367 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3368 vlnctrl &= ~IXGBE_RXDCTL_VME;
3369 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3370 }
3371 break;
3372 default:
3373 break;
3374 }
3375}
3376
3377/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003378 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003379 * @adapter: driver data
3380 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003381static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003382{
3383 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003384 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003385 int i, j;
3386
3387 switch (hw->mac.type) {
3388 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003389 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3390 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003391 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3392 break;
3393 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003394 case ixgbe_mac_X540:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003395 for (i = 0; i < adapter->num_rx_queues; i++) {
3396 j = adapter->rx_ring[i]->reg_idx;
3397 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3398 vlnctrl |= IXGBE_RXDCTL_VME;
3399 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3400 }
3401 break;
3402 default:
3403 break;
3404 }
3405}
3406
Auke Kok9a799d72007-09-15 14:07:45 -07003407static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3408{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003409 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003410
Jesse Grossf62bbb52010-10-20 13:56:10 +00003411 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3412
3413 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3414 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003415}
3416
3417/**
Alexander Duyck28500622010-06-15 09:25:48 +00003418 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3419 * @netdev: network interface device structure
3420 *
3421 * Writes unicast address list to the RAR table.
3422 * Returns: -ENOMEM on failure/insufficient address space
3423 * 0 on no addresses written
3424 * X on writing X addresses to the RAR table
3425 **/
3426static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3427{
3428 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3429 struct ixgbe_hw *hw = &adapter->hw;
3430 unsigned int vfn = adapter->num_vfs;
3431 unsigned int rar_entries = hw->mac.num_rar_entries - (vfn + 1);
3432 int count = 0;
3433
3434 /* return ENOMEM indicating insufficient memory for addresses */
3435 if (netdev_uc_count(netdev) > rar_entries)
3436 return -ENOMEM;
3437
3438 if (!netdev_uc_empty(netdev) && rar_entries) {
3439 struct netdev_hw_addr *ha;
3440 /* return error if we do not support writing to RAR table */
3441 if (!hw->mac.ops.set_rar)
3442 return -ENOMEM;
3443
3444 netdev_for_each_uc_addr(ha, netdev) {
3445 if (!rar_entries)
3446 break;
3447 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3448 vfn, IXGBE_RAH_AV);
3449 count++;
3450 }
3451 }
3452 /* write the addresses in reverse order to avoid write combining */
3453 for (; rar_entries > 0 ; rar_entries--)
3454 hw->mac.ops.clear_rar(hw, rar_entries);
3455
3456 return count;
3457}
3458
3459/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003460 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003461 * @netdev: network interface device structure
3462 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003463 * The set_rx_method entry point is called whenever the unicast/multicast
3464 * address list or the network interface flags are updated. This routine is
3465 * responsible for configuring the hardware for proper unicast, multicast and
3466 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003467 **/
Greg Rose7f870472010-01-09 02:25:29 +00003468void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003469{
3470 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3471 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003472 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3473 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003474
3475 /* Check for Promiscuous and All Multicast modes */
3476
3477 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3478
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003479 /* set all bits that we expect to always be set */
3480 fctrl |= IXGBE_FCTRL_BAM;
3481 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3482 fctrl |= IXGBE_FCTRL_PMCF;
3483
Alexander Duyck28500622010-06-15 09:25:48 +00003484 /* clear the bits we are changing the status of */
3485 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3486
Auke Kok9a799d72007-09-15 14:07:45 -07003487 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003488 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003489 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003490 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003491 /* don't hardware filter vlans in promisc mode */
3492 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003493 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003494 if (netdev->flags & IFF_ALLMULTI) {
3495 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003496 vmolr |= IXGBE_VMOLR_MPE;
3497 } else {
3498 /*
3499 * Write addresses to the MTA, if the attempt fails
3500 * then we should just turn on promiscous mode so
3501 * that we can at least receive multicast traffic
3502 */
3503 hw->mac.ops.update_mc_addr_list(hw, netdev);
3504 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003505 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003506 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003507 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003508 /*
3509 * Write addresses to available RAR registers, if there is not
3510 * sufficient space to store all the addresses then enable
3511 * unicast promiscous mode
3512 */
3513 count = ixgbe_write_uc_addr_list(netdev);
3514 if (count < 0) {
3515 fctrl |= IXGBE_FCTRL_UPE;
3516 vmolr |= IXGBE_VMOLR_ROPE;
3517 }
3518 }
3519
3520 if (adapter->num_vfs) {
3521 ixgbe_restore_vf_multicasts(adapter);
3522 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3523 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3524 IXGBE_VMOLR_ROPE);
3525 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003526 }
3527
3528 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003529
3530 if (netdev->features & NETIF_F_HW_VLAN_RX)
3531 ixgbe_vlan_strip_enable(adapter);
3532 else
3533 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003534}
3535
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003536static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3537{
3538 int q_idx;
3539 struct ixgbe_q_vector *q_vector;
3540 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3541
3542 /* legacy and MSI only use one vector */
3543 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3544 q_vectors = 1;
3545
3546 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003547 struct napi_struct *napi;
Alexander Duyck7a921c92009-05-06 10:43:28 +00003548 q_vector = adapter->q_vector[q_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003549 napi = &q_vector->napi;
Alexander Duyck91281fd2009-06-04 16:00:27 +00003550 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
3551 if (!q_vector->rxr_count || !q_vector->txr_count) {
3552 if (q_vector->txr_count == 1)
3553 napi->poll = &ixgbe_clean_txonly;
3554 else if (q_vector->rxr_count == 1)
3555 napi->poll = &ixgbe_clean_rxonly;
3556 }
3557 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003558
3559 napi_enable(napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003560 }
3561}
3562
3563static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3564{
3565 int q_idx;
3566 struct ixgbe_q_vector *q_vector;
3567 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3568
3569 /* legacy and MSI only use one vector */
3570 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3571 q_vectors = 1;
3572
3573 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003574 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003575 napi_disable(&q_vector->napi);
3576 }
3577}
3578
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003579#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003580/*
3581 * ixgbe_configure_dcb - Configure DCB hardware
3582 * @adapter: ixgbe adapter struct
3583 *
3584 * This is called by the driver on open to configure the DCB hardware.
3585 * This is also called by the gennetlink interface when reconfiguring
3586 * the DCB state.
3587 */
3588static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3589{
3590 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003591 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003592
Alexander Duyck67ebd792010-08-19 13:34:04 +00003593 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3594 if (hw->mac.type == ixgbe_mac_82598EB)
3595 netif_set_gso_max_size(adapter->netdev, 65536);
3596 return;
3597 }
3598
3599 if (hw->mac.type == ixgbe_mac_82598EB)
3600 netif_set_gso_max_size(adapter->netdev, 32768);
3601
John Fastabend98063072010-10-28 00:59:57 +00003602#ifdef CONFIG_FCOE
3603 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3604 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3605#endif
3606
John Fastabend80ab1932010-11-16 19:26:45 -08003607 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
John Fastabend98063072010-10-28 00:59:57 +00003608 DCB_TX_CONFIG);
John Fastabend80ab1932010-11-16 19:26:45 -08003609 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
John Fastabend98063072010-10-28 00:59:57 +00003610 DCB_RX_CONFIG);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003611
Alexander Duyck2f90b862008-11-20 20:52:10 -08003612 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003613 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003614
Alexander Duyck2f90b862008-11-20 20:52:10 -08003615 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003616
3617 /* reconfigure the hardware */
3618 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003619}
3620
3621#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003622static void ixgbe_configure(struct ixgbe_adapter *adapter)
3623{
3624 struct net_device *netdev = adapter->netdev;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003625 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003626 int i;
3627
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003628#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003629 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003630#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003631
Jesse Grossf62bbb52010-10-20 13:56:10 +00003632 ixgbe_set_rx_mode(netdev);
3633 ixgbe_restore_vlan(adapter);
3634
Yi Zoueacd73f2009-05-13 13:11:06 +00003635#ifdef IXGBE_FCOE
3636 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3637 ixgbe_configure_fcoe(adapter);
3638
3639#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003640 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
3641 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003642 adapter->tx_ring[i]->atr_sample_rate =
Joe Perchese8e9f692010-09-07 21:34:53 +00003643 adapter->atr_sample_rate;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003644 ixgbe_init_fdir_signature_82599(hw, adapter->fdir_pballoc);
3645 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3646 ixgbe_init_fdir_perfect_82599(hw, adapter->fdir_pballoc);
3647 }
Alexander Duyck933d41f2010-09-07 21:34:29 +00003648 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003649
Auke Kok9a799d72007-09-15 14:07:45 -07003650 ixgbe_configure_tx(adapter);
3651 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003652}
3653
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003654static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3655{
3656 switch (hw->phy.type) {
3657 case ixgbe_phy_sfp_avago:
3658 case ixgbe_phy_sfp_ftl:
3659 case ixgbe_phy_sfp_intel:
3660 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003661 case ixgbe_phy_sfp_passive_tyco:
3662 case ixgbe_phy_sfp_passive_unknown:
3663 case ixgbe_phy_sfp_active_unknown:
3664 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003665 return true;
3666 default:
3667 return false;
3668 }
3669}
3670
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003671/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003672 * ixgbe_sfp_link_config - set up SFP+ link
3673 * @adapter: pointer to private adapter struct
3674 **/
3675static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3676{
3677 struct ixgbe_hw *hw = &adapter->hw;
3678
3679 if (hw->phy.multispeed_fiber) {
3680 /*
3681 * In multispeed fiber setups, the device may not have
3682 * had a physical connection when the driver loaded.
3683 * If that's the case, the initial link configuration
3684 * couldn't get the MAC into 10G or 1G mode, so we'll
3685 * never have a link status change interrupt fire.
3686 * We need to try and force an autonegotiation
3687 * session, then bring up link.
3688 */
3689 hw->mac.ops.setup_sfp(hw);
3690 if (!(adapter->flags & IXGBE_FLAG_IN_SFP_LINK_TASK))
3691 schedule_work(&adapter->multispeed_fiber_task);
3692 } else {
3693 /*
3694 * Direct Attach Cu and non-multispeed fiber modules
3695 * still need to be configured properly prior to
3696 * attempting link.
3697 */
3698 if (!(adapter->flags & IXGBE_FLAG_IN_SFP_MOD_TASK))
3699 schedule_work(&adapter->sfp_config_module_task);
3700 }
3701}
3702
3703/**
3704 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003705 * @hw: pointer to private hardware struct
3706 *
3707 * Returns 0 on success, negative on failure
3708 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003709static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003710{
3711 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003712 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003713 u32 ret = IXGBE_ERR_LINK_SETUP;
3714
3715 if (hw->mac.ops.check_link)
3716 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3717
3718 if (ret)
3719 goto link_cfg_out;
3720
3721 if (hw->mac.ops.get_link_capabilities)
Joe Perchese8e9f692010-09-07 21:34:53 +00003722 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3723 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003724 if (ret)
3725 goto link_cfg_out;
3726
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003727 if (hw->mac.ops.setup_link)
3728 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003729link_cfg_out:
3730 return ret;
3731}
3732
Alexander Duycka34bcff2010-08-19 13:39:20 +00003733static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003734{
Auke Kok9a799d72007-09-15 14:07:45 -07003735 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003736 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003737
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003738 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003739 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3740 IXGBE_GPIE_OCD;
3741 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003742 /*
3743 * use EIAM to auto-mask when MSI-X interrupt is asserted
3744 * this saves a register write for every interrupt
3745 */
3746 switch (hw->mac.type) {
3747 case ixgbe_mac_82598EB:
3748 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3749 break;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003750 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08003751 case ixgbe_mac_X540:
3752 default:
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003753 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3754 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3755 break;
3756 }
3757 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003758 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3759 * specifically only auto mask tx and rx interrupts */
3760 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003761 }
3762
Alexander Duycka34bcff2010-08-19 13:39:20 +00003763 /* XXX: to interrupt immediately for EICS writes, enable this */
3764 /* gpie |= IXGBE_GPIE_EIMEN; */
3765
3766 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3767 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3768 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003769 }
3770
Alexander Duycka34bcff2010-08-19 13:39:20 +00003771 /* Enable fan failure interrupt */
3772 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003773 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003774
Alexander Duycka34bcff2010-08-19 13:39:20 +00003775 if (hw->mac.type == ixgbe_mac_82599EB)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003776 gpie |= IXGBE_SDP1_GPIEN;
3777 gpie |= IXGBE_SDP2_GPIEN;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003778
3779 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3780}
3781
3782static int ixgbe_up_complete(struct ixgbe_adapter *adapter)
3783{
3784 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003785 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003786 u32 ctrl_ext;
3787
3788 ixgbe_get_hw_control(adapter);
3789 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003790
Auke Kok9a799d72007-09-15 14:07:45 -07003791 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3792 ixgbe_configure_msix(adapter);
3793 else
3794 ixgbe_configure_msi_and_legacy(adapter);
3795
Don Skidmorec6ecf392010-12-03 03:31:51 +00003796 /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */
3797 if (hw->mac.ops.enable_tx_laser &&
3798 ((hw->phy.multispeed_fiber) ||
3799 ((hw->phy.type == ixgbe_media_type_fiber) &&
3800 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003801 hw->mac.ops.enable_tx_laser(hw);
3802
Auke Kok9a799d72007-09-15 14:07:45 -07003803 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003804 ixgbe_napi_enable_all(adapter);
3805
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003806 if (ixgbe_is_sfp(hw)) {
3807 ixgbe_sfp_link_config(adapter);
3808 } else {
3809 err = ixgbe_non_sfp_link_config(hw);
3810 if (err)
3811 e_err(probe, "link_config FAILED %d\n", err);
3812 }
3813
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003814 /* clear any pending interrupts, may auto mask */
3815 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003816 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003817
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003818 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003819 * If this adapter has a fan, check to see if we had a failure
3820 * before we enabled the interrupt.
3821 */
3822 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3823 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3824 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003825 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003826 }
3827
3828 /*
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003829 * For hot-pluggable SFP+ devices, a new SFP+ module may have
Don Skidmore19343de2009-07-02 12:50:31 +00003830 * arrived before interrupts were enabled but after probe. Such
3831 * devices wouldn't have their type identified yet. We need to
3832 * kick off the SFP+ module setup first, then try to bring up link.
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003833 * If we're not hot-pluggable SFP+, we just need to configure link
3834 * and bring it up.
3835 */
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003836 if (hw->phy.type == ixgbe_phy_unknown)
3837 schedule_work(&adapter->sfp_config_module_task);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003838
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003839 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003840 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003841
Auke Kok9a799d72007-09-15 14:07:45 -07003842 /* bring the link up in the watchdog, this could race with our first
3843 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003844 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3845 adapter->link_check_timeout = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07003846 mod_timer(&adapter->watchdog_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003847
3848 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3849 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3850 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3851 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
3852
Auke Kok9a799d72007-09-15 14:07:45 -07003853 return 0;
3854}
3855
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003856void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3857{
3858 WARN_ON(in_interrupt());
3859 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
3860 msleep(1);
3861 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003862 /*
3863 * If SR-IOV enabled then wait a bit before bringing the adapter
3864 * back up to give the VFs time to respond to the reset. The
3865 * two second wait is based upon the watchdog timer cycle in
3866 * the VF driver.
3867 */
3868 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3869 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003870 ixgbe_up(adapter);
3871 clear_bit(__IXGBE_RESETTING, &adapter->state);
3872}
3873
Auke Kok9a799d72007-09-15 14:07:45 -07003874int ixgbe_up(struct ixgbe_adapter *adapter)
3875{
3876 /* hardware has been reset, we need to reload some things */
3877 ixgbe_configure(adapter);
3878
3879 return ixgbe_up_complete(adapter);
3880}
3881
3882void ixgbe_reset(struct ixgbe_adapter *adapter)
3883{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003884 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07003885 int err;
3886
3887 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003888 switch (err) {
3889 case 0:
3890 case IXGBE_ERR_SFP_NOT_PRESENT:
3891 break;
3892 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00003893 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003894 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003895 case IXGBE_ERR_EEPROM_VERSION:
3896 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00003897 e_dev_warn("This device is a pre-production adapter/LOM. "
3898 "Please be aware there may be issuesassociated with "
3899 "your hardware. If you are experiencing problems "
3900 "please contact your Intel or hardware "
3901 "representative who provided you with this "
3902 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003903 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003904 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00003905 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003906 }
Auke Kok9a799d72007-09-15 14:07:45 -07003907
3908 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003909 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
3910 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07003911}
3912
Auke Kok9a799d72007-09-15 14:07:45 -07003913/**
3914 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07003915 * @rx_ring: ring to free buffers from
3916 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003917static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003918{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003919 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07003920 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003921 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003922
Alexander Duyck84418e32010-08-19 13:40:54 +00003923 /* ring already cleared, nothing to do */
3924 if (!rx_ring->rx_buffer_info)
3925 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003926
Alexander Duyck84418e32010-08-19 13:40:54 +00003927 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003928 for (i = 0; i < rx_ring->count; i++) {
3929 struct ixgbe_rx_buffer *rx_buffer_info;
3930
3931 rx_buffer_info = &rx_ring->rx_buffer_info[i];
3932 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003933 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003934 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003935 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07003936 rx_buffer_info->dma = 0;
3937 }
3938 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00003939 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07003940 rx_buffer_info->skb = NULL;
Alexander Duyckf8212f92009-04-27 22:42:37 +00003941 do {
3942 struct sk_buff *this = skb;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00003943 if (IXGBE_RSC_CB(this)->delay_unmap) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003944 dma_unmap_single(dev,
Nick Nunley1b507732010-04-27 13:10:27 +00003945 IXGBE_RSC_CB(this)->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003946 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003947 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00003948 IXGBE_RSC_CB(this)->dma = 0;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00003949 IXGBE_RSC_CB(skb)->delay_unmap = false;
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00003950 }
Alexander Duyckf8212f92009-04-27 22:42:37 +00003951 skb = skb->prev;
3952 dev_kfree_skb(this);
3953 } while (skb);
Auke Kok9a799d72007-09-15 14:07:45 -07003954 }
3955 if (!rx_buffer_info->page)
3956 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003957 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003958 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00003959 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003960 rx_buffer_info->page_dma = 0;
3961 }
Auke Kok9a799d72007-09-15 14:07:45 -07003962 put_page(rx_buffer_info->page);
3963 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07003964 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003965 }
3966
3967 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
3968 memset(rx_ring->rx_buffer_info, 0, size);
3969
3970 /* Zero out the descriptor ring */
3971 memset(rx_ring->desc, 0, rx_ring->size);
3972
3973 rx_ring->next_to_clean = 0;
3974 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003975}
3976
3977/**
3978 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07003979 * @tx_ring: ring to be cleaned
3980 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003981static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003982{
3983 struct ixgbe_tx_buffer *tx_buffer_info;
3984 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003985 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003986
Alexander Duyck84418e32010-08-19 13:40:54 +00003987 /* ring already cleared, nothing to do */
3988 if (!tx_ring->tx_buffer_info)
3989 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003990
Alexander Duyck84418e32010-08-19 13:40:54 +00003991 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003992 for (i = 0; i < tx_ring->count; i++) {
3993 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003994 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07003995 }
3996
3997 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
3998 memset(tx_ring->tx_buffer_info, 0, size);
3999
4000 /* Zero out the descriptor ring */
4001 memset(tx_ring->desc, 0, tx_ring->size);
4002
4003 tx_ring->next_to_use = 0;
4004 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004005}
4006
4007/**
Auke Kok9a799d72007-09-15 14:07:45 -07004008 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4009 * @adapter: board private structure
4010 **/
4011static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
4012{
4013 int i;
4014
4015 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004016 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07004017}
4018
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004019/**
4020 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4021 * @adapter: board private structure
4022 **/
4023static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
4024{
4025 int i;
4026
4027 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004028 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004029}
4030
Auke Kok9a799d72007-09-15 14:07:45 -07004031void ixgbe_down(struct ixgbe_adapter *adapter)
4032{
4033 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004034 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07004035 u32 rxctrl;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004036 u32 txdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004037 int i;
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004038 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Auke Kok9a799d72007-09-15 14:07:45 -07004039
4040 /* signal that we are down to the interrupt handler */
4041 set_bit(__IXGBE_DOWN, &adapter->state);
4042
Greg Rose767081a2010-01-22 22:46:40 +00004043 /* disable receive for all VFs and wait one second */
4044 if (adapter->num_vfs) {
Greg Rose767081a2010-01-22 22:46:40 +00004045 /* ping all the active vfs to let them know we are going down */
4046 ixgbe_ping_all_vfs(adapter);
Greg Rose581d1aa2010-03-24 09:36:27 +00004047
Greg Rose767081a2010-01-22 22:46:40 +00004048 /* Disable all VFTE/VFRE TX/RX */
4049 ixgbe_disable_tx_rx(adapter);
Greg Rose581d1aa2010-03-24 09:36:27 +00004050
4051 /* Mark all the VFs as inactive */
4052 for (i = 0 ; i < adapter->num_vfs; i++)
4053 adapter->vfinfo[i].clear_to_send = 0;
Greg Rose767081a2010-01-22 22:46:40 +00004054 }
4055
Auke Kok9a799d72007-09-15 14:07:45 -07004056 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004057 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
4058 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07004059
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004060 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07004061 msleep(10);
4062
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004063 netif_tx_stop_all_queues(netdev);
4064
Don Skidmore0a1f87c2009-09-18 09:45:43 +00004065 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
4066 del_timer_sync(&adapter->sfp_timer);
Auke Kok9a799d72007-09-15 14:07:45 -07004067 del_timer_sync(&adapter->watchdog_timer);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07004068 cancel_work_sync(&adapter->watchdog_task);
Auke Kok9a799d72007-09-15 14:07:45 -07004069
John Fastabendc0dfb902010-04-27 02:13:39 +00004070 netif_carrier_off(netdev);
4071 netif_tx_disable(netdev);
4072
4073 ixgbe_irq_disable(adapter);
4074
4075 ixgbe_napi_disable_all(adapter);
4076
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00004077 /* Cleanup the affinity_hint CPU mask memory and callback */
4078 for (i = 0; i < num_q_vectors; i++) {
4079 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
4080 /* clear the affinity_mask in the IRQ descriptor */
4081 irq_set_affinity_hint(adapter->msix_entries[i]. vector, NULL);
4082 /* release the CPU mask memory */
4083 free_cpumask_var(q_vector->affinity_mask);
4084 }
4085
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004086 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4087 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
4088 cancel_work_sync(&adapter->fdir_reinit_task);
4089
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004090 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
4091 cancel_work_sync(&adapter->check_overtemp_task);
4092
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004093 /* disable transmits in the hardware now that interrupts are off */
4094 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004095 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
4096 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
4097 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00004098 (txdctl & ~IXGBE_TXDCTL_ENABLE));
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004099 }
PJ Waskiewicz88512532009-03-13 22:15:10 +00004100 /* Disable the Tx DMA engine on 82599 */
Alexander Duyckbd508172010-11-16 19:27:03 -08004101 switch (hw->mac.type) {
4102 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004103 case ixgbe_mac_X540:
PJ Waskiewicz88512532009-03-13 22:15:10 +00004104 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004105 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
4106 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08004107 break;
4108 default:
4109 break;
4110 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07004111
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00004112 /* clear n-tuple filters that are cached */
4113 ethtool_ntuple_flush(netdev);
4114
Paul Larson6f4a0e42008-06-24 17:00:56 -07004115 if (!pci_channel_offline(adapter->pdev))
4116 ixgbe_reset(adapter);
Don Skidmorec6ecf392010-12-03 03:31:51 +00004117
4118 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
4119 if (hw->mac.ops.disable_tx_laser &&
4120 ((hw->phy.multispeed_fiber) ||
4121 ((hw->phy.type == ixgbe_media_type_fiber) &&
4122 (hw->mac.type == ixgbe_mac_82599EB))))
4123 hw->mac.ops.disable_tx_laser(hw);
4124
Auke Kok9a799d72007-09-15 14:07:45 -07004125 ixgbe_clean_all_tx_rings(adapter);
4126 ixgbe_clean_all_rx_rings(adapter);
4127
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004128#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004129 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00004130 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07004131#endif
Auke Kok9a799d72007-09-15 14:07:45 -07004132}
4133
Auke Kok9a799d72007-09-15 14:07:45 -07004134/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004135 * ixgbe_poll - NAPI Rx polling callback
4136 * @napi: structure for representing this polling device
4137 * @budget: how many packets driver is allowed to clean
4138 *
4139 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07004140 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004141static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07004142{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004143 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00004144 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004145 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004146 int tx_clean_complete, work_done = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004147
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004148#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004149 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4150 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004151#endif
4152
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004153 tx_clean_complete = ixgbe_clean_tx_irq(q_vector, adapter->tx_ring[0]);
4154 ixgbe_clean_rx_irq(q_vector, adapter->rx_ring[0], &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07004155
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004156 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004157 work_done = budget;
4158
David S. Miller53e52c72008-01-07 21:06:12 -08004159 /* If budget not fully consumed, exit the polling mode */
4160 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004161 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004162 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08004163 ixgbe_set_itr(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004164 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Nelson, Shannon835462f2009-04-27 22:42:54 +00004165 ixgbe_irq_enable_queues(adapter, IXGBE_EIMS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004166 }
Auke Kok9a799d72007-09-15 14:07:45 -07004167 return work_done;
4168}
4169
4170/**
4171 * ixgbe_tx_timeout - Respond to a Tx Hang
4172 * @netdev: network interface device structure
4173 **/
4174static void ixgbe_tx_timeout(struct net_device *netdev)
4175{
4176 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4177
John Fastabendc84d3242010-11-16 19:27:12 -08004178 adapter->tx_timeout_count++;
4179
Auke Kok9a799d72007-09-15 14:07:45 -07004180 /* Do the reset outside of interrupt context */
4181 schedule_work(&adapter->reset_task);
4182}
4183
4184static void ixgbe_reset_task(struct work_struct *work)
4185{
4186 struct ixgbe_adapter *adapter;
4187 adapter = container_of(work, struct ixgbe_adapter, reset_task);
4188
Alexander Duyck2f90b862008-11-20 20:52:10 -08004189 /* If we're already down or resetting, just bail */
4190 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
4191 test_bit(__IXGBE_RESETTING, &adapter->state))
4192 return;
4193
Taku Izumidcd79ae2010-04-27 14:39:53 +00004194 ixgbe_dump(adapter);
4195 netdev_err(adapter->netdev, "Reset adapter\n");
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004196 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004197}
4198
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004199#ifdef CONFIG_IXGBE_DCB
4200static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004201{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004202 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004203 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_DCB];
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004204
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004205 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
4206 return ret;
4207
4208 f->mask = 0x7 << 3;
4209 adapter->num_rx_queues = f->indices;
4210 adapter->num_tx_queues = f->indices;
4211 ret = true;
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004212
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004213 return ret;
4214}
4215#endif
4216
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004217/**
4218 * ixgbe_set_rss_queues: Allocate queues for RSS
4219 * @adapter: board private structure to initialize
4220 *
4221 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4222 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4223 *
4224 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004225static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4226{
4227 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004228 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004229
4230 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004231 f->mask = 0xF;
4232 adapter->num_rx_queues = f->indices;
4233 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004234 ret = true;
4235 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004236 ret = false;
4237 }
4238
4239 return ret;
4240}
4241
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004242/**
4243 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4244 * @adapter: board private structure to initialize
4245 *
4246 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4247 * to the original CPU that initiated the Tx session. This runs in addition
4248 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4249 * Rx load across CPUs using RSS.
4250 *
4251 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004252static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004253{
4254 bool ret = false;
4255 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4256
4257 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4258 f_fdir->mask = 0;
4259
4260 /* Flow Director must have RSS enabled */
4261 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED &&
4262 ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4263 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)))) {
4264 adapter->num_tx_queues = f_fdir->indices;
4265 adapter->num_rx_queues = f_fdir->indices;
4266 ret = true;
4267 } else {
4268 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
4269 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
4270 }
4271 return ret;
4272}
4273
Yi Zou0331a832009-05-17 12:33:52 +00004274#ifdef IXGBE_FCOE
4275/**
4276 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4277 * @adapter: board private structure to initialize
4278 *
4279 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4280 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4281 * rx queues out of the max number of rx queues, instead, it is used as the
4282 * index of the first rx queue used by FCoE.
4283 *
4284 **/
4285static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4286{
4287 bool ret = false;
4288 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4289
4290 f->indices = min((int)num_online_cpus(), f->indices);
4291 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
Yi Zou8de8b2e2009-09-03 14:55:50 +00004292 adapter->num_rx_queues = 1;
4293 adapter->num_tx_queues = 1;
Yi Zou0331a832009-05-17 12:33:52 +00004294#ifdef CONFIG_IXGBE_DCB
4295 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00004296 e_info(probe, "FCoE enabled with DCB\n");
Yi Zou0331a832009-05-17 12:33:52 +00004297 ixgbe_set_dcb_queues(adapter);
4298 }
4299#endif
4300 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00004301 e_info(probe, "FCoE enabled with RSS\n");
Yi Zou8faa2a72009-07-09 02:29:50 +00004302 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4303 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
4304 ixgbe_set_fdir_queues(adapter);
4305 else
4306 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004307 }
4308 /* adding FCoE rx rings to the end */
4309 f->mask = adapter->num_rx_queues;
4310 adapter->num_rx_queues += f->indices;
Yi Zou8de8b2e2009-09-03 14:55:50 +00004311 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004312
4313 ret = true;
4314 }
4315
4316 return ret;
4317}
4318
4319#endif /* IXGBE_FCOE */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004320/**
4321 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4322 * @adapter: board private structure to initialize
4323 *
4324 * IOV doesn't actually use anything, so just NAK the
4325 * request for now and let the other queue routines
4326 * figure out what to do.
4327 */
4328static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4329{
4330 return false;
4331}
4332
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004333/*
4334 * ixgbe_set_num_queues: Allocate queues for device, feature dependant
4335 * @adapter: board private structure to initialize
4336 *
4337 * This is the top level queue allocation routine. The order here is very
4338 * important, starting with the "most" number of features turned on at once,
4339 * and ending with the smallest set of features. This way large combinations
4340 * can be allocated if they're turned on, and smaller combinations are the
4341 * fallthrough conditions.
4342 *
4343 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004344static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004345{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004346 /* Start with base case */
4347 adapter->num_rx_queues = 1;
4348 adapter->num_tx_queues = 1;
4349 adapter->num_rx_pools = adapter->num_rx_queues;
4350 adapter->num_rx_queues_per_pool = 1;
4351
4352 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004353 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004354
Yi Zou0331a832009-05-17 12:33:52 +00004355#ifdef IXGBE_FCOE
4356 if (ixgbe_set_fcoe_queues(adapter))
4357 goto done;
4358
4359#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004360#ifdef CONFIG_IXGBE_DCB
4361 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004362 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004363
4364#endif
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004365 if (ixgbe_set_fdir_queues(adapter))
4366 goto done;
4367
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004368 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004369 goto done;
4370
4371 /* fallback to base case */
4372 adapter->num_rx_queues = 1;
4373 adapter->num_tx_queues = 1;
4374
4375done:
Ben Hutchings847f53f2010-09-27 08:28:56 +00004376 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004377 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004378 return netif_set_real_num_rx_queues(adapter->netdev,
4379 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004380}
4381
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004382static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004383 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004384{
4385 int err, vector_threshold;
4386
4387 /* We'll want at least 3 (vector_threshold):
4388 * 1) TxQ[0] Cleanup
4389 * 2) RxQ[0] Cleanup
4390 * 3) Other (Link Status Change, etc.)
4391 * 4) TCP Timer (optional)
4392 */
4393 vector_threshold = MIN_MSIX_COUNT;
4394
4395 /* The more we get, the more we will assign to Tx/Rx Cleanup
4396 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4397 * Right now, we simply care about how many we'll get; we'll
4398 * set them up later while requesting irq's.
4399 */
4400 while (vectors >= vector_threshold) {
4401 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004402 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004403 if (!err) /* Success in acquiring all requested vectors. */
4404 break;
4405 else if (err < 0)
4406 vectors = 0; /* Nasty failure, quit now */
4407 else /* err == number of vectors we should try again with */
4408 vectors = err;
4409 }
4410
4411 if (vectors < vector_threshold) {
4412 /* Can't allocate enough MSI-X interrupts? Oh well.
4413 * This just means we'll go with either a single MSI
4414 * vector or fall back to legacy interrupts.
4415 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004416 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4417 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004418 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4419 kfree(adapter->msix_entries);
4420 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004421 } else {
4422 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004423 /*
4424 * Adjust for only the vectors we'll use, which is minimum
4425 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4426 * vectors we were allocated.
4427 */
4428 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004429 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004430 }
4431}
4432
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004433/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004434 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004435 * @adapter: board private structure to initialize
4436 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004437 * Cache the descriptor ring offsets for RSS to the assigned rings.
4438 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004439 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004440static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004441{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004442 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004443
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004444 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4445 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004446
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004447 for (i = 0; i < adapter->num_rx_queues; i++)
4448 adapter->rx_ring[i]->reg_idx = i;
4449 for (i = 0; i < adapter->num_tx_queues; i++)
4450 adapter->tx_ring[i]->reg_idx = i;
4451
4452 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004453}
4454
4455#ifdef CONFIG_IXGBE_DCB
4456/**
4457 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4458 * @adapter: board private structure to initialize
4459 *
4460 * Cache the descriptor ring offsets for DCB to the assigned rings.
4461 *
4462 **/
4463static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4464{
4465 int i;
4466 bool ret = false;
4467 int dcb_i = adapter->ring_feature[RING_F_DCB].indices;
4468
Alexander Duyckbd508172010-11-16 19:27:03 -08004469 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
4470 return false;
4471
4472 /* the number of queues is assumed to be symmetric */
4473 switch (adapter->hw.mac.type) {
4474 case ixgbe_mac_82598EB:
4475 for (i = 0; i < dcb_i; i++) {
4476 adapter->rx_ring[i]->reg_idx = i << 3;
4477 adapter->tx_ring[i]->reg_idx = i << 2;
4478 }
4479 ret = true;
4480 break;
4481 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08004482 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08004483 if (dcb_i == 8) {
4484 /*
4485 * Tx TC0 starts at: descriptor queue 0
4486 * Tx TC1 starts at: descriptor queue 32
4487 * Tx TC2 starts at: descriptor queue 64
4488 * Tx TC3 starts at: descriptor queue 80
4489 * Tx TC4 starts at: descriptor queue 96
4490 * Tx TC5 starts at: descriptor queue 104
4491 * Tx TC6 starts at: descriptor queue 112
4492 * Tx TC7 starts at: descriptor queue 120
4493 *
4494 * Rx TC0-TC7 are offset by 16 queues each
4495 */
4496 for (i = 0; i < 3; i++) {
4497 adapter->tx_ring[i]->reg_idx = i << 5;
4498 adapter->rx_ring[i]->reg_idx = i << 4;
4499 }
4500 for ( ; i < 5; i++) {
4501 adapter->tx_ring[i]->reg_idx = ((i + 2) << 4);
4502 adapter->rx_ring[i]->reg_idx = i << 4;
4503 }
4504 for ( ; i < dcb_i; i++) {
4505 adapter->tx_ring[i]->reg_idx = ((i + 8) << 3);
4506 adapter->rx_ring[i]->reg_idx = i << 4;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004507 }
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004508 ret = true;
Alexander Duyckbd508172010-11-16 19:27:03 -08004509 } else if (dcb_i == 4) {
4510 /*
4511 * Tx TC0 starts at: descriptor queue 0
4512 * Tx TC1 starts at: descriptor queue 64
4513 * Tx TC2 starts at: descriptor queue 96
4514 * Tx TC3 starts at: descriptor queue 112
4515 *
4516 * Rx TC0-TC3 are offset by 32 queues each
4517 */
4518 adapter->tx_ring[0]->reg_idx = 0;
4519 adapter->tx_ring[1]->reg_idx = 64;
4520 adapter->tx_ring[2]->reg_idx = 96;
4521 adapter->tx_ring[3]->reg_idx = 112;
4522 for (i = 0 ; i < dcb_i; i++)
4523 adapter->rx_ring[i]->reg_idx = i << 5;
4524 ret = true;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004525 }
Alexander Duyckbd508172010-11-16 19:27:03 -08004526 break;
4527 default:
4528 break;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004529 }
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004530 return ret;
4531}
4532#endif
4533
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004534/**
4535 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4536 * @adapter: board private structure to initialize
4537 *
4538 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4539 *
4540 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004541static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004542{
4543 int i;
4544 bool ret = false;
4545
4546 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED &&
4547 ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4548 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))) {
4549 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004550 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004551 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004552 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004553 ret = true;
4554 }
4555
4556 return ret;
4557}
4558
Yi Zou0331a832009-05-17 12:33:52 +00004559#ifdef IXGBE_FCOE
4560/**
4561 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4562 * @adapter: board private structure to initialize
4563 *
4564 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4565 *
4566 */
4567static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4568{
Yi Zou0331a832009-05-17 12:33:52 +00004569 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004570 int i;
4571 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004572
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004573 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4574 return false;
4575
Yi Zou0331a832009-05-17 12:33:52 +00004576#ifdef CONFIG_IXGBE_DCB
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004577 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
4578 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou8de8b2e2009-09-03 14:55:50 +00004579
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004580 ixgbe_cache_ring_dcb(adapter);
4581 /* find out queues in TC for FCoE */
4582 fcoe_rx_i = adapter->rx_ring[fcoe->tc]->reg_idx + 1;
4583 fcoe_tx_i = adapter->tx_ring[fcoe->tc]->reg_idx + 1;
4584 /*
4585 * In 82599, the number of Tx queues for each traffic
4586 * class for both 8-TC and 4-TC modes are:
4587 * TCs : TC0 TC1 TC2 TC3 TC4 TC5 TC6 TC7
4588 * 8 TCs: 32 32 16 16 8 8 8 8
4589 * 4 TCs: 64 64 32 32
4590 * We have max 8 queues for FCoE, where 8 the is
4591 * FCoE redirection table size. If TC for FCoE is
4592 * less than or equal to TC3, we have enough queues
4593 * to add max of 8 queues for FCoE, so we start FCoE
4594 * Tx queue from the next one, i.e., reg_idx + 1.
4595 * If TC for FCoE is above TC3, implying 8 TC mode,
4596 * and we need 8 for FCoE, we have to take all queues
4597 * in that traffic class for FCoE.
4598 */
4599 if ((f->indices == IXGBE_FCRETA_SIZE) && (fcoe->tc > 3))
4600 fcoe_tx_i--;
Yi Zou0331a832009-05-17 12:33:52 +00004601 }
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004602#endif /* CONFIG_IXGBE_DCB */
4603 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4604 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4605 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
4606 ixgbe_cache_ring_fdir(adapter);
4607 else
4608 ixgbe_cache_ring_rss(adapter);
4609
4610 fcoe_rx_i = f->mask;
4611 fcoe_tx_i = f->mask;
4612 }
4613 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4614 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4615 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4616 }
4617 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004618}
4619
4620#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004621/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004622 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4623 * @adapter: board private structure to initialize
4624 *
4625 * SR-IOV doesn't use any descriptor rings but changes the default if
4626 * no other mapping is used.
4627 *
4628 */
4629static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4630{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004631 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4632 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004633 if (adapter->num_vfs)
4634 return true;
4635 else
4636 return false;
4637}
4638
4639/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004640 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4641 * @adapter: board private structure to initialize
4642 *
4643 * Once we know the feature-set enabled for the device, we'll cache
4644 * the register offset the descriptor ring is assigned to.
4645 *
4646 * Note, the order the various feature calls is important. It must start with
4647 * the "most" features enabled at the same time, then trickle down to the
4648 * least amount of features turned on at once.
4649 **/
4650static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4651{
4652 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004653 adapter->rx_ring[0]->reg_idx = 0;
4654 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004655
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004656 if (ixgbe_cache_ring_sriov(adapter))
4657 return;
4658
Yi Zou0331a832009-05-17 12:33:52 +00004659#ifdef IXGBE_FCOE
4660 if (ixgbe_cache_ring_fcoe(adapter))
4661 return;
4662
4663#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004664#ifdef CONFIG_IXGBE_DCB
4665 if (ixgbe_cache_ring_dcb(adapter))
4666 return;
4667
4668#endif
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004669 if (ixgbe_cache_ring_fdir(adapter))
4670 return;
4671
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004672 if (ixgbe_cache_ring_rss(adapter))
4673 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004674}
4675
Auke Kok9a799d72007-09-15 14:07:45 -07004676/**
4677 * ixgbe_alloc_queues - Allocate memory for all rings
4678 * @adapter: board private structure to initialize
4679 *
4680 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004681 * number of queues at compile-time. The polling_netdev array is
4682 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004683 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004684static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004685{
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004686 int rx = 0, tx = 0, nid = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004687
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004688 if (nid < 0 || !node_online(nid))
4689 nid = first_online_node;
4690
4691 for (; tx < adapter->num_tx_queues; tx++) {
4692 struct ixgbe_ring *ring;
4693
4694 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004695 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004696 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004697 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004698 goto err_allocation;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004699 ring->count = adapter->tx_ring_count;
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004700 ring->queue_index = tx;
4701 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004702 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004703 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004704
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004705 adapter->tx_ring[tx] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004706 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004707
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004708 for (; rx < adapter->num_rx_queues; rx++) {
4709 struct ixgbe_ring *ring;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004710
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004711 ring = kzalloc_node(sizeof(*ring), GFP_KERNEL, nid);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004712 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004713 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004714 if (!ring)
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004715 goto err_allocation;
4716 ring->count = adapter->rx_ring_count;
4717 ring->queue_index = rx;
4718 ring->numa_node = nid;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004719 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004720 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004721
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004722 adapter->rx_ring[rx] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004723 }
4724
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004725 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004726
4727 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004728
Eric Dumazete2ddeba2010-11-16 19:27:18 -08004729err_allocation:
4730 while (tx)
4731 kfree(adapter->tx_ring[--tx]);
4732
4733 while (rx)
4734 kfree(adapter->rx_ring[--rx]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004735 return -ENOMEM;
4736}
4737
4738/**
4739 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4740 * @adapter: board private structure to initialize
4741 *
4742 * Attempt to configure the interrupts using the best available
4743 * capabilities of the hardware and the kernel.
4744 **/
Al Virofeea6a52008-11-27 15:34:07 -08004745static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004746{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004747 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004748 int err = 0;
4749 int vector, v_budget;
4750
4751 /*
4752 * It's easy to be greedy for MSI-X vectors, but it really
4753 * doesn't do us much good if we have a lot more vectors
4754 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004755 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004756 */
4757 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004758 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004759
4760 /*
4761 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004762 * hw.mac->max_msix_vectors vectors. With features
4763 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4764 * descriptor queues supported by our device. Thus, we cap it off in
4765 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004766 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004767 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004768
4769 /* A failure in MSI-X entry allocation isn't fatal, but it does
4770 * mean we disable MSI-X capabilities of the adapter. */
4771 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004772 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004773 if (adapter->msix_entries) {
4774 for (vector = 0; vector < v_budget; vector++)
4775 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004776
Alexander Duyck7a921c92009-05-06 10:43:28 +00004777 ixgbe_acquire_msix_vectors(adapter, v_budget);
4778
4779 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4780 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004781 }
David S. Miller26d27842010-05-03 15:18:22 -07004782
Alexander Duyck7a921c92009-05-06 10:43:28 +00004783 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4784 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004785 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
4786 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
4787 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004788 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4789 ixgbe_disable_sriov(adapter);
4790
Ben Hutchings847f53f2010-09-27 08:28:56 +00004791 err = ixgbe_set_num_queues(adapter);
4792 if (err)
4793 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004794
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004795 err = pci_enable_msi(adapter->pdev);
4796 if (!err) {
4797 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4798 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004799 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4800 "Unable to allocate MSI interrupt, "
4801 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004802 /* reset err */
4803 err = 0;
4804 }
4805
4806out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004807 return err;
4808}
4809
Alexander Duyck7a921c92009-05-06 10:43:28 +00004810/**
4811 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4812 * @adapter: board private structure to initialize
4813 *
4814 * We allocate one q_vector per queue interrupt. If allocation fails we
4815 * return -ENOMEM.
4816 **/
4817static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4818{
4819 int q_idx, num_q_vectors;
4820 struct ixgbe_q_vector *q_vector;
4821 int napi_vectors;
4822 int (*poll)(struct napi_struct *, int);
4823
4824 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4825 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
4826 napi_vectors = adapter->num_rx_queues;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004827 poll = &ixgbe_clean_rxtx_many;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004828 } else {
4829 num_q_vectors = 1;
4830 napi_vectors = 1;
4831 poll = &ixgbe_poll;
4832 }
4833
4834 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004835 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004836 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004837 if (!q_vector)
4838 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004839 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004840 if (!q_vector)
4841 goto err_out;
4842 q_vector->adapter = adapter;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004843 if (q_vector->txr_count && !q_vector->rxr_count)
4844 q_vector->eitr = adapter->tx_eitr_param;
4845 else
4846 q_vector->eitr = adapter->rx_eitr_param;
Alexander Duyckfe49f042009-06-04 16:00:09 +00004847 q_vector->v_idx = q_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004848 netif_napi_add(adapter->netdev, &q_vector->napi, (*poll), 64);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004849 adapter->q_vector[q_idx] = q_vector;
4850 }
4851
4852 return 0;
4853
4854err_out:
4855 while (q_idx) {
4856 q_idx--;
4857 q_vector = adapter->q_vector[q_idx];
4858 netif_napi_del(&q_vector->napi);
4859 kfree(q_vector);
4860 adapter->q_vector[q_idx] = NULL;
4861 }
4862 return -ENOMEM;
4863}
4864
4865/**
4866 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
4867 * @adapter: board private structure to initialize
4868 *
4869 * This function frees the memory allocated to the q_vectors. In addition if
4870 * NAPI is enabled it will delete any references to the NAPI struct prior
4871 * to freeing the q_vector.
4872 **/
4873static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
4874{
4875 int q_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004876
Alexander Duyck91281fd2009-06-04 16:00:27 +00004877 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004878 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004879 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004880 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004881
4882 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
4883 struct ixgbe_q_vector *q_vector = adapter->q_vector[q_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00004884 adapter->q_vector[q_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004885 netif_napi_del(&q_vector->napi);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004886 kfree(q_vector);
4887 }
4888}
4889
Don Skidmore7b25cdb2009-08-25 04:47:32 +00004890static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004891{
4892 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4893 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4894 pci_disable_msix(adapter->pdev);
4895 kfree(adapter->msix_entries);
4896 adapter->msix_entries = NULL;
4897 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
4898 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
4899 pci_disable_msi(adapter->pdev);
4900 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004901}
4902
4903/**
4904 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
4905 * @adapter: board private structure to initialize
4906 *
4907 * We determine which interrupt scheme to use based on...
4908 * - Kernel support (MSI, MSI-X)
4909 * - which can be user-defined (via MODULE_PARAM)
4910 * - Hardware queue count (num_*_queues)
4911 * - defined by miscellaneous hardware support/features (RSS, etc.)
4912 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004913int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004914{
4915 int err;
4916
4917 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00004918 err = ixgbe_set_num_queues(adapter);
4919 if (err)
4920 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004921
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004922 err = ixgbe_set_interrupt_capability(adapter);
4923 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004924 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004925 goto err_set_interrupt;
4926 }
4927
Alexander Duyck7a921c92009-05-06 10:43:28 +00004928 err = ixgbe_alloc_q_vectors(adapter);
4929 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004930 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004931 goto err_alloc_q_vectors;
4932 }
4933
4934 err = ixgbe_alloc_queues(adapter);
4935 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004936 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004937 goto err_alloc_queues;
4938 }
4939
Emil Tantilov849c4542010-06-03 16:53:41 +00004940 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00004941 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
4942 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004943
4944 set_bit(__IXGBE_DOWN, &adapter->state);
4945
4946 return 0;
4947
Alexander Duyck7a921c92009-05-06 10:43:28 +00004948err_alloc_queues:
4949 ixgbe_free_q_vectors(adapter);
4950err_alloc_q_vectors:
4951 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004952err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00004953 return err;
4954}
4955
Eric Dumazet1a515022010-11-16 19:26:42 -08004956static void ring_free_rcu(struct rcu_head *head)
4957{
4958 kfree(container_of(head, struct ixgbe_ring, rcu));
4959}
4960
Alexander Duyck7a921c92009-05-06 10:43:28 +00004961/**
4962 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
4963 * @adapter: board private structure to clear interrupt scheme on
4964 *
4965 * We go through and clear interrupt specific resources and reset the structure
4966 * to pre-load conditions
4967 **/
4968void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
4969{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004970 int i;
4971
4972 for (i = 0; i < adapter->num_tx_queues; i++) {
4973 kfree(adapter->tx_ring[i]);
4974 adapter->tx_ring[i] = NULL;
4975 }
4976 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08004977 struct ixgbe_ring *ring = adapter->rx_ring[i];
4978
4979 /* ixgbe_get_stats64() might access this ring, we must wait
4980 * a grace period before freeing it.
4981 */
4982 call_rcu(&ring->rcu, ring_free_rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004983 adapter->rx_ring[i] = NULL;
4984 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00004985
4986 ixgbe_free_q_vectors(adapter);
4987 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004988}
4989
4990/**
Donald Skidmorec4900be2008-11-20 21:11:42 -08004991 * ixgbe_sfp_timer - worker thread to find a missing module
4992 * @data: pointer to our adapter struct
4993 **/
4994static void ixgbe_sfp_timer(unsigned long data)
4995{
4996 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
4997
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004998 /*
4999 * Do the sfp_timer outside of interrupt context due to the
Donald Skidmorec4900be2008-11-20 21:11:42 -08005000 * delays that sfp+ detection requires
5001 */
5002 schedule_work(&adapter->sfp_task);
5003}
5004
5005/**
5006 * ixgbe_sfp_task - worker thread to find a missing module
5007 * @work: pointer to work_struct containing our data
5008 **/
5009static void ixgbe_sfp_task(struct work_struct *work)
5010{
5011 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005012 struct ixgbe_adapter,
5013 sfp_task);
Donald Skidmorec4900be2008-11-20 21:11:42 -08005014 struct ixgbe_hw *hw = &adapter->hw;
5015
5016 if ((hw->phy.type == ixgbe_phy_nl) &&
5017 (hw->phy.sfp_type == ixgbe_sfp_type_not_present)) {
5018 s32 ret = hw->phy.ops.identify_sfp(hw);
Don Skidmore63d6e1d2009-07-02 12:50:12 +00005019 if (ret == IXGBE_ERR_SFP_NOT_PRESENT)
Donald Skidmorec4900be2008-11-20 21:11:42 -08005020 goto reschedule;
5021 ret = hw->phy.ops.reset(hw);
5022 if (ret == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005023 e_dev_err("failed to initialize because an unsupported "
5024 "SFP+ module type was detected.\n");
5025 e_dev_err("Reload the driver after installing a "
5026 "supported module.\n");
Donald Skidmorec4900be2008-11-20 21:11:42 -08005027 unregister_netdev(adapter->netdev);
5028 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005029 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
Donald Skidmorec4900be2008-11-20 21:11:42 -08005030 }
5031 /* don't need this routine any more */
5032 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
5033 }
5034 return;
5035reschedule:
5036 if (test_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state))
5037 mod_timer(&adapter->sfp_timer,
Joe Perchese8e9f692010-09-07 21:34:53 +00005038 round_jiffies(jiffies + (2 * HZ)));
Donald Skidmorec4900be2008-11-20 21:11:42 -08005039}
5040
5041/**
Auke Kok9a799d72007-09-15 14:07:45 -07005042 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
5043 * @adapter: board private structure to initialize
5044 *
5045 * ixgbe_sw_init initializes the Adapter private data structure.
5046 * Fields are initialized based on PCI device information and
5047 * OS network device settings (MTU size).
5048 **/
5049static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
5050{
5051 struct ixgbe_hw *hw = &adapter->hw;
5052 struct pci_dev *pdev = adapter->pdev;
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00005053 struct net_device *dev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005054 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005055#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005056 int j;
5057 struct tc_configuration *tc;
5058#endif
John Fastabend16b61be2010-11-16 19:26:44 -08005059 int max_frame = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005060
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005061 /* PCI config space info */
5062
5063 hw->vendor_id = pdev->vendor;
5064 hw->device_id = pdev->device;
5065 hw->revision_id = pdev->revision;
5066 hw->subsystem_vendor_id = pdev->subsystem_vendor;
5067 hw->subsystem_device_id = pdev->subsystem_device;
5068
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005069 /* Set capability flags */
5070 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
5071 adapter->ring_feature[RING_F_RSS].indices = rss;
5072 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005073 adapter->ring_feature[RING_F_DCB].indices = IXGBE_MAX_DCB_INDICES;
Alexander Duyckbd508172010-11-16 19:27:03 -08005074 switch (hw->mac.type) {
5075 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00005076 if (hw->device_id == IXGBE_DEV_ID_82598AT)
5077 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005078 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08005079 break;
5080 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005081 case ixgbe_mac_X540:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005082 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00005083 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
5084 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07005085 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
5086 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00005087 if (dev->features & NETIF_F_NTUPLE) {
5088 /* Flow Director perfect filter enabled */
5089 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
5090 adapter->atr_sample_rate = 0;
5091 spin_lock_init(&adapter->fdir_perfect_lock);
5092 } else {
5093 /* Flow Director hash filters enabled */
5094 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
5095 adapter->atr_sample_rate = 20;
5096 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005097 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00005098 IXGBE_MAX_FDIR_INDICES;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005099 adapter->fdir_pballoc = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00005100#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00005101 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
5102 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
5103 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00005104#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00005105 /* Default traffic class to use for FCoE */
5106 adapter->fcoe.tc = IXGBE_FCOE_DEFTC;
John Fastabend56075a92010-07-26 20:41:31 +00005107 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00005108#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00005109#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005110 break;
5111 default:
5112 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00005113 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08005114
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08005115#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08005116 /* Configure DCB traffic classes */
5117 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
5118 tc = &adapter->dcb_cfg.tc_config[j];
5119 tc->path[DCB_TX_CONFIG].bwg_id = 0;
5120 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
5121 tc->path[DCB_RX_CONFIG].bwg_id = 0;
5122 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
5123 tc->dcb_pfc = pfc_disabled;
5124 }
5125 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
5126 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
5127 adapter->dcb_cfg.rx_pba_cfg = pba_equal;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005128 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08005129 adapter->dcb_cfg.round_robin_enable = false;
5130 adapter->dcb_set_bitmap = 0x00;
5131 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
Joe Perchese8e9f692010-09-07 21:34:53 +00005132 adapter->ring_feature[RING_F_DCB].indices);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005133
5134#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005135
5136 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005137 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005138 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005139#ifdef CONFIG_DCB
5140 adapter->last_lfc_mode = hw->fc.current_mode;
5141#endif
John Fastabend16b61be2010-11-16 19:26:44 -08005142 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5143 hw->fc.low_water = FC_LOW_WATER(max_frame);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005144 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5145 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005146 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005147
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005148 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005149 adapter->rx_itr_setting = 1;
5150 adapter->rx_eitr_param = 20000;
5151 adapter->tx_itr_setting = 1;
5152 adapter->tx_eitr_param = 10000;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005153
5154 /* set defaults for eitr in MegaBytes */
5155 adapter->eitr_low = 10;
5156 adapter->eitr_high = 20;
5157
5158 /* set default ring sizes */
5159 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5160 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5161
Auke Kok9a799d72007-09-15 14:07:45 -07005162 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005163 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005164 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005165 return -EIO;
5166 }
5167
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005168 /* enable rx csum by default */
Auke Kok9a799d72007-09-15 14:07:45 -07005169 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
5170
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005171 /* get assigned NUMA node */
5172 adapter->node = dev_to_node(&pdev->dev);
5173
Auke Kok9a799d72007-09-15 14:07:45 -07005174 set_bit(__IXGBE_DOWN, &adapter->state);
5175
5176 return 0;
5177}
5178
5179/**
5180 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005181 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005182 *
5183 * Return 0 on success, negative on failure
5184 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005185int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005186{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005187 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07005188 int size;
5189
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005190 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005191 tx_ring->tx_buffer_info = vzalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005192 if (!tx_ring->tx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005193 tx_ring->tx_buffer_info = vzalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005194 if (!tx_ring->tx_buffer_info)
5195 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005196
5197 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005198 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005199 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005200
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005201 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005202 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005203 if (!tx_ring->desc)
5204 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005205
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005206 tx_ring->next_to_use = 0;
5207 tx_ring->next_to_clean = 0;
5208 tx_ring->work_limit = tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07005209 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005210
5211err:
5212 vfree(tx_ring->tx_buffer_info);
5213 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005214 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005215 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005216}
5217
5218/**
Alexander Duyck69888672008-09-11 20:05:39 -07005219 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5220 * @adapter: board private structure
5221 *
5222 * If this function returns with an error, then it's possible one or
5223 * more of the rings is populated (while the rest are not). It is the
5224 * callers duty to clean those orphaned rings.
5225 *
5226 * Return 0 on success, negative on failure
5227 **/
5228static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5229{
5230 int i, err = 0;
5231
5232 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005233 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005234 if (!err)
5235 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005236 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005237 break;
5238 }
5239
5240 return err;
5241}
5242
5243/**
Auke Kok9a799d72007-09-15 14:07:45 -07005244 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005245 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005246 *
5247 * Returns 0 on success, negative on failure
5248 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005249int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005250{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005251 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005252 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005253
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005254 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005255 rx_ring->rx_buffer_info = vzalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005256 if (!rx_ring->rx_buffer_info)
Eric Dumazet89bf67f2010-11-22 00:15:06 +00005257 rx_ring->rx_buffer_info = vzalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005258 if (!rx_ring->rx_buffer_info)
5259 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005260
Auke Kok9a799d72007-09-15 14:07:45 -07005261 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005262 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5263 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005264
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005265 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005266 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005267
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005268 if (!rx_ring->desc)
5269 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005270
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005271 rx_ring->next_to_clean = 0;
5272 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005273
5274 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005275err:
5276 vfree(rx_ring->rx_buffer_info);
5277 rx_ring->rx_buffer_info = NULL;
5278 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005279 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005280}
5281
5282/**
Alexander Duyck69888672008-09-11 20:05:39 -07005283 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5284 * @adapter: board private structure
5285 *
5286 * If this function returns with an error, then it's possible one or
5287 * more of the rings is populated (while the rest are not). It is the
5288 * callers duty to clean those orphaned rings.
5289 *
5290 * Return 0 on success, negative on failure
5291 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005292static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5293{
5294 int i, err = 0;
5295
5296 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005297 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005298 if (!err)
5299 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005300 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005301 break;
5302 }
5303
5304 return err;
5305}
5306
5307/**
Auke Kok9a799d72007-09-15 14:07:45 -07005308 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005309 * @tx_ring: Tx descriptor ring for a specific queue
5310 *
5311 * Free all transmit software resources
5312 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005313void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005314{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005315 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005316
5317 vfree(tx_ring->tx_buffer_info);
5318 tx_ring->tx_buffer_info = NULL;
5319
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005320 /* if not set, then don't free */
5321 if (!tx_ring->desc)
5322 return;
5323
5324 dma_free_coherent(tx_ring->dev, tx_ring->size,
5325 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005326
5327 tx_ring->desc = NULL;
5328}
5329
5330/**
5331 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5332 * @adapter: board private structure
5333 *
5334 * Free all transmit software resources
5335 **/
5336static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5337{
5338 int i;
5339
5340 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005341 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005342 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005343}
5344
5345/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005346 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005347 * @rx_ring: ring to clean the resources from
5348 *
5349 * Free all receive software resources
5350 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005351void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005352{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005353 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005354
5355 vfree(rx_ring->rx_buffer_info);
5356 rx_ring->rx_buffer_info = NULL;
5357
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005358 /* if not set, then don't free */
5359 if (!rx_ring->desc)
5360 return;
5361
5362 dma_free_coherent(rx_ring->dev, rx_ring->size,
5363 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005364
5365 rx_ring->desc = NULL;
5366}
5367
5368/**
5369 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5370 * @adapter: board private structure
5371 *
5372 * Free all receive software resources
5373 **/
5374static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5375{
5376 int i;
5377
5378 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005379 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005380 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005381}
5382
5383/**
Auke Kok9a799d72007-09-15 14:07:45 -07005384 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5385 * @netdev: network interface device structure
5386 * @new_mtu: new value for maximum frame size
5387 *
5388 * Returns 0 on success, negative on failure
5389 **/
5390static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5391{
5392 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005393 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005394 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5395
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005396 /* MTU < 68 is an error and causes problems on some kernels */
5397 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
Auke Kok9a799d72007-09-15 14:07:45 -07005398 return -EINVAL;
5399
Emil Tantilov396e7992010-07-01 20:05:12 +00005400 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005401 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005402 netdev->mtu = new_mtu;
5403
John Fastabend16b61be2010-11-16 19:26:44 -08005404 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5405 hw->fc.low_water = FC_LOW_WATER(max_frame);
5406
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005407 if (netif_running(netdev))
5408 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005409
5410 return 0;
5411}
5412
5413/**
5414 * ixgbe_open - Called when a network interface is made active
5415 * @netdev: network interface device structure
5416 *
5417 * Returns 0 on success, negative value on failure
5418 *
5419 * The open entry point is called when a network interface is made
5420 * active by the system (IFF_UP). At this point all resources needed
5421 * for transmit and receive operations are allocated, the interrupt
5422 * handler is registered with the OS, the watchdog timer is started,
5423 * and the stack is notified that the interface is ready.
5424 **/
5425static int ixgbe_open(struct net_device *netdev)
5426{
5427 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5428 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005429
Auke Kok4bebfaa2008-02-11 09:26:01 -08005430 /* disallow open during test */
5431 if (test_bit(__IXGBE_TESTING, &adapter->state))
5432 return -EBUSY;
5433
Jesse Brandeburg54386462009-04-17 20:44:27 +00005434 netif_carrier_off(netdev);
5435
Auke Kok9a799d72007-09-15 14:07:45 -07005436 /* allocate transmit descriptors */
5437 err = ixgbe_setup_all_tx_resources(adapter);
5438 if (err)
5439 goto err_setup_tx;
5440
Auke Kok9a799d72007-09-15 14:07:45 -07005441 /* allocate receive descriptors */
5442 err = ixgbe_setup_all_rx_resources(adapter);
5443 if (err)
5444 goto err_setup_rx;
5445
5446 ixgbe_configure(adapter);
5447
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005448 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005449 if (err)
5450 goto err_req_irq;
5451
Auke Kok9a799d72007-09-15 14:07:45 -07005452 err = ixgbe_up_complete(adapter);
5453 if (err)
5454 goto err_up;
5455
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07005456 netif_tx_start_all_queues(netdev);
5457
Auke Kok9a799d72007-09-15 14:07:45 -07005458 return 0;
5459
5460err_up:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005461 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005462 ixgbe_free_irq(adapter);
5463err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005464err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005465 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005466err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005467 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005468 ixgbe_reset(adapter);
5469
5470 return err;
5471}
5472
5473/**
5474 * ixgbe_close - Disables a network interface
5475 * @netdev: network interface device structure
5476 *
5477 * Returns 0, this is not allowed to fail
5478 *
5479 * The close entry point is called when an interface is de-activated
5480 * by the OS. The hardware is still under the drivers control, but
5481 * needs to be disabled. A global MAC reset is issued to stop the
5482 * hardware, and all transmit and receive resources are freed.
5483 **/
5484static int ixgbe_close(struct net_device *netdev)
5485{
5486 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005487
5488 ixgbe_down(adapter);
5489 ixgbe_free_irq(adapter);
5490
5491 ixgbe_free_all_tx_resources(adapter);
5492 ixgbe_free_all_rx_resources(adapter);
5493
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005494 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005495
5496 return 0;
5497}
5498
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005499#ifdef CONFIG_PM
5500static int ixgbe_resume(struct pci_dev *pdev)
5501{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005502 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5503 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005504 u32 err;
5505
5506 pci_set_power_state(pdev, PCI_D0);
5507 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005508 /*
5509 * pci_restore_state clears dev->state_saved so call
5510 * pci_save_state to restore it.
5511 */
5512 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005513
5514 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005515 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005516 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005517 return err;
5518 }
5519 pci_set_master(pdev);
5520
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005521 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005522
5523 err = ixgbe_init_interrupt_scheme(adapter);
5524 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005525 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005526 return err;
5527 }
5528
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005529 ixgbe_reset(adapter);
5530
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005531 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5532
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005533 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005534 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005535 if (err)
5536 return err;
5537 }
5538
5539 netif_device_attach(netdev);
5540
5541 return 0;
5542}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005543#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005544
5545static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005546{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005547 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5548 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005549 struct ixgbe_hw *hw = &adapter->hw;
5550 u32 ctrl, fctrl;
5551 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005552#ifdef CONFIG_PM
5553 int retval = 0;
5554#endif
5555
5556 netif_device_detach(netdev);
5557
5558 if (netif_running(netdev)) {
5559 ixgbe_down(adapter);
5560 ixgbe_free_irq(adapter);
5561 ixgbe_free_all_tx_resources(adapter);
5562 ixgbe_free_all_rx_resources(adapter);
5563 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005564
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005565 ixgbe_clear_interrupt_scheme(adapter);
5566
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005567#ifdef CONFIG_PM
5568 retval = pci_save_state(pdev);
5569 if (retval)
5570 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005571
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005572#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005573 if (wufc) {
5574 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005575
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005576 /* turn on all-multi mode if wake on multicast is enabled */
5577 if (wufc & IXGBE_WUFC_MC) {
5578 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5579 fctrl |= IXGBE_FCTRL_MPE;
5580 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5581 }
5582
5583 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5584 ctrl |= IXGBE_CTRL_GIO_DIS;
5585 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5586
5587 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5588 } else {
5589 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5590 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5591 }
5592
Alexander Duyckbd508172010-11-16 19:27:03 -08005593 switch (hw->mac.type) {
5594 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005595 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005596 break;
5597 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005598 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005599 pci_wake_from_d3(pdev, !!wufc);
5600 break;
5601 default:
5602 break;
5603 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005604
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005605 *enable_wake = !!wufc;
5606
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005607 ixgbe_release_hw_control(adapter);
5608
5609 pci_disable_device(pdev);
5610
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005611 return 0;
5612}
5613
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005614#ifdef CONFIG_PM
5615static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5616{
5617 int retval;
5618 bool wake;
5619
5620 retval = __ixgbe_shutdown(pdev, &wake);
5621 if (retval)
5622 return retval;
5623
5624 if (wake) {
5625 pci_prepare_to_sleep(pdev);
5626 } else {
5627 pci_wake_from_d3(pdev, false);
5628 pci_set_power_state(pdev, PCI_D3hot);
5629 }
5630
5631 return 0;
5632}
5633#endif /* CONFIG_PM */
5634
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005635static void ixgbe_shutdown(struct pci_dev *pdev)
5636{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005637 bool wake;
5638
5639 __ixgbe_shutdown(pdev, &wake);
5640
5641 if (system_state == SYSTEM_POWER_OFF) {
5642 pci_wake_from_d3(pdev, wake);
5643 pci_set_power_state(pdev, PCI_D3hot);
5644 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005645}
5646
5647/**
Auke Kok9a799d72007-09-15 14:07:45 -07005648 * ixgbe_update_stats - Update the board statistics counters.
5649 * @adapter: board private structure
5650 **/
5651void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5652{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005653 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005654 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005655 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005656 u64 total_mpc = 0;
5657 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005658 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5659 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
5660 u64 bytes = 0, packets = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005661
Don Skidmored08935c2010-06-11 13:20:29 +00005662 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5663 test_bit(__IXGBE_RESETTING, &adapter->state))
5664 return;
5665
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005666 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005667 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005668 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005669 for (i = 0; i < 16; i++)
5670 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005671 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005672 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005673 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5674 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005675 }
5676 adapter->rsc_total_count = rsc_count;
5677 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005678 }
5679
Alexander Duyck5b7da512010-11-16 19:26:50 -08005680 for (i = 0; i < adapter->num_rx_queues; i++) {
5681 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5682 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5683 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5684 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
5685 bytes += rx_ring->stats.bytes;
5686 packets += rx_ring->stats.packets;
5687 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005688 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005689 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5690 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
5691 netdev->stats.rx_bytes = bytes;
5692 netdev->stats.rx_packets = packets;
5693
5694 bytes = 0;
5695 packets = 0;
5696 /* gather some stats to the adapter struct that are per queue */
5697 for (i = 0; i < adapter->num_tx_queues; i++) {
5698 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5699 restart_queue += tx_ring->tx_stats.restart_queue;
5700 tx_busy += tx_ring->tx_stats.tx_busy;
5701 bytes += tx_ring->stats.bytes;
5702 packets += tx_ring->stats.packets;
5703 }
5704 adapter->restart_queue = restart_queue;
5705 adapter->tx_busy = tx_busy;
5706 netdev->stats.tx_bytes = bytes;
5707 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005708
Joe Perches7ca647b2010-09-07 21:35:40 +00005709 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005710 for (i = 0; i < 8; i++) {
5711 /* for packet buffers not used, the register should read 0 */
5712 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5713 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005714 hwstats->mpc[i] += mpc;
5715 total_mpc += hwstats->mpc[i];
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005716 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005717 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5718 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5719 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5720 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5721 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005722 switch (hw->mac.type) {
5723 case ixgbe_mac_82598EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005724 hwstats->pxonrxc[i] +=
5725 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005726 break;
5727 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005728 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08005729 hwstats->pxonrxc[i] +=
5730 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005731 break;
5732 default:
5733 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005734 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005735 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5736 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005737 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005738 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005739 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005740 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005741
John Fastabendc84d3242010-11-16 19:27:12 -08005742 ixgbe_update_xoff_received(adapter);
5743
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005744 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005745 switch (hw->mac.type) {
5746 case ixgbe_mac_82598EB:
5747 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
Alexander Duyckbd508172010-11-16 19:27:03 -08005748 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5749 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5750 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5751 break;
5752 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08005753 case ixgbe_mac_X540:
Joe Perches7ca647b2010-09-07 21:35:40 +00005754 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005755 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005756 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005757 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005758 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005759 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005760 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
Joe Perches7ca647b2010-09-07 21:35:40 +00005761 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5762 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005763#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005764 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5765 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5766 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5767 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5768 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5769 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Yi Zou6d455222009-05-13 13:12:16 +00005770#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005771 break;
5772 default:
5773 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005774 }
Auke Kok9a799d72007-09-15 14:07:45 -07005775 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005776 hwstats->bprc += bprc;
5777 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005778 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005779 hwstats->mprc -= bprc;
5780 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5781 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5782 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5783 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5784 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5785 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5786 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5787 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005788 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005789 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005790 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005791 hwstats->lxofftxc += lxoff;
5792 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5793 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5794 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005795 /*
5796 * 82598 errata - tx of flow control packets is included in tx counters
5797 */
5798 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005799 hwstats->gptc -= xon_off_tot;
5800 hwstats->mptc -= xon_off_tot;
5801 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5802 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5803 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5804 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5805 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5806 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5807 hwstats->ptc64 -= xon_off_tot;
5808 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5809 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5810 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5811 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5812 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5813 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005814
5815 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005816 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005817
5818 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005819 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005820 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005821 netdev->stats.rx_length_errors = hwstats->rlec;
5822 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005823 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005824}
5825
5826/**
5827 * ixgbe_watchdog - Timer Call-back
5828 * @data: pointer to adapter cast into an unsigned long
5829 **/
5830static void ixgbe_watchdog(unsigned long data)
5831{
5832 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005833 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005834 u64 eics = 0;
5835 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07005836
Alexander Duyckfe49f042009-06-04 16:00:09 +00005837 /*
5838 * Do the watchdog outside of interrupt context due to the lovely
5839 * delays that some of the newer hardware requires
5840 */
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005841
Alexander Duyckfe49f042009-06-04 16:00:09 +00005842 if (test_bit(__IXGBE_DOWN, &adapter->state))
5843 goto watchdog_short_circuit;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005844
Alexander Duyckfe49f042009-06-04 16:00:09 +00005845 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
5846 /*
5847 * for legacy and MSI interrupts don't set any bits
5848 * that are enabled for EIAM, because this operation
5849 * would set *both* EIMS and EICS for any bit in EIAM
5850 */
5851 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5852 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
5853 goto watchdog_reschedule;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005854 }
5855
Alexander Duyckfe49f042009-06-04 16:00:09 +00005856 /* get one bit for every active tx/rx interrupt vector */
5857 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
5858 struct ixgbe_q_vector *qv = adapter->q_vector[i];
5859 if (qv->rxr_count || qv->txr_count)
5860 eics |= ((u64)1 << i);
5861 }
5862
5863 /* Cause software interrupt to ensure rx rings are cleaned */
5864 ixgbe_irq_rearm_queues(adapter, eics);
5865
5866watchdog_reschedule:
5867 /* Reset the timer */
5868 mod_timer(&adapter->watchdog_timer, round_jiffies(jiffies + 2 * HZ));
5869
5870watchdog_short_circuit:
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005871 schedule_work(&adapter->watchdog_task);
5872}
5873
5874/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005875 * ixgbe_multispeed_fiber_task - worker thread to configure multispeed fiber
5876 * @work: pointer to work_struct containing our data
5877 **/
5878static void ixgbe_multispeed_fiber_task(struct work_struct *work)
5879{
5880 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005881 struct ixgbe_adapter,
5882 multispeed_fiber_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005883 struct ixgbe_hw *hw = &adapter->hw;
5884 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005885 bool negotiation;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005886
5887 adapter->flags |= IXGBE_FLAG_IN_SFP_LINK_TASK;
Mallikarjuna R Chilakalaa1f25322009-06-30 11:44:36 +00005888 autoneg = hw->phy.autoneg_advertised;
5889 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005890 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Mallikarjuna R Chilakala1097cd12010-03-18 14:34:52 +00005891 hw->mac.autotry_restart = false;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005892 if (hw->mac.ops.setup_link)
5893 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005894 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5895 adapter->flags &= ~IXGBE_FLAG_IN_SFP_LINK_TASK;
5896}
5897
5898/**
5899 * ixgbe_sfp_config_module_task - worker thread to configure a new SFP+ module
5900 * @work: pointer to work_struct containing our data
5901 **/
5902static void ixgbe_sfp_config_module_task(struct work_struct *work)
5903{
5904 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005905 struct ixgbe_adapter,
5906 sfp_config_module_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005907 struct ixgbe_hw *hw = &adapter->hw;
5908 u32 err;
5909
5910 adapter->flags |= IXGBE_FLAG_IN_SFP_MOD_TASK;
Don Skidmore63d6e1d2009-07-02 12:50:12 +00005911
5912 /* Time for electrical oscillations to settle down */
5913 msleep(100);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005914 err = hw->phy.ops.identify_sfp(hw);
Don Skidmore63d6e1d2009-07-02 12:50:12 +00005915
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005916 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005917 e_dev_err("failed to initialize because an unsupported SFP+ "
5918 "module type was detected.\n");
5919 e_dev_err("Reload the driver after installing a supported "
5920 "module.\n");
Don Skidmore63d6e1d2009-07-02 12:50:12 +00005921 unregister_netdev(adapter->netdev);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005922 return;
5923 }
5924 hw->mac.ops.setup_sfp(hw);
5925
Tony Breeds8d1c3c02009-04-09 22:29:10 +00005926 if (!(adapter->flags & IXGBE_FLAG_IN_SFP_LINK_TASK))
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005927 /* This will also work for DA Twinax connections */
5928 schedule_work(&adapter->multispeed_fiber_task);
5929 adapter->flags &= ~IXGBE_FLAG_IN_SFP_MOD_TASK;
5930}
5931
5932/**
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005933 * ixgbe_fdir_reinit_task - worker thread to reinit FDIR filter table
5934 * @work: pointer to work_struct containing our data
5935 **/
5936static void ixgbe_fdir_reinit_task(struct work_struct *work)
5937{
5938 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005939 struct ixgbe_adapter,
5940 fdir_reinit_task);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005941 struct ixgbe_hw *hw = &adapter->hw;
5942 int i;
5943
5944 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5945 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005946 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
5947 &(adapter->tx_ring[i]->state));
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005948 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005949 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005950 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005951 }
5952 /* Done FDIR Re-initialization, enable transmits */
5953 netif_tx_start_all_queues(adapter->netdev);
5954}
5955
John Fastabend10eec952010-02-03 14:23:32 +00005956static DEFINE_MUTEX(ixgbe_watchdog_lock);
5957
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005958/**
Alexander Duyck69888672008-09-11 20:05:39 -07005959 * ixgbe_watchdog_task - worker thread to bring link up
5960 * @work: pointer to work_struct containing our data
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005961 **/
5962static void ixgbe_watchdog_task(struct work_struct *work)
5963{
5964 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005965 struct ixgbe_adapter,
5966 watchdog_task);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005967 struct net_device *netdev = adapter->netdev;
5968 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend10eec952010-02-03 14:23:32 +00005969 u32 link_speed;
5970 bool link_up;
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005971 int i;
5972 struct ixgbe_ring *tx_ring;
5973 int some_tx_pending = 0;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005974
John Fastabend10eec952010-02-03 14:23:32 +00005975 mutex_lock(&ixgbe_watchdog_lock);
5976
5977 link_up = adapter->link_up;
5978 link_speed = adapter->link_speed;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005979
5980 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
5981 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005982 if (link_up) {
5983#ifdef CONFIG_DCB
5984 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
5985 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00005986 hw->mac.ops.fc_enable(hw, i);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005987 } else {
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00005988 hw->mac.ops.fc_enable(hw, 0);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005989 }
5990#else
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00005991 hw->mac.ops.fc_enable(hw, 0);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005992#endif
5993 }
5994
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005995 if (link_up ||
5996 time_after(jiffies, (adapter->link_check_timeout +
Joe Perchese8e9f692010-09-07 21:34:53 +00005997 IXGBE_TRY_LINK_TIMEOUT))) {
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005998 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005999 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006000 }
6001 adapter->link_up = link_up;
6002 adapter->link_speed = link_speed;
6003 }
Auke Kok9a799d72007-09-15 14:07:45 -07006004
6005 if (link_up) {
6006 if (!netif_carrier_ok(netdev)) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006007 bool flow_rx, flow_tx;
6008
Alexander Duyckbd508172010-11-16 19:27:03 -08006009 switch (hw->mac.type) {
6010 case ixgbe_mac_82598EB: {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006011 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
6012 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
Peter P Waskiewicz Jr078788b2009-07-16 15:50:32 +00006013 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
6014 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006015 }
Alexander Duyckbd508172010-11-16 19:27:03 -08006016 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -08006017 case ixgbe_mac_82599EB:
6018 case ixgbe_mac_X540: {
Alexander Duyckbd508172010-11-16 19:27:03 -08006019 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
6020 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
6021 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
6022 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
6023 }
6024 break;
6025 default:
6026 flow_tx = false;
6027 flow_rx = false;
6028 break;
6029 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006030
Emil Tantilov396e7992010-07-01 20:05:12 +00006031 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
Jeff Kirshera46e5342008-11-27 00:22:21 -08006032 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
Emil Tantilov849c4542010-06-03 16:53:41 +00006033 "10 Gbps" :
6034 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
6035 "1 Gbps" : "unknown speed")),
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006036 ((flow_rx && flow_tx) ? "RX/TX" :
Emil Tantilov849c4542010-06-03 16:53:41 +00006037 (flow_rx ? "RX" :
6038 (flow_tx ? "TX" : "None"))));
Auke Kok9a799d72007-09-15 14:07:45 -07006039
6040 netif_carrier_on(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006041 } else {
6042 /* Force detection of hung controller */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08006043 for (i = 0; i < adapter->num_tx_queues; i++) {
6044 tx_ring = adapter->tx_ring[i];
6045 set_check_for_tx_hang(tx_ring);
6046 }
Auke Kok9a799d72007-09-15 14:07:45 -07006047 }
6048 } else {
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07006049 adapter->link_up = false;
6050 adapter->link_speed = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006051 if (netif_carrier_ok(netdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00006052 e_info(drv, "NIC Link is Down\n");
Auke Kok9a799d72007-09-15 14:07:45 -07006053 netif_carrier_off(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006054 }
6055 }
6056
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006057 if (!netif_carrier_ok(netdev)) {
6058 for (i = 0; i < adapter->num_tx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00006059 tx_ring = adapter->tx_ring[i];
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00006060 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
6061 some_tx_pending = 1;
6062 break;
6063 }
6064 }
6065
6066 if (some_tx_pending) {
6067 /* We've lost link, so the controller stops DMA,
6068 * but we've got queued Tx work that's never going
6069 * to get done, so reset controller to flush Tx.
6070 * (Do the reset outside of interrupt context).
6071 */
6072 schedule_work(&adapter->reset_task);
6073 }
6074 }
6075
Auke Kok9a799d72007-09-15 14:07:45 -07006076 ixgbe_update_stats(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00006077 mutex_unlock(&ixgbe_watchdog_lock);
Auke Kok9a799d72007-09-15 14:07:45 -07006078}
6079
Auke Kok9a799d72007-09-15 14:07:45 -07006080static int ixgbe_tso(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006081 struct ixgbe_ring *tx_ring, struct sk_buff *skb,
Hao Zheng5e09a102010-11-11 13:47:59 +00006082 u32 tx_flags, u8 *hdr_len, __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006083{
6084 struct ixgbe_adv_tx_context_desc *context_desc;
6085 unsigned int i;
6086 int err;
6087 struct ixgbe_tx_buffer *tx_buffer_info;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006088 u32 vlan_macip_lens = 0, type_tucmd_mlhl;
6089 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07006090
6091 if (skb_is_gso(skb)) {
6092 if (skb_header_cloned(skb)) {
6093 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
6094 if (err)
6095 return err;
6096 }
6097 l4len = tcp_hdrlen(skb);
6098 *hdr_len += l4len;
6099
Hao Zheng5e09a102010-11-11 13:47:59 +00006100 if (protocol == htons(ETH_P_IP)) {
Auke Kok9a799d72007-09-15 14:07:45 -07006101 struct iphdr *iph = ip_hdr(skb);
6102 iph->tot_len = 0;
6103 iph->check = 0;
6104 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
Joe Perchese8e9f692010-09-07 21:34:53 +00006105 iph->daddr, 0,
6106 IPPROTO_TCP,
6107 0);
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08006108 } else if (skb_is_gso_v6(skb)) {
Auke Kok9a799d72007-09-15 14:07:45 -07006109 ipv6_hdr(skb)->payload_len = 0;
6110 tcp_hdr(skb)->check =
6111 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
Joe Perchese8e9f692010-09-07 21:34:53 +00006112 &ipv6_hdr(skb)->daddr,
6113 0, IPPROTO_TCP, 0);
Auke Kok9a799d72007-09-15 14:07:45 -07006114 }
6115
6116 i = tx_ring->next_to_use;
6117
6118 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006119 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006120
6121 /* VLAN MACLEN IPLEN */
6122 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6123 vlan_macip_lens |=
6124 (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK);
6125 vlan_macip_lens |= ((skb_network_offset(skb)) <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006126 IXGBE_ADVTXD_MACLEN_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006127 *hdr_len += skb_network_offset(skb);
6128 vlan_macip_lens |=
6129 (skb_transport_header(skb) - skb_network_header(skb));
6130 *hdr_len +=
6131 (skb_transport_header(skb) - skb_network_header(skb));
6132 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6133 context_desc->seqnum_seed = 0;
6134
6135 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006136 type_tucmd_mlhl = (IXGBE_TXD_CMD_DEXT |
Joe Perchese8e9f692010-09-07 21:34:53 +00006137 IXGBE_ADVTXD_DTYP_CTXT);
Auke Kok9a799d72007-09-15 14:07:45 -07006138
Hao Zheng5e09a102010-11-11 13:47:59 +00006139 if (protocol == htons(ETH_P_IP))
Auke Kok9a799d72007-09-15 14:07:45 -07006140 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_IPV4;
6141 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6142 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd_mlhl);
6143
6144 /* MSS L4LEN IDX */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006145 mss_l4len_idx =
Auke Kok9a799d72007-09-15 14:07:45 -07006146 (skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT);
6147 mss_l4len_idx |= (l4len << IXGBE_ADVTXD_L4LEN_SHIFT);
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006148 /* use index 1 for TSO */
6149 mss_l4len_idx |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006150 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6151
6152 tx_buffer_info->time_stamp = jiffies;
6153 tx_buffer_info->next_to_watch = i;
6154
6155 i++;
6156 if (i == tx_ring->count)
6157 i = 0;
6158 tx_ring->next_to_use = i;
6159
6160 return true;
6161 }
6162 return false;
6163}
6164
Hao Zheng5e09a102010-11-11 13:47:59 +00006165static u32 ixgbe_psum(struct ixgbe_adapter *adapter, struct sk_buff *skb,
6166 __be16 protocol)
Joe Perches7ca647b2010-09-07 21:35:40 +00006167{
6168 u32 rtn = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00006169
6170 switch (protocol) {
6171 case cpu_to_be16(ETH_P_IP):
6172 rtn |= IXGBE_ADVTXD_TUCMD_IPV4;
6173 switch (ip_hdr(skb)->protocol) {
6174 case IPPROTO_TCP:
6175 rtn |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6176 break;
6177 case IPPROTO_SCTP:
6178 rtn |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6179 break;
6180 }
6181 break;
6182 case cpu_to_be16(ETH_P_IPV6):
6183 /* XXX what about other V6 headers?? */
6184 switch (ipv6_hdr(skb)->nexthdr) {
6185 case IPPROTO_TCP:
6186 rtn |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6187 break;
6188 case IPPROTO_SCTP:
6189 rtn |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6190 break;
6191 }
6192 break;
6193 default:
6194 if (unlikely(net_ratelimit()))
6195 e_warn(probe, "partial checksum but proto=%x!\n",
Hao Zheng5e09a102010-11-11 13:47:59 +00006196 protocol);
Joe Perches7ca647b2010-09-07 21:35:40 +00006197 break;
6198 }
6199
6200 return rtn;
6201}
6202
Auke Kok9a799d72007-09-15 14:07:45 -07006203static bool ixgbe_tx_csum(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006204 struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006205 struct sk_buff *skb, u32 tx_flags,
6206 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006207{
6208 struct ixgbe_adv_tx_context_desc *context_desc;
6209 unsigned int i;
6210 struct ixgbe_tx_buffer *tx_buffer_info;
6211 u32 vlan_macip_lens = 0, type_tucmd_mlhl = 0;
6212
6213 if (skb->ip_summed == CHECKSUM_PARTIAL ||
6214 (tx_flags & IXGBE_TX_FLAGS_VLAN)) {
6215 i = tx_ring->next_to_use;
6216 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006217 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006218
6219 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6220 vlan_macip_lens |=
6221 (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK);
6222 vlan_macip_lens |= (skb_network_offset(skb) <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006223 IXGBE_ADVTXD_MACLEN_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006224 if (skb->ip_summed == CHECKSUM_PARTIAL)
6225 vlan_macip_lens |= (skb_transport_header(skb) -
Joe Perchese8e9f692010-09-07 21:34:53 +00006226 skb_network_header(skb));
Auke Kok9a799d72007-09-15 14:07:45 -07006227
6228 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6229 context_desc->seqnum_seed = 0;
6230
6231 type_tucmd_mlhl |= (IXGBE_TXD_CMD_DEXT |
Joe Perchese8e9f692010-09-07 21:34:53 +00006232 IXGBE_ADVTXD_DTYP_CTXT);
Auke Kok9a799d72007-09-15 14:07:45 -07006233
Joe Perches7ca647b2010-09-07 21:35:40 +00006234 if (skb->ip_summed == CHECKSUM_PARTIAL)
Hao Zheng5e09a102010-11-11 13:47:59 +00006235 type_tucmd_mlhl |= ixgbe_psum(adapter, skb, protocol);
Auke Kok9a799d72007-09-15 14:07:45 -07006236
6237 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd_mlhl);
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006238 /* use index zero for tx checksum offload */
Auke Kok9a799d72007-09-15 14:07:45 -07006239 context_desc->mss_l4len_idx = 0;
6240
6241 tx_buffer_info->time_stamp = jiffies;
6242 tx_buffer_info->next_to_watch = i;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006243
Auke Kok9a799d72007-09-15 14:07:45 -07006244 i++;
6245 if (i == tx_ring->count)
6246 i = 0;
6247 tx_ring->next_to_use = i;
6248
6249 return true;
6250 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006251
Auke Kok9a799d72007-09-15 14:07:45 -07006252 return false;
6253}
6254
6255static int ixgbe_tx_map(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006256 struct ixgbe_ring *tx_ring,
6257 struct sk_buff *skb, u32 tx_flags,
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006258 unsigned int first, const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006259{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006260 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006261 struct ixgbe_tx_buffer *tx_buffer_info;
Yi Zoueacd73f2009-05-13 13:11:06 +00006262 unsigned int len;
6263 unsigned int total = skb->len;
Auke Kok9a799d72007-09-15 14:07:45 -07006264 unsigned int offset = 0, size, count = 0, i;
6265 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
6266 unsigned int f;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006267 unsigned int bytecount = skb->len;
6268 u16 gso_segs = 1;
Auke Kok9a799d72007-09-15 14:07:45 -07006269
6270 i = tx_ring->next_to_use;
6271
Yi Zoueacd73f2009-05-13 13:11:06 +00006272 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6273 /* excluding fcoe_crc_eof for FCoE */
6274 total -= sizeof(struct fcoe_crc_eof);
6275
6276 len = min(skb_headlen(skb), total);
Auke Kok9a799d72007-09-15 14:07:45 -07006277 while (len) {
6278 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6279 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6280
6281 tx_buffer_info->length = size;
Alexander Duycke5a43542009-12-02 16:46:56 +00006282 tx_buffer_info->mapped_as_page = false;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006283 tx_buffer_info->dma = dma_map_single(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006284 skb->data + offset,
Nick Nunley1b507732010-04-27 13:10:27 +00006285 size, DMA_TO_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006286 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006287 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006288 tx_buffer_info->time_stamp = jiffies;
6289 tx_buffer_info->next_to_watch = i;
6290
6291 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006292 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006293 offset += size;
6294 count++;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006295
6296 if (len) {
6297 i++;
6298 if (i == tx_ring->count)
6299 i = 0;
6300 }
Auke Kok9a799d72007-09-15 14:07:45 -07006301 }
6302
6303 for (f = 0; f < nr_frags; f++) {
6304 struct skb_frag_struct *frag;
6305
6306 frag = &skb_shinfo(skb)->frags[f];
Yi Zoueacd73f2009-05-13 13:11:06 +00006307 len = min((unsigned int)frag->size, total);
Alexander Duycke5a43542009-12-02 16:46:56 +00006308 offset = frag->page_offset;
Auke Kok9a799d72007-09-15 14:07:45 -07006309
6310 while (len) {
Alexander Duyck44df32c2009-03-31 21:34:23 +00006311 i++;
6312 if (i == tx_ring->count)
6313 i = 0;
6314
Auke Kok9a799d72007-09-15 14:07:45 -07006315 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6316 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6317
6318 tx_buffer_info->length = size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006319 tx_buffer_info->dma = dma_map_page(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006320 frag->page,
6321 offset, size,
Nick Nunley1b507732010-04-27 13:10:27 +00006322 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +00006323 tx_buffer_info->mapped_as_page = true;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006324 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006325 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006326 tx_buffer_info->time_stamp = jiffies;
6327 tx_buffer_info->next_to_watch = i;
6328
6329 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006330 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006331 offset += size;
6332 count++;
Auke Kok9a799d72007-09-15 14:07:45 -07006333 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006334 if (total == 0)
6335 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006336 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006337
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006338 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6339 gso_segs = skb_shinfo(skb)->gso_segs;
6340#ifdef IXGBE_FCOE
6341 /* adjust for FCoE Sequence Offload */
6342 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6343 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6344 skb_shinfo(skb)->gso_size);
6345#endif /* IXGBE_FCOE */
6346 bytecount += (gso_segs - 1) * hdr_len;
6347
6348 /* multiply data chunks by size of headers */
6349 tx_ring->tx_buffer_info[i].bytecount = bytecount;
6350 tx_ring->tx_buffer_info[i].gso_segs = gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006351 tx_ring->tx_buffer_info[i].skb = skb;
6352 tx_ring->tx_buffer_info[first].next_to_watch = i;
6353
6354 return count;
Alexander Duycke5a43542009-12-02 16:46:56 +00006355
6356dma_error:
Emil Tantilov849c4542010-06-03 16:53:41 +00006357 e_dev_err("TX DMA map failed\n");
Alexander Duycke5a43542009-12-02 16:46:56 +00006358
6359 /* clear timestamp and dma mappings for failed tx_buffer_info map */
6360 tx_buffer_info->dma = 0;
6361 tx_buffer_info->time_stamp = 0;
6362 tx_buffer_info->next_to_watch = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006363 if (count)
6364 count--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006365
6366 /* clear timestamp and dma mappings for remaining portion of packet */
Roel Kluinc1fa3472010-01-19 14:21:45 +00006367 while (count--) {
Joe Perchese8e9f692010-09-07 21:34:53 +00006368 if (i == 0)
Alexander Duycke5a43542009-12-02 16:46:56 +00006369 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006370 i--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006371 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006372 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Alexander Duycke5a43542009-12-02 16:46:56 +00006373 }
6374
Anton Blancharde44d38e2010-02-03 13:12:51 +00006375 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006376}
6377
Alexander Duyck84ea2592010-11-16 19:26:49 -08006378static void ixgbe_tx_queue(struct ixgbe_ring *tx_ring,
Joe Perchese8e9f692010-09-07 21:34:53 +00006379 int tx_flags, int count, u32 paylen, u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006380{
6381 union ixgbe_adv_tx_desc *tx_desc = NULL;
6382 struct ixgbe_tx_buffer *tx_buffer_info;
6383 u32 olinfo_status = 0, cmd_type_len = 0;
6384 unsigned int i;
6385 u32 txd_cmd = IXGBE_TXD_CMD_EOP | IXGBE_TXD_CMD_RS | IXGBE_TXD_CMD_IFCS;
6386
6387 cmd_type_len |= IXGBE_ADVTXD_DTYP_DATA;
6388
6389 cmd_type_len |= IXGBE_ADVTXD_DCMD_IFCS | IXGBE_ADVTXD_DCMD_DEXT;
6390
6391 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6392 cmd_type_len |= IXGBE_ADVTXD_DCMD_VLE;
6393
6394 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6395 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6396
6397 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006398 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006399
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006400 /* use index 1 context for tso */
6401 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006402 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6403 olinfo_status |= IXGBE_TXD_POPTS_IXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006404 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006405
6406 } else if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6407 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006408 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006409
Yi Zoueacd73f2009-05-13 13:11:06 +00006410 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6411 olinfo_status |= IXGBE_ADVTXD_CC;
6412 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
6413 if (tx_flags & IXGBE_TX_FLAGS_FSO)
6414 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6415 }
6416
Auke Kok9a799d72007-09-15 14:07:45 -07006417 olinfo_status |= ((paylen - hdr_len) << IXGBE_ADVTXD_PAYLEN_SHIFT);
6418
6419 i = tx_ring->next_to_use;
6420 while (count--) {
6421 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006422 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006423 tx_desc->read.buffer_addr = cpu_to_le64(tx_buffer_info->dma);
6424 tx_desc->read.cmd_type_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00006425 cpu_to_le32(cmd_type_len | tx_buffer_info->length);
Auke Kok9a799d72007-09-15 14:07:45 -07006426 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Auke Kok9a799d72007-09-15 14:07:45 -07006427 i++;
6428 if (i == tx_ring->count)
6429 i = 0;
6430 }
6431
6432 tx_desc->read.cmd_type_len |= cpu_to_le32(txd_cmd);
6433
6434 /*
6435 * Force memory writes to complete before letting h/w
6436 * know there are new descriptors to fetch. (Only
6437 * applicable for weak-ordered memory model archs,
6438 * such as IA-64).
6439 */
6440 wmb();
6441
6442 tx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08006443 writel(i, tx_ring->tail);
Auke Kok9a799d72007-09-15 14:07:45 -07006444}
6445
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006446static void ixgbe_atr(struct ixgbe_adapter *adapter, struct sk_buff *skb,
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006447 u8 queue, u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006448{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006449 struct ixgbe_atr_input atr_input;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006450 struct iphdr *iph = ip_hdr(skb);
6451 struct ethhdr *eth = (struct ethhdr *)skb->data;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006452 struct tcphdr *th;
6453 u16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006454
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006455 /* Right now, we support IPv4 w/ TCP only */
6456 if (protocol != htons(ETH_P_IP) ||
6457 iph->protocol != IPPROTO_TCP)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006458 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006459
6460 memset(&atr_input, 0, sizeof(struct ixgbe_atr_input));
6461
6462 vlan_id = (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK) >>
Joe Perchese8e9f692010-09-07 21:34:53 +00006463 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006464
6465 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006466
6467 ixgbe_atr_set_vlan_id_82599(&atr_input, vlan_id);
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006468 ixgbe_atr_set_src_port_82599(&atr_input, th->dest);
6469 ixgbe_atr_set_dst_port_82599(&atr_input, th->source);
6470 ixgbe_atr_set_flex_byte_82599(&atr_input, eth->h_proto);
6471 ixgbe_atr_set_l4type_82599(&atr_input, IXGBE_ATR_L4TYPE_TCP);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006472 /* src and dst are inverted, think how the receiver sees them */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006473 ixgbe_atr_set_src_ipv4_82599(&atr_input, iph->daddr);
6474 ixgbe_atr_set_dst_ipv4_82599(&atr_input, iph->saddr);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006475
6476 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
6477 ixgbe_fdir_add_signature_filter_82599(&adapter->hw, &atr_input, queue);
6478}
6479
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006480static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, int size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006481{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006482 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006483 /* Herbert's original patch had:
6484 * smp_mb__after_netif_stop_queue();
6485 * but since that doesn't exist yet, just open code it. */
6486 smp_mb();
6487
6488 /* We need to check again in a case another CPU has just
6489 * made room available. */
6490 if (likely(IXGBE_DESC_UNUSED(tx_ring) < size))
6491 return -EBUSY;
6492
6493 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006494 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006495 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006496 return 0;
6497}
6498
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006499static int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, int size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006500{
6501 if (likely(IXGBE_DESC_UNUSED(tx_ring) >= size))
6502 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006503 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006504}
6505
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006506static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6507{
6508 struct ixgbe_adapter *adapter = netdev_priv(dev);
Yi Zou5f715822009-12-03 11:32:44 +00006509 int txq = smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006510#ifdef IXGBE_FCOE
Hao Zheng5e09a102010-11-11 13:47:59 +00006511 __be16 protocol;
6512
6513 protocol = vlan_get_protocol(skb);
6514
6515 if ((protocol == htons(ETH_P_FCOE)) ||
6516 (protocol == htons(ETH_P_FIP))) {
John Fastabend56075a92010-07-26 20:41:31 +00006517 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
6518 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6519 txq += adapter->ring_feature[RING_F_FCOE].mask;
6520 return txq;
John Fastabend4bc091d2010-08-08 15:46:15 +00006521#ifdef CONFIG_IXGBE_DCB
John Fastabend56075a92010-07-26 20:41:31 +00006522 } else if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6523 txq = adapter->fcoe.up;
6524 return txq;
John Fastabend4bc091d2010-08-08 15:46:15 +00006525#endif
John Fastabend56075a92010-07-26 20:41:31 +00006526 }
6527 }
6528#endif
6529
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006530 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6531 while (unlikely(txq >= dev->real_num_tx_queues))
6532 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006533 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006534 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006535
John Fastabend2ea186a2010-02-27 03:28:24 -08006536 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6537 if (skb->priority == TC_PRIO_CONTROL)
6538 txq = adapter->ring_feature[RING_F_DCB].indices-1;
6539 else
6540 txq = (skb->vlan_tci & IXGBE_TX_FLAGS_VLAN_PRIO_MASK)
6541 >> 13;
6542 return txq;
6543 }
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006544
6545 return skb_tx_hash(dev, skb);
6546}
6547
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006548netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006549 struct ixgbe_adapter *adapter,
6550 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006551{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006552 struct net_device *netdev = tx_ring->netdev;
Eric Dumazet60d51132009-12-08 07:22:03 +00006553 struct netdev_queue *txq;
Auke Kok9a799d72007-09-15 14:07:45 -07006554 unsigned int first;
6555 unsigned int tx_flags = 0;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -08006556 u8 hdr_len = 0;
Yi Zou5f715822009-12-03 11:32:44 +00006557 int tso;
Auke Kok9a799d72007-09-15 14:07:45 -07006558 int count = 0;
6559 unsigned int f;
Hao Zheng5e09a102010-11-11 13:47:59 +00006560 __be16 protocol;
6561
6562 protocol = vlan_get_protocol(skb);
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006563
Jesse Grosseab6d182010-10-20 13:56:03 +00006564 if (vlan_tx_tag_present(skb)) {
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006565 tx_flags |= vlan_tx_tag_get(skb);
Alexander Duyck2f90b862008-11-20 20:52:10 -08006566 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6567 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
Yi Zou5f715822009-12-03 11:32:44 +00006568 tx_flags |= ((skb->queue_mapping & 0x7) << 13);
Alexander Duyck2f90b862008-11-20 20:52:10 -08006569 }
6570 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6571 tx_flags |= IXGBE_TX_FLAGS_VLAN;
John Fastabend33c66bd2010-05-18 16:00:11 +00006572 } else if (adapter->flags & IXGBE_FLAG_DCB_ENABLED &&
6573 skb->priority != TC_PRIO_CONTROL) {
John Fastabend2ea186a2010-02-27 03:28:24 -08006574 tx_flags |= ((skb->queue_mapping & 0x7) << 13);
6575 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6576 tx_flags |= IXGBE_TX_FLAGS_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006577 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006578
Yi Zou09ad1cc2009-09-03 14:56:10 +00006579#ifdef IXGBE_FCOE
John Fastabend56075a92010-07-26 20:41:31 +00006580 /* for FCoE with DCB, we force the priority to what
6581 * was specified by the switch */
6582 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED &&
Hao Zheng5e09a102010-11-11 13:47:59 +00006583 (protocol == htons(ETH_P_FCOE) ||
6584 protocol == htons(ETH_P_FIP))) {
John Fastabend4bc091d2010-08-08 15:46:15 +00006585#ifdef CONFIG_IXGBE_DCB
6586 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6587 tx_flags &= ~(IXGBE_TX_FLAGS_VLAN_PRIO_MASK
6588 << IXGBE_TX_FLAGS_VLAN_SHIFT);
6589 tx_flags |= ((adapter->fcoe.up << 13)
6590 << IXGBE_TX_FLAGS_VLAN_SHIFT);
6591 }
6592#endif
Robert Loveca77cd52010-03-24 12:45:00 +00006593 /* flag for FCoE offloads */
Hao Zheng5e09a102010-11-11 13:47:59 +00006594 if (protocol == htons(ETH_P_FCOE))
Robert Loveca77cd52010-03-24 12:45:00 +00006595 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Yi Zou09ad1cc2009-09-03 14:56:10 +00006596 }
Robert Loveca77cd52010-03-24 12:45:00 +00006597#endif
6598
Yi Zoueacd73f2009-05-13 13:11:06 +00006599 /* four things can cause us to need a context descriptor */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006600 if (skb_is_gso(skb) ||
6601 (skb->ip_summed == CHECKSUM_PARTIAL) ||
Yi Zoueacd73f2009-05-13 13:11:06 +00006602 (tx_flags & IXGBE_TX_FLAGS_VLAN) ||
6603 (tx_flags & IXGBE_TX_FLAGS_FCOE))
Auke Kok9a799d72007-09-15 14:07:45 -07006604 count++;
6605
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006606 count += TXD_USE_COUNT(skb_headlen(skb));
6607 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
Auke Kok9a799d72007-09-15 14:07:45 -07006608 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6609
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006610 if (ixgbe_maybe_stop_tx(tx_ring, count)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08006611 tx_ring->tx_stats.tx_busy++;
Auke Kok9a799d72007-09-15 14:07:45 -07006612 return NETDEV_TX_BUSY;
6613 }
Auke Kok9a799d72007-09-15 14:07:45 -07006614
Auke Kok9a799d72007-09-15 14:07:45 -07006615 first = tx_ring->next_to_use;
Yi Zoueacd73f2009-05-13 13:11:06 +00006616 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6617#ifdef IXGBE_FCOE
6618 /* setup tx offload for FCoE */
6619 tso = ixgbe_fso(adapter, tx_ring, skb, tx_flags, &hdr_len);
6620 if (tso < 0) {
6621 dev_kfree_skb_any(skb);
6622 return NETDEV_TX_OK;
6623 }
6624 if (tso)
6625 tx_flags |= IXGBE_TX_FLAGS_FSO;
6626#endif /* IXGBE_FCOE */
6627 } else {
Hao Zheng5e09a102010-11-11 13:47:59 +00006628 if (protocol == htons(ETH_P_IP))
Yi Zoueacd73f2009-05-13 13:11:06 +00006629 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Hao Zheng5e09a102010-11-11 13:47:59 +00006630 tso = ixgbe_tso(adapter, tx_ring, skb, tx_flags, &hdr_len,
6631 protocol);
Yi Zoueacd73f2009-05-13 13:11:06 +00006632 if (tso < 0) {
6633 dev_kfree_skb_any(skb);
6634 return NETDEV_TX_OK;
6635 }
6636
6637 if (tso)
6638 tx_flags |= IXGBE_TX_FLAGS_TSO;
Hao Zheng5e09a102010-11-11 13:47:59 +00006639 else if (ixgbe_tx_csum(adapter, tx_ring, skb, tx_flags,
6640 protocol) &&
Yi Zoueacd73f2009-05-13 13:11:06 +00006641 (skb->ip_summed == CHECKSUM_PARTIAL))
6642 tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006643 }
6644
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006645 count = ixgbe_tx_map(adapter, tx_ring, skb, tx_flags, first, hdr_len);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006646 if (count) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006647 /* add the ATR filter if ATR is on */
6648 if (tx_ring->atr_sample_rate) {
6649 ++tx_ring->atr_count;
6650 if ((tx_ring->atr_count >= tx_ring->atr_sample_rate) &&
Alexander Duyck7d637bc2010-11-16 19:26:56 -08006651 test_bit(__IXGBE_TX_FDIR_INIT_DONE,
6652 &tx_ring->state)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006653 ixgbe_atr(adapter, skb, tx_ring->queue_index,
Hao Zheng5e09a102010-11-11 13:47:59 +00006654 tx_flags, protocol);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006655 tx_ring->atr_count = 0;
6656 }
6657 }
Eric Dumazet60d51132009-12-08 07:22:03 +00006658 txq = netdev_get_tx_queue(netdev, tx_ring->queue_index);
6659 txq->tx_bytes += skb->len;
6660 txq->tx_packets++;
Alexander Duyck84ea2592010-11-16 19:26:49 -08006661 ixgbe_tx_queue(tx_ring, tx_flags, count, skb->len, hdr_len);
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006662 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006663
Alexander Duyck44df32c2009-03-31 21:34:23 +00006664 } else {
6665 dev_kfree_skb_any(skb);
6666 tx_ring->tx_buffer_info[first].time_stamp = 0;
6667 tx_ring->next_to_use = first;
6668 }
Auke Kok9a799d72007-09-15 14:07:45 -07006669
6670 return NETDEV_TX_OK;
6671}
6672
Alexander Duyck84418e32010-08-19 13:40:54 +00006673static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
6674{
6675 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6676 struct ixgbe_ring *tx_ring;
6677
6678 tx_ring = adapter->tx_ring[skb->queue_mapping];
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006679 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00006680}
6681
Auke Kok9a799d72007-09-15 14:07:45 -07006682/**
Auke Kok9a799d72007-09-15 14:07:45 -07006683 * ixgbe_set_mac - Change the Ethernet Address of the NIC
6684 * @netdev: network interface device structure
6685 * @p: pointer to an address structure
6686 *
6687 * Returns 0 on success, negative on failure
6688 **/
6689static int ixgbe_set_mac(struct net_device *netdev, void *p)
6690{
6691 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006692 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07006693 struct sockaddr *addr = p;
6694
6695 if (!is_valid_ether_addr(addr->sa_data))
6696 return -EADDRNOTAVAIL;
6697
6698 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006699 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07006700
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006701 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
6702 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006703
6704 return 0;
6705}
6706
Ben Hutchings6b73e102009-04-29 08:08:58 +00006707static int
6708ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6709{
6710 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6711 struct ixgbe_hw *hw = &adapter->hw;
6712 u16 value;
6713 int rc;
6714
6715 if (prtad != hw->phy.mdio.prtad)
6716 return -EINVAL;
6717 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6718 if (!rc)
6719 rc = value;
6720 return rc;
6721}
6722
6723static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6724 u16 addr, u16 value)
6725{
6726 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6727 struct ixgbe_hw *hw = &adapter->hw;
6728
6729 if (prtad != hw->phy.mdio.prtad)
6730 return -EINVAL;
6731 return hw->phy.ops.write_reg(hw, addr, devad, value);
6732}
6733
6734static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6735{
6736 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6737
6738 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6739}
6740
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006741/**
6742 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006743 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006744 * @netdev: network interface device structure
6745 *
6746 * Returns non-zero on failure
6747 **/
6748static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6749{
6750 int err = 0;
6751 struct ixgbe_adapter *adapter = netdev_priv(dev);
6752 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6753
6754 if (is_valid_ether_addr(mac->san_addr)) {
6755 rtnl_lock();
6756 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6757 rtnl_unlock();
6758 }
6759 return err;
6760}
6761
6762/**
6763 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006764 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006765 * @netdev: network interface device structure
6766 *
6767 * Returns non-zero on failure
6768 **/
6769static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6770{
6771 int err = 0;
6772 struct ixgbe_adapter *adapter = netdev_priv(dev);
6773 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6774
6775 if (is_valid_ether_addr(mac->san_addr)) {
6776 rtnl_lock();
6777 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6778 rtnl_unlock();
6779 }
6780 return err;
6781}
6782
Auke Kok9a799d72007-09-15 14:07:45 -07006783#ifdef CONFIG_NET_POLL_CONTROLLER
6784/*
6785 * Polling 'interrupt' - used by things like netconsole to send skbs
6786 * without having to re-enable interrupts. It's not called while
6787 * the interrupt routine is executing.
6788 */
6789static void ixgbe_netpoll(struct net_device *netdev)
6790{
6791 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006792 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006793
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006794 /* if interface is down do nothing */
6795 if (test_bit(__IXGBE_DOWN, &adapter->state))
6796 return;
6797
Auke Kok9a799d72007-09-15 14:07:45 -07006798 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006799 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
6800 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
6801 for (i = 0; i < num_q_vectors; i++) {
6802 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
6803 ixgbe_msix_clean_many(0, q_vector);
6804 }
6805 } else {
6806 ixgbe_intr(adapter->pdev->irq, netdev);
6807 }
Auke Kok9a799d72007-09-15 14:07:45 -07006808 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006809}
6810#endif
6811
Eric Dumazetde1036b2010-10-20 23:00:04 +00006812static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6813 struct rtnl_link_stats64 *stats)
6814{
6815 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6816 int i;
6817
6818 /* accurate rx/tx bytes/packets stats */
6819 dev_txq_stats_fold(netdev, stats);
Eric Dumazet1a515022010-11-16 19:26:42 -08006820 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006821 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006822 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006823 u64 bytes, packets;
6824 unsigned int start;
6825
Eric Dumazet1a515022010-11-16 19:26:42 -08006826 if (ring) {
6827 do {
6828 start = u64_stats_fetch_begin_bh(&ring->syncp);
6829 packets = ring->stats.packets;
6830 bytes = ring->stats.bytes;
6831 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6832 stats->rx_packets += packets;
6833 stats->rx_bytes += bytes;
6834 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006835 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006836 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006837 /* following stats updated by ixgbe_watchdog_task() */
6838 stats->multicast = netdev->stats.multicast;
6839 stats->rx_errors = netdev->stats.rx_errors;
6840 stats->rx_length_errors = netdev->stats.rx_length_errors;
6841 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6842 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6843 return stats;
6844}
6845
6846
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006847static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006848 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006849 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006850 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006851 .ndo_select_queue = ixgbe_select_queue,
Chris Leeche90d4002009-03-10 16:00:24 +00006852 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006853 .ndo_set_multicast_list = ixgbe_set_rx_mode,
6854 .ndo_validate_addr = eth_validate_addr,
6855 .ndo_set_mac_address = ixgbe_set_mac,
6856 .ndo_change_mtu = ixgbe_change_mtu,
6857 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006858 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6859 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006860 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006861 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6862 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6863 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
6864 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006865 .ndo_get_stats64 = ixgbe_get_stats64,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006866#ifdef CONFIG_NET_POLL_CONTROLLER
6867 .ndo_poll_controller = ixgbe_netpoll,
6868#endif
Yi Zou332d4a72009-05-13 13:11:53 +00006869#ifdef IXGBE_FCOE
6870 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
6871 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00006872 .ndo_fcoe_enable = ixgbe_fcoe_enable,
6873 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00006874 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Yi Zou332d4a72009-05-13 13:11:53 +00006875#endif /* IXGBE_FCOE */
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006876};
6877
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006878static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
6879 const struct ixgbe_info *ii)
6880{
6881#ifdef CONFIG_PCI_IOV
6882 struct ixgbe_hw *hw = &adapter->hw;
6883 int err;
6884
6885 if (hw->mac.type != ixgbe_mac_82599EB || !max_vfs)
6886 return;
6887
6888 /* The 82599 supports up to 64 VFs per physical function
6889 * but this implementation limits allocation to 63 so that
6890 * basic networking resources are still available to the
6891 * physical function
6892 */
6893 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
6894 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
6895 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
6896 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00006897 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006898 goto err_novfs;
6899 }
6900 /* If call to enable VFs succeeded then allocate memory
6901 * for per VF control structures.
6902 */
6903 adapter->vfinfo =
6904 kcalloc(adapter->num_vfs,
6905 sizeof(struct vf_data_storage), GFP_KERNEL);
6906 if (adapter->vfinfo) {
6907 /* Now that we're sure SR-IOV is enabled
6908 * and memory allocated set up the mailbox parameters
6909 */
6910 ixgbe_init_mbx_params_pf(hw);
6911 memcpy(&hw->mbx.ops, ii->mbx_ops,
6912 sizeof(hw->mbx.ops));
6913
6914 /* Disable RSC when in SR-IOV mode */
6915 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
6916 IXGBE_FLAG2_RSC_ENABLED);
6917 return;
6918 }
6919
6920 /* Oh oh */
Emil Tantilov396e7992010-07-01 20:05:12 +00006921 e_err(probe, "Unable to allocate memory for VF Data Storage - "
6922 "SRIOV disabled\n");
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006923 pci_disable_sriov(adapter->pdev);
6924
6925err_novfs:
6926 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
6927 adapter->num_vfs = 0;
6928#endif /* CONFIG_PCI_IOV */
6929}
6930
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006931/**
Auke Kok9a799d72007-09-15 14:07:45 -07006932 * ixgbe_probe - Device Initialization Routine
6933 * @pdev: PCI device information struct
6934 * @ent: entry in ixgbe_pci_tbl
6935 *
6936 * Returns 0 on success, negative on failure
6937 *
6938 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
6939 * The OS initialization, configuring of the adapter private structure,
6940 * and a hardware reset occur.
6941 **/
6942static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00006943 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07006944{
6945 struct net_device *netdev;
6946 struct ixgbe_adapter *adapter = NULL;
6947 struct ixgbe_hw *hw;
6948 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07006949 static int cards_found;
6950 int i, err, pci_using_dac;
John Fastabendc85a2612010-02-25 23:15:21 +00006951 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00006952#ifdef IXGBE_FCOE
6953 u16 device_caps;
6954#endif
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006955 u32 part_num, eec;
Auke Kok9a799d72007-09-15 14:07:45 -07006956
Andy Gospodarekbded64a2010-07-21 06:40:31 +00006957 /* Catch broken hardware that put the wrong VF device ID in
6958 * the PCIe SR-IOV capability.
6959 */
6960 if (pdev->is_virtfn) {
6961 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
6962 pci_name(pdev), pdev->vendor, pdev->device);
6963 return -EINVAL;
6964 }
6965
gouji-new9ce77662009-05-06 10:44:45 +00006966 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006967 if (err)
6968 return err;
6969
Nick Nunley1b507732010-04-27 13:10:27 +00006970 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
6971 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07006972 pci_using_dac = 1;
6973 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00006974 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07006975 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00006976 err = dma_set_coherent_mask(&pdev->dev,
6977 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07006978 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00006979 dev_err(&pdev->dev,
6980 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07006981 goto err_dma;
6982 }
6983 }
6984 pci_using_dac = 0;
6985 }
6986
gouji-new9ce77662009-05-06 10:44:45 +00006987 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00006988 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07006989 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00006990 dev_err(&pdev->dev,
6991 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07006992 goto err_pci_reg;
6993 }
6994
Frans Pop19d5afd2009-10-02 10:04:12 -07006995 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08006996
Auke Kok9a799d72007-09-15 14:07:45 -07006997 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07006998 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006999
John Fastabendc85a2612010-02-25 23:15:21 +00007000 if (ii->mac == ixgbe_mac_82598EB)
7001 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
7002 else
7003 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
7004
7005 indices = max_t(unsigned int, indices, IXGBE_MAX_DCB_INDICES);
7006#ifdef IXGBE_FCOE
7007 indices += min_t(unsigned int, num_possible_cpus(),
7008 IXGBE_MAX_FCOE_INDICES);
7009#endif
John Fastabendc85a2612010-02-25 23:15:21 +00007010 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07007011 if (!netdev) {
7012 err = -ENOMEM;
7013 goto err_alloc_etherdev;
7014 }
7015
Auke Kok9a799d72007-09-15 14:07:45 -07007016 SET_NETDEV_DEV(netdev, &pdev->dev);
7017
Auke Kok9a799d72007-09-15 14:07:45 -07007018 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007019 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007020
7021 adapter->netdev = netdev;
7022 adapter->pdev = pdev;
7023 hw = &adapter->hw;
7024 hw->back = adapter;
7025 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
7026
Jeff Kirsher05857982008-09-11 19:57:00 -07007027 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00007028 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07007029 if (!hw->hw_addr) {
7030 err = -EIO;
7031 goto err_ioremap;
7032 }
7033
7034 for (i = 1; i <= 5; i++) {
7035 if (pci_resource_len(pdev, i) == 0)
7036 continue;
7037 }
7038
Stephen Hemminger0edc3522008-11-19 22:24:29 -08007039 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07007040 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007041 netdev->watchdog_timeo = 5 * HZ;
Auke Kok9a799d72007-09-15 14:07:45 -07007042 strcpy(netdev->name, pci_name(pdev));
7043
Auke Kok9a799d72007-09-15 14:07:45 -07007044 adapter->bd_number = cards_found;
7045
Auke Kok9a799d72007-09-15 14:07:45 -07007046 /* Setup hw api */
7047 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007048 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07007049
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007050 /* EEPROM */
7051 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
7052 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
7053 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7054 if (!(eec & (1 << 8)))
7055 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
7056
7057 /* PHY */
7058 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08007059 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00007060 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7061 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
7062 hw->phy.mdio.mmds = 0;
7063 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
7064 hw->phy.mdio.dev = netdev;
7065 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
7066 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007067
7068 /* set up this timer and work struct before calling get_invariants
7069 * which might start the timer
7070 */
7071 init_timer(&adapter->sfp_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00007072 adapter->sfp_timer.function = ixgbe_sfp_timer;
Donald Skidmorec4900be2008-11-20 21:11:42 -08007073 adapter->sfp_timer.data = (unsigned long) adapter;
7074
7075 INIT_WORK(&adapter->sfp_task, ixgbe_sfp_task);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007076
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007077 /* multispeed fiber has its own tasklet, called from GPI SDP1 context */
7078 INIT_WORK(&adapter->multispeed_fiber_task, ixgbe_multispeed_fiber_task);
7079
7080 /* a new SFP+ module arrival, called from GPI SDP2 context */
7081 INIT_WORK(&adapter->sfp_config_module_task,
Joe Perchese8e9f692010-09-07 21:34:53 +00007082 ixgbe_sfp_config_module_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007083
Don Skidmore8ca783a2009-05-26 20:40:47 -07007084 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07007085
7086 /* setup the private structure */
7087 err = ixgbe_sw_init(adapter);
7088 if (err)
7089 goto err_sw_init;
7090
Don Skidmoree86bff02010-02-11 04:14:08 +00007091 /* Make it possible the adapter to be woken up via WOL */
Don Skidmoreb93a2222010-11-16 19:27:17 -08007092 switch (adapter->hw.mac.type) {
7093 case ixgbe_mac_82599EB:
7094 case ixgbe_mac_X540:
Don Skidmoree86bff02010-02-11 04:14:08 +00007095 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Don Skidmoreb93a2222010-11-16 19:27:17 -08007096 break;
7097 default:
7098 break;
7099 }
Don Skidmoree86bff02010-02-11 04:14:08 +00007100
Don Skidmorebf069c92009-05-07 10:39:54 +00007101 /*
7102 * If there is a fan on this device and it has failed log the
7103 * failure.
7104 */
7105 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
7106 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
7107 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00007108 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00007109 }
7110
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007111 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007112 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007113 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007114 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07007115 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
7116 hw->mac.type == ixgbe_mac_82598EB) {
7117 /*
7118 * Start a kernel thread to watch for a module to arrive.
7119 * Only do this for 82598, since 82599 will generate
7120 * interrupts on module arrival.
7121 */
7122 set_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
7123 mod_timer(&adapter->sfp_timer,
7124 round_jiffies(jiffies + (2 * HZ)));
7125 err = 0;
7126 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007127 e_dev_err("failed to initialize because an unsupported SFP+ "
7128 "module type was detected.\n");
7129 e_dev_err("Reload the driver after installing a supported "
7130 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007131 goto err_sw_init;
7132 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007133 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007134 goto err_sw_init;
7135 }
7136
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007137 ixgbe_probe_vf(adapter, ii);
7138
Emil Tantilov396e7992010-07-01 20:05:12 +00007139 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007140 NETIF_F_IP_CSUM |
7141 NETIF_F_HW_VLAN_TX |
7142 NETIF_F_HW_VLAN_RX |
7143 NETIF_F_HW_VLAN_FILTER;
Auke Kok9a799d72007-09-15 14:07:45 -07007144
Jesse Brandeburge9990a92008-08-26 04:27:24 -07007145 netdev->features |= NETIF_F_IPV6_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007146 netdev->features |= NETIF_F_TSO;
Auke Kok9a799d72007-09-15 14:07:45 -07007147 netdev->features |= NETIF_F_TSO6;
Herbert Xu78b6f4c2009-01-18 21:49:45 -08007148 netdev->features |= NETIF_F_GRO;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007149
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007150 if (adapter->hw.mac.type == ixgbe_mac_82599EB)
7151 netdev->features |= NETIF_F_SCTP_CSUM;
7152
Jeff Kirsherad31c402008-06-05 04:05:30 -07007153 netdev->vlan_features |= NETIF_F_TSO;
7154 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007155 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007156 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007157 netdev->vlan_features |= NETIF_F_SG;
7158
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007159 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7160 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7161 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007162 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
7163 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
7164
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007165#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007166 netdev->dcbnl_ops = &dcbnl_ops;
7167#endif
7168
Yi Zoueacd73f2009-05-13 13:11:06 +00007169#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007170 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007171 if (hw->mac.ops.get_device_caps) {
7172 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007173 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7174 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007175 }
7176 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007177 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7178 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7179 netdev->vlan_features |= NETIF_F_FSO;
7180 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7181 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007182#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007183 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007184 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007185 netdev->vlan_features |= NETIF_F_HIGHDMA;
7186 }
Auke Kok9a799d72007-09-15 14:07:45 -07007187
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007188 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007189 netdev->features |= NETIF_F_LRO;
7190
Auke Kok9a799d72007-09-15 14:07:45 -07007191 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007192 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007193 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007194 err = -EIO;
7195 goto err_eeprom;
7196 }
7197
7198 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7199 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7200
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007201 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007202 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007203 err = -EIO;
7204 goto err_eeprom;
7205 }
7206
Don Skidmorec6ecf392010-12-03 03:31:51 +00007207 /* power down the optics for multispeed fiber and 82599 SFP+ fiber */
7208 if (hw->mac.ops.disable_tx_laser &&
7209 ((hw->phy.multispeed_fiber) ||
7210 ((hw->phy.type == ixgbe_media_type_fiber) &&
7211 (hw->mac.type == ixgbe_mac_82599EB))))
Peter Waskiewicz61fac742010-04-27 00:38:15 +00007212 hw->mac.ops.disable_tx_laser(hw);
7213
Auke Kok9a799d72007-09-15 14:07:45 -07007214 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00007215 adapter->watchdog_timer.function = ixgbe_watchdog;
Auke Kok9a799d72007-09-15 14:07:45 -07007216 adapter->watchdog_timer.data = (unsigned long)adapter;
7217
7218 INIT_WORK(&adapter->reset_task, ixgbe_reset_task);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07007219 INIT_WORK(&adapter->watchdog_task, ixgbe_watchdog_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007220
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007221 err = ixgbe_init_interrupt_scheme(adapter);
7222 if (err)
7223 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007224
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007225 switch (pdev->device) {
Don Skidmore0b077fe2010-12-03 03:32:13 +00007226 case IXGBE_DEV_ID_82599_SFP:
7227 /* Only this subdevice supports WOL */
7228 if (pdev->subsystem_device == IXGBE_SUBDEV_ID_82599_SFP)
7229 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
7230 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
7231 break;
Alexander Duyck50d6c682010-11-16 19:27:05 -08007232 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7233 /* All except this subdevice support WOL */
Don Skidmore0b077fe2010-12-03 03:32:13 +00007234 if (pdev->subsystem_device != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
7235 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
7236 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
7237 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007238 case IXGBE_DEV_ID_82599_KX4:
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00007239 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
Joe Perchese8e9f692010-09-07 21:34:53 +00007240 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007241 break;
7242 default:
7243 adapter->wol = 0;
7244 break;
7245 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007246 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7247
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007248 /* pick up the PCI bus settings for reporting later */
7249 hw->mac.ops.get_bus_info(hw);
7250
Auke Kok9a799d72007-09-15 14:07:45 -07007251 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007252 e_dev_info("(PCI Express:%s:%s) %pM\n",
Joe Perchese8e9f692010-09-07 21:34:53 +00007253 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0Gb/s" :
7254 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5Gb/s" :
7255 "Unknown"),
7256 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7257 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7258 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7259 "Unknown"),
7260 netdev->dev_addr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007261 ixgbe_read_pba_num_generic(hw, &part_num);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007262 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Emil Tantilov849c4542010-06-03 16:53:41 +00007263 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, "
7264 "PBA No: %06x-%03x\n",
7265 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
7266 (part_num >> 8), (part_num & 0xff));
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007267 else
Emil Tantilov849c4542010-06-03 16:53:41 +00007268 e_dev_info("MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
7269 hw->mac.type, hw->phy.type,
7270 (part_num >> 8), (part_num & 0xff));
Auke Kok9a799d72007-09-15 14:07:45 -07007271
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007272 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007273 e_dev_warn("PCI-Express bandwidth available for this card is "
7274 "not sufficient for optimal performance.\n");
7275 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7276 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007277 }
7278
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -08007279 /* save off EEPROM version number */
7280 hw->eeprom.ops.read(hw, 0x29, &adapter->eeprom_version);
7281
Auke Kok9a799d72007-09-15 14:07:45 -07007282 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007283 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007284
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007285 if (err == IXGBE_ERR_EEPROM_VERSION) {
7286 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007287 e_dev_warn("This device is a pre-production adapter/LOM. "
7288 "Please be aware there may be issues associated "
7289 "with your hardware. If you are experiencing "
7290 "problems please contact your Intel or hardware "
7291 "representative who provided you with this "
7292 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007293 }
Auke Kok9a799d72007-09-15 14:07:45 -07007294 strcpy(netdev->name, "eth%d");
7295 err = register_netdev(netdev);
7296 if (err)
7297 goto err_register;
7298
Jesse Brandeburg54386462009-04-17 20:44:27 +00007299 /* carrier off reporting is important to ethtool even BEFORE open */
7300 netif_carrier_off(netdev);
7301
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007302 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
7303 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
7304 INIT_WORK(&adapter->fdir_reinit_task, ixgbe_fdir_reinit_task);
7305
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007306 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Joe Perchese8e9f692010-09-07 21:34:53 +00007307 INIT_WORK(&adapter->check_overtemp_task,
7308 ixgbe_check_overtemp_task);
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007309#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007310 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007311 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007312 ixgbe_setup_dca(adapter);
7313 }
7314#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007315 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007316 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007317 for (i = 0; i < adapter->num_vfs; i++)
7318 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7319 }
7320
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007321 /* add san mac addr to netdev */
7322 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007323
Emil Tantilov849c4542010-06-03 16:53:41 +00007324 e_dev_info("Intel(R) 10 Gigabit Network Connection\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007325 cards_found++;
7326 return 0;
7327
7328err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007329 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007330 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007331err_sw_init:
7332err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007333 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7334 ixgbe_disable_sriov(adapter);
Donald Skidmorec4900be2008-11-20 21:11:42 -08007335 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
7336 del_timer_sync(&adapter->sfp_timer);
7337 cancel_work_sync(&adapter->sfp_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007338 cancel_work_sync(&adapter->multispeed_fiber_task);
7339 cancel_work_sync(&adapter->sfp_config_module_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007340 iounmap(hw->hw_addr);
7341err_ioremap:
7342 free_netdev(netdev);
7343err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007344 pci_release_selected_regions(pdev,
7345 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007346err_pci_reg:
7347err_dma:
7348 pci_disable_device(pdev);
7349 return err;
7350}
7351
7352/**
7353 * ixgbe_remove - Device Removal Routine
7354 * @pdev: PCI device information struct
7355 *
7356 * ixgbe_remove is called by the PCI subsystem to alert the driver
7357 * that it should release a PCI device. The could be caused by a
7358 * Hot-Plug event, or because the driver is going to be removed from
7359 * memory.
7360 **/
7361static void __devexit ixgbe_remove(struct pci_dev *pdev)
7362{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007363 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7364 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007365
7366 set_bit(__IXGBE_DOWN, &adapter->state);
Donald Skidmorec4900be2008-11-20 21:11:42 -08007367 /* clear the module not found bit to make sure the worker won't
7368 * reschedule
7369 */
7370 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007371 del_timer_sync(&adapter->watchdog_timer);
7372
Donald Skidmorec4900be2008-11-20 21:11:42 -08007373 del_timer_sync(&adapter->sfp_timer);
7374 cancel_work_sync(&adapter->watchdog_task);
7375 cancel_work_sync(&adapter->sfp_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007376 cancel_work_sync(&adapter->multispeed_fiber_task);
7377 cancel_work_sync(&adapter->sfp_config_module_task);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007378 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
7379 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
7380 cancel_work_sync(&adapter->fdir_reinit_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007381 flush_scheduled_work();
7382
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007383#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007384 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7385 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7386 dca_remove_requester(&pdev->dev);
7387 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7388 }
7389
7390#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007391#ifdef IXGBE_FCOE
7392 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7393 ixgbe_cleanup_fcoe(adapter);
7394
7395#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007396
7397 /* remove the added san mac */
7398 ixgbe_del_sanmac_netdev(netdev);
7399
Donald Skidmorec4900be2008-11-20 21:11:42 -08007400 if (netdev->reg_state == NETREG_REGISTERED)
7401 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007402
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007403 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7404 ixgbe_disable_sriov(adapter);
7405
Alexander Duyck7a921c92009-05-06 10:43:28 +00007406 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007407
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007408 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007409
7410 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007411 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007412 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007413
Emil Tantilov849c4542010-06-03 16:53:41 +00007414 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007415
Auke Kok9a799d72007-09-15 14:07:45 -07007416 free_netdev(netdev);
7417
Frans Pop19d5afd2009-10-02 10:04:12 -07007418 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007419
Auke Kok9a799d72007-09-15 14:07:45 -07007420 pci_disable_device(pdev);
7421}
7422
7423/**
7424 * ixgbe_io_error_detected - called when PCI error is detected
7425 * @pdev: Pointer to PCI device
7426 * @state: The current pci connection state
7427 *
7428 * This function is called after a PCI bus error affecting
7429 * this device has been detected.
7430 */
7431static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007432 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007433{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007434 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7435 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007436
7437 netif_device_detach(netdev);
7438
Breno Leitao3044b8d2009-05-06 10:44:26 +00007439 if (state == pci_channel_io_perm_failure)
7440 return PCI_ERS_RESULT_DISCONNECT;
7441
Auke Kok9a799d72007-09-15 14:07:45 -07007442 if (netif_running(netdev))
7443 ixgbe_down(adapter);
7444 pci_disable_device(pdev);
7445
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007446 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007447 return PCI_ERS_RESULT_NEED_RESET;
7448}
7449
7450/**
7451 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7452 * @pdev: Pointer to PCI device
7453 *
7454 * Restart the card from scratch, as if from a cold-boot.
7455 */
7456static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7457{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007458 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007459 pci_ers_result_t result;
7460 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007461
gouji-new9ce77662009-05-06 10:44:45 +00007462 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007463 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007464 result = PCI_ERS_RESULT_DISCONNECT;
7465 } else {
7466 pci_set_master(pdev);
7467 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007468 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007469
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007470 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007471
7472 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007473 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007474 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007475 }
Auke Kok9a799d72007-09-15 14:07:45 -07007476
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007477 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7478 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007479 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7480 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007481 /* non-fatal, continue */
7482 }
Auke Kok9a799d72007-09-15 14:07:45 -07007483
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007484 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007485}
7486
7487/**
7488 * ixgbe_io_resume - called when traffic can start flowing again.
7489 * @pdev: Pointer to PCI device
7490 *
7491 * This callback is called when the error recovery driver tells us that
7492 * its OK to resume normal operation.
7493 */
7494static void ixgbe_io_resume(struct pci_dev *pdev)
7495{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007496 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7497 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007498
7499 if (netif_running(netdev)) {
7500 if (ixgbe_up(adapter)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007501 e_info(probe, "ixgbe_up failed after reset\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007502 return;
7503 }
7504 }
7505
7506 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007507}
7508
7509static struct pci_error_handlers ixgbe_err_handler = {
7510 .error_detected = ixgbe_io_error_detected,
7511 .slot_reset = ixgbe_io_slot_reset,
7512 .resume = ixgbe_io_resume,
7513};
7514
7515static struct pci_driver ixgbe_driver = {
7516 .name = ixgbe_driver_name,
7517 .id_table = ixgbe_pci_tbl,
7518 .probe = ixgbe_probe,
7519 .remove = __devexit_p(ixgbe_remove),
7520#ifdef CONFIG_PM
7521 .suspend = ixgbe_suspend,
7522 .resume = ixgbe_resume,
7523#endif
7524 .shutdown = ixgbe_shutdown,
7525 .err_handler = &ixgbe_err_handler
7526};
7527
7528/**
7529 * ixgbe_init_module - Driver Registration Routine
7530 *
7531 * ixgbe_init_module is the first routine called when the driver is
7532 * loaded. All it does is register with the PCI subsystem.
7533 **/
7534static int __init ixgbe_init_module(void)
7535{
7536 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007537 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007538 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007539
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007540#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007541 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007542#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007543
Auke Kok9a799d72007-09-15 14:07:45 -07007544 ret = pci_register_driver(&ixgbe_driver);
7545 return ret;
7546}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007547
Auke Kok9a799d72007-09-15 14:07:45 -07007548module_init(ixgbe_init_module);
7549
7550/**
7551 * ixgbe_exit_module - Driver Exit Cleanup Routine
7552 *
7553 * ixgbe_exit_module is called just before the driver is removed
7554 * from memory.
7555 **/
7556static void __exit ixgbe_exit_module(void)
7557{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007558#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007559 dca_unregister_notify(&dca_notifier);
7560#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007561 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007562 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007563}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007564
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007565#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007566static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007567 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007568{
7569 int ret_val;
7570
7571 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007572 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007573
7574 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7575}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007576
Alexander Duyckb4533682009-03-31 21:32:42 +00007577#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007578
Alexander Duyckb4533682009-03-31 21:32:42 +00007579/**
Emil Tantilov849c4542010-06-03 16:53:41 +00007580 * ixgbe_get_hw_dev return device
Alexander Duyckb4533682009-03-31 21:32:42 +00007581 * used by hardware layer to print debugging information
7582 **/
Emil Tantilov849c4542010-06-03 16:53:41 +00007583struct net_device *ixgbe_get_hw_dev(struct ixgbe_hw *hw)
Alexander Duyckb4533682009-03-31 21:32:42 +00007584{
7585 struct ixgbe_adapter *adapter = hw->back;
Emil Tantilov849c4542010-06-03 16:53:41 +00007586 return adapter->netdev;
Alexander Duyckb4533682009-03-31 21:32:42 +00007587}
7588
Auke Kok9a799d72007-09-15 14:07:45 -07007589module_exit(ixgbe_exit_module);
7590
7591/* ixgbe_main.c */