blob: 3ad754824ffa92f38ac2bdf6b363a9811ac88cf5 [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 Skidmore99faf682010-07-19 14:00:47 +000055#define DRV_VERSION "2.0.84-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,
Auke Kok9a799d72007-09-15 14:07:45 -070062};
63
64/* ixgbe_pci_tbl - PCI Device ID Table
65 *
66 * Wildcard entries (PCI_ANY_ID) should come last
67 * Last entry must be all 0s
68 *
69 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
70 * Class, Class Mask, private data (not used) }
71 */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000072static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = {
Don Skidmore1e336d02009-01-26 20:57:51 -080073 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598),
74 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070075 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070076 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070077 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT),
Auke Kok3957d632007-10-31 15:22:10 -070078 board_82598 },
Jesse Brandeburg0befdb32008-10-31 00:46:40 -070079 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT),
80 board_82598 },
Peter P Waskiewicz Jr3845bec2009-07-16 15:50:52 +000081 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2),
82 board_82598 },
Auke Kok9a799d72007-09-15 14:07:45 -070083 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4),
Auke Kok3957d632007-10-31 15:22:10 -070084 board_82598 },
Jesse Brandeburg8d792cd2008-08-08 16:24:19 -070085 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT),
86 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -080087 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT),
88 board_82598 },
89 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM),
90 board_82598 },
Jesse Brandeburgb95f5fc2008-09-11 19:58:59 -070091 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR),
92 board_82598 },
Donald Skidmorec4900be2008-11-20 21:11:42 -080093 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM),
94 board_82598 },
Don Skidmore2f21bdd2009-02-01 01:18:23 -080095 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX),
96 board_82598 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +000097 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4),
98 board_82599 },
Peter P Waskiewicz Jr1fcf03e2009-05-17 20:58:04 +000099 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM),
100 board_82599 },
Don Skidmore74757d42009-12-08 07:22:23 +0000101 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR),
102 board_82599 },
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000103 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP),
104 board_82599 },
Don Skidmore38ad1c82009-10-08 15:35:58 +0000105 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM),
106 board_82599 },
Don Skidmoredbfec662009-10-02 08:58:25 +0000107 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ),
108 board_82599 },
Peter P Waskiewicz Jr89111842009-09-14 07:47:49 +0000109 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4),
110 board_82599 },
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -0700111 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM),
112 board_82599 },
Don Skidmore312eb932009-10-02 08:58:04 +0000113 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE),
114 board_82599 },
Auke Kok9a799d72007-09-15 14:07:45 -0700115
116 /* required last entry */
117 {0, }
118};
119MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl);
120
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400121#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800122static int ixgbe_notify_dca(struct notifier_block *, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +0000123 void *p);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800124static struct notifier_block dca_notifier = {
125 .notifier_call = ixgbe_notify_dca,
126 .next = NULL,
127 .priority = 0
128};
129#endif
130
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000131#ifdef CONFIG_PCI_IOV
132static unsigned int max_vfs;
133module_param(max_vfs, uint, 0);
Joe Perchese8e9f692010-09-07 21:34:53 +0000134MODULE_PARM_DESC(max_vfs,
135 "Maximum number of virtual functions to allocate per physical function");
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000136#endif /* CONFIG_PCI_IOV */
137
Auke Kok9a799d72007-09-15 14:07:45 -0700138MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
139MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
140MODULE_LICENSE("GPL");
141MODULE_VERSION(DRV_VERSION);
142
143#define DEFAULT_DEBUG_LEVEL_SHIFT 3
144
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000145static inline void ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
146{
147 struct ixgbe_hw *hw = &adapter->hw;
148 u32 gcr;
149 u32 gpie;
150 u32 vmdctl;
151
152#ifdef CONFIG_PCI_IOV
153 /* disable iov and allow time for transactions to clear */
154 pci_disable_sriov(adapter->pdev);
155#endif
156
157 /* turn off device IOV mode */
158 gcr = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
159 gcr &= ~(IXGBE_GCR_EXT_SRIOV);
160 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr);
161 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
162 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
163 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
164
165 /* set default pool back to 0 */
166 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
167 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
168 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
169
170 /* take a breather then clean up driver data */
171 msleep(100);
Joe Perchese8e9f692010-09-07 21:34:53 +0000172
173 kfree(adapter->vfinfo);
Greg Rose1cdd1ec2010-01-09 02:26:46 +0000174 adapter->vfinfo = NULL;
175
176 adapter->num_vfs = 0;
177 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
178}
179
Taku Izumidcd79ae2010-04-27 14:39:53 +0000180struct ixgbe_reg_info {
181 u32 ofs;
182 char *name;
183};
184
185static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = {
186
187 /* General Registers */
188 {IXGBE_CTRL, "CTRL"},
189 {IXGBE_STATUS, "STATUS"},
190 {IXGBE_CTRL_EXT, "CTRL_EXT"},
191
192 /* Interrupt Registers */
193 {IXGBE_EICR, "EICR"},
194
195 /* RX Registers */
196 {IXGBE_SRRCTL(0), "SRRCTL"},
197 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
198 {IXGBE_RDLEN(0), "RDLEN"},
199 {IXGBE_RDH(0), "RDH"},
200 {IXGBE_RDT(0), "RDT"},
201 {IXGBE_RXDCTL(0), "RXDCTL"},
202 {IXGBE_RDBAL(0), "RDBAL"},
203 {IXGBE_RDBAH(0), "RDBAH"},
204
205 /* TX Registers */
206 {IXGBE_TDBAL(0), "TDBAL"},
207 {IXGBE_TDBAH(0), "TDBAH"},
208 {IXGBE_TDLEN(0), "TDLEN"},
209 {IXGBE_TDH(0), "TDH"},
210 {IXGBE_TDT(0), "TDT"},
211 {IXGBE_TXDCTL(0), "TXDCTL"},
212
213 /* List Terminator */
214 {}
215};
216
217
218/*
219 * ixgbe_regdump - register printout routine
220 */
221static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo)
222{
223 int i = 0, j = 0;
224 char rname[16];
225 u32 regs[64];
226
227 switch (reginfo->ofs) {
228 case IXGBE_SRRCTL(0):
229 for (i = 0; i < 64; i++)
230 regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
231 break;
232 case IXGBE_DCA_RXCTRL(0):
233 for (i = 0; i < 64; i++)
234 regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
235 break;
236 case IXGBE_RDLEN(0):
237 for (i = 0; i < 64; i++)
238 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
239 break;
240 case IXGBE_RDH(0):
241 for (i = 0; i < 64; i++)
242 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
243 break;
244 case IXGBE_RDT(0):
245 for (i = 0; i < 64; i++)
246 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
247 break;
248 case IXGBE_RXDCTL(0):
249 for (i = 0; i < 64; i++)
250 regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
251 break;
252 case IXGBE_RDBAL(0):
253 for (i = 0; i < 64; i++)
254 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
255 break;
256 case IXGBE_RDBAH(0):
257 for (i = 0; i < 64; i++)
258 regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
259 break;
260 case IXGBE_TDBAL(0):
261 for (i = 0; i < 64; i++)
262 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
263 break;
264 case IXGBE_TDBAH(0):
265 for (i = 0; i < 64; i++)
266 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
267 break;
268 case IXGBE_TDLEN(0):
269 for (i = 0; i < 64; i++)
270 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
271 break;
272 case IXGBE_TDH(0):
273 for (i = 0; i < 64; i++)
274 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
275 break;
276 case IXGBE_TDT(0):
277 for (i = 0; i < 64; i++)
278 regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
279 break;
280 case IXGBE_TXDCTL(0):
281 for (i = 0; i < 64; i++)
282 regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
283 break;
284 default:
Joe Perchesc7689572010-09-07 21:35:17 +0000285 pr_info("%-15s %08x\n", reginfo->name,
Taku Izumidcd79ae2010-04-27 14:39:53 +0000286 IXGBE_READ_REG(hw, reginfo->ofs));
287 return;
288 }
289
290 for (i = 0; i < 8; i++) {
291 snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7);
Joe Perchesc7689572010-09-07 21:35:17 +0000292 pr_err("%-15s", rname);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000293 for (j = 0; j < 8; j++)
Joe Perchesc7689572010-09-07 21:35:17 +0000294 pr_cont(" %08x", regs[i*8+j]);
295 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000296 }
297
298}
299
300/*
301 * ixgbe_dump - Print registers, tx-rings and rx-rings
302 */
303static void ixgbe_dump(struct ixgbe_adapter *adapter)
304{
305 struct net_device *netdev = adapter->netdev;
306 struct ixgbe_hw *hw = &adapter->hw;
307 struct ixgbe_reg_info *reginfo;
308 int n = 0;
309 struct ixgbe_ring *tx_ring;
310 struct ixgbe_tx_buffer *tx_buffer_info;
311 union ixgbe_adv_tx_desc *tx_desc;
312 struct my_u0 { u64 a; u64 b; } *u0;
313 struct ixgbe_ring *rx_ring;
314 union ixgbe_adv_rx_desc *rx_desc;
315 struct ixgbe_rx_buffer *rx_buffer_info;
316 u32 staterr;
317 int i = 0;
318
319 if (!netif_msg_hw(adapter))
320 return;
321
322 /* Print netdevice Info */
323 if (netdev) {
324 dev_info(&adapter->pdev->dev, "Net device Info\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000325 pr_info("Device Name state "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000326 "trans_start last_rx\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000327 pr_info("%-15s %016lX %016lX %016lX\n",
328 netdev->name,
329 netdev->state,
330 netdev->trans_start,
331 netdev->last_rx);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000332 }
333
334 /* Print Registers */
335 dev_info(&adapter->pdev->dev, "Register Dump\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000336 pr_info(" Register Name Value\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000337 for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl;
338 reginfo->name; reginfo++) {
339 ixgbe_regdump(hw, reginfo);
340 }
341
342 /* Print TX Ring Summary */
343 if (!netdev || !netif_running(netdev))
344 goto exit;
345
346 dev_info(&adapter->pdev->dev, "TX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000347 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000348 for (n = 0; n < adapter->num_tx_queues; n++) {
349 tx_ring = adapter->tx_ring[n];
350 tx_buffer_info =
351 &tx_ring->tx_buffer_info[tx_ring->next_to_clean];
Joe Perchesc7689572010-09-07 21:35:17 +0000352 pr_info(" %5d %5X %5X %016llX %04X %3X %016llX\n",
Taku Izumidcd79ae2010-04-27 14:39:53 +0000353 n, tx_ring->next_to_use, tx_ring->next_to_clean,
354 (u64)tx_buffer_info->dma,
355 tx_buffer_info->length,
356 tx_buffer_info->next_to_watch,
357 (u64)tx_buffer_info->time_stamp);
358 }
359
360 /* Print TX Rings */
361 if (!netif_msg_tx_done(adapter))
362 goto rx_ring_summary;
363
364 dev_info(&adapter->pdev->dev, "TX Rings Dump\n");
365
366 /* Transmit Descriptor Formats
367 *
368 * Advanced Transmit Descriptor
369 * +--------------------------------------------------------------+
370 * 0 | Buffer Address [63:0] |
371 * +--------------------------------------------------------------+
372 * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
373 * +--------------------------------------------------------------+
374 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
375 */
376
377 for (n = 0; n < adapter->num_tx_queues; n++) {
378 tx_ring = adapter->tx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000379 pr_info("------------------------------------\n");
380 pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index);
381 pr_info("------------------------------------\n");
382 pr_info("T [desc] [address 63:0 ] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000383 "[PlPOIdStDDt Ln] [bi->dma ] "
384 "leng ntw timestamp bi->skb\n");
385
386 for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000387 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000388 tx_buffer_info = &tx_ring->tx_buffer_info[i];
389 u0 = (struct my_u0 *)tx_desc;
Joe Perchesc7689572010-09-07 21:35:17 +0000390 pr_info("T [0x%03X] %016llX %016llX %016llX"
Taku Izumidcd79ae2010-04-27 14:39:53 +0000391 " %04X %3X %016llX %p", i,
392 le64_to_cpu(u0->a),
393 le64_to_cpu(u0->b),
394 (u64)tx_buffer_info->dma,
395 tx_buffer_info->length,
396 tx_buffer_info->next_to_watch,
397 (u64)tx_buffer_info->time_stamp,
398 tx_buffer_info->skb);
399 if (i == tx_ring->next_to_use &&
400 i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000401 pr_cont(" NTC/U\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000402 else if (i == tx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000403 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000404 else if (i == tx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000405 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000406 else
Joe Perchesc7689572010-09-07 21:35:17 +0000407 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000408
409 if (netif_msg_pktdata(adapter) &&
410 tx_buffer_info->dma != 0)
411 print_hex_dump(KERN_INFO, "",
412 DUMP_PREFIX_ADDRESS, 16, 1,
413 phys_to_virt(tx_buffer_info->dma),
414 tx_buffer_info->length, true);
415 }
416 }
417
418 /* Print RX Rings Summary */
419rx_ring_summary:
420 dev_info(&adapter->pdev->dev, "RX Rings Summary\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000421 pr_info("Queue [NTU] [NTC]\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000422 for (n = 0; n < adapter->num_rx_queues; n++) {
423 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000424 pr_info("%5d %5X %5X\n",
425 n, rx_ring->next_to_use, rx_ring->next_to_clean);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000426 }
427
428 /* Print RX Rings */
429 if (!netif_msg_rx_status(adapter))
430 goto exit;
431
432 dev_info(&adapter->pdev->dev, "RX Rings Dump\n");
433
434 /* Advanced Receive Descriptor (Read) Format
435 * 63 1 0
436 * +-----------------------------------------------------+
437 * 0 | Packet Buffer Address [63:1] |A0/NSE|
438 * +----------------------------------------------+------+
439 * 8 | Header Buffer Address [63:1] | DD |
440 * +-----------------------------------------------------+
441 *
442 *
443 * Advanced Receive Descriptor (Write-Back) Format
444 *
445 * 63 48 47 32 31 30 21 20 16 15 4 3 0
446 * +------------------------------------------------------+
447 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
448 * | Checksum Ident | | | | Type | Type |
449 * +------------------------------------------------------+
450 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
451 * +------------------------------------------------------+
452 * 63 48 47 32 31 20 19 0
453 */
454 for (n = 0; n < adapter->num_rx_queues; n++) {
455 rx_ring = adapter->rx_ring[n];
Joe Perchesc7689572010-09-07 21:35:17 +0000456 pr_info("------------------------------------\n");
457 pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index);
458 pr_info("------------------------------------\n");
459 pr_info("R [desc] [ PktBuf A0] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000460 "[ HeadBuf DD] [bi->dma ] [bi->skb] "
461 "<-- Adv Rx Read format\n");
Joe Perchesc7689572010-09-07 21:35:17 +0000462 pr_info("RWB[desc] [PcsmIpSHl PtRs] "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000463 "[vl er S cks ln] ---------------- [bi->skb] "
464 "<-- Adv Rx Write-Back format\n");
465
466 for (i = 0; i < rx_ring->count; i++) {
467 rx_buffer_info = &rx_ring->rx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +0000468 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Taku Izumidcd79ae2010-04-27 14:39:53 +0000469 u0 = (struct my_u0 *)rx_desc;
470 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
471 if (staterr & IXGBE_RXD_STAT_DD) {
472 /* Descriptor Done */
Joe Perchesc7689572010-09-07 21:35:17 +0000473 pr_info("RWB[0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000474 "%016llX ---------------- %p", i,
475 le64_to_cpu(u0->a),
476 le64_to_cpu(u0->b),
477 rx_buffer_info->skb);
478 } else {
Joe Perchesc7689572010-09-07 21:35:17 +0000479 pr_info("R [0x%03X] %016llX "
Taku Izumidcd79ae2010-04-27 14:39:53 +0000480 "%016llX %016llX %p", i,
481 le64_to_cpu(u0->a),
482 le64_to_cpu(u0->b),
483 (u64)rx_buffer_info->dma,
484 rx_buffer_info->skb);
485
486 if (netif_msg_pktdata(adapter)) {
487 print_hex_dump(KERN_INFO, "",
488 DUMP_PREFIX_ADDRESS, 16, 1,
489 phys_to_virt(rx_buffer_info->dma),
490 rx_ring->rx_buf_len, true);
491
492 if (rx_ring->rx_buf_len
493 < IXGBE_RXBUFFER_2048)
494 print_hex_dump(KERN_INFO, "",
495 DUMP_PREFIX_ADDRESS, 16, 1,
496 phys_to_virt(
497 rx_buffer_info->page_dma +
498 rx_buffer_info->page_offset
499 ),
500 PAGE_SIZE/2, true);
501 }
502 }
503
504 if (i == rx_ring->next_to_use)
Joe Perchesc7689572010-09-07 21:35:17 +0000505 pr_cont(" NTU\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000506 else if (i == rx_ring->next_to_clean)
Joe Perchesc7689572010-09-07 21:35:17 +0000507 pr_cont(" NTC\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000508 else
Joe Perchesc7689572010-09-07 21:35:17 +0000509 pr_cont("\n");
Taku Izumidcd79ae2010-04-27 14:39:53 +0000510
511 }
512 }
513
514exit:
515 return;
516}
517
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800518static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter)
519{
520 u32 ctrl_ext;
521
522 /* Let firmware take over control of h/w */
523 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
524 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000525 ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800526}
527
528static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter)
529{
530 u32 ctrl_ext;
531
532 /* Let firmware know the driver has taken over */
533 ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT);
534 IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT,
Joe Perchese8e9f692010-09-07 21:34:53 +0000535 ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -0800536}
Auke Kok9a799d72007-09-15 14:07:45 -0700537
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000538/*
539 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
540 * @adapter: pointer to adapter struct
541 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
542 * @queue: queue to map the corresponding interrupt to
543 * @msix_vector: the vector to map to the corresponding queue
544 *
545 */
546static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction,
Joe Perchese8e9f692010-09-07 21:34:53 +0000547 u8 queue, u8 msix_vector)
Auke Kok9a799d72007-09-15 14:07:45 -0700548{
549 u32 ivar, index;
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000550 struct ixgbe_hw *hw = &adapter->hw;
551 switch (hw->mac.type) {
552 case ixgbe_mac_82598EB:
553 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
554 if (direction == -1)
555 direction = 0;
556 index = (((direction * 64) + queue) >> 2) & 0x1F;
557 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index));
558 ivar &= ~(0xFF << (8 * (queue & 0x3)));
559 ivar |= (msix_vector << (8 * (queue & 0x3)));
560 IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar);
561 break;
562 case ixgbe_mac_82599EB:
563 if (direction == -1) {
564 /* other causes */
565 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
566 index = ((queue & 1) * 8);
567 ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC);
568 ivar &= ~(0xFF << index);
569 ivar |= (msix_vector << index);
570 IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar);
571 break;
572 } else {
573 /* tx or rx causes */
574 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
575 index = ((16 * (queue & 1)) + (8 * direction));
576 ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1));
577 ivar &= ~(0xFF << index);
578 ivar |= (msix_vector << index);
579 IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar);
580 break;
581 }
582 default:
583 break;
584 }
Auke Kok9a799d72007-09-15 14:07:45 -0700585}
586
Alexander Duyckfe49f042009-06-04 16:00:09 +0000587static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000588 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +0000589{
590 u32 mask;
591
Alexander Duyckbd508172010-11-16 19:27:03 -0800592 switch (adapter->hw.mac.type) {
593 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000594 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
595 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800596 break;
597 case ixgbe_mac_82599EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +0000598 mask = (qmask & 0xFFFFFFFF);
599 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask);
600 mask = (qmask >> 32);
601 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask);
Alexander Duyckbd508172010-11-16 19:27:03 -0800602 break;
603 default:
604 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +0000605 }
606}
607
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800608void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *tx_ring,
609 struct ixgbe_tx_buffer *tx_buffer_info)
Auke Kok9a799d72007-09-15 14:07:45 -0700610{
Alexander Duycke5a43542009-12-02 16:46:56 +0000611 if (tx_buffer_info->dma) {
612 if (tx_buffer_info->mapped_as_page)
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800613 dma_unmap_page(tx_ring->dev,
Alexander Duycke5a43542009-12-02 16:46:56 +0000614 tx_buffer_info->dma,
615 tx_buffer_info->length,
Nick Nunley1b507732010-04-27 13:10:27 +0000616 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +0000617 else
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800618 dma_unmap_single(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 tx_buffer_info->dma = 0;
623 }
Auke Kok9a799d72007-09-15 14:07:45 -0700624 if (tx_buffer_info->skb) {
625 dev_kfree_skb_any(tx_buffer_info->skb);
626 tx_buffer_info->skb = NULL;
627 }
Alexander Duyck44df32c2009-03-31 21:34:23 +0000628 tx_buffer_info->time_stamp = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700629 /* tx_buffer_info must be completely set up in the transmit path */
630}
631
Yi Zou26f23d82009-11-06 12:56:00 +0000632/**
John Fastabend7483d9d2010-05-18 16:00:10 +0000633 * ixgbe_tx_xon_state - check the tx ring xon state
Yi Zou26f23d82009-11-06 12:56:00 +0000634 * @adapter: the ixgbe adapter
635 * @tx_ring: the corresponding tx_ring
636 *
637 * If not in DCB mode, checks TFCS.TXOFF, otherwise, find out the
638 * corresponding TC of this tx_ring when checking TFCS.
639 *
John Fastabend7483d9d2010-05-18 16:00:10 +0000640 * Returns : true if in xon state (currently not paused)
Yi Zou26f23d82009-11-06 12:56:00 +0000641 */
John Fastabend7483d9d2010-05-18 16:00:10 +0000642static inline bool ixgbe_tx_xon_state(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000643 struct ixgbe_ring *tx_ring)
Yi Zou26f23d82009-11-06 12:56:00 +0000644{
Yi Zou26f23d82009-11-06 12:56:00 +0000645 u32 txoff = IXGBE_TFCS_TXOFF;
646
647#ifdef CONFIG_IXGBE_DCB
John Fastabendca739482010-06-03 17:03:45 +0000648 if (adapter->dcb_cfg.pfc_mode_enable) {
Jaswinder Singh Rajput30b768322009-11-20 04:02:27 +0000649 int tc;
Yi Zou26f23d82009-11-06 12:56:00 +0000650 int dcb_i = adapter->ring_feature[RING_F_DCB].indices;
Alexander Duyckbf29ee62010-11-16 19:27:07 -0800651 u8 reg_idx = tx_ring->reg_idx;
Yi Zou26f23d82009-11-06 12:56:00 +0000652
PJ Waskiewicz6837e892010-01-06 17:50:29 +0000653 switch (adapter->hw.mac.type) {
654 case ixgbe_mac_82598EB:
Yi Zou26f23d82009-11-06 12:56:00 +0000655 tc = reg_idx >> 2;
656 txoff = IXGBE_TFCS_TXOFF0;
PJ Waskiewicz6837e892010-01-06 17:50:29 +0000657 break;
658 case ixgbe_mac_82599EB:
Yi Zou26f23d82009-11-06 12:56:00 +0000659 tc = 0;
660 txoff = IXGBE_TFCS_TXOFF;
661 if (dcb_i == 8) {
662 /* TC0, TC1 */
663 tc = reg_idx >> 5;
664 if (tc == 2) /* TC2, TC3 */
665 tc += (reg_idx - 64) >> 4;
666 else if (tc == 3) /* TC4, TC5, TC6, TC7 */
667 tc += 1 + ((reg_idx - 96) >> 3);
668 } else if (dcb_i == 4) {
669 /* TC0, TC1 */
670 tc = reg_idx >> 6;
671 if (tc == 1) {
672 tc += (reg_idx - 64) >> 5;
673 if (tc == 2) /* TC2, TC3 */
674 tc += (reg_idx - 96) >> 4;
675 }
676 }
PJ Waskiewicz6837e892010-01-06 17:50:29 +0000677 break;
678 default:
679 tc = 0;
Alexander Duyckbd508172010-11-16 19:27:03 -0800680 break;
Yi Zou26f23d82009-11-06 12:56:00 +0000681 }
682 txoff <<= tc;
683 }
684#endif
685 return IXGBE_READ_REG(&adapter->hw, IXGBE_TFCS) & txoff;
686}
687
Auke Kok9a799d72007-09-15 14:07:45 -0700688static inline bool ixgbe_check_tx_hang(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +0000689 struct ixgbe_ring *tx_ring,
690 unsigned int eop)
Auke Kok9a799d72007-09-15 14:07:45 -0700691{
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700692 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700693
Auke Kok9a799d72007-09-15 14:07:45 -0700694 /* Detect a transmit hang in hardware, this serializes the
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700695 * check with the clearing of time_stamp and movement of eop */
Alexander Duyck7d637bc2010-11-16 19:26:56 -0800696 clear_check_for_tx_hang(tx_ring);
Alexander Duyck44df32c2009-03-31 21:34:23 +0000697 if (tx_ring->tx_buffer_info[eop].time_stamp &&
Auke Kok9a799d72007-09-15 14:07:45 -0700698 time_after(jiffies, tx_ring->tx_buffer_info[eop].time_stamp + HZ) &&
John Fastabend7483d9d2010-05-18 16:00:10 +0000699 ixgbe_tx_xon_state(adapter, tx_ring)) {
Auke Kok9a799d72007-09-15 14:07:45 -0700700 /* detected Tx unit hang */
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700701 union ixgbe_adv_tx_desc *tx_desc;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000702 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Emil Tantilov396e7992010-07-01 20:05:12 +0000703 e_err(drv, "Detected Tx Unit Hang\n"
Emil Tantilov849c4542010-06-03 16:53:41 +0000704 " Tx Queue <%d>\n"
705 " TDH, TDT <%x>, <%x>\n"
706 " next_to_use <%x>\n"
707 " next_to_clean <%x>\n"
708 "tx_buffer_info[next_to_clean]\n"
709 " time_stamp <%lx>\n"
710 " jiffies <%lx>\n",
711 tx_ring->queue_index,
Alexander Duyck84ea2592010-11-16 19:26:49 -0800712 IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)),
713 IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)),
Emil Tantilov849c4542010-06-03 16:53:41 +0000714 tx_ring->next_to_use, eop,
715 tx_ring->tx_buffer_info[eop].time_stamp, jiffies);
Auke Kok9a799d72007-09-15 14:07:45 -0700716 return true;
717 }
718
719 return false;
720}
721
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700722#define IXGBE_MAX_TXD_PWR 14
723#define IXGBE_MAX_DATA_PER_TXD (1 << IXGBE_MAX_TXD_PWR)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800724
725/* Tx Descriptors needed, worst case */
726#define TXD_USE_COUNT(S) (((S) >> IXGBE_MAX_TXD_PWR) + \
727 (((S) & (IXGBE_MAX_DATA_PER_TXD - 1)) ? 1 : 0))
728#define DESC_NEEDED (TXD_USE_COUNT(IXGBE_MAX_DATA_PER_TXD) /* skb->data */ + \
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700729 MAX_SKB_FRAGS * TXD_USE_COUNT(PAGE_SIZE) + 1) /* for context */
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800730
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700731static void ixgbe_tx_timeout(struct net_device *netdev);
732
Auke Kok9a799d72007-09-15 14:07:45 -0700733/**
734 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfe49f042009-06-04 16:00:09 +0000735 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700736 * @tx_ring: tx ring to clean
Auke Kok9a799d72007-09-15 14:07:45 -0700737 **/
Alexander Duyckfe49f042009-06-04 16:00:09 +0000738static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000739 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700740{
Alexander Duyckfe49f042009-06-04 16:00:09 +0000741 struct ixgbe_adapter *adapter = q_vector->adapter;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800742 union ixgbe_adv_tx_desc *tx_desc, *eop_desc;
743 struct ixgbe_tx_buffer *tx_buffer_info;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -0700744 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyckb9537992010-11-16 19:26:58 -0800745 u16 i, eop, count = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700746
747 i = tx_ring->next_to_clean;
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800748 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000749 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800750
751 while ((eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)) &&
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +0000752 (count < tx_ring->work_limit)) {
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800753 bool cleaned = false;
Jeff Kirsher2d0bb1c2010-08-08 16:02:31 +0000754 rmb(); /* read buffer_info after eop_desc */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800755 for ( ; !cleaned; count++) {
Alexander Duyck31f05a22010-08-19 13:40:31 +0000756 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -0700757 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Auke Kok9a799d72007-09-15 14:07:45 -0700758
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800759 tx_desc->wb.status = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800760 cleaned = (i == eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800761
Auke Kok9a799d72007-09-15 14:07:45 -0700762 i++;
763 if (i == tx_ring->count)
764 i = 0;
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800765
766 if (cleaned && tx_buffer_info->skb) {
767 total_bytes += tx_buffer_info->bytecount;
768 total_packets += tx_buffer_info->gso_segs;
769 }
770
Alexander Duyckb6ec8952010-11-16 19:26:49 -0800771 ixgbe_unmap_and_free_tx_resource(tx_ring,
Alexander Duyck8ad494b2010-11-16 19:26:47 -0800772 tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -0700773 }
774
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800775 eop = tx_ring->tx_buffer_info[i].next_to_watch;
Alexander Duyck31f05a22010-08-19 13:40:31 +0000776 eop_desc = IXGBE_TX_DESC_ADV(tx_ring, eop);
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -0800777 }
778
Auke Kok9a799d72007-09-15 14:07:45 -0700779 tx_ring->next_to_clean = i;
Alexander Duyckb9537992010-11-16 19:26:58 -0800780 tx_ring->total_bytes += total_bytes;
781 tx_ring->total_packets += total_packets;
782 u64_stats_update_begin(&tx_ring->syncp);
783 tx_ring->stats.packets += total_packets;
784 tx_ring->stats.bytes += total_bytes;
785 u64_stats_update_end(&tx_ring->syncp);
786
787 if (check_for_tx_hang(tx_ring) &&
788 ixgbe_check_tx_hang(adapter, tx_ring, i)) {
789 /* schedule immediate reset if we believe we hung */
790 e_info(probe, "tx hang %d detected, resetting "
791 "adapter\n", adapter->tx_timeout_count + 1);
792 ixgbe_tx_timeout(adapter->netdev);
793
794 /* the adapter is about to reset, no point in enabling stuff */
795 return true;
796 }
Auke Kok9a799d72007-09-15 14:07:45 -0700797
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800798#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800799 if (unlikely(count && netif_carrier_ok(tx_ring->netdev) &&
Joe Perchese8e9f692010-09-07 21:34:53 +0000800 (IXGBE_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800801 /* Make sure that anybody stopping the queue after this
802 * sees the new next_to_clean.
803 */
804 smp_mb();
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800805 if (__netif_subqueue_stopped(tx_ring->netdev, tx_ring->queue_index) &&
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800806 !test_bit(__IXGBE_DOWN, &adapter->state)) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -0800807 netif_wake_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -0800808 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -0800809 }
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -0800810 }
Auke Kok9a799d72007-09-15 14:07:45 -0700811
Eric Dumazet807540b2010-09-23 05:40:09 +0000812 return count < tx_ring->work_limit;
Auke Kok9a799d72007-09-15 14:07:45 -0700813}
814
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400815#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800816static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800817 struct ixgbe_ring *rx_ring,
818 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800819{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800820 struct ixgbe_hw *hw = &adapter->hw;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800821 u32 rxctrl;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800822 u8 reg_idx = rx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800823
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800824 rxctrl = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(reg_idx));
825 switch (hw->mac.type) {
826 case ixgbe_mac_82598EB:
827 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK;
828 rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
829 break;
830 case ixgbe_mac_82599EB:
831 rxctrl &= ~IXGBE_DCA_RXCTRL_CPUID_MASK_82599;
832 rxctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
833 IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599);
834 break;
835 default:
836 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800837 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800838 rxctrl |= IXGBE_DCA_RXCTRL_DESC_DCA_EN;
839 rxctrl |= IXGBE_DCA_RXCTRL_HEAD_DCA_EN;
840 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_RRO_EN);
841 rxctrl &= ~(IXGBE_DCA_RXCTRL_DESC_WRO_EN |
842 IXGBE_DCA_RXCTRL_DESC_HSRO_EN);
843 IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800844}
845
846static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter,
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800847 struct ixgbe_ring *tx_ring,
848 int cpu)
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800849{
Don Skidmoreee5f7842009-11-06 12:56:20 +0000850 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800851 u32 txctrl;
852 u8 reg_idx = tx_ring->reg_idx;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800853
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800854 switch (hw->mac.type) {
855 case ixgbe_mac_82598EB:
856 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(reg_idx));
857 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK;
858 txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
859 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
860 txctrl &= ~IXGBE_DCA_TXCTRL_TX_WB_RO_EN;
861 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL(reg_idx), txctrl);
862 break;
863 case ixgbe_mac_82599EB:
864 txctrl = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx));
865 txctrl &= ~IXGBE_DCA_TXCTRL_CPUID_MASK_82599;
866 txctrl |= (dca3_get_tag(&adapter->pdev->dev, cpu) <<
867 IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599);
868 txctrl |= IXGBE_DCA_TXCTRL_DESC_DCA_EN;
869 txctrl &= ~IXGBE_DCA_TXCTRL_TX_WB_RO_EN;
870 IXGBE_WRITE_REG(hw, IXGBE_DCA_TXCTRL_82599(reg_idx), txctrl);
871 break;
872 default:
873 break;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800874 }
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800875}
876
877static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector)
878{
879 struct ixgbe_adapter *adapter = q_vector->adapter;
880 int cpu = get_cpu();
881 long r_idx;
882 int i;
883
884 if (q_vector->cpu == cpu)
885 goto out_no_update;
886
887 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
888 for (i = 0; i < q_vector->txr_count; i++) {
889 ixgbe_update_tx_dca(adapter, adapter->tx_ring[r_idx], cpu);
890 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
891 r_idx + 1);
892 }
893
894 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
895 for (i = 0; i < q_vector->rxr_count; i++) {
896 ixgbe_update_rx_dca(adapter, adapter->rx_ring[r_idx], cpu);
897 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
898 r_idx + 1);
899 }
900
901 q_vector->cpu = cpu;
902out_no_update:
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800903 put_cpu();
904}
905
906static void ixgbe_setup_dca(struct ixgbe_adapter *adapter)
907{
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800908 int num_q_vectors;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800909 int i;
910
911 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
912 return;
913
Alexander Duycke35ec122009-05-21 13:07:12 +0000914 /* always use CB2 mode, difference is masked in the CB driver */
915 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2);
916
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800917 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
918 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
919 else
920 num_q_vectors = 1;
921
922 for (i = 0; i < num_q_vectors; i++) {
923 adapter->q_vector[i]->cpu = -1;
924 ixgbe_update_dca(adapter->q_vector[i]);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800925 }
926}
927
928static int __ixgbe_notify_dca(struct device *dev, void *data)
929{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800930 struct ixgbe_adapter *adapter = dev_get_drvdata(dev);
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800931 unsigned long event = *(unsigned long *)data;
932
Alexander Duyck33cf09c2010-11-16 19:26:55 -0800933 if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED))
934 return 0;
935
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800936 switch (event) {
937 case DCA_PROVIDER_ADD:
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700938 /* if we're already enabled, don't do it again */
939 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
940 break;
Denis V. Lunev652f0932008-03-27 14:39:17 +0300941 if (dca_add_requester(dev) == 0) {
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -0700942 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800943 ixgbe_setup_dca(adapter);
944 break;
945 }
946 /* Fall Through since DCA is disabled. */
947 case DCA_PROVIDER_REMOVE:
948 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
949 dca_remove_requester(dev);
950 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
951 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
952 }
953 break;
954 }
955
Denis V. Lunev652f0932008-03-27 14:39:17 +0300956 return 0;
Jeb Cramerbd0362d2008-03-03 15:04:02 -0800957}
958
Jeff Garzik5dd2d332008-10-16 05:09:31 -0400959#endif /* CONFIG_IXGBE_DCA */
Auke Kok9a799d72007-09-15 14:07:45 -0700960/**
961 * ixgbe_receive_skb - Send a completed packet up the stack
962 * @adapter: board private structure
963 * @skb: packet to send up
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -0700964 * @status: hardware indication of status of receive
965 * @rx_ring: rx descriptor ring (for a specific queue) to setup
966 * @rx_desc: rx descriptor
Auke Kok9a799d72007-09-15 14:07:45 -0700967 **/
Herbert Xu78b6f4c2009-01-18 21:49:45 -0800968static void ixgbe_receive_skb(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +0000969 struct sk_buff *skb, u8 status,
970 struct ixgbe_ring *ring,
971 union ixgbe_adv_rx_desc *rx_desc)
Auke Kok9a799d72007-09-15 14:07:45 -0700972{
Herbert Xu78b6f4c2009-01-18 21:49:45 -0800973 struct ixgbe_adapter *adapter = q_vector->adapter;
974 struct napi_struct *napi = &q_vector->napi;
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -0700975 bool is_vlan = (status & IXGBE_RXD_STAT_VP);
976 u16 tag = le16_to_cpu(rx_desc->wb.upper.vlan);
Auke Kok9a799d72007-09-15 14:07:45 -0700977
Jesse Grossf62bbb52010-10-20 13:56:10 +0000978 if (is_vlan && (tag & VLAN_VID_MASK))
979 __vlan_hwaccel_put_tag(skb, tag);
980
981 if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL))
982 napi_gro_receive(napi, skb);
983 else
984 netif_rx(skb);
Auke Kok9a799d72007-09-15 14:07:45 -0700985}
986
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -0800987/**
988 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
989 * @adapter: address of board private structure
990 * @status_err: hardware indication of status of receive
991 * @skb: skb currently being received and modified
992 **/
Auke Kok9a799d72007-09-15 14:07:45 -0700993static inline void ixgbe_rx_checksum(struct ixgbe_adapter *adapter,
Don Skidmore8bae1b22009-07-23 18:00:39 +0000994 union ixgbe_adv_rx_desc *rx_desc,
995 struct sk_buff *skb)
Auke Kok9a799d72007-09-15 14:07:45 -0700996{
Don Skidmore8bae1b22009-07-23 18:00:39 +0000997 u32 status_err = le32_to_cpu(rx_desc->wb.upper.status_error);
998
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700999 skb_checksum_none_assert(skb);
Auke Kok9a799d72007-09-15 14:07:45 -07001000
Jesse Brandeburg712744b2008-08-26 04:26:56 -07001001 /* Rx csum disabled */
1002 if (!(adapter->flags & IXGBE_FLAG_RX_CSUM_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07001003 return;
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001004
1005 /* if IP and error */
1006 if ((status_err & IXGBE_RXD_STAT_IPCS) &&
1007 (status_err & IXGBE_RXDADV_ERR_IPE)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001008 adapter->hw_csum_rx_error++;
1009 return;
1010 }
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001011
1012 if (!(status_err & IXGBE_RXD_STAT_L4CS))
1013 return;
1014
1015 if (status_err & IXGBE_RXDADV_ERR_TCPE) {
Don Skidmore8bae1b22009-07-23 18:00:39 +00001016 u16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info;
1017
1018 /*
1019 * 82599 errata, UDP frames with a 0 checksum can be marked as
1020 * checksum errors.
1021 */
1022 if ((pkt_info & IXGBE_RXDADV_PKTTYPE_UDP) &&
1023 (adapter->hw.mac.type == ixgbe_mac_82599EB))
1024 return;
1025
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001026 adapter->hw_csum_rx_error++;
1027 return;
1028 }
1029
Auke Kok9a799d72007-09-15 14:07:45 -07001030 /* It must be a TCP or UDP packet with a valid checksum */
Ayyappan Veeraiyane59bd252008-02-01 15:59:09 -08001031 skb->ip_summed = CHECKSUM_UNNECESSARY;
Auke Kok9a799d72007-09-15 14:07:45 -07001032}
1033
Alexander Duyck84ea2592010-11-16 19:26:49 -08001034static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001035{
1036 /*
1037 * Force memory writes to complete before letting h/w
1038 * know there are new descriptors to fetch. (Only
1039 * applicable for weak-ordered memory model archs,
1040 * such as IA-64).
1041 */
1042 wmb();
Alexander Duyck84ea2592010-11-16 19:26:49 -08001043 writel(val, rx_ring->tail);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001044}
1045
Auke Kok9a799d72007-09-15 14:07:45 -07001046/**
1047 * ixgbe_alloc_rx_buffers - Replace used receive buffers; packet split
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001048 * @rx_ring: ring to place buffers on
1049 * @cleaned_count: number of buffers to replace
Auke Kok9a799d72007-09-15 14:07:45 -07001050 **/
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001051void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count)
Auke Kok9a799d72007-09-15 14:07:45 -07001052{
Auke Kok9a799d72007-09-15 14:07:45 -07001053 union ixgbe_adv_rx_desc *rx_desc;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001054 struct ixgbe_rx_buffer *bi;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001055 struct sk_buff *skb;
1056 u16 i = rx_ring->next_to_use;
Auke Kok9a799d72007-09-15 14:07:45 -07001057
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001058 /* do nothing if no valid netdev defined */
1059 if (!rx_ring->netdev)
1060 return;
1061
Auke Kok9a799d72007-09-15 14:07:45 -07001062 while (cleaned_count--) {
Alexander Duyck31f05a22010-08-19 13:40:31 +00001063 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001064 bi = &rx_ring->rx_buffer_info[i];
1065 skb = bi->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001066
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001067 if (!skb) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001068 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001069 rx_ring->rx_buf_len);
Auke Kok9a799d72007-09-15 14:07:45 -07001070 if (!skb) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001071 rx_ring->rx_stats.alloc_rx_buff_failed++;
Auke Kok9a799d72007-09-15 14:07:45 -07001072 goto no_buffers;
1073 }
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001074 /* initialize queue mapping */
1075 skb_record_rx_queue(skb, rx_ring->queue_index);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001076 bi->skb = skb;
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001077 }
Auke Kok9a799d72007-09-15 14:07:45 -07001078
Alexander Duyckd716a7d2010-08-19 13:33:41 +00001079 if (!bi->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001080 bi->dma = dma_map_single(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001081 skb->data,
Joe Perchese8e9f692010-09-07 21:34:53 +00001082 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00001083 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001084 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001085 rx_ring->rx_stats.alloc_rx_buff_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001086 bi->dma = 0;
1087 goto no_buffers;
1088 }
Auke Kok9a799d72007-09-15 14:07:45 -07001089 }
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001090
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001091 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001092 if (!bi->page) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001093 bi->page = netdev_alloc_page(rx_ring->netdev);
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001094 if (!bi->page) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001095 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001096 goto no_buffers;
1097 }
1098 }
1099
1100 if (!bi->page_dma) {
1101 /* use a half page if we're re-using */
1102 bi->page_offset ^= PAGE_SIZE / 2;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001103 bi->page_dma = dma_map_page(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001104 bi->page,
1105 bi->page_offset,
1106 PAGE_SIZE / 2,
1107 DMA_FROM_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001108 if (dma_mapping_error(rx_ring->dev,
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001109 bi->page_dma)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08001110 rx_ring->rx_stats.alloc_rx_page_failed++;
Alexander Duyckd5f398e2010-11-16 19:26:48 -08001111 bi->page_dma = 0;
1112 goto no_buffers;
1113 }
1114 }
1115
1116 /* Refresh the desc even if buffer_addrs didn't change
1117 * because each write-back erases this info. */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001118 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1119 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07001120 } else {
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001121 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
Alexander Duyck84418e32010-08-19 13:40:54 +00001122 rx_desc->read.hdr_addr = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001123 }
1124
1125 i++;
1126 if (i == rx_ring->count)
1127 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001128 }
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001129
Auke Kok9a799d72007-09-15 14:07:45 -07001130no_buffers:
1131 if (rx_ring->next_to_use != i) {
1132 rx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08001133 ixgbe_release_rx_desc(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001134 }
1135}
1136
Alexander Duyckc267fc12010-11-16 19:27:00 -08001137static inline u16 ixgbe_get_hlen(union ixgbe_adv_rx_desc *rx_desc)
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001138{
Alexander Duyckc267fc12010-11-16 19:27:00 -08001139 /* HW will not DMA in data larger than the given buffer, even if it
1140 * parses the (NFS, of course) header to be larger. In that case, it
1141 * fills the header buffer and spills the rest into the page.
1142 */
1143 u16 hdr_info = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.hdr_info);
1144 u16 hlen = (hdr_info & IXGBE_RXDADV_HDRBUFLEN_MASK) >>
1145 IXGBE_RXDADV_HDRBUFLEN_SHIFT;
1146 if (hlen > IXGBE_RX_HDR_SIZE)
1147 hlen = IXGBE_RX_HDR_SIZE;
1148 return hlen;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001149}
1150
Alexander Duyckf8212f92009-04-27 22:42:37 +00001151/**
1152 * ixgbe_transform_rsc_queue - change rsc queue into a full packet
1153 * @skb: pointer to the last skb in the rsc queue
1154 *
1155 * This function changes a queue full of hw rsc buffers into a completed
1156 * packet. It uses the ->prev pointers to find the first packet and then
1157 * turns it into the frag list owner.
1158 **/
Alexander Duyckaa801752010-11-16 19:27:02 -08001159static inline struct sk_buff *ixgbe_transform_rsc_queue(struct sk_buff *skb)
Alexander Duyckf8212f92009-04-27 22:42:37 +00001160{
1161 unsigned int frag_list_size = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001162 unsigned int skb_cnt = 1;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001163
1164 while (skb->prev) {
1165 struct sk_buff *prev = skb->prev;
1166 frag_list_size += skb->len;
1167 skb->prev = NULL;
1168 skb = prev;
Alexander Duyckaa801752010-11-16 19:27:02 -08001169 skb_cnt++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001170 }
1171
1172 skb_shinfo(skb)->frag_list = skb->next;
1173 skb->next = NULL;
1174 skb->len += frag_list_size;
1175 skb->data_len += frag_list_size;
1176 skb->truesize += frag_list_size;
Alexander Duyckaa801752010-11-16 19:27:02 -08001177 IXGBE_RSC_CB(skb)->skb_cnt = skb_cnt;
1178
Alexander Duyckf8212f92009-04-27 22:42:37 +00001179 return skb;
1180}
1181
Alexander Duyckaa801752010-11-16 19:27:02 -08001182static inline bool ixgbe_get_rsc_state(union ixgbe_adv_rx_desc *rx_desc)
1183{
1184 return !!(le32_to_cpu(rx_desc->wb.lower.lo_dword.data) &
1185 IXGBE_RXDADV_RSCCNT_MASK);
1186}
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001187
Alexander Duyckc267fc12010-11-16 19:27:00 -08001188static void ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00001189 struct ixgbe_ring *rx_ring,
1190 int *work_done, int work_to_do)
Auke Kok9a799d72007-09-15 14:07:45 -07001191{
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001192 struct ixgbe_adapter *adapter = q_vector->adapter;
Auke Kok9a799d72007-09-15 14:07:45 -07001193 union ixgbe_adv_rx_desc *rx_desc, *next_rxd;
1194 struct ixgbe_rx_buffer *rx_buffer_info, *next_buffer;
1195 struct sk_buff *skb;
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001196 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001197 const int current_node = numa_node_id();
Yi Zou3d8fd382009-06-08 14:38:44 +00001198#ifdef IXGBE_FCOE
1199 int ddp_bytes = 0;
1200#endif /* IXGBE_FCOE */
Alexander Duyckc267fc12010-11-16 19:27:00 -08001201 u32 staterr;
1202 u16 i;
1203 u16 cleaned_count = 0;
Alexander Duyckaa801752010-11-16 19:27:02 -08001204 bool pkt_is_rsc = false;
Auke Kok9a799d72007-09-15 14:07:45 -07001205
1206 i = rx_ring->next_to_clean;
Alexander Duyck31f05a22010-08-19 13:40:31 +00001207 rx_desc = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001208 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Auke Kok9a799d72007-09-15 14:07:45 -07001209
1210 while (staterr & IXGBE_RXD_STAT_DD) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07001211 u32 upper_len = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001212
Milton Miller3c945e52010-02-19 17:44:42 +00001213 rmb(); /* read descriptor and rx_buffer_info after status DD */
Auke Kok9a799d72007-09-15 14:07:45 -07001214
Alexander Duyckc267fc12010-11-16 19:27:00 -08001215 rx_buffer_info = &rx_ring->rx_buffer_info[i];
1216
Auke Kok9a799d72007-09-15 14:07:45 -07001217 skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001218 rx_buffer_info->skb = NULL;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001219 prefetch(skb->data);
Auke Kok9a799d72007-09-15 14:07:45 -07001220
Alexander Duyckc267fc12010-11-16 19:27:00 -08001221 if (ring_is_rsc_enabled(rx_ring))
Alexander Duyckaa801752010-11-16 19:27:02 -08001222 pkt_is_rsc = ixgbe_get_rsc_state(rx_desc);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001223
1224 /* if this is a skb from previous receive DMA will be 0 */
Alexander Duyck21fa4e62009-06-04 15:59:49 +00001225 if (rx_buffer_info->dma) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001226 u16 hlen;
Alexander Duyckaa801752010-11-16 19:27:02 -08001227 if (pkt_is_rsc &&
Alexander Duyckc267fc12010-11-16 19:27:00 -08001228 !(staterr & IXGBE_RXD_STAT_EOP) &&
1229 !skb->prev) {
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001230 /*
1231 * When HWRSC is enabled, delay unmapping
1232 * of the first packet. It carries the
1233 * header information, HW may still
1234 * access the header after the writeback.
1235 * Only unmap it when EOP is reached
1236 */
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001237 IXGBE_RSC_CB(skb)->delay_unmap = true;
Mallikarjuna R Chilakala43634e82010-02-25 23:14:37 +00001238 IXGBE_RSC_CB(skb)->dma = rx_buffer_info->dma;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001239 } else {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001240 dma_unmap_single(rx_ring->dev,
Joe Perchese8e9f692010-09-07 21:34:53 +00001241 rx_buffer_info->dma,
1242 rx_ring->rx_buf_len,
1243 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00001244 }
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00001245 rx_buffer_info->dma = 0;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001246
1247 if (ring_is_ps_enabled(rx_ring)) {
1248 hlen = ixgbe_get_hlen(rx_desc);
1249 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
1250 } else {
1251 hlen = le16_to_cpu(rx_desc->wb.upper.length);
1252 }
1253
1254 skb_put(skb, hlen);
1255 } else {
1256 /* assume packet split since header is unmapped */
1257 upper_len = le16_to_cpu(rx_desc->wb.upper.length);
Auke Kok9a799d72007-09-15 14:07:45 -07001258 }
1259
1260 if (upper_len) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001261 dma_unmap_page(rx_ring->dev,
1262 rx_buffer_info->page_dma,
1263 PAGE_SIZE / 2,
1264 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07001265 rx_buffer_info->page_dma = 0;
1266 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
Joe Perchese8e9f692010-09-07 21:34:53 +00001267 rx_buffer_info->page,
1268 rx_buffer_info->page_offset,
1269 upper_len);
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001270
Alexander Duyckc267fc12010-11-16 19:27:00 -08001271 if ((page_count(rx_buffer_info->page) == 1) &&
1272 (page_to_nid(rx_buffer_info->page) == current_node))
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07001273 get_page(rx_buffer_info->page);
Alexander Duyckc267fc12010-11-16 19:27:00 -08001274 else
1275 rx_buffer_info->page = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001276
1277 skb->len += upper_len;
1278 skb->data_len += upper_len;
1279 skb->truesize += upper_len;
1280 }
1281
1282 i++;
1283 if (i == rx_ring->count)
1284 i = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07001285
Alexander Duyck31f05a22010-08-19 13:40:31 +00001286 next_rxd = IXGBE_RX_DESC_ADV(rx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07001287 prefetch(next_rxd);
Auke Kok9a799d72007-09-15 14:07:45 -07001288 cleaned_count++;
Alexander Duyckf8212f92009-04-27 22:42:37 +00001289
Alexander Duyckaa801752010-11-16 19:27:02 -08001290 if (pkt_is_rsc) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001291 u32 nextp = (staterr & IXGBE_RXDADV_NEXTP_MASK) >>
1292 IXGBE_RXDADV_NEXTP_SHIFT;
1293 next_buffer = &rx_ring->rx_buffer_info[nextp];
Alexander Duyckf8212f92009-04-27 22:42:37 +00001294 } else {
1295 next_buffer = &rx_ring->rx_buffer_info[i];
1296 }
1297
Alexander Duyckc267fc12010-11-16 19:27:00 -08001298 if (!(staterr & IXGBE_RXD_STAT_EOP)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001299 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00001300 rx_buffer_info->skb = next_buffer->skb;
1301 rx_buffer_info->dma = next_buffer->dma;
1302 next_buffer->skb = skb;
1303 next_buffer->dma = 0;
1304 } else {
1305 skb->next = next_buffer->skb;
1306 skb->next->prev = skb;
1307 }
Alexander Duyck5b7da512010-11-16 19:26:50 -08001308 rx_ring->rx_stats.non_eop_descs++;
Auke Kok9a799d72007-09-15 14:07:45 -07001309 goto next_desc;
1310 }
1311
Alexander Duyckaa801752010-11-16 19:27:02 -08001312 if (skb->prev) {
1313 skb = ixgbe_transform_rsc_queue(skb);
1314 /* if we got here without RSC the packet is invalid */
1315 if (!pkt_is_rsc) {
1316 __pskb_trim(skb, 0);
1317 rx_buffer_info->skb = skb;
1318 goto next_desc;
1319 }
1320 }
Alexander Duyckc267fc12010-11-16 19:27:00 -08001321
1322 if (ring_is_rsc_enabled(rx_ring)) {
1323 if (IXGBE_RSC_CB(skb)->delay_unmap) {
1324 dma_unmap_single(rx_ring->dev,
1325 IXGBE_RSC_CB(skb)->dma,
1326 rx_ring->rx_buf_len,
1327 DMA_FROM_DEVICE);
1328 IXGBE_RSC_CB(skb)->dma = 0;
1329 IXGBE_RSC_CB(skb)->delay_unmap = false;
1330 }
Alexander Duyckaa801752010-11-16 19:27:02 -08001331 }
1332 if (pkt_is_rsc) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001333 if (ring_is_ps_enabled(rx_ring))
1334 rx_ring->rx_stats.rsc_count +=
Alexander Duyckaa801752010-11-16 19:27:02 -08001335 skb_shinfo(skb)->nr_frags;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001336 else
Alexander Duyckaa801752010-11-16 19:27:02 -08001337 rx_ring->rx_stats.rsc_count +=
1338 IXGBE_RSC_CB(skb)->skb_cnt;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001339 rx_ring->rx_stats.rsc_flush++;
1340 }
1341
1342 /* ERR_MASK will only have valid bits if EOP set */
Auke Kok9a799d72007-09-15 14:07:45 -07001343 if (staterr & IXGBE_RXDADV_ERR_FRAME_ERR_MASK) {
Alexander Duyckc267fc12010-11-16 19:27:00 -08001344 /* trim packet back to size 0 and recycle it */
1345 __pskb_trim(skb, 0);
1346 rx_buffer_info->skb = skb;
Auke Kok9a799d72007-09-15 14:07:45 -07001347 goto next_desc;
1348 }
1349
Don Skidmore8bae1b22009-07-23 18:00:39 +00001350 ixgbe_rx_checksum(adapter, rx_desc, skb);
Ayyappan Veeraiyand2f4fbe2008-02-01 15:59:19 -08001351
1352 /* probably a little skewed due to removing CRC */
1353 total_rx_bytes += skb->len;
1354 total_rx_packets++;
1355
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001356 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Yi Zou332d4a72009-05-13 13:11:53 +00001357#ifdef IXGBE_FCOE
1358 /* if ddp, not passing to ULD unless for FCP_RSP or error */
Yi Zou3d8fd382009-06-08 14:38:44 +00001359 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
1360 ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb);
1361 if (!ddp_bytes)
Yi Zou332d4a72009-05-13 13:11:53 +00001362 goto next_desc;
Yi Zou3d8fd382009-06-08 14:38:44 +00001363 }
Yi Zou332d4a72009-05-13 13:11:53 +00001364#endif /* IXGBE_FCOE */
Alexander Duyckfdaff1c2009-05-06 10:43:47 +00001365 ixgbe_receive_skb(q_vector, skb, staterr, rx_ring, rx_desc);
Auke Kok9a799d72007-09-15 14:07:45 -07001366
1367next_desc:
1368 rx_desc->wb.upper.status_error = 0;
1369
Alexander Duyckc267fc12010-11-16 19:27:00 -08001370 (*work_done)++;
1371 if (*work_done >= work_to_do)
1372 break;
1373
Auke Kok9a799d72007-09-15 14:07:45 -07001374 /* return some buffers to hardware, one at a time is too slow */
1375 if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) {
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001376 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001377 cleaned_count = 0;
1378 }
1379
1380 /* use prefetched values */
1381 rx_desc = next_rxd;
Auke Kok9a799d72007-09-15 14:07:45 -07001382 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07001383 }
1384
Auke Kok9a799d72007-09-15 14:07:45 -07001385 rx_ring->next_to_clean = i;
1386 cleaned_count = IXGBE_DESC_UNUSED(rx_ring);
1387
1388 if (cleaned_count)
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001389 ixgbe_alloc_rx_buffers(rx_ring, cleaned_count);
Auke Kok9a799d72007-09-15 14:07:45 -07001390
Yi Zou3d8fd382009-06-08 14:38:44 +00001391#ifdef IXGBE_FCOE
1392 /* include DDPed FCoE data */
1393 if (ddp_bytes > 0) {
1394 unsigned int mss;
1395
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001396 mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) -
Yi Zou3d8fd382009-06-08 14:38:44 +00001397 sizeof(struct fc_frame_header) -
1398 sizeof(struct fcoe_crc_eof);
1399 if (mss > 512)
1400 mss &= ~511;
1401 total_rx_bytes += ddp_bytes;
1402 total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss);
1403 }
1404#endif /* IXGBE_FCOE */
1405
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001406 rx_ring->total_packets += total_rx_packets;
1407 rx_ring->total_bytes += total_rx_bytes;
Alexander Duyckc267fc12010-11-16 19:27:00 -08001408 u64_stats_update_begin(&rx_ring->syncp);
1409 rx_ring->stats.packets += total_rx_packets;
1410 rx_ring->stats.bytes += total_rx_bytes;
1411 u64_stats_update_end(&rx_ring->syncp);
Auke Kok9a799d72007-09-15 14:07:45 -07001412}
1413
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001414static int ixgbe_clean_rxonly(struct napi_struct *, int);
Auke Kok9a799d72007-09-15 14:07:45 -07001415/**
1416 * ixgbe_configure_msix - Configure MSI-X hardware
1417 * @adapter: board private structure
1418 *
1419 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1420 * interrupts.
1421 **/
1422static void ixgbe_configure_msix(struct ixgbe_adapter *adapter)
1423{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001424 struct ixgbe_q_vector *q_vector;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001425 int i, q_vectors, v_idx, r_idx;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001426 u32 mask;
Auke Kok9a799d72007-09-15 14:07:45 -07001427
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001428 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1429
Jesse Brandeburg4df10462009-03-13 22:15:31 +00001430 /*
1431 * Populate the IVAR table and set the ITR values to the
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001432 * corresponding register.
1433 */
1434 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00001435 q_vector = adapter->q_vector[v_idx];
Akinobu Mita984b3f52010-03-05 13:41:37 -08001436 /* XXX for_each_set_bit(...) */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001437 r_idx = find_first_bit(q_vector->rxr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001438 adapter->num_rx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001439
1440 for (i = 0; i < q_vector->rxr_count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001441 u8 reg_idx = adapter->rx_ring[r_idx]->reg_idx;
1442 ixgbe_set_ivar(adapter, 0, reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001443 r_idx = find_next_bit(q_vector->rxr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001444 adapter->num_rx_queues,
1445 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001446 }
1447 r_idx = find_first_bit(q_vector->txr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001448 adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001449
1450 for (i = 0; i < q_vector->txr_count; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08001451 u8 reg_idx = adapter->tx_ring[r_idx]->reg_idx;
1452 ixgbe_set_ivar(adapter, 1, reg_idx, v_idx);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001453 r_idx = find_next_bit(q_vector->txr_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00001454 adapter->num_tx_queues,
1455 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001456 }
1457
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001458 if (q_vector->txr_count && !q_vector->rxr_count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001459 /* tx only */
1460 q_vector->eitr = adapter->tx_eitr_param;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001461 else if (q_vector->rxr_count)
Nelson, Shannonf7554a22009-09-18 09:46:06 +00001462 /* rx or mixed */
1463 q_vector->eitr = adapter->rx_eitr_param;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001464
Alexander Duyckfe49f042009-06-04 16:00:09 +00001465 ixgbe_write_eitr(q_vector);
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00001466 /* If Flow Director is enabled, set interrupt affinity */
1467 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
1468 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
1469 /*
1470 * Allocate the affinity_hint cpumask, assign the mask
1471 * for this vector, and set our affinity_hint for
1472 * this irq.
1473 */
1474 if (!alloc_cpumask_var(&q_vector->affinity_mask,
1475 GFP_KERNEL))
1476 return;
1477 cpumask_set_cpu(v_idx, q_vector->affinity_mask);
1478 irq_set_affinity_hint(adapter->msix_entries[v_idx].vector,
1479 q_vector->affinity_mask);
1480 }
Auke Kok9a799d72007-09-15 14:07:45 -07001481 }
1482
Alexander Duyckbd508172010-11-16 19:27:03 -08001483 switch (adapter->hw.mac.type) {
1484 case ixgbe_mac_82598EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001485 ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX,
Joe Perchese8e9f692010-09-07 21:34:53 +00001486 v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001487 break;
1488 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001489 ixgbe_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyckbd508172010-11-16 19:27:03 -08001490 break;
1491
1492 default:
1493 break;
1494 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001495 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950);
Auke Kok9a799d72007-09-15 14:07:45 -07001496
Jesse Brandeburg41fb9242008-09-11 19:55:58 -07001497 /* set up to autoclear timer, and the vectors */
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001498 mask = IXGBE_EIMS_ENABLE_MASK;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001499 if (adapter->num_vfs)
1500 mask &= ~(IXGBE_EIMS_OTHER |
1501 IXGBE_EIMS_MAILBOX |
1502 IXGBE_EIMS_LSC);
1503 else
1504 mask &= ~(IXGBE_EIMS_OTHER | IXGBE_EIMS_LSC);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001505 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask);
Auke Kok9a799d72007-09-15 14:07:45 -07001506}
1507
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001508enum latency_range {
1509 lowest_latency = 0,
1510 low_latency = 1,
1511 bulk_latency = 2,
1512 latency_invalid = 255
1513};
1514
1515/**
1516 * ixgbe_update_itr - update the dynamic ITR value based on statistics
1517 * @adapter: pointer to adapter
1518 * @eitr: eitr setting (ints per sec) to give last timeslice
1519 * @itr_setting: current throttle rate in ints/second
1520 * @packets: the number of packets during this measurement interval
1521 * @bytes: the number of bytes during this measurement interval
1522 *
1523 * Stores a new ITR value based on packets and byte
1524 * counts during the last interrupt. The advantage of per interrupt
1525 * computation is faster updates and more accurate ITR for the current
1526 * traffic pattern. Constants in this function were computed
1527 * based on theoretical maximum wire speed and thresholds were set based
1528 * on testing data as well as attempting to minimize response time
1529 * while increasing bulk throughput.
1530 * this functionality is controlled by the InterruptThrottleRate module
1531 * parameter (see ixgbe_param.c)
1532 **/
1533static u8 ixgbe_update_itr(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001534 u32 eitr, u8 itr_setting,
1535 int packets, int bytes)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001536{
1537 unsigned int retval = itr_setting;
1538 u32 timepassed_us;
1539 u64 bytes_perint;
1540
1541 if (packets == 0)
1542 goto update_itr_done;
1543
1544
1545 /* simple throttlerate management
1546 * 0-20MB/s lowest (100000 ints/s)
1547 * 20-100MB/s low (20000 ints/s)
1548 * 100-1249MB/s bulk (8000 ints/s)
1549 */
1550 /* what was last interrupt timeslice? */
1551 timepassed_us = 1000000/eitr;
1552 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1553
1554 switch (itr_setting) {
1555 case lowest_latency:
1556 if (bytes_perint > adapter->eitr_low)
1557 retval = low_latency;
1558 break;
1559 case low_latency:
1560 if (bytes_perint > adapter->eitr_high)
1561 retval = bulk_latency;
1562 else if (bytes_perint <= adapter->eitr_low)
1563 retval = lowest_latency;
1564 break;
1565 case bulk_latency:
1566 if (bytes_perint <= adapter->eitr_high)
1567 retval = low_latency;
1568 break;
1569 }
1570
1571update_itr_done:
1572 return retval;
1573}
1574
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001575/**
1576 * ixgbe_write_eitr - write EITR register in hardware specific way
Alexander Duyckfe49f042009-06-04 16:00:09 +00001577 * @q_vector: structure containing interrupt and ring information
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001578 *
1579 * This function is made to be called by ethtool and by the driver
1580 * when it needs to update EITR registers at runtime. Hardware
1581 * specific quirks/differences are taken care of here.
1582 */
Alexander Duyckfe49f042009-06-04 16:00:09 +00001583void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector)
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001584{
Alexander Duyckfe49f042009-06-04 16:00:09 +00001585 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001586 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001587 int v_idx = q_vector->v_idx;
1588 u32 itr_reg = EITR_INTS_PER_SEC_TO_REG(q_vector->eitr);
1589
Alexander Duyckbd508172010-11-16 19:27:03 -08001590 switch (adapter->hw.mac.type) {
1591 case ixgbe_mac_82598EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001592 /* must write high and low 16 bits to reset counter */
1593 itr_reg |= (itr_reg << 16);
Alexander Duyckbd508172010-11-16 19:27:03 -08001594 break;
1595 case ixgbe_mac_82599EB:
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001596 /*
Jesse Brandeburgf8d1dca2010-04-27 01:37:20 +00001597 * 82599 can support a value of zero, so allow it for
1598 * max interrupt rate, but there is an errata where it can
1599 * not be zero with RSC
1600 */
1601 if (itr_reg == 8 &&
1602 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED))
1603 itr_reg = 0;
1604
1605 /*
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001606 * set the WDIS bit to not clear the timer bits and cause an
1607 * immediate assertion of the interrupt
1608 */
1609 itr_reg |= IXGBE_EITR_CNT_WDIS;
Alexander Duyckbd508172010-11-16 19:27:03 -08001610 break;
1611 default:
1612 break;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001613 }
1614 IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg);
1615}
1616
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001617static void ixgbe_set_itr_msix(struct ixgbe_q_vector *q_vector)
1618{
1619 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck125601b2010-11-16 19:27:08 -08001620 int i, r_idx;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001621 u32 new_itr;
1622 u8 current_itr, ret_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001623
1624 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
1625 for (i = 0; i < q_vector->txr_count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001626 struct ixgbe_ring *tx_ring = adapter->tx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001627 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001628 q_vector->tx_itr,
1629 tx_ring->total_packets,
1630 tx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001631 /* if the result for this queue would decrease interrupt
1632 * rate for this vector then use that result */
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001633 q_vector->tx_itr = ((q_vector->tx_itr > ret_itr) ?
Joe Perchese8e9f692010-09-07 21:34:53 +00001634 q_vector->tx_itr - 1 : ret_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001635 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001636 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001637 }
1638
1639 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
1640 for (i = 0; i < q_vector->rxr_count; i++) {
Alexander Duyck125601b2010-11-16 19:27:08 -08001641 struct ixgbe_ring *rx_ring = adapter->rx_ring[r_idx];
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001642 ret_itr = ixgbe_update_itr(adapter, q_vector->eitr,
Joe Perchese8e9f692010-09-07 21:34:53 +00001643 q_vector->rx_itr,
1644 rx_ring->total_packets,
1645 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001646 /* if the result for this queue would decrease interrupt
1647 * rate for this vector then use that result */
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001648 q_vector->rx_itr = ((q_vector->rx_itr > ret_itr) ?
Joe Perchese8e9f692010-09-07 21:34:53 +00001649 q_vector->rx_itr - 1 : ret_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001650 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001651 r_idx + 1);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001652 }
1653
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001654 current_itr = max(q_vector->rx_itr, q_vector->tx_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001655
1656 switch (current_itr) {
1657 /* counts and packets in update_itr are dependent on these numbers */
1658 case lowest_latency:
1659 new_itr = 100000;
1660 break;
1661 case low_latency:
1662 new_itr = 20000; /* aka hwitr = ~200 */
1663 break;
1664 case bulk_latency:
1665 default:
1666 new_itr = 8000;
1667 break;
1668 }
1669
1670 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00001671 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08001672 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00001673
1674 /* save the algorithm value here, not the smoothed one */
1675 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001676
1677 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001678 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08001679}
1680
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001681/**
1682 * ixgbe_check_overtemp_task - worker thread to check over tempurature
1683 * @work: pointer to work_struct containing our data
1684 **/
1685static void ixgbe_check_overtemp_task(struct work_struct *work)
1686{
1687 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00001688 struct ixgbe_adapter,
1689 check_overtemp_task);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001690 struct ixgbe_hw *hw = &adapter->hw;
1691 u32 eicr = adapter->interrupt_event;
1692
Joe Perches7ca647b2010-09-07 21:35:40 +00001693 if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE))
1694 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001695
Joe Perches7ca647b2010-09-07 21:35:40 +00001696 switch (hw->device_id) {
1697 case IXGBE_DEV_ID_82599_T3_LOM: {
1698 u32 autoneg;
1699 bool link_up = false;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001700
Joe Perches7ca647b2010-09-07 21:35:40 +00001701 if (hw->mac.ops.check_link)
1702 hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
1703
1704 if (((eicr & IXGBE_EICR_GPI_SDP0) && (!link_up)) ||
1705 (eicr & IXGBE_EICR_LSC))
1706 /* Check if this is due to overtemp */
1707 if (hw->phy.ops.check_overtemp(hw) == IXGBE_ERR_OVERTEMP)
1708 break;
1709 return;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001710 }
Joe Perches7ca647b2010-09-07 21:35:40 +00001711 default:
1712 if (!(eicr & IXGBE_EICR_GPI_SDP0))
1713 return;
1714 break;
1715 }
1716 e_crit(drv,
1717 "Network adapter has been stopped because it has over heated. "
1718 "Restart the computer. If the problem persists, "
1719 "power off the system and replace the adapter\n");
1720 /* write to clear the interrupt */
1721 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP0);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07001722}
1723
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001724static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr)
1725{
1726 struct ixgbe_hw *hw = &adapter->hw;
1727
1728 if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) &&
1729 (eicr & IXGBE_EICR_GPI_SDP1)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001730 e_crit(probe, "Fan has stopped, replace the adapter\n");
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07001731 /* write to clear the interrupt */
1732 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
1733 }
1734}
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001735
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001736static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
1737{
1738 struct ixgbe_hw *hw = &adapter->hw;
1739
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001740 if (eicr & IXGBE_EICR_GPI_SDP2) {
1741 /* Clear the interrupt */
1742 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2);
1743 if (!test_bit(__IXGBE_DOWN, &adapter->state))
1744 schedule_work(&adapter->sfp_config_module_task);
1745 }
1746
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001747 if (eicr & IXGBE_EICR_GPI_SDP1) {
1748 /* Clear the interrupt */
1749 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1);
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08001750 if (!test_bit(__IXGBE_DOWN, &adapter->state))
1751 schedule_work(&adapter->multispeed_fiber_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00001752 }
1753}
1754
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001755static void ixgbe_check_lsc(struct ixgbe_adapter *adapter)
1756{
1757 struct ixgbe_hw *hw = &adapter->hw;
1758
1759 adapter->lsc_int++;
1760 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
1761 adapter->link_check_timeout = jiffies;
1762 if (!test_bit(__IXGBE_DOWN, &adapter->state)) {
1763 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC);
Nelson, Shannon8a0717f2009-11-12 18:47:11 +00001764 IXGBE_WRITE_FLUSH(hw);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001765 schedule_work(&adapter->watchdog_task);
1766 }
1767}
1768
Auke Kok9a799d72007-09-15 14:07:45 -07001769static irqreturn_t ixgbe_msix_lsc(int irq, void *data)
1770{
1771 struct net_device *netdev = data;
1772 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1773 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore54037502009-02-21 15:42:56 -08001774 u32 eicr;
1775
1776 /*
1777 * Workaround for Silicon errata. Use clear-by-write instead
1778 * of clear-by-read. Reading with EICS will return the
1779 * interrupt causes without clearing, which later be done
1780 * with the write to EICR.
1781 */
1782 eicr = IXGBE_READ_REG(hw, IXGBE_EICS);
1783 IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr);
Auke Kok9a799d72007-09-15 14:07:45 -07001784
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07001785 if (eicr & IXGBE_EICR_LSC)
1786 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001787
Greg Rose1cdd1ec2010-01-09 02:26:46 +00001788 if (eicr & IXGBE_EICR_MAILBOX)
1789 ixgbe_msg_task(adapter);
1790
Alexander Duyckbd508172010-11-16 19:27:03 -08001791 switch (hw->mac.type) {
1792 case ixgbe_mac_82599EB:
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001793 /* Handle Flow Director Full threshold interrupt */
1794 if (eicr & IXGBE_EICR_FLOW_DIR) {
1795 int i;
1796 IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_FLOW_DIR);
1797 /* Disable transmits before FDIR Re-initialization */
1798 netif_tx_stop_all_queues(netdev);
1799 for (i = 0; i < adapter->num_tx_queues; i++) {
1800 struct ixgbe_ring *tx_ring =
Joe Perchese8e9f692010-09-07 21:34:53 +00001801 adapter->tx_ring[i];
Alexander Duyck7d637bc2010-11-16 19:26:56 -08001802 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE,
1803 &tx_ring->state))
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001804 schedule_work(&adapter->fdir_reinit_task);
1805 }
1806 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001807 ixgbe_check_sfp_event(adapter, eicr);
1808 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
1809 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
1810 adapter->interrupt_event = eicr;
1811 schedule_work(&adapter->check_overtemp_task);
1812 }
1813 break;
1814 default:
1815 break;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00001816 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001817
1818 ixgbe_check_fan_failure(adapter, eicr);
1819
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001820 if (!test_bit(__IXGBE_DOWN, &adapter->state))
1821 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_OTHER);
Auke Kok9a799d72007-09-15 14:07:45 -07001822
1823 return IRQ_HANDLED;
1824}
1825
Alexander Duyckfe49f042009-06-04 16:00:09 +00001826static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter,
1827 u64 qmask)
1828{
1829 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001830 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001831
Alexander Duyckbd508172010-11-16 19:27:03 -08001832 switch (hw->mac.type) {
1833 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001834 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001835 IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask);
1836 break;
1837 case ixgbe_mac_82599EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001838 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001839 if (mask)
1840 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001841 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001842 if (mask)
1843 IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask);
1844 break;
1845 default:
1846 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001847 }
1848 /* skip the flush */
1849}
1850
1851static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00001852 u64 qmask)
Alexander Duyckfe49f042009-06-04 16:00:09 +00001853{
1854 u32 mask;
Alexander Duyckbd508172010-11-16 19:27:03 -08001855 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001856
Alexander Duyckbd508172010-11-16 19:27:03 -08001857 switch (hw->mac.type) {
1858 case ixgbe_mac_82598EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001859 mask = (IXGBE_EIMS_RTX_QUEUE & qmask);
Alexander Duyckbd508172010-11-16 19:27:03 -08001860 IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask);
1861 break;
1862 case ixgbe_mac_82599EB:
Alexander Duyckfe49f042009-06-04 16:00:09 +00001863 mask = (qmask & 0xFFFFFFFF);
Alexander Duyckbd508172010-11-16 19:27:03 -08001864 if (mask)
1865 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask);
Alexander Duyckfe49f042009-06-04 16:00:09 +00001866 mask = (qmask >> 32);
Alexander Duyckbd508172010-11-16 19:27:03 -08001867 if (mask)
1868 IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask);
1869 break;
1870 default:
1871 break;
Alexander Duyckfe49f042009-06-04 16:00:09 +00001872 }
1873 /* skip the flush */
1874}
1875
Auke Kok9a799d72007-09-15 14:07:45 -07001876static irqreturn_t ixgbe_msix_clean_tx(int irq, void *data)
1877{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001878 struct ixgbe_q_vector *q_vector = data;
1879 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001880 struct ixgbe_ring *tx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001881 int i, r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07001882
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001883 if (!q_vector->txr_count)
1884 return IRQ_HANDLED;
1885
1886 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
1887 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001888 tx_ring = adapter->tx_ring[r_idx];
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001889 tx_ring->total_bytes = 0;
1890 tx_ring->total_packets = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001891 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001892 r_idx + 1);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001893 }
1894
Jesse Brandeburg9b471442009-12-03 11:33:54 +00001895 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00001896 napi_schedule(&q_vector->napi);
1897
Auke Kok9a799d72007-09-15 14:07:45 -07001898 return IRQ_HANDLED;
1899}
1900
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001901/**
1902 * ixgbe_msix_clean_rx - single unshared vector rx clean (all queues)
1903 * @irq: unused
1904 * @data: pointer to our q_vector struct for this interrupt vector
1905 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001906static irqreturn_t ixgbe_msix_clean_rx(int irq, void *data)
1907{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001908 struct ixgbe_q_vector *q_vector = data;
1909 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07001910 struct ixgbe_ring *rx_ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001911 int r_idx;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001912 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07001913
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001914#ifdef CONFIG_IXGBE_DCA
1915 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
1916 ixgbe_update_dca(q_vector);
1917#endif
1918
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001919 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001920 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001921 rx_ring = adapter->rx_ring[r_idx];
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001922 rx_ring->total_bytes = 0;
1923 rx_ring->total_packets = 0;
1924 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001925 r_idx + 1);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07001926 }
1927
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001928 if (!q_vector->rxr_count)
1929 return IRQ_HANDLED;
1930
Jesse Brandeburg9b471442009-12-03 11:33:54 +00001931 /* EIAM disabled interrupts (on this vector) for us */
Ben Hutchings288379f2009-01-19 16:43:59 -08001932 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001933
Auke Kok9a799d72007-09-15 14:07:45 -07001934 return IRQ_HANDLED;
1935}
1936
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001937static irqreturn_t ixgbe_msix_clean_many(int irq, void *data)
1938{
Alexander Duyck91281fd2009-06-04 16:00:27 +00001939 struct ixgbe_q_vector *q_vector = data;
1940 struct ixgbe_adapter *adapter = q_vector->adapter;
1941 struct ixgbe_ring *ring;
1942 int r_idx;
1943 int i;
1944
1945 if (!q_vector->txr_count && !q_vector->rxr_count)
1946 return IRQ_HANDLED;
1947
1948 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
1949 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001950 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00001951 ring->total_bytes = 0;
1952 ring->total_packets = 0;
1953 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001954 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00001955 }
1956
1957 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
1958 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001959 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00001960 ring->total_bytes = 0;
1961 ring->total_packets = 0;
1962 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00001963 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00001964 }
1965
Jesse Brandeburg9b471442009-12-03 11:33:54 +00001966 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyck91281fd2009-06-04 16:00:27 +00001967 napi_schedule(&q_vector->napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001968
1969 return IRQ_HANDLED;
1970}
1971
1972/**
1973 * ixgbe_clean_rxonly - msix (aka one shot) rx clean routine
1974 * @napi: napi struct with our devices info in it
1975 * @budget: amount of work driver is allowed to do this pass, in packets
1976 *
Jesse Brandeburgf0848272008-09-11 19:59:42 -07001977 * This function is optimized for cleaning one queue only on a single
1978 * q_vector!!!
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001979 **/
Auke Kok9a799d72007-09-15 14:07:45 -07001980static int ixgbe_clean_rxonly(struct napi_struct *napi, int budget)
1981{
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001982 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00001983 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001984 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07001985 struct ixgbe_ring *rx_ring = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001986 int work_done = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001987 long r_idx;
Auke Kok9a799d72007-09-15 14:07:45 -07001988
Jeff Garzik5dd2d332008-10-16 05:09:31 -04001989#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001990 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001991 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08001992#endif
Auke Kok9a799d72007-09-15 14:07:45 -07001993
Alexander Duyck33cf09c2010-11-16 19:26:55 -08001994 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
1995 rx_ring = adapter->rx_ring[r_idx];
1996
Herbert Xu78b6f4c2009-01-18 21:49:45 -08001997 ixgbe_clean_rx_irq(q_vector, rx_ring, &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07001998
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08001999 /* If all Rx work done, exit the polling mode */
2000 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002001 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002002 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002003 ixgbe_set_itr_msix(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002004 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002005 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002006 ((u64)1 << q_vector->v_idx));
Auke Kok9a799d72007-09-15 14:07:45 -07002007 }
2008
2009 return work_done;
2010}
2011
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002012/**
Alexander Duyck91281fd2009-06-04 16:00:27 +00002013 * ixgbe_clean_rxtx_many - msix (aka one shot) rx clean routine
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002014 * @napi: napi struct with our devices info in it
2015 * @budget: amount of work driver is allowed to do this pass, in packets
2016 *
2017 * This function will clean more than one rx queue associated with a
2018 * q_vector.
2019 **/
Alexander Duyck91281fd2009-06-04 16:00:27 +00002020static int ixgbe_clean_rxtx_many(struct napi_struct *napi, int budget)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002021{
2022 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002023 container_of(napi, struct ixgbe_q_vector, napi);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002024 struct ixgbe_adapter *adapter = q_vector->adapter;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002025 struct ixgbe_ring *ring = NULL;
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002026 int work_done = 0, i;
2027 long r_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00002028 bool tx_clean_complete = true;
2029
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002030#ifdef CONFIG_IXGBE_DCA
2031 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
2032 ixgbe_update_dca(q_vector);
2033#endif
2034
Alexander Duyck91281fd2009-06-04 16:00:27 +00002035 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2036 for (i = 0; i < q_vector->txr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002037 ring = adapter->tx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002038 tx_clean_complete &= ixgbe_clean_tx_irq(q_vector, ring);
2039 r_idx = find_next_bit(q_vector->txr_idx, adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002040 r_idx + 1);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002041 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002042
2043 /* attempt to distribute budget to each queue fairly, but don't allow
2044 * the budget to go below 1 because we'll exit polling */
2045 budget /= (q_vector->rxr_count ?: 1);
2046 budget = max(budget, 1);
2047 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
2048 for (i = 0; i < q_vector->rxr_count; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002049 ring = adapter->rx_ring[r_idx];
Alexander Duyck91281fd2009-06-04 16:00:27 +00002050 ixgbe_clean_rx_irq(q_vector, ring, &work_done, budget);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002051 r_idx = find_next_bit(q_vector->rxr_idx, adapter->num_rx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00002052 r_idx + 1);
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002053 }
2054
2055 r_idx = find_first_bit(q_vector->rxr_idx, adapter->num_rx_queues);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002056 ring = adapter->rx_ring[r_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002057 /* If all Rx work done, exit the polling mode */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07002058 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08002059 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002060 if (adapter->rx_itr_setting & 1)
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002061 ixgbe_set_itr_msix(q_vector);
2062 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Alexander Duyckfe49f042009-06-04 16:00:09 +00002063 ixgbe_irq_enable_queues(adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002064 ((u64)1 << q_vector->v_idx));
Jesse Brandeburgf0848272008-09-11 19:59:42 -07002065 return 0;
2066 }
2067
2068 return work_done;
2069}
Alexander Duyck91281fd2009-06-04 16:00:27 +00002070
2071/**
2072 * ixgbe_clean_txonly - msix (aka one shot) tx clean routine
2073 * @napi: napi struct with our devices info in it
2074 * @budget: amount of work driver is allowed to do this pass, in packets
2075 *
2076 * This function is optimized for cleaning one queue only on a single
2077 * q_vector!!!
2078 **/
2079static int ixgbe_clean_txonly(struct napi_struct *napi, int budget)
2080{
2081 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00002082 container_of(napi, struct ixgbe_q_vector, napi);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002083 struct ixgbe_adapter *adapter = q_vector->adapter;
2084 struct ixgbe_ring *tx_ring = NULL;
2085 int work_done = 0;
2086 long r_idx;
2087
Alexander Duyck91281fd2009-06-04 16:00:27 +00002088#ifdef CONFIG_IXGBE_DCA
2089 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002090 ixgbe_update_dca(q_vector);
Alexander Duyck91281fd2009-06-04 16:00:27 +00002091#endif
2092
Alexander Duyck33cf09c2010-11-16 19:26:55 -08002093 r_idx = find_first_bit(q_vector->txr_idx, adapter->num_tx_queues);
2094 tx_ring = adapter->tx_ring[r_idx];
2095
Alexander Duyck91281fd2009-06-04 16:00:27 +00002096 if (!ixgbe_clean_tx_irq(q_vector, tx_ring))
2097 work_done = budget;
2098
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002099 /* If all Tx work done, exit the polling mode */
Alexander Duyck91281fd2009-06-04 16:00:27 +00002100 if (work_done < budget) {
2101 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002102 if (adapter->tx_itr_setting & 1)
Alexander Duyck91281fd2009-06-04 16:00:27 +00002103 ixgbe_set_itr_msix(q_vector);
2104 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Joe Perchese8e9f692010-09-07 21:34:53 +00002105 ixgbe_irq_enable_queues(adapter,
2106 ((u64)1 << q_vector->v_idx));
Alexander Duyck91281fd2009-06-04 16:00:27 +00002107 }
2108
2109 return work_done;
2110}
2111
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002112static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002113 int r_idx)
Auke Kok9a799d72007-09-15 14:07:45 -07002114{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002115 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
2116
2117 set_bit(r_idx, q_vector->rxr_idx);
2118 q_vector->rxr_count++;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002119}
Auke Kok9a799d72007-09-15 14:07:45 -07002120
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002121static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Joe Perchese8e9f692010-09-07 21:34:53 +00002122 int t_idx)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002123{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002124 struct ixgbe_q_vector *q_vector = a->q_vector[v_idx];
2125
2126 set_bit(t_idx, q_vector->txr_idx);
2127 q_vector->txr_count++;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002128}
Auke Kok9a799d72007-09-15 14:07:45 -07002129
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002130/**
2131 * ixgbe_map_rings_to_vectors - Maps descriptor rings to vectors
2132 * @adapter: board private structure to initialize
2133 * @vectors: allotted vector count for descriptor rings
2134 *
2135 * This function maps descriptor rings to the queue-specific vectors
2136 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2137 * one vector per ring/queue, but on a constrained vector budget, we
2138 * group the rings as "efficiently" as possible. You would add new
2139 * mapping configurations in here.
2140 **/
2141static int ixgbe_map_rings_to_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002142 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002143{
2144 int v_start = 0;
2145 int rxr_idx = 0, txr_idx = 0;
2146 int rxr_remaining = adapter->num_rx_queues;
2147 int txr_remaining = adapter->num_tx_queues;
2148 int i, j;
2149 int rqpv, tqpv;
2150 int err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07002151
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002152 /* No mapping required if MSI-X is disabled. */
2153 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
Auke Kok9a799d72007-09-15 14:07:45 -07002154 goto out;
2155
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002156 /*
2157 * The ideal configuration...
2158 * We have enough vectors to map one per queue.
2159 */
2160 if (vectors == adapter->num_rx_queues + adapter->num_tx_queues) {
2161 for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
2162 map_vector_to_rxq(adapter, v_start, rxr_idx);
2163
2164 for (; txr_idx < txr_remaining; v_start++, txr_idx++)
2165 map_vector_to_txq(adapter, v_start, txr_idx);
2166
2167 goto out;
2168 }
2169
2170 /*
2171 * If we don't have enough vectors for a 1-to-1
2172 * mapping, we'll have to group them so there are
2173 * multiple queues per vector.
2174 */
2175 /* Re-adjusting *qpv takes care of the remainder. */
2176 for (i = v_start; i < vectors; i++) {
2177 rqpv = DIV_ROUND_UP(rxr_remaining, vectors - i);
2178 for (j = 0; j < rqpv; j++) {
2179 map_vector_to_rxq(adapter, i, rxr_idx);
2180 rxr_idx++;
2181 rxr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002182 }
Auke Kok9a799d72007-09-15 14:07:45 -07002183 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002184 for (i = v_start; i < vectors; i++) {
2185 tqpv = DIV_ROUND_UP(txr_remaining, vectors - i);
2186 for (j = 0; j < tqpv; j++) {
2187 map_vector_to_txq(adapter, i, txr_idx);
2188 txr_idx++;
2189 txr_remaining--;
Auke Kok9a799d72007-09-15 14:07:45 -07002190 }
Auke Kok9a799d72007-09-15 14:07:45 -07002191 }
2192
Auke Kok9a799d72007-09-15 14:07:45 -07002193out:
Auke Kok9a799d72007-09-15 14:07:45 -07002194 return err;
2195}
2196
2197/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002198 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2199 * @adapter: board private structure
2200 *
2201 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2202 * interrupts from the kernel.
2203 **/
2204static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter)
2205{
2206 struct net_device *netdev = adapter->netdev;
2207 irqreturn_t (*handler)(int, void *);
2208 int i, vector, q_vectors, err;
Joe Perchese8e9f692010-09-07 21:34:53 +00002209 int ri = 0, ti = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002210
2211 /* Decrement for Other and TCP Timer vectors */
2212 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2213
2214 /* Map the Tx/Rx rings to the vectors we were allotted. */
2215 err = ixgbe_map_rings_to_vectors(adapter, q_vectors);
2216 if (err)
2217 goto out;
2218
2219#define SET_HANDLER(_v) ((!(_v)->rxr_count) ? &ixgbe_msix_clean_tx : \
Joe Perchese8e9f692010-09-07 21:34:53 +00002220 (!(_v)->txr_count) ? &ixgbe_msix_clean_rx : \
2221 &ixgbe_msix_clean_many)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002222 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002223 handler = SET_HANDLER(adapter->q_vector[vector]);
Robert Olssoncb13fc22008-11-25 16:43:52 -08002224
Joe Perchese8e9f692010-09-07 21:34:53 +00002225 if (handler == &ixgbe_msix_clean_rx) {
Robert Olssoncb13fc22008-11-25 16:43:52 -08002226 sprintf(adapter->name[vector], "%s-%s-%d",
2227 netdev->name, "rx", ri++);
Joe Perchese8e9f692010-09-07 21:34:53 +00002228 } else if (handler == &ixgbe_msix_clean_tx) {
Robert Olssoncb13fc22008-11-25 16:43:52 -08002229 sprintf(adapter->name[vector], "%s-%s-%d",
2230 netdev->name, "tx", ti++);
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002231 } else {
Robert Olssoncb13fc22008-11-25 16:43:52 -08002232 sprintf(adapter->name[vector], "%s-%s-%d",
Alexander Duyck32aa77a2010-11-16 19:26:59 -08002233 netdev->name, "TxRx", ri++);
2234 ti++;
2235 }
Robert Olssoncb13fc22008-11-25 16:43:52 -08002236
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002237 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002238 handler, 0, adapter->name[vector],
2239 adapter->q_vector[vector]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002240 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002241 e_err(probe, "request_irq failed for MSIX interrupt "
Emil Tantilov849c4542010-06-03 16:53:41 +00002242 "Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002243 goto free_queue_irqs;
2244 }
2245 }
2246
2247 sprintf(adapter->name[vector], "%s:lsc", netdev->name);
2248 err = request_irq(adapter->msix_entries[vector].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002249 ixgbe_msix_lsc, 0, adapter->name[vector], netdev);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002250 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002251 e_err(probe, "request_irq for msix_lsc failed: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002252 goto free_queue_irqs;
2253 }
2254
2255 return 0;
2256
2257free_queue_irqs:
2258 for (i = vector - 1; i >= 0; i--)
2259 free_irq(adapter->msix_entries[--vector].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002260 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002261 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
2262 pci_disable_msix(adapter->pdev);
2263 kfree(adapter->msix_entries);
2264 adapter->msix_entries = NULL;
2265out:
2266 return err;
2267}
2268
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002269static void ixgbe_set_itr(struct ixgbe_adapter *adapter)
2270{
Alexander Duyck7a921c92009-05-06 10:43:28 +00002271 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002272 struct ixgbe_ring *rx_ring = adapter->rx_ring[0];
2273 struct ixgbe_ring *tx_ring = adapter->tx_ring[0];
Alexander Duyck125601b2010-11-16 19:27:08 -08002274 u32 new_itr = q_vector->eitr;
2275 u8 current_itr;
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002276
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002277 q_vector->tx_itr = ixgbe_update_itr(adapter, new_itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002278 q_vector->tx_itr,
2279 tx_ring->total_packets,
2280 tx_ring->total_bytes);
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002281 q_vector->rx_itr = ixgbe_update_itr(adapter, new_itr,
Joe Perchese8e9f692010-09-07 21:34:53 +00002282 q_vector->rx_itr,
2283 rx_ring->total_packets,
2284 rx_ring->total_bytes);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002285
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002286 current_itr = max(q_vector->rx_itr, q_vector->tx_itr);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002287
2288 switch (current_itr) {
2289 /* counts and packets in update_itr are dependent on these numbers */
2290 case lowest_latency:
2291 new_itr = 100000;
2292 break;
2293 case low_latency:
2294 new_itr = 20000; /* aka hwitr = ~200 */
2295 break;
2296 case bulk_latency:
2297 new_itr = 8000;
2298 break;
2299 default:
2300 break;
2301 }
2302
2303 if (new_itr != q_vector->eitr) {
Alexander Duyckfe49f042009-06-04 16:00:09 +00002304 /* do an exponential smoothing */
Alexander Duyck125601b2010-11-16 19:27:08 -08002305 new_itr = ((q_vector->eitr * 9) + new_itr)/10;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002306
Alexander Duyck125601b2010-11-16 19:27:08 -08002307 /* save the algorithm value here */
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002308 q_vector->eitr = new_itr;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002309
2310 ixgbe_write_eitr(q_vector);
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002311 }
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08002312}
2313
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002314/**
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002315 * ixgbe_irq_enable - Enable default interrupt generation settings
2316 * @adapter: board private structure
2317 **/
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002318static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues,
2319 bool flush)
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002320{
2321 u32 mask;
Nelson, Shannon835462f2009-04-27 22:42:54 +00002322
2323 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07002324 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
2325 mask |= IXGBE_EIMS_GPI_SDP0;
David S. Miller6ab33d52008-11-20 16:44:00 -08002326 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
2327 mask |= IXGBE_EIMS_GPI_SDP1;
Alexander Duyckbd508172010-11-16 19:27:03 -08002328 switch (adapter->hw.mac.type) {
2329 case ixgbe_mac_82599EB:
Jesse Brandeburg2a41ff82009-03-13 22:14:30 +00002330 mask |= IXGBE_EIMS_ECC;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002331 mask |= IXGBE_EIMS_GPI_SDP1;
2332 mask |= IXGBE_EIMS_GPI_SDP2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002333 if (adapter->num_vfs)
2334 mask |= IXGBE_EIMS_MAILBOX;
Alexander Duyckbd508172010-11-16 19:27:03 -08002335 break;
2336 default:
2337 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002338 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00002339 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
2340 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
2341 mask |= IXGBE_EIMS_FLOW_DIR;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002342
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002343 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002344 if (queues)
2345 ixgbe_irq_enable_queues(adapter, ~0);
2346 if (flush)
2347 IXGBE_WRITE_FLUSH(&adapter->hw);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002348
2349 if (adapter->num_vfs > 32) {
2350 u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1;
2351 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel);
2352 }
Alexey Dobriyan79aefa42008-11-19 14:17:02 -08002353}
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002354
2355/**
2356 * ixgbe_intr - legacy mode Interrupt Handler
Auke Kok9a799d72007-09-15 14:07:45 -07002357 * @irq: interrupt number
2358 * @data: pointer to a network interface device structure
Auke Kok9a799d72007-09-15 14:07:45 -07002359 **/
2360static irqreturn_t ixgbe_intr(int irq, void *data)
2361{
2362 struct net_device *netdev = data;
2363 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2364 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7a921c92009-05-06 10:43:28 +00002365 struct ixgbe_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9a799d72007-09-15 14:07:45 -07002366 u32 eicr;
2367
Don Skidmore54037502009-02-21 15:42:56 -08002368 /*
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002369 * Workaround for silicon errata on 82598. Mask the interrupts
Don Skidmore54037502009-02-21 15:42:56 -08002370 * before the read of EICR.
2371 */
2372 IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK);
2373
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002374 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
2375 * therefore no explict interrupt disable is necessary */
2376 eicr = IXGBE_READ_REG(hw, IXGBE_EICR);
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002377 if (!eicr) {
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002378 /*
2379 * shared interrupt alert!
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002380 * make sure interrupts are enabled because the read will
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002381 * have disabled interrupts due to EIAM
2382 * finish the workaround of silicon errata on 82598. Unmask
2383 * the interrupt that we masked before the EICR read.
2384 */
2385 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2386 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07002387 return IRQ_NONE; /* Not our interrupt */
Jesse Brandeburgf47cf662008-09-11 19:56:14 -07002388 }
Auke Kok9a799d72007-09-15 14:07:45 -07002389
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07002390 if (eicr & IXGBE_EICR_LSC)
2391 ixgbe_check_lsc(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002392
Alexander Duyckbd508172010-11-16 19:27:03 -08002393 switch (hw->mac.type) {
2394 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002395 ixgbe_check_sfp_event(adapter, eicr);
Alexander Duyckbd508172010-11-16 19:27:03 -08002396 if ((adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) &&
2397 ((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC))) {
2398 adapter->interrupt_event = eicr;
2399 schedule_work(&adapter->check_overtemp_task);
2400 }
2401 break;
2402 default:
2403 break;
2404 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002405
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07002406 ixgbe_check_fan_failure(adapter, eicr);
2407
Alexander Duyck7a921c92009-05-06 10:43:28 +00002408 if (napi_schedule_prep(&(q_vector->napi))) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00002409 adapter->tx_ring[0]->total_packets = 0;
2410 adapter->tx_ring[0]->total_bytes = 0;
2411 adapter->rx_ring[0]->total_packets = 0;
2412 adapter->rx_ring[0]->total_bytes = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002413 /* would disable interrupts here but EIAM disabled it */
Alexander Duyck7a921c92009-05-06 10:43:28 +00002414 __napi_schedule(&(q_vector->napi));
Auke Kok9a799d72007-09-15 14:07:45 -07002415 }
2416
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00002417 /*
2418 * re-enable link(maybe) and non-queue interrupts, no flush.
2419 * ixgbe_poll will re-enable the queue interrupts
2420 */
2421
2422 if (!test_bit(__IXGBE_DOWN, &adapter->state))
2423 ixgbe_irq_enable(adapter, false, false);
2424
Auke Kok9a799d72007-09-15 14:07:45 -07002425 return IRQ_HANDLED;
2426}
2427
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002428static inline void ixgbe_reset_q_vectors(struct ixgbe_adapter *adapter)
2429{
2430 int i, q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2431
2432 for (i = 0; i < q_vectors; i++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00002433 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002434 bitmap_zero(q_vector->rxr_idx, MAX_RX_QUEUES);
2435 bitmap_zero(q_vector->txr_idx, MAX_TX_QUEUES);
2436 q_vector->rxr_count = 0;
2437 q_vector->txr_count = 0;
2438 }
2439}
2440
Auke Kok9a799d72007-09-15 14:07:45 -07002441/**
2442 * ixgbe_request_irq - initialize interrupts
2443 * @adapter: board private structure
2444 *
2445 * Attempts to configure interrupts using the best available
2446 * capabilities of the hardware and kernel.
2447 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002448static int ixgbe_request_irq(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07002449{
2450 struct net_device *netdev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002451 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07002452
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002453 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2454 err = ixgbe_request_msix_irqs(adapter);
2455 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002456 err = request_irq(adapter->pdev->irq, ixgbe_intr, 0,
Joe Perchese8e9f692010-09-07 21:34:53 +00002457 netdev->name, netdev);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002458 } else {
Joe Perchesa0607fd2009-11-18 23:29:17 -08002459 err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED,
Joe Perchese8e9f692010-09-07 21:34:53 +00002460 netdev->name, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002461 }
2462
Auke Kok9a799d72007-09-15 14:07:45 -07002463 if (err)
Emil Tantilov396e7992010-07-01 20:05:12 +00002464 e_err(probe, "request_irq failed, Error %d\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07002465
Auke Kok9a799d72007-09-15 14:07:45 -07002466 return err;
2467}
2468
2469static void ixgbe_free_irq(struct ixgbe_adapter *adapter)
2470{
2471 struct net_device *netdev = adapter->netdev;
2472
2473 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002474 int i, q_vectors;
Auke Kok9a799d72007-09-15 14:07:45 -07002475
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002476 q_vectors = adapter->num_msix_vectors;
2477
2478 i = q_vectors - 1;
Auke Kok9a799d72007-09-15 14:07:45 -07002479 free_irq(adapter->msix_entries[i].vector, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002480
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002481 i--;
2482 for (; i >= 0; i--) {
2483 free_irq(adapter->msix_entries[i].vector,
Joe Perchese8e9f692010-09-07 21:34:53 +00002484 adapter->q_vector[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002485 }
2486
2487 ixgbe_reset_q_vectors(adapter);
2488 } else {
2489 free_irq(adapter->pdev->irq, netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07002490 }
2491}
2492
2493/**
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002494 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2495 * @adapter: board private structure
2496 **/
2497static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter)
2498{
Alexander Duyckbd508172010-11-16 19:27:03 -08002499 switch (adapter->hw.mac.type) {
2500 case ixgbe_mac_82598EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002501 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002502 break;
2503 case ixgbe_mac_82599EB:
Nelson, Shannon835462f2009-04-27 22:42:54 +00002504 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000);
2505 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0);
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002506 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002507 if (adapter->num_vfs > 32)
2508 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0);
Alexander Duyckbd508172010-11-16 19:27:03 -08002509 break;
2510 default:
2511 break;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002512 }
2513 IXGBE_WRITE_FLUSH(&adapter->hw);
2514 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2515 int i;
2516 for (i = 0; i < adapter->num_msix_vectors; i++)
2517 synchronize_irq(adapter->msix_entries[i].vector);
2518 } else {
2519 synchronize_irq(adapter->pdev->irq);
2520 }
2521}
2522
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00002523/**
Auke Kok9a799d72007-09-15 14:07:45 -07002524 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2525 *
2526 **/
2527static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter)
2528{
Auke Kok9a799d72007-09-15 14:07:45 -07002529 struct ixgbe_hw *hw = &adapter->hw;
2530
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002531 IXGBE_WRITE_REG(hw, IXGBE_EITR(0),
Joe Perchese8e9f692010-09-07 21:34:53 +00002532 EITR_INTS_PER_SEC_TO_REG(adapter->rx_eitr_param));
Auke Kok9a799d72007-09-15 14:07:45 -07002533
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002534 ixgbe_set_ivar(adapter, 0, 0, 0);
2535 ixgbe_set_ivar(adapter, 1, 0, 0);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08002536
2537 map_vector_to_rxq(adapter, 0, 0);
2538 map_vector_to_txq(adapter, 0, 0);
2539
Emil Tantilov396e7992010-07-01 20:05:12 +00002540 e_info(hw, "Legacy interrupt IVAR setup done\n");
Auke Kok9a799d72007-09-15 14:07:45 -07002541}
2542
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002543/**
2544 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2545 * @adapter: board private structure
2546 * @ring: structure containing ring specific data
2547 *
2548 * Configure the Tx descriptor ring after a reset.
2549 **/
Alexander Duyck84418e32010-08-19 13:40:54 +00002550void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter,
2551 struct ixgbe_ring *ring)
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002552{
2553 struct ixgbe_hw *hw = &adapter->hw;
2554 u64 tdba = ring->dma;
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002555 int wait_loop = 10;
2556 u32 txdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002557 u8 reg_idx = ring->reg_idx;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002558
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002559 /* disable queue to avoid issues while updating state */
2560 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2561 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx),
2562 txdctl & ~IXGBE_TXDCTL_ENABLE);
2563 IXGBE_WRITE_FLUSH(hw);
2564
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002565 IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00002566 (tdba & DMA_BIT_MASK(32)));
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002567 IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32));
2568 IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx),
2569 ring->count * sizeof(union ixgbe_adv_tx_desc));
2570 IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0);
2571 IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002572 ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002573
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002574 /* configure fetching thresholds */
2575 if (adapter->rx_itr_setting == 0) {
2576 /* cannot set wthresh when itr==0 */
2577 txdctl &= ~0x007F0000;
2578 } else {
2579 /* enable WTHRESH=8 descriptors, to encourage burst writeback */
2580 txdctl |= (8 << 16);
2581 }
2582 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
2583 /* PThresh workaround for Tx hang with DFP enabled. */
2584 txdctl |= 32;
2585 }
2586
2587 /* reinitialize flowdirector state */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08002588 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) &&
2589 adapter->atr_sample_rate) {
2590 ring->atr_sample_rate = adapter->atr_sample_rate;
2591 ring->atr_count = 0;
2592 set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state);
2593 } else {
2594 ring->atr_sample_rate = 0;
2595 }
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002596
2597 /* enable queue */
2598 txdctl |= IXGBE_TXDCTL_ENABLE;
2599 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl);
2600
2601 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2602 if (hw->mac.type == ixgbe_mac_82598EB &&
2603 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2604 return;
2605
2606 /* poll to verify queue is enabled */
2607 do {
2608 msleep(1);
2609 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
2610 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
2611 if (!wait_loop)
2612 e_err(drv, "Could not enable Tx Queue %d\n", reg_idx);
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002613}
2614
Alexander Duyck120ff942010-08-19 13:34:50 +00002615static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter)
2616{
2617 struct ixgbe_hw *hw = &adapter->hw;
2618 u32 rttdcs;
2619 u32 mask;
2620
2621 if (hw->mac.type == ixgbe_mac_82598EB)
2622 return;
2623
2624 /* disable the arbiter while setting MTQC */
2625 rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
2626 rttdcs |= IXGBE_RTTDCS_ARBDIS;
2627 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2628
2629 /* set transmit pool layout */
2630 mask = (IXGBE_FLAG_SRIOV_ENABLED | IXGBE_FLAG_DCB_ENABLED);
2631 switch (adapter->flags & mask) {
2632
2633 case (IXGBE_FLAG_SRIOV_ENABLED):
2634 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2635 (IXGBE_MTQC_VT_ENA | IXGBE_MTQC_64VF));
2636 break;
2637
2638 case (IXGBE_FLAG_DCB_ENABLED):
2639 /* We enable 8 traffic classes, DCB only */
2640 IXGBE_WRITE_REG(hw, IXGBE_MTQC,
2641 (IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ));
2642 break;
2643
2644 default:
2645 IXGBE_WRITE_REG(hw, IXGBE_MTQC, IXGBE_MTQC_64Q_1PB);
2646 break;
2647 }
2648
2649 /* re-enable the arbiter */
2650 rttdcs &= ~IXGBE_RTTDCS_ARBDIS;
2651 IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs);
2652}
2653
Auke Kok9a799d72007-09-15 14:07:45 -07002654/**
Jesse Brandeburg3a581072008-08-26 04:27:08 -07002655 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
Auke Kok9a799d72007-09-15 14:07:45 -07002656 * @adapter: board private structure
2657 *
2658 * Configure the Tx unit of the MAC after a reset.
2659 **/
2660static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
2661{
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002662 struct ixgbe_hw *hw = &adapter->hw;
2663 u32 dmatxctl;
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002664 u32 i;
Auke Kok9a799d72007-09-15 14:07:45 -07002665
Alexander Duyck2f1860b2010-08-19 13:39:43 +00002666 ixgbe_setup_mtqc(adapter);
2667
2668 if (hw->mac.type != ixgbe_mac_82598EB) {
2669 /* DMATXCTL.EN must be before Tx queues are enabled */
2670 dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
2671 dmatxctl |= IXGBE_DMATXCTL_TE;
2672 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
2673 }
2674
Auke Kok9a799d72007-09-15 14:07:45 -07002675 /* Setup the HW Tx Head and Tail descriptor pointers */
Alexander Duyck43e69bf2010-08-19 13:35:12 +00002676 for (i = 0; i < adapter->num_tx_queues; i++)
2677 ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07002678}
2679
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002680#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
Auke Kok9a799d72007-09-15 14:07:45 -07002681
Yi Zoua6616b42009-08-06 13:05:23 +00002682static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00002683 struct ixgbe_ring *rx_ring)
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002684{
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002685 u32 srrctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002686 u8 reg_idx = rx_ring->reg_idx;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002687
Alexander Duyckbd508172010-11-16 19:27:03 -08002688 switch (adapter->hw.mac.type) {
2689 case ixgbe_mac_82598EB: {
2690 struct ixgbe_ring_feature *feature = adapter->ring_feature;
2691 const int mask = feature[RING_F_RSS].mask;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002692 reg_idx = reg_idx & mask;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002693 }
Alexander Duyckbd508172010-11-16 19:27:03 -08002694 break;
2695 case ixgbe_mac_82599EB:
2696 default:
2697 break;
2698 }
2699
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002700 srrctl = IXGBE_READ_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx));
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002701
2702 srrctl &= ~IXGBE_SRRCTL_BSIZEHDR_MASK;
2703 srrctl &= ~IXGBE_SRRCTL_BSIZEPKT_MASK;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002704 if (adapter->num_vfs)
2705 srrctl |= IXGBE_SRRCTL_DROP_EN;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002706
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002707 srrctl |= (IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT) &
2708 IXGBE_SRRCTL_BSIZEHDR_MASK;
2709
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002710 if (ring_is_ps_enabled(rx_ring)) {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002711#if (PAGE_SIZE / 2) > IXGBE_MAX_RXBUFFER
2712 srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2713#else
2714 srrctl |= (PAGE_SIZE / 2) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
2715#endif
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002716 srrctl |= IXGBE_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002717 } else {
Alexander Duyckafafd5b2009-05-07 10:38:56 +00002718 srrctl |= ALIGN(rx_ring->rx_buf_len, 1024) >>
2719 IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002720 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002721 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00002722
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002723 IXGBE_WRITE_REG(&adapter->hw, IXGBE_SRRCTL(reg_idx), srrctl);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07002724}
2725
Alexander Duyck05abb122010-08-19 13:35:41 +00002726static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter)
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002727{
Alexander Duyck05abb122010-08-19 13:35:41 +00002728 struct ixgbe_hw *hw = &adapter->hw;
2729 static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
Joe Perchese8e9f692010-09-07 21:34:53 +00002730 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
2731 0x6A3E67EA, 0x14364D17, 0x3BED200D};
Alexander Duyck05abb122010-08-19 13:35:41 +00002732 u32 mrqc = 0, reta = 0;
2733 u32 rxcsum;
2734 int i, j;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002735 int mask;
2736
Alexander Duyck05abb122010-08-19 13:35:41 +00002737 /* Fill out hash function seeds */
2738 for (i = 0; i < 10; i++)
2739 IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002740
Alexander Duyck05abb122010-08-19 13:35:41 +00002741 /* Fill out redirection table */
2742 for (i = 0, j = 0; i < 128; i++, j++) {
2743 if (j == adapter->ring_feature[RING_F_RSS].indices)
2744 j = 0;
2745 /* reta = 4-byte sliding window of
2746 * 0x00..(indices-1)(indices-1)00..etc. */
2747 reta = (reta << 8) | (j * 0x11);
2748 if ((i & 3) == 3)
2749 IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta);
2750 }
2751
2752 /* Disable indicating checksum in descriptor, enables RSS hash */
2753 rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
2754 rxcsum |= IXGBE_RXCSUM_PCSD;
2755 IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum);
2756
2757 if (adapter->hw.mac.type == ixgbe_mac_82598EB)
2758 mask = adapter->flags & IXGBE_FLAG_RSS_ENABLED;
2759 else
2760 mask = adapter->flags & (IXGBE_FLAG_RSS_ENABLED
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002761#ifdef CONFIG_IXGBE_DCB
Alexander Duyck05abb122010-08-19 13:35:41 +00002762 | IXGBE_FLAG_DCB_ENABLED
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002763#endif
Alexander Duyck05abb122010-08-19 13:35:41 +00002764 | IXGBE_FLAG_SRIOV_ENABLED
2765 );
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002766
2767 switch (mask) {
2768 case (IXGBE_FLAG_RSS_ENABLED):
2769 mrqc = IXGBE_MRQC_RSSEN;
2770 break;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00002771 case (IXGBE_FLAG_SRIOV_ENABLED):
2772 mrqc = IXGBE_MRQC_VMDQEN;
2773 break;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002774#ifdef CONFIG_IXGBE_DCB
2775 case (IXGBE_FLAG_DCB_ENABLED):
2776 mrqc = IXGBE_MRQC_RT8TCEN;
2777 break;
2778#endif /* CONFIG_IXGBE_DCB */
2779 default:
2780 break;
2781 }
2782
Alexander Duyck05abb122010-08-19 13:35:41 +00002783 /* Perform hash on these packet types */
2784 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2785 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2786 | IXGBE_MRQC_RSS_FIELD_IPV6
2787 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2788
2789 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00002790}
2791
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07002792/**
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002793 * ixgbe_configure_rscctl - enable RSC for the indicated ring
2794 * @adapter: address of board private structure
2795 * @index: index of ring to set
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002796 **/
Alexander Duyck73670962010-08-19 13:38:34 +00002797static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter,
2798 struct ixgbe_ring *ring)
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002799{
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002800 struct ixgbe_hw *hw = &adapter->hw;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002801 u32 rscctrl;
Mallikarjuna R Chilakalaedd2ea52009-11-23 10:45:11 -08002802 int rx_buf_len;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002803 u8 reg_idx = ring->reg_idx;
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002804
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002805 if (!ring_is_rsc_enabled(ring))
Alexander Duyck73670962010-08-19 13:38:34 +00002806 return;
2807
2808 rx_buf_len = ring->rx_buf_len;
2809 rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx));
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002810 rscctrl |= IXGBE_RSCCTL_RSCEN;
2811 /*
2812 * we must limit the number of descriptors so that the
2813 * total size of max desc * buf_len is not greater
2814 * than 65535
2815 */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08002816 if (ring_is_ps_enabled(ring)) {
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002817#if (MAX_SKB_FRAGS > 16)
2818 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2819#elif (MAX_SKB_FRAGS > 8)
2820 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2821#elif (MAX_SKB_FRAGS > 4)
2822 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2823#else
2824 rscctrl |= IXGBE_RSCCTL_MAXDESC_1;
2825#endif
2826 } else {
2827 if (rx_buf_len < IXGBE_RXBUFFER_4096)
2828 rscctrl |= IXGBE_RSCCTL_MAXDESC_16;
2829 else if (rx_buf_len < IXGBE_RXBUFFER_8192)
2830 rscctrl |= IXGBE_RSCCTL_MAXDESC_8;
2831 else
2832 rscctrl |= IXGBE_RSCCTL_MAXDESC_4;
2833 }
Alexander Duyck73670962010-08-19 13:38:34 +00002834 IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl);
Nelson, Shannonbb5a9ad2009-09-18 09:46:27 +00002835}
2836
Alexander Duyck9e10e042010-08-19 13:40:06 +00002837/**
2838 * ixgbe_set_uta - Set unicast filter table address
2839 * @adapter: board private structure
2840 *
2841 * The unicast table address is a register array of 32-bit registers.
2842 * The table is meant to be used in a way similar to how the MTA is used
2843 * however due to certain limitations in the hardware it is necessary to
2844 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
2845 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
2846 **/
2847static void ixgbe_set_uta(struct ixgbe_adapter *adapter)
2848{
2849 struct ixgbe_hw *hw = &adapter->hw;
2850 int i;
2851
2852 /* The UTA table only exists on 82599 hardware and newer */
2853 if (hw->mac.type < ixgbe_mac_82599EB)
2854 return;
2855
2856 /* we only need to do this if VMDq is enabled */
2857 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2858 return;
2859
2860 for (i = 0; i < 128; i++)
2861 IXGBE_WRITE_REG(hw, IXGBE_UTA(i), ~0);
2862}
2863
2864#define IXGBE_MAX_RX_DESC_POLL 10
2865static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter,
2866 struct ixgbe_ring *ring)
2867{
2868 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002869 int wait_loop = IXGBE_MAX_RX_DESC_POLL;
2870 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002871 u8 reg_idx = ring->reg_idx;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002872
2873 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2874 if (hw->mac.type == ixgbe_mac_82598EB &&
2875 !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP))
2876 return;
2877
2878 do {
2879 msleep(1);
2880 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2881 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
2882
2883 if (!wait_loop) {
2884 e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within "
2885 "the polling period\n", reg_idx);
2886 }
2887}
2888
Alexander Duyck84418e32010-08-19 13:40:54 +00002889void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter,
2890 struct ixgbe_ring *ring)
Alexander Duyckacd37172010-08-19 13:36:05 +00002891{
2892 struct ixgbe_hw *hw = &adapter->hw;
2893 u64 rdba = ring->dma;
Alexander Duyck9e10e042010-08-19 13:40:06 +00002894 u32 rxdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08002895 u8 reg_idx = ring->reg_idx;
Alexander Duyckacd37172010-08-19 13:36:05 +00002896
Alexander Duyck9e10e042010-08-19 13:40:06 +00002897 /* disable queue to avoid issues while updating state */
2898 rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx));
2899 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx),
2900 rxdctl & ~IXGBE_RXDCTL_ENABLE);
2901 IXGBE_WRITE_FLUSH(hw);
2902
Alexander Duyckacd37172010-08-19 13:36:05 +00002903 IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32)));
2904 IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32));
2905 IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx),
2906 ring->count * sizeof(union ixgbe_adv_rx_desc));
2907 IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0);
2908 IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0);
Alexander Duyck84ea2592010-11-16 19:26:49 -08002909 ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx);
Alexander Duyck9e10e042010-08-19 13:40:06 +00002910
2911 ixgbe_configure_srrctl(adapter, ring);
2912 ixgbe_configure_rscctl(adapter, ring);
2913
2914 if (hw->mac.type == ixgbe_mac_82598EB) {
2915 /*
2916 * enable cache line friendly hardware writes:
2917 * PTHRESH=32 descriptors (half the internal cache),
2918 * this also removes ugly rx_no_buffer_count increment
2919 * HTHRESH=4 descriptors (to minimize latency on fetch)
2920 * WTHRESH=8 burst writeback up to two cache lines
2921 */
2922 rxdctl &= ~0x3FFFFF;
2923 rxdctl |= 0x080420;
2924 }
2925
2926 /* enable receive descriptor ring */
2927 rxdctl |= IXGBE_RXDCTL_ENABLE;
2928 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl);
2929
2930 ixgbe_rx_desc_queue_enable(adapter, ring);
Alexander Duyckfc77dc32010-11-16 19:26:51 -08002931 ixgbe_alloc_rx_buffers(ring, IXGBE_DESC_UNUSED(ring));
Alexander Duyckacd37172010-08-19 13:36:05 +00002932}
2933
Alexander Duyck48654522010-08-19 13:36:27 +00002934static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter)
2935{
2936 struct ixgbe_hw *hw = &adapter->hw;
2937 int p;
2938
2939 /* PSRTYPE must be initialized in non 82598 adapters */
2940 u32 psrtype = IXGBE_PSRTYPE_TCPHDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002941 IXGBE_PSRTYPE_UDPHDR |
2942 IXGBE_PSRTYPE_IPV4HDR |
Alexander Duyck48654522010-08-19 13:36:27 +00002943 IXGBE_PSRTYPE_L2HDR |
Joe Perchese8e9f692010-09-07 21:34:53 +00002944 IXGBE_PSRTYPE_IPV6HDR;
Alexander Duyck48654522010-08-19 13:36:27 +00002945
2946 if (hw->mac.type == ixgbe_mac_82598EB)
2947 return;
2948
2949 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED)
2950 psrtype |= (adapter->num_rx_queues_per_pool << 29);
2951
2952 for (p = 0; p < adapter->num_rx_pools; p++)
2953 IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(adapter->num_vfs + p),
2954 psrtype);
2955}
2956
Alexander Duyckf5b4a522010-08-19 13:38:57 +00002957static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter)
2958{
2959 struct ixgbe_hw *hw = &adapter->hw;
2960 u32 gcr_ext;
2961 u32 vt_reg_bits;
2962 u32 reg_offset, vf_shift;
2963 u32 vmdctl;
2964
2965 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2966 return;
2967
2968 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
2969 vt_reg_bits = IXGBE_VMD_CTL_VMDQ_EN | IXGBE_VT_CTL_REPLEN;
2970 vt_reg_bits |= (adapter->num_vfs << IXGBE_VT_CTL_POOL_SHIFT);
2971 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl | vt_reg_bits);
2972
2973 vf_shift = adapter->num_vfs % 32;
2974 reg_offset = (adapter->num_vfs > 32) ? 1 : 0;
2975
2976 /* Enable only the PF's pool for Tx/Rx */
2977 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (1 << vf_shift));
2978 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), 0);
2979 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (1 << vf_shift));
2980 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), 0);
2981 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
2982
2983 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
2984 hw->mac.ops.set_vmdq(hw, 0, adapter->num_vfs);
2985
2986 /*
2987 * Set up VF register offsets for selected VT Mode,
2988 * i.e. 32 or 64 VFs for SR-IOV
2989 */
2990 gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
2991 gcr_ext |= IXGBE_GCR_EXT_MSIX_EN;
2992 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
2993 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
2994
2995 /* enable Tx loopback for VF/PF communication */
2996 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
2997}
2998
Alexander Duyck477de6e2010-08-19 13:38:11 +00002999static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003000{
Auke Kok9a799d72007-09-15 14:07:45 -07003001 struct ixgbe_hw *hw = &adapter->hw;
3002 struct net_device *netdev = adapter->netdev;
3003 int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003004 int rx_buf_len;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003005 struct ixgbe_ring *rx_ring;
3006 int i;
3007 u32 mhadd, hlreg0;
Alexander Duyck48654522010-08-19 13:36:27 +00003008
Auke Kok9a799d72007-09-15 14:07:45 -07003009 /* Decide whether to use packet split mode or not */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003010 /* Do not use packet split if we're in SR-IOV Mode */
3011 if (!adapter->num_vfs)
3012 adapter->flags |= IXGBE_FLAG_RX_PS_ENABLED;
Auke Kok9a799d72007-09-15 14:07:45 -07003013
3014 /* Set the RX buffer length according to the mode */
3015 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED) {
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003016 rx_buf_len = IXGBE_RX_HDR_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003017 } else {
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00003018 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) &&
Alexander Duyckf8212f92009-04-27 22:42:37 +00003019 (netdev->mtu <= ETH_DATA_LEN))
Jesse Brandeburg7c6e0a42008-08-26 04:27:16 -07003020 rx_buf_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Auke Kok9a799d72007-09-15 14:07:45 -07003021 else
Alexander Duyck477de6e2010-08-19 13:38:11 +00003022 rx_buf_len = ALIGN(max_frame + VLAN_HLEN, 1024);
3023 }
3024
3025#ifdef IXGBE_FCOE
3026 /* adjust max frame to be able to do baby jumbo for FCoE */
3027 if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) &&
3028 (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE))
3029 max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE;
3030
3031#endif /* IXGBE_FCOE */
3032 mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD);
3033 if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) {
3034 mhadd &= ~IXGBE_MHADD_MFS_MASK;
3035 mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT;
3036
3037 IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
Auke Kok9a799d72007-09-15 14:07:45 -07003038 }
3039
Auke Kok9a799d72007-09-15 14:07:45 -07003040 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003041 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3042 hlreg0 |= IXGBE_HLREG0_JUMBOEN;
Auke Kok9a799d72007-09-15 14:07:45 -07003043 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
3044
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00003045 /*
3046 * Setup the HW Rx Head and Tail Descriptor Pointers and
3047 * the Base and Length of the Rx Descriptor Ring
3048 */
Auke Kok9a799d72007-09-15 14:07:45 -07003049 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003050 rx_ring = adapter->rx_ring[i];
Yi Zoua6616b42009-08-06 13:05:23 +00003051 rx_ring->rx_buf_len = rx_buf_len;
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003052
Yi Zou6e455b892009-08-06 13:05:44 +00003053 if (adapter->flags & IXGBE_FLAG_RX_PS_ENABLED)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003054 set_ring_ps_enabled(rx_ring);
Peter P Waskiewicz Jr1b3ff022009-09-14 07:47:27 +00003055 else
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003056 clear_ring_ps_enabled(rx_ring);
3057
3058 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
3059 set_ring_rsc_enabled(rx_ring);
3060 else
3061 clear_ring_rsc_enabled(rx_ring);
Jesse Brandeburgcc41ac72008-08-26 04:27:27 -07003062
Yi Zou63f39bd2009-05-17 12:34:35 +00003063#ifdef IXGBE_FCOE
Joe Perchese8e9f692010-09-07 21:34:53 +00003064 if (netdev->features & NETIF_F_FCOE_MTU) {
Yi Zou63f39bd2009-05-17 12:34:35 +00003065 struct ixgbe_ring_feature *f;
3066 f = &adapter->ring_feature[RING_F_FCOE];
Yi Zou6e455b892009-08-06 13:05:44 +00003067 if ((i >= f->mask) && (i < f->mask + f->indices)) {
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003068 clear_ring_ps_enabled(rx_ring);
Yi Zou6e455b892009-08-06 13:05:44 +00003069 if (rx_buf_len < IXGBE_FCOE_JUMBO_FRAME_SIZE)
3070 rx_ring->rx_buf_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00003071 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Alexander Duyck7d637bc2010-11-16 19:26:56 -08003072 } else if (!ring_is_rsc_enabled(rx_ring) &&
3073 !ring_is_ps_enabled(rx_ring)) {
3074 rx_ring->rx_buf_len =
3075 IXGBE_FCOE_JUMBO_FRAME_SIZE;
Yi Zou6e455b892009-08-06 13:05:44 +00003076 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003077 }
Yi Zou63f39bd2009-05-17 12:34:35 +00003078#endif /* IXGBE_FCOE */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003079 }
Alexander Duyck477de6e2010-08-19 13:38:11 +00003080}
3081
Alexander Duyck73670962010-08-19 13:38:34 +00003082static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter)
3083{
3084 struct ixgbe_hw *hw = &adapter->hw;
3085 u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
3086
3087 switch (hw->mac.type) {
3088 case ixgbe_mac_82598EB:
3089 /*
3090 * For VMDq support of different descriptor types or
3091 * buffer sizes through the use of multiple SRRCTL
3092 * registers, RDRXCTL.MVMEN must be set to 1
3093 *
3094 * also, the manual doesn't mention it clearly but DCA hints
3095 * will only use queue 0's tags unless this bit is set. Side
3096 * effects of setting this bit are only that SRRCTL must be
3097 * fully programmed [0..15]
3098 */
3099 rdrxctl |= IXGBE_RDRXCTL_MVMEN;
3100 break;
3101 case ixgbe_mac_82599EB:
3102 /* Disable RSC for ACK packets */
3103 IXGBE_WRITE_REG(hw, IXGBE_RSCDBU,
3104 (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU)));
3105 rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE;
3106 /* hardware requires some bits to be set by default */
3107 rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX);
3108 rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP;
3109 break;
3110 default:
3111 /* We should do nothing since we don't know this hardware */
3112 return;
3113 }
3114
3115 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl);
3116}
3117
Alexander Duyck477de6e2010-08-19 13:38:11 +00003118/**
3119 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3120 * @adapter: board private structure
3121 *
3122 * Configure the Rx unit of the MAC after a reset.
3123 **/
3124static void ixgbe_configure_rx(struct ixgbe_adapter *adapter)
3125{
3126 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003127 int i;
3128 u32 rxctrl;
Alexander Duyck477de6e2010-08-19 13:38:11 +00003129
3130 /* disable receives while setting up the descriptors */
3131 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3132 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
3133
3134 ixgbe_setup_psrtype(adapter);
Alexander Duyck73670962010-08-19 13:38:34 +00003135 ixgbe_setup_rdrxctl(adapter);
Alexander Duyck477de6e2010-08-19 13:38:11 +00003136
Alexander Duyck9e10e042010-08-19 13:40:06 +00003137 /* Program registers for the distribution of queues */
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003138 ixgbe_setup_mrqc(adapter);
Alexander Duyckf5b4a522010-08-19 13:38:57 +00003139
Alexander Duyck9e10e042010-08-19 13:40:06 +00003140 ixgbe_set_uta(adapter);
3141
Alexander Duyck477de6e2010-08-19 13:38:11 +00003142 /* set_rx_buffer_len must be called before ring initialization */
3143 ixgbe_set_rx_buffer_len(adapter);
3144
3145 /*
3146 * Setup the HW Rx Head and Tail Descriptor Pointers and
3147 * the Base and Length of the Rx Descriptor Ring
3148 */
Alexander Duyck9e10e042010-08-19 13:40:06 +00003149 for (i = 0; i < adapter->num_rx_queues; i++)
3150 ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]);
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07003151
Alexander Duyck9e10e042010-08-19 13:40:06 +00003152 /* disable drop enable for 82598 parts */
3153 if (hw->mac.type == ixgbe_mac_82598EB)
3154 rxctrl |= IXGBE_RXCTRL_DMBYPS;
3155
3156 /* enable all receives */
3157 rxctrl |= IXGBE_RXCTRL_RXEN;
3158 hw->mac.ops.enable_rx_dma(hw, rxctrl);
Auke Kok9a799d72007-09-15 14:07:45 -07003159}
3160
Auke Kok9a799d72007-09-15 14:07:45 -07003161static void ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
3162{
3163 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003164 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003165 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003166
3167 /* add VID to filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003168 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, true);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003169 set_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003170}
3171
3172static void ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
3173{
3174 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003175 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose1ada1b12010-01-22 22:45:43 +00003176 int pool_ndx = adapter->num_vfs;
Auke Kok9a799d72007-09-15 14:07:45 -07003177
Auke Kok9a799d72007-09-15 14:07:45 -07003178 /* remove VID from filter table */
Greg Rose1ada1b12010-01-22 22:45:43 +00003179 hw->mac.ops.set_vfta(&adapter->hw, vid, pool_ndx, false);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003180 clear_bit(vid, adapter->active_vlans);
Auke Kok9a799d72007-09-15 14:07:45 -07003181}
3182
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003183/**
3184 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3185 * @adapter: driver data
3186 */
3187static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter)
3188{
3189 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003190 u32 vlnctrl;
3191
3192 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3193 vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN);
3194 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3195}
3196
3197/**
3198 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3199 * @adapter: driver data
3200 */
3201static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter)
3202{
3203 struct ixgbe_hw *hw = &adapter->hw;
3204 u32 vlnctrl;
3205
3206 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3207 vlnctrl |= IXGBE_VLNCTRL_VFE;
3208 vlnctrl &= ~IXGBE_VLNCTRL_CFIEN;
3209 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3210}
3211
3212/**
3213 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3214 * @adapter: driver data
3215 */
3216static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter)
3217{
3218 struct ixgbe_hw *hw = &adapter->hw;
3219 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003220 int i, j;
3221
3222 switch (hw->mac.type) {
3223 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003224 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3225 vlnctrl &= ~IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003226 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3227 break;
3228 case ixgbe_mac_82599EB:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003229 for (i = 0; i < adapter->num_rx_queues; i++) {
3230 j = adapter->rx_ring[i]->reg_idx;
3231 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3232 vlnctrl &= ~IXGBE_RXDCTL_VME;
3233 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3234 }
3235 break;
3236 default:
3237 break;
3238 }
3239}
3240
3241/**
Jesse Grossf62bbb52010-10-20 13:56:10 +00003242 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003243 * @adapter: driver data
3244 */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003245static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter)
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003246{
3247 struct ixgbe_hw *hw = &adapter->hw;
Jesse Grossf62bbb52010-10-20 13:56:10 +00003248 u32 vlnctrl;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003249 int i, j;
3250
3251 switch (hw->mac.type) {
3252 case ixgbe_mac_82598EB:
Jesse Grossf62bbb52010-10-20 13:56:10 +00003253 vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
3254 vlnctrl |= IXGBE_VLNCTRL_VME;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003255 IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl);
3256 break;
3257 case ixgbe_mac_82599EB:
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003258 for (i = 0; i < adapter->num_rx_queues; i++) {
3259 j = adapter->rx_ring[i]->reg_idx;
3260 vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j));
3261 vlnctrl |= IXGBE_RXDCTL_VME;
3262 IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl);
3263 }
3264 break;
3265 default:
3266 break;
3267 }
3268}
3269
Auke Kok9a799d72007-09-15 14:07:45 -07003270static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter)
3271{
Jesse Grossf62bbb52010-10-20 13:56:10 +00003272 u16 vid;
Auke Kok9a799d72007-09-15 14:07:45 -07003273
Jesse Grossf62bbb52010-10-20 13:56:10 +00003274 ixgbe_vlan_rx_add_vid(adapter->netdev, 0);
3275
3276 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
3277 ixgbe_vlan_rx_add_vid(adapter->netdev, vid);
Auke Kok9a799d72007-09-15 14:07:45 -07003278}
3279
3280/**
Alexander Duyck28500622010-06-15 09:25:48 +00003281 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3282 * @netdev: network interface device structure
3283 *
3284 * Writes unicast address list to the RAR table.
3285 * Returns: -ENOMEM on failure/insufficient address space
3286 * 0 on no addresses written
3287 * X on writing X addresses to the RAR table
3288 **/
3289static int ixgbe_write_uc_addr_list(struct net_device *netdev)
3290{
3291 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3292 struct ixgbe_hw *hw = &adapter->hw;
3293 unsigned int vfn = adapter->num_vfs;
3294 unsigned int rar_entries = hw->mac.num_rar_entries - (vfn + 1);
3295 int count = 0;
3296
3297 /* return ENOMEM indicating insufficient memory for addresses */
3298 if (netdev_uc_count(netdev) > rar_entries)
3299 return -ENOMEM;
3300
3301 if (!netdev_uc_empty(netdev) && rar_entries) {
3302 struct netdev_hw_addr *ha;
3303 /* return error if we do not support writing to RAR table */
3304 if (!hw->mac.ops.set_rar)
3305 return -ENOMEM;
3306
3307 netdev_for_each_uc_addr(ha, netdev) {
3308 if (!rar_entries)
3309 break;
3310 hw->mac.ops.set_rar(hw, rar_entries--, ha->addr,
3311 vfn, IXGBE_RAH_AV);
3312 count++;
3313 }
3314 }
3315 /* write the addresses in reverse order to avoid write combining */
3316 for (; rar_entries > 0 ; rar_entries--)
3317 hw->mac.ops.clear_rar(hw, rar_entries);
3318
3319 return count;
3320}
3321
3322/**
Christopher Leech2c5645c2008-08-26 04:27:02 -07003323 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
Auke Kok9a799d72007-09-15 14:07:45 -07003324 * @netdev: network interface device structure
3325 *
Christopher Leech2c5645c2008-08-26 04:27:02 -07003326 * The set_rx_method entry point is called whenever the unicast/multicast
3327 * address list or the network interface flags are updated. This routine is
3328 * responsible for configuring the hardware for proper unicast, multicast and
3329 * promiscuous mode.
Auke Kok9a799d72007-09-15 14:07:45 -07003330 **/
Greg Rose7f870472010-01-09 02:25:29 +00003331void ixgbe_set_rx_mode(struct net_device *netdev)
Auke Kok9a799d72007-09-15 14:07:45 -07003332{
3333 struct ixgbe_adapter *adapter = netdev_priv(netdev);
3334 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +00003335 u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
3336 int count;
Auke Kok9a799d72007-09-15 14:07:45 -07003337
3338 /* Check for Promiscuous and All Multicast modes */
3339
3340 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
3341
Alexander Duyckf5dc4422010-08-19 13:36:49 +00003342 /* set all bits that we expect to always be set */
3343 fctrl |= IXGBE_FCTRL_BAM;
3344 fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */
3345 fctrl |= IXGBE_FCTRL_PMCF;
3346
Alexander Duyck28500622010-06-15 09:25:48 +00003347 /* clear the bits we are changing the status of */
3348 fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
3349
Auke Kok9a799d72007-09-15 14:07:45 -07003350 if (netdev->flags & IFF_PROMISC) {
Emil Tantilove433ea12010-05-13 17:33:00 +00003351 hw->addr_ctrl.user_set_promisc = true;
Auke Kok9a799d72007-09-15 14:07:45 -07003352 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
Alexander Duyck28500622010-06-15 09:25:48 +00003353 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003354 /* don't hardware filter vlans in promisc mode */
3355 ixgbe_vlan_filter_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003356 } else {
Patrick McHardy746b9f02008-07-16 20:15:45 -07003357 if (netdev->flags & IFF_ALLMULTI) {
3358 fctrl |= IXGBE_FCTRL_MPE;
Alexander Duyck28500622010-06-15 09:25:48 +00003359 vmolr |= IXGBE_VMOLR_MPE;
3360 } else {
3361 /*
3362 * Write addresses to the MTA, if the attempt fails
3363 * then we should just turn on promiscous mode so
3364 * that we can at least receive multicast traffic
3365 */
3366 hw->mac.ops.update_mc_addr_list(hw, netdev);
3367 vmolr |= IXGBE_VMOLR_ROMPE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07003368 }
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003369 ixgbe_vlan_filter_enable(adapter);
Emil Tantilove433ea12010-05-13 17:33:00 +00003370 hw->addr_ctrl.user_set_promisc = false;
Alexander Duyck28500622010-06-15 09:25:48 +00003371 /*
3372 * Write addresses to available RAR registers, if there is not
3373 * sufficient space to store all the addresses then enable
3374 * unicast promiscous mode
3375 */
3376 count = ixgbe_write_uc_addr_list(netdev);
3377 if (count < 0) {
3378 fctrl |= IXGBE_FCTRL_UPE;
3379 vmolr |= IXGBE_VMOLR_ROPE;
3380 }
3381 }
3382
3383 if (adapter->num_vfs) {
3384 ixgbe_restore_vf_multicasts(adapter);
3385 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(adapter->num_vfs)) &
3386 ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
3387 IXGBE_VMOLR_ROPE);
3388 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(adapter->num_vfs), vmolr);
Auke Kok9a799d72007-09-15 14:07:45 -07003389 }
3390
3391 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
Jesse Grossf62bbb52010-10-20 13:56:10 +00003392
3393 if (netdev->features & NETIF_F_HW_VLAN_RX)
3394 ixgbe_vlan_strip_enable(adapter);
3395 else
3396 ixgbe_vlan_strip_disable(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003397}
3398
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003399static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter)
3400{
3401 int q_idx;
3402 struct ixgbe_q_vector *q_vector;
3403 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3404
3405 /* legacy and MSI only use one vector */
3406 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3407 q_vectors = 1;
3408
3409 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003410 struct napi_struct *napi;
Alexander Duyck7a921c92009-05-06 10:43:28 +00003411 q_vector = adapter->q_vector[q_idx];
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003412 napi = &q_vector->napi;
Alexander Duyck91281fd2009-06-04 16:00:27 +00003413 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
3414 if (!q_vector->rxr_count || !q_vector->txr_count) {
3415 if (q_vector->txr_count == 1)
3416 napi->poll = &ixgbe_clean_txonly;
3417 else if (q_vector->rxr_count == 1)
3418 napi->poll = &ixgbe_clean_rxonly;
3419 }
3420 }
Jesse Brandeburgf0848272008-09-11 19:59:42 -07003421
3422 napi_enable(napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003423 }
3424}
3425
3426static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter)
3427{
3428 int q_idx;
3429 struct ixgbe_q_vector *q_vector;
3430 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
3431
3432 /* legacy and MSI only use one vector */
3433 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED))
3434 q_vectors = 1;
3435
3436 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Alexander Duyck7a921c92009-05-06 10:43:28 +00003437 q_vector = adapter->q_vector[q_idx];
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003438 napi_disable(&q_vector->napi);
3439 }
3440}
3441
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003442#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08003443/*
3444 * ixgbe_configure_dcb - Configure DCB hardware
3445 * @adapter: ixgbe adapter struct
3446 *
3447 * This is called by the driver on open to configure the DCB hardware.
3448 * This is also called by the gennetlink interface when reconfiguring
3449 * the DCB state.
3450 */
3451static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter)
3452{
3453 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend98063072010-10-28 00:59:57 +00003454 int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08003455
Alexander Duyck67ebd792010-08-19 13:34:04 +00003456 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) {
3457 if (hw->mac.type == ixgbe_mac_82598EB)
3458 netif_set_gso_max_size(adapter->netdev, 65536);
3459 return;
3460 }
3461
3462 if (hw->mac.type == ixgbe_mac_82598EB)
3463 netif_set_gso_max_size(adapter->netdev, 32768);
3464
John Fastabend98063072010-10-28 00:59:57 +00003465#ifdef CONFIG_FCOE
3466 if (adapter->netdev->features & NETIF_F_FCOE_MTU)
3467 max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE);
3468#endif
3469
John Fastabend80ab1932010-11-16 19:26:45 -08003470 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
John Fastabend98063072010-10-28 00:59:57 +00003471 DCB_TX_CONFIG);
John Fastabend80ab1932010-11-16 19:26:45 -08003472 ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame,
John Fastabend98063072010-10-28 00:59:57 +00003473 DCB_RX_CONFIG);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003474
Alexander Duyck2f90b862008-11-20 20:52:10 -08003475 /* Enable VLAN tag insert/strip */
Jesse Grossf62bbb52010-10-20 13:56:10 +00003476 adapter->netdev->features |= NETIF_F_HW_VLAN_RX;
Jesse Brandeburg5f6c0182010-04-14 16:04:23 -07003477
Alexander Duyck2f90b862008-11-20 20:52:10 -08003478 hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true);
Alexander Duyck01fa7d92010-11-16 19:26:53 -08003479
3480 /* reconfigure the hardware */
3481 ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003482}
3483
3484#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003485static void ixgbe_configure(struct ixgbe_adapter *adapter)
3486{
3487 struct net_device *netdev = adapter->netdev;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003488 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003489 int i;
3490
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08003491#ifdef CONFIG_IXGBE_DCB
Alexander Duyck67ebd792010-08-19 13:34:04 +00003492 ixgbe_configure_dcb(adapter);
Alexander Duyck2f90b862008-11-20 20:52:10 -08003493#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003494
Jesse Grossf62bbb52010-10-20 13:56:10 +00003495 ixgbe_set_rx_mode(netdev);
3496 ixgbe_restore_vlan(adapter);
3497
Yi Zoueacd73f2009-05-13 13:11:06 +00003498#ifdef IXGBE_FCOE
3499 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
3500 ixgbe_configure_fcoe(adapter);
3501
3502#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003503 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
3504 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00003505 adapter->tx_ring[i]->atr_sample_rate =
Joe Perchese8e9f692010-09-07 21:34:53 +00003506 adapter->atr_sample_rate;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003507 ixgbe_init_fdir_signature_82599(hw, adapter->fdir_pballoc);
3508 } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
3509 ixgbe_init_fdir_perfect_82599(hw, adapter->fdir_pballoc);
3510 }
Alexander Duyck933d41f2010-09-07 21:34:29 +00003511 ixgbe_configure_virtualization(adapter);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003512
Auke Kok9a799d72007-09-15 14:07:45 -07003513 ixgbe_configure_tx(adapter);
3514 ixgbe_configure_rx(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003515}
3516
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003517static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw)
3518{
3519 switch (hw->phy.type) {
3520 case ixgbe_phy_sfp_avago:
3521 case ixgbe_phy_sfp_ftl:
3522 case ixgbe_phy_sfp_intel:
3523 case ixgbe_phy_sfp_unknown:
Don Skidmoreea0a04d2010-05-18 16:00:13 +00003524 case ixgbe_phy_sfp_passive_tyco:
3525 case ixgbe_phy_sfp_passive_unknown:
3526 case ixgbe_phy_sfp_active_unknown:
3527 case ixgbe_phy_sfp_ftl_active:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003528 return true;
3529 default:
3530 return false;
3531 }
3532}
3533
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003534/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003535 * ixgbe_sfp_link_config - set up SFP+ link
3536 * @adapter: pointer to private adapter struct
3537 **/
3538static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter)
3539{
3540 struct ixgbe_hw *hw = &adapter->hw;
3541
3542 if (hw->phy.multispeed_fiber) {
3543 /*
3544 * In multispeed fiber setups, the device may not have
3545 * had a physical connection when the driver loaded.
3546 * If that's the case, the initial link configuration
3547 * couldn't get the MAC into 10G or 1G mode, so we'll
3548 * never have a link status change interrupt fire.
3549 * We need to try and force an autonegotiation
3550 * session, then bring up link.
3551 */
3552 hw->mac.ops.setup_sfp(hw);
3553 if (!(adapter->flags & IXGBE_FLAG_IN_SFP_LINK_TASK))
3554 schedule_work(&adapter->multispeed_fiber_task);
3555 } else {
3556 /*
3557 * Direct Attach Cu and non-multispeed fiber modules
3558 * still need to be configured properly prior to
3559 * attempting link.
3560 */
3561 if (!(adapter->flags & IXGBE_FLAG_IN_SFP_MOD_TASK))
3562 schedule_work(&adapter->sfp_config_module_task);
3563 }
3564}
3565
3566/**
3567 * ixgbe_non_sfp_link_config - set up non-SFP+ link
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003568 * @hw: pointer to private hardware struct
3569 *
3570 * Returns 0 on success, negative on failure
3571 **/
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003572static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw)
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003573{
3574 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003575 bool negotiation, link_up = false;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003576 u32 ret = IXGBE_ERR_LINK_SETUP;
3577
3578 if (hw->mac.ops.check_link)
3579 ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false);
3580
3581 if (ret)
3582 goto link_cfg_out;
3583
3584 if (hw->mac.ops.get_link_capabilities)
Joe Perchese8e9f692010-09-07 21:34:53 +00003585 ret = hw->mac.ops.get_link_capabilities(hw, &autoneg,
3586 &negotiation);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003587 if (ret)
3588 goto link_cfg_out;
3589
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00003590 if (hw->mac.ops.setup_link)
3591 ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003592link_cfg_out:
3593 return ret;
3594}
3595
Alexander Duycka34bcff2010-08-19 13:39:20 +00003596static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07003597{
Auke Kok9a799d72007-09-15 14:07:45 -07003598 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003599 u32 gpie = 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003600
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003601 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
Alexander Duycka34bcff2010-08-19 13:39:20 +00003602 gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT |
3603 IXGBE_GPIE_OCD;
3604 gpie |= IXGBE_GPIE_EIAME;
Jesse Brandeburg9b471442009-12-03 11:33:54 +00003605 /*
3606 * use EIAM to auto-mask when MSI-X interrupt is asserted
3607 * this saves a register write for every interrupt
3608 */
3609 switch (hw->mac.type) {
3610 case ixgbe_mac_82598EB:
3611 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
3612 break;
3613 default:
3614 case ixgbe_mac_82599EB:
3615 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
3616 IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
3617 break;
3618 }
3619 } else {
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003620 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
3621 * specifically only auto mask tx and rx interrupts */
3622 IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07003623 }
3624
Alexander Duycka34bcff2010-08-19 13:39:20 +00003625 /* XXX: to interrupt immediately for EICS writes, enable this */
3626 /* gpie |= IXGBE_GPIE_EIMEN; */
3627
3628 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3629 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
3630 gpie |= IXGBE_GPIE_VTMODE_64;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003631 }
3632
Alexander Duycka34bcff2010-08-19 13:39:20 +00003633 /* Enable fan failure interrupt */
3634 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE)
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003635 gpie |= IXGBE_SDP1_GPIEN;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -07003636
Alexander Duycka34bcff2010-08-19 13:39:20 +00003637 if (hw->mac.type == ixgbe_mac_82599EB)
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003638 gpie |= IXGBE_SDP1_GPIEN;
3639 gpie |= IXGBE_SDP2_GPIEN;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003640
3641 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
3642}
3643
3644static int ixgbe_up_complete(struct ixgbe_adapter *adapter)
3645{
3646 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003647 int err;
Alexander Duycka34bcff2010-08-19 13:39:20 +00003648 u32 ctrl_ext;
3649
3650 ixgbe_get_hw_control(adapter);
3651 ixgbe_setup_gpie(adapter);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003652
Auke Kok9a799d72007-09-15 14:07:45 -07003653 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
3654 ixgbe_configure_msix(adapter);
3655 else
3656 ixgbe_configure_msi_and_legacy(adapter);
3657
Peter Waskiewicz61fac742010-04-27 00:38:15 +00003658 /* enable the optics */
3659 if (hw->phy.multispeed_fiber)
3660 hw->mac.ops.enable_tx_laser(hw);
3661
Auke Kok9a799d72007-09-15 14:07:45 -07003662 clear_bit(__IXGBE_DOWN, &adapter->state);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003663 ixgbe_napi_enable_all(adapter);
3664
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003665 if (ixgbe_is_sfp(hw)) {
3666 ixgbe_sfp_link_config(adapter);
3667 } else {
3668 err = ixgbe_non_sfp_link_config(hw);
3669 if (err)
3670 e_err(probe, "link_config FAILED %d\n", err);
3671 }
3672
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003673 /* clear any pending interrupts, may auto mask */
3674 IXGBE_READ_REG(hw, IXGBE_EICR);
Emil Tantilov6af3b9e2010-09-29 21:35:23 +00003675 ixgbe_irq_enable(adapter, true, true);
Auke Kok9a799d72007-09-15 14:07:45 -07003676
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003677 /*
Don Skidmorebf069c92009-05-07 10:39:54 +00003678 * If this adapter has a fan, check to see if we had a failure
3679 * before we enabled the interrupt.
3680 */
3681 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
3682 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
3683 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00003684 e_crit(drv, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00003685 }
3686
3687 /*
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003688 * For hot-pluggable SFP+ devices, a new SFP+ module may have
Don Skidmore19343de2009-07-02 12:50:31 +00003689 * arrived before interrupts were enabled but after probe. Such
3690 * devices wouldn't have their type identified yet. We need to
3691 * kick off the SFP+ module setup first, then try to bring up link.
PJ Waskiewicze8e26352009-02-27 15:45:05 +00003692 * If we're not hot-pluggable SFP+, we just need to configure link
3693 * and bring it up.
3694 */
Alexander Duyck73c4b7c2010-11-16 19:26:57 -08003695 if (hw->phy.type == ixgbe_phy_unknown)
3696 schedule_work(&adapter->sfp_config_module_task);
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -08003697
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003698 /* enable transmits */
Alexander Duyck477de6e2010-08-19 13:38:11 +00003699 netif_tx_start_all_queues(adapter->netdev);
Peter P Waskiewicz Jr1da100b2009-01-19 16:55:03 -08003700
Auke Kok9a799d72007-09-15 14:07:45 -07003701 /* bring the link up in the watchdog, this could race with our first
3702 * link up interrupt but shouldn't be a problem */
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003703 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
3704 adapter->link_check_timeout = jiffies;
Auke Kok9a799d72007-09-15 14:07:45 -07003705 mod_timer(&adapter->watchdog_timer, jiffies);
Greg Rosec9205692010-01-22 22:46:22 +00003706
3707 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
3708 ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
3709 ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD;
3710 IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext);
3711
Auke Kok9a799d72007-09-15 14:07:45 -07003712 return 0;
3713}
3714
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003715void ixgbe_reinit_locked(struct ixgbe_adapter *adapter)
3716{
3717 WARN_ON(in_interrupt());
3718 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
3719 msleep(1);
3720 ixgbe_down(adapter);
Greg Rose5809a1a2010-03-24 09:36:08 +00003721 /*
3722 * If SR-IOV enabled then wait a bit before bringing the adapter
3723 * back up to give the VFs time to respond to the reset. The
3724 * two second wait is based upon the watchdog timer cycle in
3725 * the VF driver.
3726 */
3727 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3728 msleep(2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08003729 ixgbe_up(adapter);
3730 clear_bit(__IXGBE_RESETTING, &adapter->state);
3731}
3732
Auke Kok9a799d72007-09-15 14:07:45 -07003733int ixgbe_up(struct ixgbe_adapter *adapter)
3734{
3735 /* hardware has been reset, we need to reload some things */
3736 ixgbe_configure(adapter);
3737
3738 return ixgbe_up_complete(adapter);
3739}
3740
3741void ixgbe_reset(struct ixgbe_adapter *adapter)
3742{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07003743 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore8ca783a2009-05-26 20:40:47 -07003744 int err;
3745
3746 err = hw->mac.ops.init_hw(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003747 switch (err) {
3748 case 0:
3749 case IXGBE_ERR_SFP_NOT_PRESENT:
3750 break;
3751 case IXGBE_ERR_MASTER_REQUESTS_PENDING:
Emil Tantilov849c4542010-06-03 16:53:41 +00003752 e_dev_err("master disable timed out\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003753 break;
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003754 case IXGBE_ERR_EEPROM_VERSION:
3755 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00003756 e_dev_warn("This device is a pre-production adapter/LOM. "
3757 "Please be aware there may be issuesassociated with "
3758 "your hardware. If you are experiencing problems "
3759 "please contact your Intel or hardware "
3760 "representative who provided you with this "
3761 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00003762 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003763 default:
Emil Tantilov849c4542010-06-03 16:53:41 +00003764 e_dev_err("Hardware Error: %d\n", err);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003765 }
Auke Kok9a799d72007-09-15 14:07:45 -07003766
3767 /* reprogram the RAR[0] in case user changed it. */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00003768 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
3769 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07003770}
3771
Auke Kok9a799d72007-09-15 14:07:45 -07003772/**
3773 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07003774 * @rx_ring: ring to free buffers from
3775 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003776static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003777{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003778 struct device *dev = rx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07003779 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003780 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003781
Alexander Duyck84418e32010-08-19 13:40:54 +00003782 /* ring already cleared, nothing to do */
3783 if (!rx_ring->rx_buffer_info)
3784 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003785
Alexander Duyck84418e32010-08-19 13:40:54 +00003786 /* Free all the Rx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003787 for (i = 0; i < rx_ring->count; i++) {
3788 struct ixgbe_rx_buffer *rx_buffer_info;
3789
3790 rx_buffer_info = &rx_ring->rx_buffer_info[i];
3791 if (rx_buffer_info->dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003792 dma_unmap_single(rx_ring->dev, rx_buffer_info->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003793 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003794 DMA_FROM_DEVICE);
Auke Kok9a799d72007-09-15 14:07:45 -07003795 rx_buffer_info->dma = 0;
3796 }
3797 if (rx_buffer_info->skb) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00003798 struct sk_buff *skb = rx_buffer_info->skb;
Auke Kok9a799d72007-09-15 14:07:45 -07003799 rx_buffer_info->skb = NULL;
Alexander Duyckf8212f92009-04-27 22:42:37 +00003800 do {
3801 struct sk_buff *this = skb;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00003802 if (IXGBE_RSC_CB(this)->delay_unmap) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003803 dma_unmap_single(dev,
Nick Nunley1b507732010-04-27 13:10:27 +00003804 IXGBE_RSC_CB(this)->dma,
Joe Perchese8e9f692010-09-07 21:34:53 +00003805 rx_ring->rx_buf_len,
Nick Nunley1b507732010-04-27 13:10:27 +00003806 DMA_FROM_DEVICE);
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00003807 IXGBE_RSC_CB(this)->dma = 0;
Mallikarjuna R Chilakalae8171aa2010-05-13 17:33:21 +00003808 IXGBE_RSC_CB(skb)->delay_unmap = false;
Mallikarjuna R Chilakalafd3686a2010-03-19 04:41:33 +00003809 }
Alexander Duyckf8212f92009-04-27 22:42:37 +00003810 skb = skb->prev;
3811 dev_kfree_skb(this);
3812 } while (skb);
Auke Kok9a799d72007-09-15 14:07:45 -07003813 }
3814 if (!rx_buffer_info->page)
3815 continue;
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003816 if (rx_buffer_info->page_dma) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003817 dma_unmap_page(dev, rx_buffer_info->page_dma,
Nick Nunley1b507732010-04-27 13:10:27 +00003818 PAGE_SIZE / 2, DMA_FROM_DEVICE);
Jesse Brandeburg4f57ca62009-06-30 11:44:56 +00003819 rx_buffer_info->page_dma = 0;
3820 }
Auke Kok9a799d72007-09-15 14:07:45 -07003821 put_page(rx_buffer_info->page);
3822 rx_buffer_info->page = NULL;
Jesse Brandeburg762f4c52008-09-11 19:58:43 -07003823 rx_buffer_info->page_offset = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003824 }
3825
3826 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
3827 memset(rx_ring->rx_buffer_info, 0, size);
3828
3829 /* Zero out the descriptor ring */
3830 memset(rx_ring->desc, 0, rx_ring->size);
3831
3832 rx_ring->next_to_clean = 0;
3833 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003834}
3835
3836/**
3837 * ixgbe_clean_tx_ring - Free Tx Buffers
Auke Kok9a799d72007-09-15 14:07:45 -07003838 * @tx_ring: ring to be cleaned
3839 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003840static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07003841{
3842 struct ixgbe_tx_buffer *tx_buffer_info;
3843 unsigned long size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003844 u16 i;
Auke Kok9a799d72007-09-15 14:07:45 -07003845
Alexander Duyck84418e32010-08-19 13:40:54 +00003846 /* ring already cleared, nothing to do */
3847 if (!tx_ring->tx_buffer_info)
3848 return;
Auke Kok9a799d72007-09-15 14:07:45 -07003849
Alexander Duyck84418e32010-08-19 13:40:54 +00003850 /* Free all the Tx ring sk_buffs */
Auke Kok9a799d72007-09-15 14:07:45 -07003851 for (i = 0; i < tx_ring->count; i++) {
3852 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003853 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Auke Kok9a799d72007-09-15 14:07:45 -07003854 }
3855
3856 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
3857 memset(tx_ring->tx_buffer_info, 0, size);
3858
3859 /* Zero out the descriptor ring */
3860 memset(tx_ring->desc, 0, tx_ring->size);
3861
3862 tx_ring->next_to_use = 0;
3863 tx_ring->next_to_clean = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07003864}
3865
3866/**
Auke Kok9a799d72007-09-15 14:07:45 -07003867 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
3868 * @adapter: board private structure
3869 **/
3870static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter)
3871{
3872 int i;
3873
3874 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003875 ixgbe_clean_rx_ring(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07003876}
3877
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003878/**
3879 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
3880 * @adapter: board private structure
3881 **/
3882static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter)
3883{
3884 int i;
3885
3886 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08003887 ixgbe_clean_tx_ring(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003888}
3889
Auke Kok9a799d72007-09-15 14:07:45 -07003890void ixgbe_down(struct ixgbe_adapter *adapter)
3891{
3892 struct net_device *netdev = adapter->netdev;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003893 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07003894 u32 rxctrl;
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003895 u32 txdctl;
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003896 int i;
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00003897 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Auke Kok9a799d72007-09-15 14:07:45 -07003898
3899 /* signal that we are down to the interrupt handler */
3900 set_bit(__IXGBE_DOWN, &adapter->state);
3901
Greg Rose767081a2010-01-22 22:46:40 +00003902 /* disable receive for all VFs and wait one second */
3903 if (adapter->num_vfs) {
Greg Rose767081a2010-01-22 22:46:40 +00003904 /* ping all the active vfs to let them know we are going down */
3905 ixgbe_ping_all_vfs(adapter);
Greg Rose581d1aa2010-03-24 09:36:27 +00003906
Greg Rose767081a2010-01-22 22:46:40 +00003907 /* Disable all VFTE/VFRE TX/RX */
3908 ixgbe_disable_tx_rx(adapter);
Greg Rose581d1aa2010-03-24 09:36:27 +00003909
3910 /* Mark all the VFs as inactive */
3911 for (i = 0 ; i < adapter->num_vfs; i++)
3912 adapter->vfinfo[i].clear_to_send = 0;
Greg Rose767081a2010-01-22 22:46:40 +00003913 }
3914
Auke Kok9a799d72007-09-15 14:07:45 -07003915 /* disable receives */
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003916 rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
3917 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN);
Auke Kok9a799d72007-09-15 14:07:45 -07003918
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003919 IXGBE_WRITE_FLUSH(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07003920 msleep(10);
3921
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003922 netif_tx_stop_all_queues(netdev);
3923
Don Skidmore0a1f87c2009-09-18 09:45:43 +00003924 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
3925 del_timer_sync(&adapter->sfp_timer);
Auke Kok9a799d72007-09-15 14:07:45 -07003926 del_timer_sync(&adapter->watchdog_timer);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07003927 cancel_work_sync(&adapter->watchdog_task);
Auke Kok9a799d72007-09-15 14:07:45 -07003928
John Fastabendc0dfb902010-04-27 02:13:39 +00003929 netif_carrier_off(netdev);
3930 netif_tx_disable(netdev);
3931
3932 ixgbe_irq_disable(adapter);
3933
3934 ixgbe_napi_disable_all(adapter);
3935
Peter Waskiewiczb25ebfd2010-10-05 01:27:49 +00003936 /* Cleanup the affinity_hint CPU mask memory and callback */
3937 for (i = 0; i < num_q_vectors; i++) {
3938 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
3939 /* clear the affinity_mask in the IRQ descriptor */
3940 irq_set_affinity_hint(adapter->msix_entries[i]. vector, NULL);
3941 /* release the CPU mask memory */
3942 free_cpumask_var(q_vector->affinity_mask);
3943 }
3944
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00003945 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
3946 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
3947 cancel_work_sync(&adapter->fdir_reinit_task);
3948
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07003949 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
3950 cancel_work_sync(&adapter->check_overtemp_task);
3951
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003952 /* disable transmits in the hardware now that interrupts are off */
3953 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckbf29ee62010-11-16 19:27:07 -08003954 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
3955 txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx));
3956 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx),
Joe Perchese8e9f692010-09-07 21:34:53 +00003957 (txdctl & ~IXGBE_TXDCTL_ENABLE));
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003958 }
PJ Waskiewicz88512532009-03-13 22:15:10 +00003959 /* Disable the Tx DMA engine on 82599 */
Alexander Duyckbd508172010-11-16 19:27:03 -08003960 switch (hw->mac.type) {
3961 case ixgbe_mac_82599EB:
PJ Waskiewicz88512532009-03-13 22:15:10 +00003962 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL,
Joe Perchese8e9f692010-09-07 21:34:53 +00003963 (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) &
3964 ~IXGBE_DMATXCTL_TE));
Alexander Duyckbd508172010-11-16 19:27:03 -08003965 break;
3966 default:
3967 break;
3968 }
Jesse Brandeburg7f821872008-09-11 20:00:16 -07003969
John Fastabend9f756f02010-06-29 18:28:36 +00003970 /* power down the optics */
3971 if (hw->phy.multispeed_fiber)
3972 hw->mac.ops.disable_tx_laser(hw);
3973
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00003974 /* clear n-tuple filters that are cached */
3975 ethtool_ntuple_flush(netdev);
3976
Paul Larson6f4a0e42008-06-24 17:00:56 -07003977 if (!pci_channel_offline(adapter->pdev))
3978 ixgbe_reset(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07003979 ixgbe_clean_all_tx_rings(adapter);
3980 ixgbe_clean_all_rx_rings(adapter);
3981
Jeff Garzik5dd2d332008-10-16 05:09:31 -04003982#ifdef CONFIG_IXGBE_DCA
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07003983 /* since we reset the hardware DCA settings were cleared */
Alexander Duycke35ec122009-05-21 13:07:12 +00003984 ixgbe_setup_dca(adapter);
Jesse Brandeburg96b0e0f2008-08-26 04:27:21 -07003985#endif
Auke Kok9a799d72007-09-15 14:07:45 -07003986}
3987
Auke Kok9a799d72007-09-15 14:07:45 -07003988/**
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003989 * ixgbe_poll - NAPI Rx polling callback
3990 * @napi: structure for representing this polling device
3991 * @budget: how many packets driver is allowed to clean
3992 *
3993 * This function is used for legacy and MSI, NAPI mode
Auke Kok9a799d72007-09-15 14:07:45 -07003994 **/
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003995static int ixgbe_poll(struct napi_struct *napi, int budget)
Auke Kok9a799d72007-09-15 14:07:45 -07003996{
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00003997 struct ixgbe_q_vector *q_vector =
Joe Perchese8e9f692010-09-07 21:34:53 +00003998 container_of(napi, struct ixgbe_q_vector, napi);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08003999 struct ixgbe_adapter *adapter = q_vector->adapter;
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004000 int tx_clean_complete, work_done = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07004001
Jeff Garzik5dd2d332008-10-16 05:09:31 -04004002#ifdef CONFIG_IXGBE_DCA
Alexander Duyck33cf09c2010-11-16 19:26:55 -08004003 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED)
4004 ixgbe_update_dca(q_vector);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08004005#endif
4006
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004007 tx_clean_complete = ixgbe_clean_tx_irq(q_vector, adapter->tx_ring[0]);
4008 ixgbe_clean_rx_irq(q_vector, adapter->rx_ring[0], &work_done, budget);
Auke Kok9a799d72007-09-15 14:07:45 -07004009
Jesse Brandeburg9a1a69ad2009-03-13 22:14:10 +00004010 if (!tx_clean_complete)
David S. Millerd2c7ddd2008-01-15 22:43:24 -08004011 work_done = budget;
4012
David S. Miller53e52c72008-01-07 21:06:12 -08004013 /* If budget not fully consumed, exit the polling mode */
4014 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08004015 napi_complete(napi);
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004016 if (adapter->rx_itr_setting & 1)
Ayyappan Veeraiyanf494e8f2008-03-03 15:03:57 -08004017 ixgbe_set_itr(adapter);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004018 if (!test_bit(__IXGBE_DOWN, &adapter->state))
Nelson, Shannon835462f2009-04-27 22:42:54 +00004019 ixgbe_irq_enable_queues(adapter, IXGBE_EIMS_RTX_QUEUE);
Auke Kok9a799d72007-09-15 14:07:45 -07004020 }
Auke Kok9a799d72007-09-15 14:07:45 -07004021 return work_done;
4022}
4023
4024/**
4025 * ixgbe_tx_timeout - Respond to a Tx Hang
4026 * @netdev: network interface device structure
4027 **/
4028static void ixgbe_tx_timeout(struct net_device *netdev)
4029{
4030 struct ixgbe_adapter *adapter = netdev_priv(netdev);
4031
4032 /* Do the reset outside of interrupt context */
4033 schedule_work(&adapter->reset_task);
4034}
4035
4036static void ixgbe_reset_task(struct work_struct *work)
4037{
4038 struct ixgbe_adapter *adapter;
4039 adapter = container_of(work, struct ixgbe_adapter, reset_task);
4040
Alexander Duyck2f90b862008-11-20 20:52:10 -08004041 /* If we're already down or resetting, just bail */
4042 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
4043 test_bit(__IXGBE_RESETTING, &adapter->state))
4044 return;
4045
Auke Kok9a799d72007-09-15 14:07:45 -07004046 adapter->tx_timeout_count++;
4047
Taku Izumidcd79ae2010-04-27 14:39:53 +00004048 ixgbe_dump(adapter);
4049 netdev_err(adapter->netdev, "Reset adapter\n");
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08004050 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004051}
4052
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004053#ifdef CONFIG_IXGBE_DCB
4054static inline bool ixgbe_set_dcb_queues(struct ixgbe_adapter *adapter)
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004055{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004056 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004057 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_DCB];
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004058
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004059 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
4060 return ret;
4061
4062 f->mask = 0x7 << 3;
4063 adapter->num_rx_queues = f->indices;
4064 adapter->num_tx_queues = f->indices;
4065 ret = true;
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004066
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004067 return ret;
4068}
4069#endif
4070
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004071/**
4072 * ixgbe_set_rss_queues: Allocate queues for RSS
4073 * @adapter: board private structure to initialize
4074 *
4075 * This is our "base" multiqueue mode. RSS (Receive Side Scaling) will try
4076 * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
4077 *
4078 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004079static inline bool ixgbe_set_rss_queues(struct ixgbe_adapter *adapter)
4080{
4081 bool ret = false;
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004082 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_RSS];
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004083
4084 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Jesse Brandeburg0cefafa2009-05-19 09:19:11 +00004085 f->mask = 0xF;
4086 adapter->num_rx_queues = f->indices;
4087 adapter->num_tx_queues = f->indices;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004088 ret = true;
4089 } else {
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004090 ret = false;
4091 }
4092
4093 return ret;
4094}
4095
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004096/**
4097 * ixgbe_set_fdir_queues: Allocate queues for Flow Director
4098 * @adapter: board private structure to initialize
4099 *
4100 * Flow Director is an advanced Rx filter, attempting to get Rx flows back
4101 * to the original CPU that initiated the Tx session. This runs in addition
4102 * to RSS, so if a packet doesn't match an FDIR filter, we can still spread the
4103 * Rx load across CPUs using RSS.
4104 *
4105 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004106static inline bool ixgbe_set_fdir_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004107{
4108 bool ret = false;
4109 struct ixgbe_ring_feature *f_fdir = &adapter->ring_feature[RING_F_FDIR];
4110
4111 f_fdir->indices = min((int)num_online_cpus(), f_fdir->indices);
4112 f_fdir->mask = 0;
4113
4114 /* Flow Director must have RSS enabled */
4115 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED &&
4116 ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
4117 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)))) {
4118 adapter->num_tx_queues = f_fdir->indices;
4119 adapter->num_rx_queues = f_fdir->indices;
4120 ret = true;
4121 } else {
4122 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
4123 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
4124 }
4125 return ret;
4126}
4127
Yi Zou0331a832009-05-17 12:33:52 +00004128#ifdef IXGBE_FCOE
4129/**
4130 * ixgbe_set_fcoe_queues: Allocate queues for Fiber Channel over Ethernet (FCoE)
4131 * @adapter: board private structure to initialize
4132 *
4133 * FCoE RX FCRETA can use up to 8 rx queues for up to 8 different exchanges.
4134 * The ring feature mask is not used as a mask for FCoE, as it can take any 8
4135 * rx queues out of the max number of rx queues, instead, it is used as the
4136 * index of the first rx queue used by FCoE.
4137 *
4138 **/
4139static inline bool ixgbe_set_fcoe_queues(struct ixgbe_adapter *adapter)
4140{
4141 bool ret = false;
4142 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
4143
4144 f->indices = min((int)num_online_cpus(), f->indices);
4145 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
Yi Zou8de8b2e2009-09-03 14:55:50 +00004146 adapter->num_rx_queues = 1;
4147 adapter->num_tx_queues = 1;
Yi Zou0331a832009-05-17 12:33:52 +00004148#ifdef CONFIG_IXGBE_DCB
4149 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00004150 e_info(probe, "FCoE enabled with DCB\n");
Yi Zou0331a832009-05-17 12:33:52 +00004151 ixgbe_set_dcb_queues(adapter);
4152 }
4153#endif
4154 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00004155 e_info(probe, "FCoE enabled with RSS\n");
Yi Zou8faa2a72009-07-09 02:29:50 +00004156 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4157 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
4158 ixgbe_set_fdir_queues(adapter);
4159 else
4160 ixgbe_set_rss_queues(adapter);
Yi Zou0331a832009-05-17 12:33:52 +00004161 }
4162 /* adding FCoE rx rings to the end */
4163 f->mask = adapter->num_rx_queues;
4164 adapter->num_rx_queues += f->indices;
Yi Zou8de8b2e2009-09-03 14:55:50 +00004165 adapter->num_tx_queues += f->indices;
Yi Zou0331a832009-05-17 12:33:52 +00004166
4167 ret = true;
4168 }
4169
4170 return ret;
4171}
4172
4173#endif /* IXGBE_FCOE */
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004174/**
4175 * ixgbe_set_sriov_queues: Allocate queues for IOV use
4176 * @adapter: board private structure to initialize
4177 *
4178 * IOV doesn't actually use anything, so just NAK the
4179 * request for now and let the other queue routines
4180 * figure out what to do.
4181 */
4182static inline bool ixgbe_set_sriov_queues(struct ixgbe_adapter *adapter)
4183{
4184 return false;
4185}
4186
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004187/*
4188 * ixgbe_set_num_queues: Allocate queues for device, feature dependant
4189 * @adapter: board private structure to initialize
4190 *
4191 * This is the top level queue allocation routine. The order here is very
4192 * important, starting with the "most" number of features turned on at once,
4193 * and ending with the smallest set of features. This way large combinations
4194 * can be allocated if they're turned on, and smaller combinations are the
4195 * fallthrough conditions.
4196 *
4197 **/
Ben Hutchings847f53f2010-09-27 08:28:56 +00004198static int ixgbe_set_num_queues(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004199{
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004200 /* Start with base case */
4201 adapter->num_rx_queues = 1;
4202 adapter->num_tx_queues = 1;
4203 adapter->num_rx_pools = adapter->num_rx_queues;
4204 adapter->num_rx_queues_per_pool = 1;
4205
4206 if (ixgbe_set_sriov_queues(adapter))
Ben Hutchings847f53f2010-09-27 08:28:56 +00004207 goto done;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004208
Yi Zou0331a832009-05-17 12:33:52 +00004209#ifdef IXGBE_FCOE
4210 if (ixgbe_set_fcoe_queues(adapter))
4211 goto done;
4212
4213#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004214#ifdef CONFIG_IXGBE_DCB
4215 if (ixgbe_set_dcb_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004216 goto done;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004217
4218#endif
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004219 if (ixgbe_set_fdir_queues(adapter))
4220 goto done;
4221
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004222 if (ixgbe_set_rss_queues(adapter))
Wu Fengguangaf22ab12009-04-14 21:54:07 -07004223 goto done;
4224
4225 /* fallback to base case */
4226 adapter->num_rx_queues = 1;
4227 adapter->num_tx_queues = 1;
4228
4229done:
Ben Hutchings847f53f2010-09-27 08:28:56 +00004230 /* Notify the stack of the (possibly) reduced queue counts. */
John Fastabendf0796d52010-07-01 13:21:57 +00004231 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
Ben Hutchings847f53f2010-09-27 08:28:56 +00004232 return netif_set_real_num_rx_queues(adapter->netdev,
4233 adapter->num_rx_queues);
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004234}
4235
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004236static void ixgbe_acquire_msix_vectors(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00004237 int vectors)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004238{
4239 int err, vector_threshold;
4240
4241 /* We'll want at least 3 (vector_threshold):
4242 * 1) TxQ[0] Cleanup
4243 * 2) RxQ[0] Cleanup
4244 * 3) Other (Link Status Change, etc.)
4245 * 4) TCP Timer (optional)
4246 */
4247 vector_threshold = MIN_MSIX_COUNT;
4248
4249 /* The more we get, the more we will assign to Tx/Rx Cleanup
4250 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
4251 * Right now, we simply care about how many we'll get; we'll
4252 * set them up later while requesting irq's.
4253 */
4254 while (vectors >= vector_threshold) {
4255 err = pci_enable_msix(adapter->pdev, adapter->msix_entries,
Joe Perchese8e9f692010-09-07 21:34:53 +00004256 vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004257 if (!err) /* Success in acquiring all requested vectors. */
4258 break;
4259 else if (err < 0)
4260 vectors = 0; /* Nasty failure, quit now */
4261 else /* err == number of vectors we should try again with */
4262 vectors = err;
4263 }
4264
4265 if (vectors < vector_threshold) {
4266 /* Can't allocate enough MSI-X interrupts? Oh well.
4267 * This just means we'll go with either a single MSI
4268 * vector or fall back to legacy interrupts.
4269 */
Emil Tantilov849c4542010-06-03 16:53:41 +00004270 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4271 "Unable to allocate MSI-X interrupts\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004272 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4273 kfree(adapter->msix_entries);
4274 adapter->msix_entries = NULL;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004275 } else {
4276 adapter->flags |= IXGBE_FLAG_MSIX_ENABLED; /* Woot! */
Peter P Waskiewicz Jreb7f1392009-02-01 01:18:58 -08004277 /*
4278 * Adjust for only the vectors we'll use, which is minimum
4279 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
4280 * vectors we were allocated.
4281 */
4282 adapter->num_msix_vectors = min(vectors,
Joe Perchese8e9f692010-09-07 21:34:53 +00004283 adapter->max_msix_q_vectors + NON_Q_VECTORS);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004284 }
4285}
4286
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004287/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004288 * ixgbe_cache_ring_rss - Descriptor ring to register mapping for RSS
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004289 * @adapter: board private structure to initialize
4290 *
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004291 * Cache the descriptor ring offsets for RSS to the assigned rings.
4292 *
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004293 **/
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004294static inline bool ixgbe_cache_ring_rss(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004295{
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004296 int i;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004297
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004298 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
4299 return false;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004300
Alexander Duyck9d6b7582010-11-16 19:27:06 -08004301 for (i = 0; i < adapter->num_rx_queues; i++)
4302 adapter->rx_ring[i]->reg_idx = i;
4303 for (i = 0; i < adapter->num_tx_queues; i++)
4304 adapter->tx_ring[i]->reg_idx = i;
4305
4306 return true;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004307}
4308
4309#ifdef CONFIG_IXGBE_DCB
4310/**
4311 * ixgbe_cache_ring_dcb - Descriptor ring to register mapping for DCB
4312 * @adapter: board private structure to initialize
4313 *
4314 * Cache the descriptor ring offsets for DCB to the assigned rings.
4315 *
4316 **/
4317static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter)
4318{
4319 int i;
4320 bool ret = false;
4321 int dcb_i = adapter->ring_feature[RING_F_DCB].indices;
4322
Alexander Duyckbd508172010-11-16 19:27:03 -08004323 if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
4324 return false;
4325
4326 /* the number of queues is assumed to be symmetric */
4327 switch (adapter->hw.mac.type) {
4328 case ixgbe_mac_82598EB:
4329 for (i = 0; i < dcb_i; i++) {
4330 adapter->rx_ring[i]->reg_idx = i << 3;
4331 adapter->tx_ring[i]->reg_idx = i << 2;
4332 }
4333 ret = true;
4334 break;
4335 case ixgbe_mac_82599EB:
4336 if (dcb_i == 8) {
4337 /*
4338 * Tx TC0 starts at: descriptor queue 0
4339 * Tx TC1 starts at: descriptor queue 32
4340 * Tx TC2 starts at: descriptor queue 64
4341 * Tx TC3 starts at: descriptor queue 80
4342 * Tx TC4 starts at: descriptor queue 96
4343 * Tx TC5 starts at: descriptor queue 104
4344 * Tx TC6 starts at: descriptor queue 112
4345 * Tx TC7 starts at: descriptor queue 120
4346 *
4347 * Rx TC0-TC7 are offset by 16 queues each
4348 */
4349 for (i = 0; i < 3; i++) {
4350 adapter->tx_ring[i]->reg_idx = i << 5;
4351 adapter->rx_ring[i]->reg_idx = i << 4;
4352 }
4353 for ( ; i < 5; i++) {
4354 adapter->tx_ring[i]->reg_idx = ((i + 2) << 4);
4355 adapter->rx_ring[i]->reg_idx = i << 4;
4356 }
4357 for ( ; i < dcb_i; i++) {
4358 adapter->tx_ring[i]->reg_idx = ((i + 8) << 3);
4359 adapter->rx_ring[i]->reg_idx = i << 4;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004360 }
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004361 ret = true;
Alexander Duyckbd508172010-11-16 19:27:03 -08004362 } else if (dcb_i == 4) {
4363 /*
4364 * Tx TC0 starts at: descriptor queue 0
4365 * Tx TC1 starts at: descriptor queue 64
4366 * Tx TC2 starts at: descriptor queue 96
4367 * Tx TC3 starts at: descriptor queue 112
4368 *
4369 * Rx TC0-TC3 are offset by 32 queues each
4370 */
4371 adapter->tx_ring[0]->reg_idx = 0;
4372 adapter->tx_ring[1]->reg_idx = 64;
4373 adapter->tx_ring[2]->reg_idx = 96;
4374 adapter->tx_ring[3]->reg_idx = 112;
4375 for (i = 0 ; i < dcb_i; i++)
4376 adapter->rx_ring[i]->reg_idx = i << 5;
4377 ret = true;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004378 }
Alexander Duyckbd508172010-11-16 19:27:03 -08004379 break;
4380 default:
4381 break;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004382 }
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004383 return ret;
4384}
4385#endif
4386
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004387/**
4388 * ixgbe_cache_ring_fdir - Descriptor ring to register mapping for Flow Director
4389 * @adapter: board private structure to initialize
4390 *
4391 * Cache the descriptor ring offsets for Flow Director to the assigned rings.
4392 *
4393 **/
Joe Perchese8e9f692010-09-07 21:34:53 +00004394static inline bool ixgbe_cache_ring_fdir(struct ixgbe_adapter *adapter)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004395{
4396 int i;
4397 bool ret = false;
4398
4399 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED &&
4400 ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4401 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))) {
4402 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004403 adapter->rx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004404 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004405 adapter->tx_ring[i]->reg_idx = i;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004406 ret = true;
4407 }
4408
4409 return ret;
4410}
4411
Yi Zou0331a832009-05-17 12:33:52 +00004412#ifdef IXGBE_FCOE
4413/**
4414 * ixgbe_cache_ring_fcoe - Descriptor ring to register mapping for the FCoE
4415 * @adapter: board private structure to initialize
4416 *
4417 * Cache the descriptor ring offsets for FCoE mode to the assigned rings.
4418 *
4419 */
4420static inline bool ixgbe_cache_ring_fcoe(struct ixgbe_adapter *adapter)
4421{
Yi Zou0331a832009-05-17 12:33:52 +00004422 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004423 int i;
4424 u8 fcoe_rx_i = 0, fcoe_tx_i = 0;
Yi Zou0331a832009-05-17 12:33:52 +00004425
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004426 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
4427 return false;
4428
Yi Zou0331a832009-05-17 12:33:52 +00004429#ifdef CONFIG_IXGBE_DCB
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004430 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
4431 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou8de8b2e2009-09-03 14:55:50 +00004432
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004433 ixgbe_cache_ring_dcb(adapter);
4434 /* find out queues in TC for FCoE */
4435 fcoe_rx_i = adapter->rx_ring[fcoe->tc]->reg_idx + 1;
4436 fcoe_tx_i = adapter->tx_ring[fcoe->tc]->reg_idx + 1;
4437 /*
4438 * In 82599, the number of Tx queues for each traffic
4439 * class for both 8-TC and 4-TC modes are:
4440 * TCs : TC0 TC1 TC2 TC3 TC4 TC5 TC6 TC7
4441 * 8 TCs: 32 32 16 16 8 8 8 8
4442 * 4 TCs: 64 64 32 32
4443 * We have max 8 queues for FCoE, where 8 the is
4444 * FCoE redirection table size. If TC for FCoE is
4445 * less than or equal to TC3, we have enough queues
4446 * to add max of 8 queues for FCoE, so we start FCoE
4447 * Tx queue from the next one, i.e., reg_idx + 1.
4448 * If TC for FCoE is above TC3, implying 8 TC mode,
4449 * and we need 8 for FCoE, we have to take all queues
4450 * in that traffic class for FCoE.
4451 */
4452 if ((f->indices == IXGBE_FCRETA_SIZE) && (fcoe->tc > 3))
4453 fcoe_tx_i--;
Yi Zou0331a832009-05-17 12:33:52 +00004454 }
Alexander Duyckbf29ee62010-11-16 19:27:07 -08004455#endif /* CONFIG_IXGBE_DCB */
4456 if (adapter->flags & IXGBE_FLAG_RSS_ENABLED) {
4457 if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) ||
4458 (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
4459 ixgbe_cache_ring_fdir(adapter);
4460 else
4461 ixgbe_cache_ring_rss(adapter);
4462
4463 fcoe_rx_i = f->mask;
4464 fcoe_tx_i = f->mask;
4465 }
4466 for (i = 0; i < f->indices; i++, fcoe_rx_i++, fcoe_tx_i++) {
4467 adapter->rx_ring[f->mask + i]->reg_idx = fcoe_rx_i;
4468 adapter->tx_ring[f->mask + i]->reg_idx = fcoe_tx_i;
4469 }
4470 return true;
Yi Zou0331a832009-05-17 12:33:52 +00004471}
4472
4473#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004474/**
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004475 * ixgbe_cache_ring_sriov - Descriptor ring to register mapping for sriov
4476 * @adapter: board private structure to initialize
4477 *
4478 * SR-IOV doesn't use any descriptor rings but changes the default if
4479 * no other mapping is used.
4480 *
4481 */
4482static inline bool ixgbe_cache_ring_sriov(struct ixgbe_adapter *adapter)
4483{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004484 adapter->rx_ring[0]->reg_idx = adapter->num_vfs * 2;
4485 adapter->tx_ring[0]->reg_idx = adapter->num_vfs * 2;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004486 if (adapter->num_vfs)
4487 return true;
4488 else
4489 return false;
4490}
4491
4492/**
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004493 * ixgbe_cache_ring_register - Descriptor ring to register mapping
4494 * @adapter: board private structure to initialize
4495 *
4496 * Once we know the feature-set enabled for the device, we'll cache
4497 * the register offset the descriptor ring is assigned to.
4498 *
4499 * Note, the order the various feature calls is important. It must start with
4500 * the "most" features enabled at the same time, then trickle down to the
4501 * least amount of features turned on at once.
4502 **/
4503static void ixgbe_cache_ring_register(struct ixgbe_adapter *adapter)
4504{
4505 /* start with default case */
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004506 adapter->rx_ring[0]->reg_idx = 0;
4507 adapter->tx_ring[0]->reg_idx = 0;
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004508
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004509 if (ixgbe_cache_ring_sriov(adapter))
4510 return;
4511
Yi Zou0331a832009-05-17 12:33:52 +00004512#ifdef IXGBE_FCOE
4513 if (ixgbe_cache_ring_fcoe(adapter))
4514 return;
4515
4516#endif /* IXGBE_FCOE */
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004517#ifdef CONFIG_IXGBE_DCB
4518 if (ixgbe_cache_ring_dcb(adapter))
4519 return;
4520
4521#endif
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004522 if (ixgbe_cache_ring_fdir(adapter))
4523 return;
4524
Peter P Waskiewicz Jrbc971142009-02-05 23:53:59 -08004525 if (ixgbe_cache_ring_rss(adapter))
4526 return;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004527}
4528
Auke Kok9a799d72007-09-15 14:07:45 -07004529/**
4530 * ixgbe_alloc_queues - Allocate memory for all rings
4531 * @adapter: board private structure to initialize
4532 *
4533 * We allocate one ring per queue at run-time since we don't know the
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004534 * number of queues at compile-time. The polling_netdev array is
4535 * intended for Multiqueue, but should work fine with a single queue.
Auke Kok9a799d72007-09-15 14:07:45 -07004536 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004537static int ixgbe_alloc_queues(struct ixgbe_adapter *adapter)
Auke Kok9a799d72007-09-15 14:07:45 -07004538{
4539 int i;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004540 int rx_count;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004541 int orig_node = adapter->node;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004542
4543 for (i = 0; i < adapter->num_tx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004544 struct ixgbe_ring *ring = adapter->tx_ring[i];
4545 if (orig_node == -1) {
4546 int cur_node = next_online_node(adapter->node);
4547 if (cur_node == MAX_NUMNODES)
4548 cur_node = first_online_node;
4549 adapter->node = cur_node;
4550 }
4551 ring = kzalloc_node(sizeof(struct ixgbe_ring), GFP_KERNEL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004552 adapter->node);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004553 if (!ring)
4554 ring = kzalloc(sizeof(struct ixgbe_ring), GFP_KERNEL);
4555 if (!ring)
4556 goto err_tx_ring_allocation;
4557 ring->count = adapter->tx_ring_count;
4558 ring->queue_index = i;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004559 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004560 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004561 ring->numa_node = adapter->node;
4562
4563 adapter->tx_ring[i] = ring;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004564 }
Jesse Brandeburgb9804972008-09-11 20:00:29 -07004565
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004566 /* Restore the adapter's original node */
4567 adapter->node = orig_node;
4568
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004569 rx_count = adapter->rx_ring_count;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004570 for (i = 0; i < adapter->num_rx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004571 struct ixgbe_ring *ring = adapter->rx_ring[i];
4572 if (orig_node == -1) {
4573 int cur_node = next_online_node(adapter->node);
4574 if (cur_node == MAX_NUMNODES)
4575 cur_node = first_online_node;
4576 adapter->node = cur_node;
4577 }
4578 ring = kzalloc_node(sizeof(struct ixgbe_ring), GFP_KERNEL,
Joe Perchese8e9f692010-09-07 21:34:53 +00004579 adapter->node);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004580 if (!ring)
4581 ring = kzalloc(sizeof(struct ixgbe_ring), GFP_KERNEL);
4582 if (!ring)
4583 goto err_rx_ring_allocation;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004584 ring->count = rx_count;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004585 ring->queue_index = i;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08004586 ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08004587 ring->netdev = adapter->netdev;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004588 ring->numa_node = adapter->node;
4589
4590 adapter->rx_ring[i] = ring;
Auke Kok9a799d72007-09-15 14:07:45 -07004591 }
4592
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004593 /* Restore the adapter's original node */
4594 adapter->node = orig_node;
4595
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004596 ixgbe_cache_ring_register(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004597
4598 return 0;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004599
4600err_rx_ring_allocation:
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004601 for (i = 0; i < adapter->num_tx_queues; i++)
4602 kfree(adapter->tx_ring[i]);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004603err_tx_ring_allocation:
4604 return -ENOMEM;
4605}
4606
4607/**
4608 * ixgbe_set_interrupt_capability - set MSI-X or MSI if supported
4609 * @adapter: board private structure to initialize
4610 *
4611 * Attempt to configure the interrupts using the best available
4612 * capabilities of the hardware and the kernel.
4613 **/
Al Virofeea6a52008-11-27 15:34:07 -08004614static int ixgbe_set_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004615{
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004616 struct ixgbe_hw *hw = &adapter->hw;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004617 int err = 0;
4618 int vector, v_budget;
4619
4620 /*
4621 * It's easy to be greedy for MSI-X vectors, but it really
4622 * doesn't do us much good if we have a lot more vectors
4623 * than CPU's. So let's be conservative and only ask for
PJ Waskiewicz342bde12009-11-12 23:50:43 +00004624 * (roughly) the same number of vectors as there are CPU's.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004625 */
4626 v_budget = min(adapter->num_rx_queues + adapter->num_tx_queues,
Joe Perchese8e9f692010-09-07 21:34:53 +00004627 (int)num_online_cpus()) + NON_Q_VECTORS;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004628
4629 /*
4630 * At the same time, hardware can only support a maximum of
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004631 * hw.mac->max_msix_vectors vectors. With features
4632 * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
4633 * descriptor queues supported by our device. Thus, we cap it off in
4634 * those rare cases where the cpu count also exceeds our vector limit.
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004635 */
PJ Waskiewicz8be0e462009-03-31 21:34:05 +00004636 v_budget = min(v_budget, (int)hw->mac.max_msix_vectors);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004637
4638 /* A failure in MSI-X entry allocation isn't fatal, but it does
4639 * mean we disable MSI-X capabilities of the adapter. */
4640 adapter->msix_entries = kcalloc(v_budget,
Joe Perchese8e9f692010-09-07 21:34:53 +00004641 sizeof(struct msix_entry), GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004642 if (adapter->msix_entries) {
4643 for (vector = 0; vector < v_budget; vector++)
4644 adapter->msix_entries[vector].entry = vector;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004645
Alexander Duyck7a921c92009-05-06 10:43:28 +00004646 ixgbe_acquire_msix_vectors(adapter, v_budget);
4647
4648 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
4649 goto out;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004650 }
David S. Miller26d27842010-05-03 15:18:22 -07004651
Alexander Duyck7a921c92009-05-06 10:43:28 +00004652 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
4653 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004654 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
4655 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
4656 adapter->atr_sample_rate = 0;
Greg Rose1cdd1ec2010-01-09 02:26:46 +00004657 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
4658 ixgbe_disable_sriov(adapter);
4659
Ben Hutchings847f53f2010-09-27 08:28:56 +00004660 err = ixgbe_set_num_queues(adapter);
4661 if (err)
4662 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004663
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004664 err = pci_enable_msi(adapter->pdev);
4665 if (!err) {
4666 adapter->flags |= IXGBE_FLAG_MSI_ENABLED;
4667 } else {
Emil Tantilov849c4542010-06-03 16:53:41 +00004668 netif_printk(adapter, hw, KERN_DEBUG, adapter->netdev,
4669 "Unable to allocate MSI interrupt, "
4670 "falling back to legacy. Error: %d\n", err);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004671 /* reset err */
4672 err = 0;
4673 }
4674
4675out:
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004676 return err;
4677}
4678
Alexander Duyck7a921c92009-05-06 10:43:28 +00004679/**
4680 * ixgbe_alloc_q_vectors - Allocate memory for interrupt vectors
4681 * @adapter: board private structure to initialize
4682 *
4683 * We allocate one q_vector per queue interrupt. If allocation fails we
4684 * return -ENOMEM.
4685 **/
4686static int ixgbe_alloc_q_vectors(struct ixgbe_adapter *adapter)
4687{
4688 int q_idx, num_q_vectors;
4689 struct ixgbe_q_vector *q_vector;
4690 int napi_vectors;
4691 int (*poll)(struct napi_struct *, int);
4692
4693 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4694 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
4695 napi_vectors = adapter->num_rx_queues;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004696 poll = &ixgbe_clean_rxtx_many;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004697 } else {
4698 num_q_vectors = 1;
4699 napi_vectors = 1;
4700 poll = &ixgbe_poll;
4701 }
4702
4703 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004704 q_vector = kzalloc_node(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004705 GFP_KERNEL, adapter->node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00004706 if (!q_vector)
4707 q_vector = kzalloc(sizeof(struct ixgbe_q_vector),
Joe Perchese8e9f692010-09-07 21:34:53 +00004708 GFP_KERNEL);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004709 if (!q_vector)
4710 goto err_out;
4711 q_vector->adapter = adapter;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00004712 if (q_vector->txr_count && !q_vector->rxr_count)
4713 q_vector->eitr = adapter->tx_eitr_param;
4714 else
4715 q_vector->eitr = adapter->rx_eitr_param;
Alexander Duyckfe49f042009-06-04 16:00:09 +00004716 q_vector->v_idx = q_idx;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004717 netif_napi_add(adapter->netdev, &q_vector->napi, (*poll), 64);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004718 adapter->q_vector[q_idx] = q_vector;
4719 }
4720
4721 return 0;
4722
4723err_out:
4724 while (q_idx) {
4725 q_idx--;
4726 q_vector = adapter->q_vector[q_idx];
4727 netif_napi_del(&q_vector->napi);
4728 kfree(q_vector);
4729 adapter->q_vector[q_idx] = NULL;
4730 }
4731 return -ENOMEM;
4732}
4733
4734/**
4735 * ixgbe_free_q_vectors - Free memory allocated for interrupt vectors
4736 * @adapter: board private structure to initialize
4737 *
4738 * This function frees the memory allocated to the q_vectors. In addition if
4739 * NAPI is enabled it will delete any references to the NAPI struct prior
4740 * to freeing the q_vector.
4741 **/
4742static void ixgbe_free_q_vectors(struct ixgbe_adapter *adapter)
4743{
4744 int q_idx, num_q_vectors;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004745
Alexander Duyck91281fd2009-06-04 16:00:27 +00004746 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
Alexander Duyck7a921c92009-05-06 10:43:28 +00004747 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004748 else
Alexander Duyck7a921c92009-05-06 10:43:28 +00004749 num_q_vectors = 1;
Alexander Duyck7a921c92009-05-06 10:43:28 +00004750
4751 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
4752 struct ixgbe_q_vector *q_vector = adapter->q_vector[q_idx];
Alexander Duyck7a921c92009-05-06 10:43:28 +00004753 adapter->q_vector[q_idx] = NULL;
Alexander Duyck91281fd2009-06-04 16:00:27 +00004754 netif_napi_del(&q_vector->napi);
Alexander Duyck7a921c92009-05-06 10:43:28 +00004755 kfree(q_vector);
4756 }
4757}
4758
Don Skidmore7b25cdb2009-08-25 04:47:32 +00004759static void ixgbe_reset_interrupt_capability(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004760{
4761 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
4762 adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED;
4763 pci_disable_msix(adapter->pdev);
4764 kfree(adapter->msix_entries);
4765 adapter->msix_entries = NULL;
4766 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
4767 adapter->flags &= ~IXGBE_FLAG_MSI_ENABLED;
4768 pci_disable_msi(adapter->pdev);
4769 }
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004770}
4771
4772/**
4773 * ixgbe_init_interrupt_scheme - Determine proper interrupt scheme
4774 * @adapter: board private structure to initialize
4775 *
4776 * We determine which interrupt scheme to use based on...
4777 * - Kernel support (MSI, MSI-X)
4778 * - which can be user-defined (via MODULE_PARAM)
4779 * - Hardware queue count (num_*_queues)
4780 * - defined by miscellaneous hardware support/features (RSS, etc.)
4781 **/
Alexander Duyck2f90b862008-11-20 20:52:10 -08004782int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter)
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004783{
4784 int err;
4785
4786 /* Number of supported queues */
Ben Hutchings847f53f2010-09-27 08:28:56 +00004787 err = ixgbe_set_num_queues(adapter);
4788 if (err)
4789 return err;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004790
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004791 err = ixgbe_set_interrupt_capability(adapter);
4792 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004793 e_dev_err("Unable to setup interrupt capabilities\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004794 goto err_set_interrupt;
4795 }
4796
Alexander Duyck7a921c92009-05-06 10:43:28 +00004797 err = ixgbe_alloc_q_vectors(adapter);
4798 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004799 e_dev_err("Unable to allocate memory for queue vectors\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004800 goto err_alloc_q_vectors;
4801 }
4802
4803 err = ixgbe_alloc_queues(adapter);
4804 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004805 e_dev_err("Unable to allocate memory for queues\n");
Alexander Duyck7a921c92009-05-06 10:43:28 +00004806 goto err_alloc_queues;
4807 }
4808
Emil Tantilov849c4542010-06-03 16:53:41 +00004809 e_dev_info("Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Emil Tantilov396e7992010-07-01 20:05:12 +00004810 (adapter->num_rx_queues > 1) ? "Enabled" : "Disabled",
4811 adapter->num_rx_queues, adapter->num_tx_queues);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004812
4813 set_bit(__IXGBE_DOWN, &adapter->state);
4814
4815 return 0;
4816
Alexander Duyck7a921c92009-05-06 10:43:28 +00004817err_alloc_queues:
4818 ixgbe_free_q_vectors(adapter);
4819err_alloc_q_vectors:
4820 ixgbe_reset_interrupt_capability(adapter);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004821err_set_interrupt:
Alexander Duyck7a921c92009-05-06 10:43:28 +00004822 return err;
4823}
4824
Eric Dumazet1a515022010-11-16 19:26:42 -08004825static void ring_free_rcu(struct rcu_head *head)
4826{
4827 kfree(container_of(head, struct ixgbe_ring, rcu));
4828}
4829
Alexander Duyck7a921c92009-05-06 10:43:28 +00004830/**
4831 * ixgbe_clear_interrupt_scheme - Clear the current interrupt scheme settings
4832 * @adapter: board private structure to clear interrupt scheme on
4833 *
4834 * We go through and clear interrupt specific resources and reset the structure
4835 * to pre-load conditions
4836 **/
4837void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter)
4838{
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004839 int i;
4840
4841 for (i = 0; i < adapter->num_tx_queues; i++) {
4842 kfree(adapter->tx_ring[i]);
4843 adapter->tx_ring[i] = NULL;
4844 }
4845 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08004846 struct ixgbe_ring *ring = adapter->rx_ring[i];
4847
4848 /* ixgbe_get_stats64() might access this ring, we must wait
4849 * a grace period before freeing it.
4850 */
4851 call_rcu(&ring->rcu, ring_free_rcu);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00004852 adapter->rx_ring[i] = NULL;
4853 }
Alexander Duyck7a921c92009-05-06 10:43:28 +00004854
4855 ixgbe_free_q_vectors(adapter);
4856 ixgbe_reset_interrupt_capability(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07004857}
4858
4859/**
Donald Skidmorec4900be2008-11-20 21:11:42 -08004860 * ixgbe_sfp_timer - worker thread to find a missing module
4861 * @data: pointer to our adapter struct
4862 **/
4863static void ixgbe_sfp_timer(unsigned long data)
4864{
4865 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
4866
Jesse Brandeburg4df10462009-03-13 22:15:31 +00004867 /*
4868 * Do the sfp_timer outside of interrupt context due to the
Donald Skidmorec4900be2008-11-20 21:11:42 -08004869 * delays that sfp+ detection requires
4870 */
4871 schedule_work(&adapter->sfp_task);
4872}
4873
4874/**
4875 * ixgbe_sfp_task - worker thread to find a missing module
4876 * @work: pointer to work_struct containing our data
4877 **/
4878static void ixgbe_sfp_task(struct work_struct *work)
4879{
4880 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00004881 struct ixgbe_adapter,
4882 sfp_task);
Donald Skidmorec4900be2008-11-20 21:11:42 -08004883 struct ixgbe_hw *hw = &adapter->hw;
4884
4885 if ((hw->phy.type == ixgbe_phy_nl) &&
4886 (hw->phy.sfp_type == ixgbe_sfp_type_not_present)) {
4887 s32 ret = hw->phy.ops.identify_sfp(hw);
Don Skidmore63d6e1d2009-07-02 12:50:12 +00004888 if (ret == IXGBE_ERR_SFP_NOT_PRESENT)
Donald Skidmorec4900be2008-11-20 21:11:42 -08004889 goto reschedule;
4890 ret = hw->phy.ops.reset(hw);
4891 if (ret == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Emil Tantilov849c4542010-06-03 16:53:41 +00004892 e_dev_err("failed to initialize because an unsupported "
4893 "SFP+ module type was detected.\n");
4894 e_dev_err("Reload the driver after installing a "
4895 "supported module.\n");
Donald Skidmorec4900be2008-11-20 21:11:42 -08004896 unregister_netdev(adapter->netdev);
4897 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00004898 e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type);
Donald Skidmorec4900be2008-11-20 21:11:42 -08004899 }
4900 /* don't need this routine any more */
4901 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
4902 }
4903 return;
4904reschedule:
4905 if (test_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state))
4906 mod_timer(&adapter->sfp_timer,
Joe Perchese8e9f692010-09-07 21:34:53 +00004907 round_jiffies(jiffies + (2 * HZ)));
Donald Skidmorec4900be2008-11-20 21:11:42 -08004908}
4909
4910/**
Auke Kok9a799d72007-09-15 14:07:45 -07004911 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4912 * @adapter: board private structure to initialize
4913 *
4914 * ixgbe_sw_init initializes the Adapter private data structure.
4915 * Fields are initialized based on PCI device information and
4916 * OS network device settings (MTU size).
4917 **/
4918static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
4919{
4920 struct ixgbe_hw *hw = &adapter->hw;
4921 struct pci_dev *pdev = adapter->pdev;
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00004922 struct net_device *dev = adapter->netdev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004923 unsigned int rss;
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004924#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004925 int j;
4926 struct tc_configuration *tc;
4927#endif
John Fastabend16b61be2010-11-16 19:26:44 -08004928 int max_frame = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004929
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07004930 /* PCI config space info */
4931
4932 hw->vendor_id = pdev->vendor;
4933 hw->device_id = pdev->device;
4934 hw->revision_id = pdev->revision;
4935 hw->subsystem_vendor_id = pdev->subsystem_vendor;
4936 hw->subsystem_device_id = pdev->subsystem_device;
4937
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08004938 /* Set capability flags */
4939 rss = min(IXGBE_MAX_RSS_INDICES, (int)num_online_cpus());
4940 adapter->ring_feature[RING_F_RSS].indices = rss;
4941 adapter->flags |= IXGBE_FLAG_RSS_ENABLED;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004942 adapter->ring_feature[RING_F_DCB].indices = IXGBE_MAX_DCB_INDICES;
Alexander Duyckbd508172010-11-16 19:27:03 -08004943 switch (hw->mac.type) {
4944 case ixgbe_mac_82598EB:
Don Skidmorebf069c92009-05-07 10:39:54 +00004945 if (hw->device_id == IXGBE_DEV_ID_82598AT)
4946 adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004947 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08004948 break;
4949 case ixgbe_mac_82599EB:
PJ Waskiewicze8e26352009-02-27 15:45:05 +00004950 adapter->max_msix_q_vectors = MAX_MSIX_Q_VECTORS_82599;
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00004951 adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE;
4952 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07004953 if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM)
4954 adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE;
Peter Waskiewicz9a713e72010-02-10 16:07:54 +00004955 if (dev->features & NETIF_F_NTUPLE) {
4956 /* Flow Director perfect filter enabled */
4957 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
4958 adapter->atr_sample_rate = 0;
4959 spin_lock_init(&adapter->fdir_perfect_lock);
4960 } else {
4961 /* Flow Director hash filters enabled */
4962 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
4963 adapter->atr_sample_rate = 20;
4964 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004965 adapter->ring_feature[RING_F_FDIR].indices =
Joe Perchese8e9f692010-09-07 21:34:53 +00004966 IXGBE_MAX_FDIR_INDICES;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00004967 adapter->fdir_pballoc = 0;
Yi Zoueacd73f2009-05-13 13:11:06 +00004968#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00004969 adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE;
4970 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
4971 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou61a0f422009-12-03 11:32:22 +00004972#ifdef CONFIG_IXGBE_DCB
Yi Zou6ee16522009-08-31 12:34:28 +00004973 /* Default traffic class to use for FCoE */
4974 adapter->fcoe.tc = IXGBE_FCOE_DEFTC;
John Fastabend56075a92010-07-26 20:41:31 +00004975 adapter->fcoe.up = IXGBE_FCOE_DEFTC;
Yi Zou61a0f422009-12-03 11:32:22 +00004976#endif
Yi Zoueacd73f2009-05-13 13:11:06 +00004977#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08004978 break;
4979 default:
4980 break;
Alexander Duyckf8212f92009-04-27 22:42:37 +00004981 }
Alexander Duyck2f90b862008-11-20 20:52:10 -08004982
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08004983#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08004984 /* Configure DCB traffic classes */
4985 for (j = 0; j < MAX_TRAFFIC_CLASS; j++) {
4986 tc = &adapter->dcb_cfg.tc_config[j];
4987 tc->path[DCB_TX_CONFIG].bwg_id = 0;
4988 tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1);
4989 tc->path[DCB_RX_CONFIG].bwg_id = 0;
4990 tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1);
4991 tc->dcb_pfc = pfc_disabled;
4992 }
4993 adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100;
4994 adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
4995 adapter->dcb_cfg.rx_pba_cfg = pba_equal;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00004996 adapter->dcb_cfg.pfc_mode_enable = false;
Alexander Duyck2f90b862008-11-20 20:52:10 -08004997 adapter->dcb_cfg.round_robin_enable = false;
4998 adapter->dcb_set_bitmap = 0x00;
4999 ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
Joe Perchese8e9f692010-09-07 21:34:53 +00005000 adapter->ring_feature[RING_F_DCB].indices);
Alexander Duyck2f90b862008-11-20 20:52:10 -08005001
5002#endif
Auke Kok9a799d72007-09-15 14:07:45 -07005003
5004 /* default flow control settings */
Don Skidmorecd7664f2009-03-31 21:33:44 +00005005 hw->fc.requested_mode = ixgbe_fc_full;
Don Skidmore71fd5702009-03-31 21:35:05 +00005006 hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005007#ifdef CONFIG_DCB
5008 adapter->last_lfc_mode = hw->fc.current_mode;
5009#endif
John Fastabend16b61be2010-11-16 19:26:44 -08005010 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5011 hw->fc.low_water = FC_LOW_WATER(max_frame);
Jesse Brandeburg2b9ade92008-08-26 04:27:10 -07005012 hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE;
5013 hw->fc.send_xon = true;
Don Skidmore71fd5702009-03-31 21:35:05 +00005014 hw->fc.disable_fc_autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -07005015
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005016 /* enable itr by default in dynamic mode */
Nelson, Shannonf7554a22009-09-18 09:46:06 +00005017 adapter->rx_itr_setting = 1;
5018 adapter->rx_eitr_param = 20000;
5019 adapter->tx_itr_setting = 1;
5020 adapter->tx_eitr_param = 10000;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07005021
5022 /* set defaults for eitr in MegaBytes */
5023 adapter->eitr_low = 10;
5024 adapter->eitr_high = 20;
5025
5026 /* set default ring sizes */
5027 adapter->tx_ring_count = IXGBE_DEFAULT_TXD;
5028 adapter->rx_ring_count = IXGBE_DEFAULT_RXD;
5029
Auke Kok9a799d72007-09-15 14:07:45 -07005030 /* initialize eeprom parameters */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07005031 if (ixgbe_init_eeprom_params_generic(hw)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005032 e_dev_err("EEPROM initialization failed\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005033 return -EIO;
5034 }
5035
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005036 /* enable rx csum by default */
Auke Kok9a799d72007-09-15 14:07:45 -07005037 adapter->flags |= IXGBE_FLAG_RX_CSUM_ENABLED;
5038
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005039 /* get assigned NUMA node */
5040 adapter->node = dev_to_node(&pdev->dev);
5041
Auke Kok9a799d72007-09-15 14:07:45 -07005042 set_bit(__IXGBE_DOWN, &adapter->state);
5043
5044 return 0;
5045}
5046
5047/**
5048 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005049 * @tx_ring: tx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005050 *
5051 * Return 0 on success, negative on failure
5052 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005053int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005054{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005055 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07005056 int size;
5057
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005058 size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005059 tx_ring->tx_buffer_info = vmalloc_node(size, tx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005060 if (!tx_ring->tx_buffer_info)
5061 tx_ring->tx_buffer_info = vmalloc(size);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005062 if (!tx_ring->tx_buffer_info)
5063 goto err;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005064 memset(tx_ring->tx_buffer_info, 0, size);
Auke Kok9a799d72007-09-15 14:07:45 -07005065
5066 /* round up to nearest 4K */
Peter P Waskiewicz Jr12207e42009-02-06 21:47:24 -08005067 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005068 tx_ring->size = ALIGN(tx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005069
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005070 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005071 &tx_ring->dma, GFP_KERNEL);
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005072 if (!tx_ring->desc)
5073 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005074
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005075 tx_ring->next_to_use = 0;
5076 tx_ring->next_to_clean = 0;
5077 tx_ring->work_limit = tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -07005078 return 0;
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005079
5080err:
5081 vfree(tx_ring->tx_buffer_info);
5082 tx_ring->tx_buffer_info = NULL;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005083 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n");
Jesse Brandeburge01c31a2008-08-26 04:27:13 -07005084 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005085}
5086
5087/**
Alexander Duyck69888672008-09-11 20:05:39 -07005088 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
5089 * @adapter: board private structure
5090 *
5091 * If this function returns with an error, then it's possible one or
5092 * more of the rings is populated (while the rest are not). It is the
5093 * callers duty to clean those orphaned rings.
5094 *
5095 * Return 0 on success, negative on failure
5096 **/
5097static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter)
5098{
5099 int i, err = 0;
5100
5101 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005102 err = ixgbe_setup_tx_resources(adapter->tx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005103 if (!err)
5104 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005105 e_err(probe, "Allocation for Tx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005106 break;
5107 }
5108
5109 return err;
5110}
5111
5112/**
Auke Kok9a799d72007-09-15 14:07:45 -07005113 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005114 * @rx_ring: rx descriptor ring (for a specific queue) to setup
Auke Kok9a799d72007-09-15 14:07:45 -07005115 *
5116 * Returns 0 on success, negative on failure
5117 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005118int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005119{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005120 struct device *dev = rx_ring->dev;
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005121 int size;
Auke Kok9a799d72007-09-15 14:07:45 -07005122
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005123 size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005124 rx_ring->rx_buffer_info = vmalloc_node(size, rx_ring->numa_node);
Jesse Brandeburg1a6c14a2010-02-03 14:18:50 +00005125 if (!rx_ring->rx_buffer_info)
5126 rx_ring->rx_buffer_info = vmalloc(size);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005127 if (!rx_ring->rx_buffer_info)
5128 goto err;
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005129 memset(rx_ring->rx_buffer_info, 0, size);
Auke Kok9a799d72007-09-15 14:07:45 -07005130
Auke Kok9a799d72007-09-15 14:07:45 -07005131 /* Round up to nearest 4K */
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005132 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
5133 rx_ring->size = ALIGN(rx_ring->size, 4096);
Auke Kok9a799d72007-09-15 14:07:45 -07005134
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005135 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
Nick Nunley1b507732010-04-27 13:10:27 +00005136 &rx_ring->dma, GFP_KERNEL);
Auke Kok9a799d72007-09-15 14:07:45 -07005137
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005138 if (!rx_ring->desc)
5139 goto err;
Auke Kok9a799d72007-09-15 14:07:45 -07005140
Jesse Brandeburg3a581072008-08-26 04:27:08 -07005141 rx_ring->next_to_clean = 0;
5142 rx_ring->next_to_use = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005143
5144 return 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005145err:
5146 vfree(rx_ring->rx_buffer_info);
5147 rx_ring->rx_buffer_info = NULL;
5148 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n");
Mallikarjuna R Chilakala177db6f2008-06-18 15:32:19 -07005149 return -ENOMEM;
Auke Kok9a799d72007-09-15 14:07:45 -07005150}
5151
5152/**
Alexander Duyck69888672008-09-11 20:05:39 -07005153 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
5154 * @adapter: board private structure
5155 *
5156 * If this function returns with an error, then it's possible one or
5157 * more of the rings is populated (while the rest are not). It is the
5158 * callers duty to clean those orphaned rings.
5159 *
5160 * Return 0 on success, negative on failure
5161 **/
Alexander Duyck69888672008-09-11 20:05:39 -07005162static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter)
5163{
5164 int i, err = 0;
5165
5166 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005167 err = ixgbe_setup_rx_resources(adapter->rx_ring[i]);
Alexander Duyck69888672008-09-11 20:05:39 -07005168 if (!err)
5169 continue;
Emil Tantilov396e7992010-07-01 20:05:12 +00005170 e_err(probe, "Allocation for Rx Queue %u failed\n", i);
Alexander Duyck69888672008-09-11 20:05:39 -07005171 break;
5172 }
5173
5174 return err;
5175}
5176
5177/**
Auke Kok9a799d72007-09-15 14:07:45 -07005178 * ixgbe_free_tx_resources - Free Tx Resources per Queue
Auke Kok9a799d72007-09-15 14:07:45 -07005179 * @tx_ring: Tx descriptor ring for a specific queue
5180 *
5181 * Free all transmit software resources
5182 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005183void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005184{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005185 ixgbe_clean_tx_ring(tx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005186
5187 vfree(tx_ring->tx_buffer_info);
5188 tx_ring->tx_buffer_info = NULL;
5189
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005190 /* if not set, then don't free */
5191 if (!tx_ring->desc)
5192 return;
5193
5194 dma_free_coherent(tx_ring->dev, tx_ring->size,
5195 tx_ring->desc, tx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005196
5197 tx_ring->desc = NULL;
5198}
5199
5200/**
5201 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
5202 * @adapter: board private structure
5203 *
5204 * Free all transmit software resources
5205 **/
5206static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter)
5207{
5208 int i;
5209
5210 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005211 if (adapter->tx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005212 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005213}
5214
5215/**
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07005216 * ixgbe_free_rx_resources - Free Rx Resources
Auke Kok9a799d72007-09-15 14:07:45 -07005217 * @rx_ring: ring to clean the resources from
5218 *
5219 * Free all receive software resources
5220 **/
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005221void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07005222{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005223 ixgbe_clean_rx_ring(rx_ring);
Auke Kok9a799d72007-09-15 14:07:45 -07005224
5225 vfree(rx_ring->rx_buffer_info);
5226 rx_ring->rx_buffer_info = NULL;
5227
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005228 /* if not set, then don't free */
5229 if (!rx_ring->desc)
5230 return;
5231
5232 dma_free_coherent(rx_ring->dev, rx_ring->size,
5233 rx_ring->desc, rx_ring->dma);
Auke Kok9a799d72007-09-15 14:07:45 -07005234
5235 rx_ring->desc = NULL;
5236}
5237
5238/**
5239 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
5240 * @adapter: board private structure
5241 *
5242 * Free all receive software resources
5243 **/
5244static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter)
5245{
5246 int i;
5247
5248 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005249 if (adapter->rx_ring[i]->desc)
Alexander Duyckb6ec8952010-11-16 19:26:49 -08005250 ixgbe_free_rx_resources(adapter->rx_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07005251}
5252
5253/**
Auke Kok9a799d72007-09-15 14:07:45 -07005254 * ixgbe_change_mtu - Change the Maximum Transfer Unit
5255 * @netdev: network interface device structure
5256 * @new_mtu: new value for maximum frame size
5257 *
5258 * Returns 0 on success, negative on failure
5259 **/
5260static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu)
5261{
5262 struct ixgbe_adapter *adapter = netdev_priv(netdev);
John Fastabend16b61be2010-11-16 19:26:44 -08005263 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07005264 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
5265
Jesse Brandeburg42c783c2008-09-11 19:56:28 -07005266 /* MTU < 68 is an error and causes problems on some kernels */
5267 if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE))
Auke Kok9a799d72007-09-15 14:07:45 -07005268 return -EINVAL;
5269
Emil Tantilov396e7992010-07-01 20:05:12 +00005270 e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu);
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005271 /* must set new MTU before calling down or up */
Auke Kok9a799d72007-09-15 14:07:45 -07005272 netdev->mtu = new_mtu;
5273
John Fastabend16b61be2010-11-16 19:26:44 -08005274 hw->fc.high_water = FC_HIGH_WATER(max_frame);
5275 hw->fc.low_water = FC_LOW_WATER(max_frame);
5276
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08005277 if (netif_running(netdev))
5278 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005279
5280 return 0;
5281}
5282
5283/**
5284 * ixgbe_open - Called when a network interface is made active
5285 * @netdev: network interface device structure
5286 *
5287 * Returns 0 on success, negative value on failure
5288 *
5289 * The open entry point is called when a network interface is made
5290 * active by the system (IFF_UP). At this point all resources needed
5291 * for transmit and receive operations are allocated, the interrupt
5292 * handler is registered with the OS, the watchdog timer is started,
5293 * and the stack is notified that the interface is ready.
5294 **/
5295static int ixgbe_open(struct net_device *netdev)
5296{
5297 struct ixgbe_adapter *adapter = netdev_priv(netdev);
5298 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07005299
Auke Kok4bebfaa2008-02-11 09:26:01 -08005300 /* disallow open during test */
5301 if (test_bit(__IXGBE_TESTING, &adapter->state))
5302 return -EBUSY;
5303
Jesse Brandeburg54386462009-04-17 20:44:27 +00005304 netif_carrier_off(netdev);
5305
Auke Kok9a799d72007-09-15 14:07:45 -07005306 /* allocate transmit descriptors */
5307 err = ixgbe_setup_all_tx_resources(adapter);
5308 if (err)
5309 goto err_setup_tx;
5310
Auke Kok9a799d72007-09-15 14:07:45 -07005311 /* allocate receive descriptors */
5312 err = ixgbe_setup_all_rx_resources(adapter);
5313 if (err)
5314 goto err_setup_rx;
5315
5316 ixgbe_configure(adapter);
5317
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08005318 err = ixgbe_request_irq(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005319 if (err)
5320 goto err_req_irq;
5321
Auke Kok9a799d72007-09-15 14:07:45 -07005322 err = ixgbe_up_complete(adapter);
5323 if (err)
5324 goto err_up;
5325
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07005326 netif_tx_start_all_queues(netdev);
5327
Auke Kok9a799d72007-09-15 14:07:45 -07005328 return 0;
5329
5330err_up:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005331 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005332 ixgbe_free_irq(adapter);
5333err_req_irq:
Auke Kok9a799d72007-09-15 14:07:45 -07005334err_setup_rx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005335 ixgbe_free_all_rx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005336err_setup_tx:
Mallikarjuna R Chilakalaa20a1192009-03-31 21:34:44 +00005337 ixgbe_free_all_tx_resources(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005338 ixgbe_reset(adapter);
5339
5340 return err;
5341}
5342
5343/**
5344 * ixgbe_close - Disables a network interface
5345 * @netdev: network interface device structure
5346 *
5347 * Returns 0, this is not allowed to fail
5348 *
5349 * The close entry point is called when an interface is de-activated
5350 * by the OS. The hardware is still under the drivers control, but
5351 * needs to be disabled. A global MAC reset is issued to stop the
5352 * hardware, and all transmit and receive resources are freed.
5353 **/
5354static int ixgbe_close(struct net_device *netdev)
5355{
5356 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005357
5358 ixgbe_down(adapter);
5359 ixgbe_free_irq(adapter);
5360
5361 ixgbe_free_all_tx_resources(adapter);
5362 ixgbe_free_all_rx_resources(adapter);
5363
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08005364 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07005365
5366 return 0;
5367}
5368
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005369#ifdef CONFIG_PM
5370static int ixgbe_resume(struct pci_dev *pdev)
5371{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005372 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5373 struct net_device *netdev = adapter->netdev;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005374 u32 err;
5375
5376 pci_set_power_state(pdev, PCI_D0);
5377 pci_restore_state(pdev);
Don Skidmore656ab812009-12-23 21:19:19 -08005378 /*
5379 * pci_restore_state clears dev->state_saved so call
5380 * pci_save_state to restore it.
5381 */
5382 pci_save_state(pdev);
gouji-new9ce77662009-05-06 10:44:45 +00005383
5384 err = pci_enable_device_mem(pdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005385 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005386 e_dev_err("Cannot enable PCI device from suspend\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005387 return err;
5388 }
5389 pci_set_master(pdev);
5390
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005391 pci_wake_from_d3(pdev, false);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005392
5393 err = ixgbe_init_interrupt_scheme(adapter);
5394 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005395 e_dev_err("Cannot initialize interrupts for device\n");
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005396 return err;
5397 }
5398
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005399 ixgbe_reset(adapter);
5400
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00005401 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
5402
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005403 if (netif_running(netdev)) {
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005404 err = ixgbe_open(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005405 if (err)
5406 return err;
5407 }
5408
5409 netif_device_attach(netdev);
5410
5411 return 0;
5412}
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005413#endif /* CONFIG_PM */
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005414
5415static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake)
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005416{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08005417 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
5418 struct net_device *netdev = adapter->netdev;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005419 struct ixgbe_hw *hw = &adapter->hw;
5420 u32 ctrl, fctrl;
5421 u32 wufc = adapter->wol;
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005422#ifdef CONFIG_PM
5423 int retval = 0;
5424#endif
5425
5426 netif_device_detach(netdev);
5427
5428 if (netif_running(netdev)) {
5429 ixgbe_down(adapter);
5430 ixgbe_free_irq(adapter);
5431 ixgbe_free_all_tx_resources(adapter);
5432 ixgbe_free_all_rx_resources(adapter);
5433 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005434
Alexander Duyck5f5ae6f2010-11-16 19:26:52 -08005435 ixgbe_clear_interrupt_scheme(adapter);
5436
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005437#ifdef CONFIG_PM
5438 retval = pci_save_state(pdev);
5439 if (retval)
5440 return retval;
Jesse Brandeburg4df10462009-03-13 22:15:31 +00005441
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005442#endif
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005443 if (wufc) {
5444 ixgbe_set_rx_mode(netdev);
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005445
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005446 /* turn on all-multi mode if wake on multicast is enabled */
5447 if (wufc & IXGBE_WUFC_MC) {
5448 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5449 fctrl |= IXGBE_FCTRL_MPE;
5450 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
5451 }
5452
5453 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
5454 ctrl |= IXGBE_CTRL_GIO_DIS;
5455 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
5456
5457 IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc);
5458 } else {
5459 IXGBE_WRITE_REG(hw, IXGBE_WUC, 0);
5460 IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0);
5461 }
5462
Alexander Duyckbd508172010-11-16 19:27:03 -08005463 switch (hw->mac.type) {
5464 case ixgbe_mac_82598EB:
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07005465 pci_wake_from_d3(pdev, false);
Alexander Duyckbd508172010-11-16 19:27:03 -08005466 break;
5467 case ixgbe_mac_82599EB:
5468 pci_wake_from_d3(pdev, !!wufc);
5469 break;
5470 default:
5471 break;
5472 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005473
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005474 *enable_wake = !!wufc;
5475
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005476 ixgbe_release_hw_control(adapter);
5477
5478 pci_disable_device(pdev);
5479
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005480 return 0;
5481}
5482
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005483#ifdef CONFIG_PM
5484static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state)
5485{
5486 int retval;
5487 bool wake;
5488
5489 retval = __ixgbe_shutdown(pdev, &wake);
5490 if (retval)
5491 return retval;
5492
5493 if (wake) {
5494 pci_prepare_to_sleep(pdev);
5495 } else {
5496 pci_wake_from_d3(pdev, false);
5497 pci_set_power_state(pdev, PCI_D3hot);
5498 }
5499
5500 return 0;
5501}
5502#endif /* CONFIG_PM */
5503
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005504static void ixgbe_shutdown(struct pci_dev *pdev)
5505{
Rafael J. Wysocki9d8d05a2009-04-15 17:44:01 +00005506 bool wake;
5507
5508 __ixgbe_shutdown(pdev, &wake);
5509
5510 if (system_state == SYSTEM_POWER_OFF) {
5511 pci_wake_from_d3(pdev, wake);
5512 pci_set_power_state(pdev, PCI_D3hot);
5513 }
Alexander Duyckb3c8b4b2008-09-11 20:04:56 -07005514}
5515
5516/**
Auke Kok9a799d72007-09-15 14:07:45 -07005517 * ixgbe_update_stats - Update the board statistics counters.
5518 * @adapter: board private structure
5519 **/
5520void ixgbe_update_stats(struct ixgbe_adapter *adapter)
5521{
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005522 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07005523 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005524 struct ixgbe_hw_stats *hwstats = &adapter->stats;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005525 u64 total_mpc = 0;
5526 u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005527 u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0;
5528 u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
5529 u64 bytes = 0, packets = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005530
Don Skidmored08935c2010-06-11 13:20:29 +00005531 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
5532 test_bit(__IXGBE_RESETTING, &adapter->state))
5533 return;
5534
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005535 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
Alexander Duyckf8212f92009-04-27 22:42:37 +00005536 u64 rsc_count = 0;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005537 u64 rsc_flush = 0;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005538 for (i = 0; i < 16; i++)
5539 adapter->hw_rx_no_dma_resources +=
Joe Perches7ca647b2010-09-07 21:35:40 +00005540 IXGBE_READ_REG(hw, IXGBE_QPRDC(i));
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005541 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08005542 rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count;
5543 rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush;
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +00005544 }
5545 adapter->rsc_total_count = rsc_count;
5546 adapter->rsc_total_flush = rsc_flush;
PJ Waskiewiczd51019a2009-03-13 22:12:48 +00005547 }
5548
Alexander Duyck5b7da512010-11-16 19:26:50 -08005549 for (i = 0; i < adapter->num_rx_queues; i++) {
5550 struct ixgbe_ring *rx_ring = adapter->rx_ring[i];
5551 non_eop_descs += rx_ring->rx_stats.non_eop_descs;
5552 alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
5553 alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
5554 bytes += rx_ring->stats.bytes;
5555 packets += rx_ring->stats.packets;
5556 }
Mallikarjuna R Chilakalaeb985f02009-12-15 11:56:59 +00005557 adapter->non_eop_descs = non_eop_descs;
Alexander Duyck5b7da512010-11-16 19:26:50 -08005558 adapter->alloc_rx_page_failed = alloc_rx_page_failed;
5559 adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
5560 netdev->stats.rx_bytes = bytes;
5561 netdev->stats.rx_packets = packets;
5562
5563 bytes = 0;
5564 packets = 0;
5565 /* gather some stats to the adapter struct that are per queue */
5566 for (i = 0; i < adapter->num_tx_queues; i++) {
5567 struct ixgbe_ring *tx_ring = adapter->tx_ring[i];
5568 restart_queue += tx_ring->tx_stats.restart_queue;
5569 tx_busy += tx_ring->tx_stats.tx_busy;
5570 bytes += tx_ring->stats.bytes;
5571 packets += tx_ring->stats.packets;
5572 }
5573 adapter->restart_queue = restart_queue;
5574 adapter->tx_busy = tx_busy;
5575 netdev->stats.tx_bytes = bytes;
5576 netdev->stats.tx_packets = packets;
Jesse Brandeburg7ca3bc52009-12-03 11:33:29 +00005577
Joe Perches7ca647b2010-09-07 21:35:40 +00005578 hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005579 for (i = 0; i < 8; i++) {
5580 /* for packet buffers not used, the register should read 0 */
5581 mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i));
5582 missed_rx += mpc;
Joe Perches7ca647b2010-09-07 21:35:40 +00005583 hwstats->mpc[i] += mpc;
5584 total_mpc += hwstats->mpc[i];
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005585 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005586 hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i));
5587 hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i));
5588 hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i));
5589 hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i));
5590 hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005591 switch (hw->mac.type) {
5592 case ixgbe_mac_82598EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005593 hwstats->pxonrxc[i] +=
5594 IXGBE_READ_REG(hw, IXGBE_PXONRXC(i));
5595 hwstats->pxoffrxc[i] +=
5596 IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i));
Alexander Duyckbd508172010-11-16 19:27:03 -08005597 break;
5598 case ixgbe_mac_82599EB:
5599 hwstats->pxonrxc[i] +=
5600 IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i));
5601 hwstats->pxoffrxc[i] +=
5602 IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i));
5603 break;
5604 default:
5605 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005606 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005607 hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i));
5608 hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i));
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005609 }
Joe Perches7ca647b2010-09-07 21:35:40 +00005610 hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005611 /* work around hardware counting issue */
Joe Perches7ca647b2010-09-07 21:35:40 +00005612 hwstats->gprc -= missed_rx;
Auke Kok9a799d72007-09-15 14:07:45 -07005613
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005614 /* 82598 hardware only has a 32 bit counter in the high register */
Alexander Duyckbd508172010-11-16 19:27:03 -08005615 switch (hw->mac.type) {
5616 case ixgbe_mac_82598EB:
5617 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC);
5618 hwstats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXC);
5619 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH);
5620 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH);
5621 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH);
5622 break;
5623 case ixgbe_mac_82599EB:
Joe Perches7ca647b2010-09-07 21:35:40 +00005624 hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005625 IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005626 hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005627 IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005628 hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL);
Alexander Duyckbd508172010-11-16 19:27:03 -08005629 IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */
Joe Perches7ca647b2010-09-07 21:35:40 +00005630 hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT);
5631 hwstats->lxoffrxc += IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT);
5632 hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH);
5633 hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS);
Yi Zou6d455222009-05-13 13:12:16 +00005634#ifdef IXGBE_FCOE
Joe Perches7ca647b2010-09-07 21:35:40 +00005635 hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC);
5636 hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC);
5637 hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC);
5638 hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC);
5639 hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC);
5640 hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC);
Yi Zou6d455222009-05-13 13:12:16 +00005641#endif /* IXGBE_FCOE */
Alexander Duyckbd508172010-11-16 19:27:03 -08005642 break;
5643 default:
5644 break;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005645 }
Auke Kok9a799d72007-09-15 14:07:45 -07005646 bprc = IXGBE_READ_REG(hw, IXGBE_BPRC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005647 hwstats->bprc += bprc;
5648 hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005649 if (hw->mac.type == ixgbe_mac_82598EB)
Joe Perches7ca647b2010-09-07 21:35:40 +00005650 hwstats->mprc -= bprc;
5651 hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC);
5652 hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64);
5653 hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127);
5654 hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255);
5655 hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511);
5656 hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023);
5657 hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522);
5658 hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005659 lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005660 hwstats->lxontxc += lxon;
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005661 lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC);
Joe Perches7ca647b2010-09-07 21:35:40 +00005662 hwstats->lxofftxc += lxoff;
5663 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5664 hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC);
5665 hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC);
Ayyappan Veeraiyan6f11eef2008-02-01 15:59:14 -08005666 /*
5667 * 82598 errata - tx of flow control packets is included in tx counters
5668 */
5669 xon_off_tot = lxon + lxoff;
Joe Perches7ca647b2010-09-07 21:35:40 +00005670 hwstats->gptc -= xon_off_tot;
5671 hwstats->mptc -= xon_off_tot;
5672 hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN));
5673 hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC);
5674 hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC);
5675 hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC);
5676 hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR);
5677 hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64);
5678 hwstats->ptc64 -= xon_off_tot;
5679 hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127);
5680 hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255);
5681 hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511);
5682 hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023);
5683 hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522);
5684 hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC);
Auke Kok9a799d72007-09-15 14:07:45 -07005685
5686 /* Fill out the OS statistics structure */
Joe Perches7ca647b2010-09-07 21:35:40 +00005687 netdev->stats.multicast = hwstats->mprc;
Auke Kok9a799d72007-09-15 14:07:45 -07005688
5689 /* Rx Errors */
Joe Perches7ca647b2010-09-07 21:35:40 +00005690 netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005691 netdev->stats.rx_dropped = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00005692 netdev->stats.rx_length_errors = hwstats->rlec;
5693 netdev->stats.rx_crc_errors = hwstats->crcerrs;
Ajit Khaparde2d86f132009-10-07 02:43:49 +00005694 netdev->stats.rx_missed_errors = total_mpc;
Auke Kok9a799d72007-09-15 14:07:45 -07005695}
5696
5697/**
5698 * ixgbe_watchdog - Timer Call-back
5699 * @data: pointer to adapter cast into an unsigned long
5700 **/
5701static void ixgbe_watchdog(unsigned long data)
5702{
5703 struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005704 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyckfe49f042009-06-04 16:00:09 +00005705 u64 eics = 0;
5706 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07005707
Alexander Duyckfe49f042009-06-04 16:00:09 +00005708 /*
5709 * Do the watchdog outside of interrupt context due to the lovely
5710 * delays that some of the newer hardware requires
5711 */
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005712
Alexander Duyckfe49f042009-06-04 16:00:09 +00005713 if (test_bit(__IXGBE_DOWN, &adapter->state))
5714 goto watchdog_short_circuit;
Jesse Brandeburg22d5a712009-03-19 01:24:04 +00005715
Alexander Duyckfe49f042009-06-04 16:00:09 +00005716 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
5717 /*
5718 * for legacy and MSI interrupts don't set any bits
5719 * that are enabled for EIAM, because this operation
5720 * would set *both* EIMS and EICS for any bit in EIAM
5721 */
5722 IXGBE_WRITE_REG(hw, IXGBE_EICS,
5723 (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER));
5724 goto watchdog_reschedule;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005725 }
5726
Alexander Duyckfe49f042009-06-04 16:00:09 +00005727 /* get one bit for every active tx/rx interrupt vector */
5728 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
5729 struct ixgbe_q_vector *qv = adapter->q_vector[i];
5730 if (qv->rxr_count || qv->txr_count)
5731 eics |= ((u64)1 << i);
5732 }
5733
5734 /* Cause software interrupt to ensure rx rings are cleaned */
5735 ixgbe_irq_rearm_queues(adapter, eics);
5736
5737watchdog_reschedule:
5738 /* Reset the timer */
5739 mod_timer(&adapter->watchdog_timer, round_jiffies(jiffies + 2 * HZ));
5740
5741watchdog_short_circuit:
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005742 schedule_work(&adapter->watchdog_task);
5743}
5744
5745/**
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005746 * ixgbe_multispeed_fiber_task - worker thread to configure multispeed fiber
5747 * @work: pointer to work_struct containing our data
5748 **/
5749static void ixgbe_multispeed_fiber_task(struct work_struct *work)
5750{
5751 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005752 struct ixgbe_adapter,
5753 multispeed_fiber_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005754 struct ixgbe_hw *hw = &adapter->hw;
5755 u32 autoneg;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005756 bool negotiation;
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005757
5758 adapter->flags |= IXGBE_FLAG_IN_SFP_LINK_TASK;
Mallikarjuna R Chilakalaa1f25322009-06-30 11:44:36 +00005759 autoneg = hw->phy.autoneg_advertised;
5760 if ((!autoneg) && (hw->mac.ops.get_link_capabilities))
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005761 hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation);
Mallikarjuna R Chilakala1097cd12010-03-18 14:34:52 +00005762 hw->mac.autotry_restart = false;
Mallikarjuna R Chilakala8620a102009-09-01 13:49:35 +00005763 if (hw->mac.ops.setup_link)
5764 hw->mac.ops.setup_link(hw, autoneg, negotiation, true);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005765 adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE;
5766 adapter->flags &= ~IXGBE_FLAG_IN_SFP_LINK_TASK;
5767}
5768
5769/**
5770 * ixgbe_sfp_config_module_task - worker thread to configure a new SFP+ module
5771 * @work: pointer to work_struct containing our data
5772 **/
5773static void ixgbe_sfp_config_module_task(struct work_struct *work)
5774{
5775 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005776 struct ixgbe_adapter,
5777 sfp_config_module_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005778 struct ixgbe_hw *hw = &adapter->hw;
5779 u32 err;
5780
5781 adapter->flags |= IXGBE_FLAG_IN_SFP_MOD_TASK;
Don Skidmore63d6e1d2009-07-02 12:50:12 +00005782
5783 /* Time for electrical oscillations to settle down */
5784 msleep(100);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005785 err = hw->phy.ops.identify_sfp(hw);
Don Skidmore63d6e1d2009-07-02 12:50:12 +00005786
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005787 if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Emil Tantilov849c4542010-06-03 16:53:41 +00005788 e_dev_err("failed to initialize because an unsupported SFP+ "
5789 "module type was detected.\n");
5790 e_dev_err("Reload the driver after installing a supported "
5791 "module.\n");
Don Skidmore63d6e1d2009-07-02 12:50:12 +00005792 unregister_netdev(adapter->netdev);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005793 return;
5794 }
5795 hw->mac.ops.setup_sfp(hw);
5796
Tony Breeds8d1c3c02009-04-09 22:29:10 +00005797 if (!(adapter->flags & IXGBE_FLAG_IN_SFP_LINK_TASK))
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005798 /* This will also work for DA Twinax connections */
5799 schedule_work(&adapter->multispeed_fiber_task);
5800 adapter->flags &= ~IXGBE_FLAG_IN_SFP_MOD_TASK;
5801}
5802
5803/**
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005804 * ixgbe_fdir_reinit_task - worker thread to reinit FDIR filter table
5805 * @work: pointer to work_struct containing our data
5806 **/
5807static void ixgbe_fdir_reinit_task(struct work_struct *work)
5808{
5809 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005810 struct ixgbe_adapter,
5811 fdir_reinit_task);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005812 struct ixgbe_hw *hw = &adapter->hw;
5813 int i;
5814
5815 if (ixgbe_reinit_fdir_tables_82599(hw) == 0) {
5816 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005817 set_bit(__IXGBE_TX_FDIR_INIT_DONE,
5818 &(adapter->tx_ring[i]->state));
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005819 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00005820 e_err(probe, "failed to finish FDIR re-initialization, "
Emil Tantilov849c4542010-06-03 16:53:41 +00005821 "ignored adding FDIR ATR filters\n");
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005822 }
5823 /* Done FDIR Re-initialization, enable transmits */
5824 netif_tx_start_all_queues(adapter->netdev);
5825}
5826
John Fastabend10eec952010-02-03 14:23:32 +00005827static DEFINE_MUTEX(ixgbe_watchdog_lock);
5828
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00005829/**
Alexander Duyck69888672008-09-11 20:05:39 -07005830 * ixgbe_watchdog_task - worker thread to bring link up
5831 * @work: pointer to work_struct containing our data
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005832 **/
5833static void ixgbe_watchdog_task(struct work_struct *work)
5834{
5835 struct ixgbe_adapter *adapter = container_of(work,
Joe Perchese8e9f692010-09-07 21:34:53 +00005836 struct ixgbe_adapter,
5837 watchdog_task);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005838 struct net_device *netdev = adapter->netdev;
5839 struct ixgbe_hw *hw = &adapter->hw;
John Fastabend10eec952010-02-03 14:23:32 +00005840 u32 link_speed;
5841 bool link_up;
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005842 int i;
5843 struct ixgbe_ring *tx_ring;
5844 int some_tx_pending = 0;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005845
John Fastabend10eec952010-02-03 14:23:32 +00005846 mutex_lock(&ixgbe_watchdog_lock);
5847
5848 link_up = adapter->link_up;
5849 link_speed = adapter->link_speed;
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005850
5851 if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE) {
5852 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005853 if (link_up) {
5854#ifdef CONFIG_DCB
5855 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
5856 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00005857 hw->mac.ops.fc_enable(hw, i);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005858 } else {
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00005859 hw->mac.ops.fc_enable(hw, 0);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005860 }
5861#else
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +00005862 hw->mac.ops.fc_enable(hw, 0);
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005863#endif
5864 }
5865
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005866 if (link_up ||
5867 time_after(jiffies, (adapter->link_check_timeout +
Joe Perchese8e9f692010-09-07 21:34:53 +00005868 IXGBE_TRY_LINK_TIMEOUT))) {
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005869 adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE;
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +00005870 IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005871 }
5872 adapter->link_up = link_up;
5873 adapter->link_speed = link_speed;
5874 }
Auke Kok9a799d72007-09-15 14:07:45 -07005875
5876 if (link_up) {
5877 if (!netif_carrier_ok(netdev)) {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005878 bool flow_rx, flow_tx;
5879
Alexander Duyckbd508172010-11-16 19:27:03 -08005880 switch (hw->mac.type) {
5881 case ixgbe_mac_82598EB: {
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005882 u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
5883 u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS);
Peter P Waskiewicz Jr078788b2009-07-16 15:50:32 +00005884 flow_rx = !!(frctl & IXGBE_FCTRL_RFCE);
5885 flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005886 }
Alexander Duyckbd508172010-11-16 19:27:03 -08005887 break;
5888 case ixgbe_mac_82599EB: {
5889 u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN);
5890 u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG);
5891 flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE);
5892 flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X);
5893 }
5894 break;
5895 default:
5896 flow_tx = false;
5897 flow_rx = false;
5898 break;
5899 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005900
Emil Tantilov396e7992010-07-01 20:05:12 +00005901 e_info(drv, "NIC Link is Up %s, Flow Control: %s\n",
Jeff Kirshera46e5342008-11-27 00:22:21 -08005902 (link_speed == IXGBE_LINK_SPEED_10GB_FULL ?
Emil Tantilov849c4542010-06-03 16:53:41 +00005903 "10 Gbps" :
5904 (link_speed == IXGBE_LINK_SPEED_1GB_FULL ?
5905 "1 Gbps" : "unknown speed")),
PJ Waskiewicze8e26352009-02-27 15:45:05 +00005906 ((flow_rx && flow_tx) ? "RX/TX" :
Emil Tantilov849c4542010-06-03 16:53:41 +00005907 (flow_rx ? "RX" :
5908 (flow_tx ? "TX" : "None"))));
Auke Kok9a799d72007-09-15 14:07:45 -07005909
5910 netif_carrier_on(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005911 } else {
5912 /* Force detection of hung controller */
Alexander Duyck7d637bc2010-11-16 19:26:56 -08005913 for (i = 0; i < adapter->num_tx_queues; i++) {
5914 tx_ring = adapter->tx_ring[i];
5915 set_check_for_tx_hang(tx_ring);
5916 }
Auke Kok9a799d72007-09-15 14:07:45 -07005917 }
5918 } else {
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07005919 adapter->link_up = false;
5920 adapter->link_speed = 0;
Auke Kok9a799d72007-09-15 14:07:45 -07005921 if (netif_carrier_ok(netdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00005922 e_info(drv, "NIC Link is Down\n");
Auke Kok9a799d72007-09-15 14:07:45 -07005923 netif_carrier_off(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07005924 }
5925 }
5926
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005927 if (!netif_carrier_ok(netdev)) {
5928 for (i = 0; i < adapter->num_tx_queues; i++) {
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00005929 tx_ring = adapter->tx_ring[i];
Nelson, Shannonbc59fcd2009-04-27 22:43:12 +00005930 if (tx_ring->next_to_use != tx_ring->next_to_clean) {
5931 some_tx_pending = 1;
5932 break;
5933 }
5934 }
5935
5936 if (some_tx_pending) {
5937 /* We've lost link, so the controller stops DMA,
5938 * but we've got queued Tx work that's never going
5939 * to get done, so reset controller to flush Tx.
5940 * (Do the reset outside of interrupt context).
5941 */
5942 schedule_work(&adapter->reset_task);
5943 }
5944 }
5945
Auke Kok9a799d72007-09-15 14:07:45 -07005946 ixgbe_update_stats(adapter);
John Fastabend10eec952010-02-03 14:23:32 +00005947 mutex_unlock(&ixgbe_watchdog_lock);
Auke Kok9a799d72007-09-15 14:07:45 -07005948}
5949
Auke Kok9a799d72007-09-15 14:07:45 -07005950static int ixgbe_tso(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00005951 struct ixgbe_ring *tx_ring, struct sk_buff *skb,
Hao Zheng5e09a102010-11-11 13:47:59 +00005952 u32 tx_flags, u8 *hdr_len, __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07005953{
5954 struct ixgbe_adv_tx_context_desc *context_desc;
5955 unsigned int i;
5956 int err;
5957 struct ixgbe_tx_buffer *tx_buffer_info;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07005958 u32 vlan_macip_lens = 0, type_tucmd_mlhl;
5959 u32 mss_l4len_idx, l4len;
Auke Kok9a799d72007-09-15 14:07:45 -07005960
5961 if (skb_is_gso(skb)) {
5962 if (skb_header_cloned(skb)) {
5963 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5964 if (err)
5965 return err;
5966 }
5967 l4len = tcp_hdrlen(skb);
5968 *hdr_len += l4len;
5969
Hao Zheng5e09a102010-11-11 13:47:59 +00005970 if (protocol == htons(ETH_P_IP)) {
Auke Kok9a799d72007-09-15 14:07:45 -07005971 struct iphdr *iph = ip_hdr(skb);
5972 iph->tot_len = 0;
5973 iph->check = 0;
5974 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
Joe Perchese8e9f692010-09-07 21:34:53 +00005975 iph->daddr, 0,
5976 IPPROTO_TCP,
5977 0);
Sridhar Samudrala8e1e8a42010-01-23 02:02:21 -08005978 } else if (skb_is_gso_v6(skb)) {
Auke Kok9a799d72007-09-15 14:07:45 -07005979 ipv6_hdr(skb)->payload_len = 0;
5980 tcp_hdr(skb)->check =
5981 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
Joe Perchese8e9f692010-09-07 21:34:53 +00005982 &ipv6_hdr(skb)->daddr,
5983 0, IPPROTO_TCP, 0);
Auke Kok9a799d72007-09-15 14:07:45 -07005984 }
5985
5986 i = tx_ring->next_to_use;
5987
5988 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00005989 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07005990
5991 /* VLAN MACLEN IPLEN */
5992 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
5993 vlan_macip_lens |=
5994 (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK);
5995 vlan_macip_lens |= ((skb_network_offset(skb)) <<
Joe Perchese8e9f692010-09-07 21:34:53 +00005996 IXGBE_ADVTXD_MACLEN_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07005997 *hdr_len += skb_network_offset(skb);
5998 vlan_macip_lens |=
5999 (skb_transport_header(skb) - skb_network_header(skb));
6000 *hdr_len +=
6001 (skb_transport_header(skb) - skb_network_header(skb));
6002 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6003 context_desc->seqnum_seed = 0;
6004
6005 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006006 type_tucmd_mlhl = (IXGBE_TXD_CMD_DEXT |
Joe Perchese8e9f692010-09-07 21:34:53 +00006007 IXGBE_ADVTXD_DTYP_CTXT);
Auke Kok9a799d72007-09-15 14:07:45 -07006008
Hao Zheng5e09a102010-11-11 13:47:59 +00006009 if (protocol == htons(ETH_P_IP))
Auke Kok9a799d72007-09-15 14:07:45 -07006010 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_IPV4;
6011 type_tucmd_mlhl |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6012 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd_mlhl);
6013
6014 /* MSS L4LEN IDX */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006015 mss_l4len_idx =
Auke Kok9a799d72007-09-15 14:07:45 -07006016 (skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT);
6017 mss_l4len_idx |= (l4len << IXGBE_ADVTXD_L4LEN_SHIFT);
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006018 /* use index 1 for TSO */
6019 mss_l4len_idx |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006020 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
6021
6022 tx_buffer_info->time_stamp = jiffies;
6023 tx_buffer_info->next_to_watch = i;
6024
6025 i++;
6026 if (i == tx_ring->count)
6027 i = 0;
6028 tx_ring->next_to_use = i;
6029
6030 return true;
6031 }
6032 return false;
6033}
6034
Hao Zheng5e09a102010-11-11 13:47:59 +00006035static u32 ixgbe_psum(struct ixgbe_adapter *adapter, struct sk_buff *skb,
6036 __be16 protocol)
Joe Perches7ca647b2010-09-07 21:35:40 +00006037{
6038 u32 rtn = 0;
Joe Perches7ca647b2010-09-07 21:35:40 +00006039
6040 switch (protocol) {
6041 case cpu_to_be16(ETH_P_IP):
6042 rtn |= IXGBE_ADVTXD_TUCMD_IPV4;
6043 switch (ip_hdr(skb)->protocol) {
6044 case IPPROTO_TCP:
6045 rtn |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6046 break;
6047 case IPPROTO_SCTP:
6048 rtn |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6049 break;
6050 }
6051 break;
6052 case cpu_to_be16(ETH_P_IPV6):
6053 /* XXX what about other V6 headers?? */
6054 switch (ipv6_hdr(skb)->nexthdr) {
6055 case IPPROTO_TCP:
6056 rtn |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
6057 break;
6058 case IPPROTO_SCTP:
6059 rtn |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
6060 break;
6061 }
6062 break;
6063 default:
6064 if (unlikely(net_ratelimit()))
6065 e_warn(probe, "partial checksum but proto=%x!\n",
Hao Zheng5e09a102010-11-11 13:47:59 +00006066 protocol);
Joe Perches7ca647b2010-09-07 21:35:40 +00006067 break;
6068 }
6069
6070 return rtn;
6071}
6072
Auke Kok9a799d72007-09-15 14:07:45 -07006073static bool ixgbe_tx_csum(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006074 struct ixgbe_ring *tx_ring,
Hao Zheng5e09a102010-11-11 13:47:59 +00006075 struct sk_buff *skb, u32 tx_flags,
6076 __be16 protocol)
Auke Kok9a799d72007-09-15 14:07:45 -07006077{
6078 struct ixgbe_adv_tx_context_desc *context_desc;
6079 unsigned int i;
6080 struct ixgbe_tx_buffer *tx_buffer_info;
6081 u32 vlan_macip_lens = 0, type_tucmd_mlhl = 0;
6082
6083 if (skb->ip_summed == CHECKSUM_PARTIAL ||
6084 (tx_flags & IXGBE_TX_FLAGS_VLAN)) {
6085 i = tx_ring->next_to_use;
6086 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006087 context_desc = IXGBE_TX_CTXTDESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006088
6089 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6090 vlan_macip_lens |=
6091 (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK);
6092 vlan_macip_lens |= (skb_network_offset(skb) <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006093 IXGBE_ADVTXD_MACLEN_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006094 if (skb->ip_summed == CHECKSUM_PARTIAL)
6095 vlan_macip_lens |= (skb_transport_header(skb) -
Joe Perchese8e9f692010-09-07 21:34:53 +00006096 skb_network_header(skb));
Auke Kok9a799d72007-09-15 14:07:45 -07006097
6098 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
6099 context_desc->seqnum_seed = 0;
6100
6101 type_tucmd_mlhl |= (IXGBE_TXD_CMD_DEXT |
Joe Perchese8e9f692010-09-07 21:34:53 +00006102 IXGBE_ADVTXD_DTYP_CTXT);
Auke Kok9a799d72007-09-15 14:07:45 -07006103
Joe Perches7ca647b2010-09-07 21:35:40 +00006104 if (skb->ip_summed == CHECKSUM_PARTIAL)
Hao Zheng5e09a102010-11-11 13:47:59 +00006105 type_tucmd_mlhl |= ixgbe_psum(adapter, skb, protocol);
Auke Kok9a799d72007-09-15 14:07:45 -07006106
6107 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd_mlhl);
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006108 /* use index zero for tx checksum offload */
Auke Kok9a799d72007-09-15 14:07:45 -07006109 context_desc->mss_l4len_idx = 0;
6110
6111 tx_buffer_info->time_stamp = jiffies;
6112 tx_buffer_info->next_to_watch = i;
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006113
Auke Kok9a799d72007-09-15 14:07:45 -07006114 i++;
6115 if (i == tx_ring->count)
6116 i = 0;
6117 tx_ring->next_to_use = i;
6118
6119 return true;
6120 }
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006121
Auke Kok9a799d72007-09-15 14:07:45 -07006122 return false;
6123}
6124
6125static int ixgbe_tx_map(struct ixgbe_adapter *adapter,
Joe Perchese8e9f692010-09-07 21:34:53 +00006126 struct ixgbe_ring *tx_ring,
6127 struct sk_buff *skb, u32 tx_flags,
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006128 unsigned int first, const u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006129{
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006130 struct device *dev = tx_ring->dev;
Auke Kok9a799d72007-09-15 14:07:45 -07006131 struct ixgbe_tx_buffer *tx_buffer_info;
Yi Zoueacd73f2009-05-13 13:11:06 +00006132 unsigned int len;
6133 unsigned int total = skb->len;
Auke Kok9a799d72007-09-15 14:07:45 -07006134 unsigned int offset = 0, size, count = 0, i;
6135 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
6136 unsigned int f;
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006137 unsigned int bytecount = skb->len;
6138 u16 gso_segs = 1;
Auke Kok9a799d72007-09-15 14:07:45 -07006139
6140 i = tx_ring->next_to_use;
6141
Yi Zoueacd73f2009-05-13 13:11:06 +00006142 if (tx_flags & IXGBE_TX_FLAGS_FCOE)
6143 /* excluding fcoe_crc_eof for FCoE */
6144 total -= sizeof(struct fcoe_crc_eof);
6145
6146 len = min(skb_headlen(skb), total);
Auke Kok9a799d72007-09-15 14:07:45 -07006147 while (len) {
6148 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6149 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6150
6151 tx_buffer_info->length = size;
Alexander Duycke5a43542009-12-02 16:46:56 +00006152 tx_buffer_info->mapped_as_page = false;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006153 tx_buffer_info->dma = dma_map_single(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006154 skb->data + offset,
Nick Nunley1b507732010-04-27 13:10:27 +00006155 size, DMA_TO_DEVICE);
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006156 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006157 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006158 tx_buffer_info->time_stamp = jiffies;
6159 tx_buffer_info->next_to_watch = i;
6160
6161 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006162 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006163 offset += size;
6164 count++;
Alexander Duyck44df32c2009-03-31 21:34:23 +00006165
6166 if (len) {
6167 i++;
6168 if (i == tx_ring->count)
6169 i = 0;
6170 }
Auke Kok9a799d72007-09-15 14:07:45 -07006171 }
6172
6173 for (f = 0; f < nr_frags; f++) {
6174 struct skb_frag_struct *frag;
6175
6176 frag = &skb_shinfo(skb)->frags[f];
Yi Zoueacd73f2009-05-13 13:11:06 +00006177 len = min((unsigned int)frag->size, total);
Alexander Duycke5a43542009-12-02 16:46:56 +00006178 offset = frag->page_offset;
Auke Kok9a799d72007-09-15 14:07:45 -07006179
6180 while (len) {
Alexander Duyck44df32c2009-03-31 21:34:23 +00006181 i++;
6182 if (i == tx_ring->count)
6183 i = 0;
6184
Auke Kok9a799d72007-09-15 14:07:45 -07006185 tx_buffer_info = &tx_ring->tx_buffer_info[i];
6186 size = min(len, (uint)IXGBE_MAX_DATA_PER_TXD);
6187
6188 tx_buffer_info->length = size;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006189 tx_buffer_info->dma = dma_map_page(dev,
Alexander Duycke5a43542009-12-02 16:46:56 +00006190 frag->page,
6191 offset, size,
Nick Nunley1b507732010-04-27 13:10:27 +00006192 DMA_TO_DEVICE);
Alexander Duycke5a43542009-12-02 16:46:56 +00006193 tx_buffer_info->mapped_as_page = true;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006194 if (dma_mapping_error(dev, tx_buffer_info->dma))
Alexander Duycke5a43542009-12-02 16:46:56 +00006195 goto dma_error;
Auke Kok9a799d72007-09-15 14:07:45 -07006196 tx_buffer_info->time_stamp = jiffies;
6197 tx_buffer_info->next_to_watch = i;
6198
6199 len -= size;
Yi Zoueacd73f2009-05-13 13:11:06 +00006200 total -= size;
Auke Kok9a799d72007-09-15 14:07:45 -07006201 offset += size;
6202 count++;
Auke Kok9a799d72007-09-15 14:07:45 -07006203 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006204 if (total == 0)
6205 break;
Auke Kok9a799d72007-09-15 14:07:45 -07006206 }
Alexander Duyck44df32c2009-03-31 21:34:23 +00006207
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006208 if (tx_flags & IXGBE_TX_FLAGS_TSO)
6209 gso_segs = skb_shinfo(skb)->gso_segs;
6210#ifdef IXGBE_FCOE
6211 /* adjust for FCoE Sequence Offload */
6212 else if (tx_flags & IXGBE_TX_FLAGS_FSO)
6213 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
6214 skb_shinfo(skb)->gso_size);
6215#endif /* IXGBE_FCOE */
6216 bytecount += (gso_segs - 1) * hdr_len;
6217
6218 /* multiply data chunks by size of headers */
6219 tx_ring->tx_buffer_info[i].bytecount = bytecount;
6220 tx_ring->tx_buffer_info[i].gso_segs = gso_segs;
Auke Kok9a799d72007-09-15 14:07:45 -07006221 tx_ring->tx_buffer_info[i].skb = skb;
6222 tx_ring->tx_buffer_info[first].next_to_watch = i;
6223
6224 return count;
Alexander Duycke5a43542009-12-02 16:46:56 +00006225
6226dma_error:
Emil Tantilov849c4542010-06-03 16:53:41 +00006227 e_dev_err("TX DMA map failed\n");
Alexander Duycke5a43542009-12-02 16:46:56 +00006228
6229 /* clear timestamp and dma mappings for failed tx_buffer_info map */
6230 tx_buffer_info->dma = 0;
6231 tx_buffer_info->time_stamp = 0;
6232 tx_buffer_info->next_to_watch = 0;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006233 if (count)
6234 count--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006235
6236 /* clear timestamp and dma mappings for remaining portion of packet */
Roel Kluinc1fa3472010-01-19 14:21:45 +00006237 while (count--) {
Joe Perchese8e9f692010-09-07 21:34:53 +00006238 if (i == 0)
Alexander Duycke5a43542009-12-02 16:46:56 +00006239 i += tx_ring->count;
Roel Kluinc1fa3472010-01-19 14:21:45 +00006240 i--;
Alexander Duycke5a43542009-12-02 16:46:56 +00006241 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyckb6ec8952010-11-16 19:26:49 -08006242 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Alexander Duycke5a43542009-12-02 16:46:56 +00006243 }
6244
Anton Blancharde44d38e2010-02-03 13:12:51 +00006245 return 0;
Auke Kok9a799d72007-09-15 14:07:45 -07006246}
6247
Alexander Duyck84ea2592010-11-16 19:26:49 -08006248static void ixgbe_tx_queue(struct ixgbe_ring *tx_ring,
Joe Perchese8e9f692010-09-07 21:34:53 +00006249 int tx_flags, int count, u32 paylen, u8 hdr_len)
Auke Kok9a799d72007-09-15 14:07:45 -07006250{
6251 union ixgbe_adv_tx_desc *tx_desc = NULL;
6252 struct ixgbe_tx_buffer *tx_buffer_info;
6253 u32 olinfo_status = 0, cmd_type_len = 0;
6254 unsigned int i;
6255 u32 txd_cmd = IXGBE_TXD_CMD_EOP | IXGBE_TXD_CMD_RS | IXGBE_TXD_CMD_IFCS;
6256
6257 cmd_type_len |= IXGBE_ADVTXD_DTYP_DATA;
6258
6259 cmd_type_len |= IXGBE_ADVTXD_DCMD_IFCS | IXGBE_ADVTXD_DCMD_DEXT;
6260
6261 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
6262 cmd_type_len |= IXGBE_ADVTXD_DCMD_VLE;
6263
6264 if (tx_flags & IXGBE_TX_FLAGS_TSO) {
6265 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6266
6267 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006268 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006269
PJ Waskiewicz4eeae6f2008-08-26 04:27:30 -07006270 /* use index 1 context for tso */
6271 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
Auke Kok9a799d72007-09-15 14:07:45 -07006272 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
6273 olinfo_status |= IXGBE_TXD_POPTS_IXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006274 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006275
6276 } else if (tx_flags & IXGBE_TX_FLAGS_CSUM)
6277 olinfo_status |= IXGBE_TXD_POPTS_TXSM <<
Joe Perchese8e9f692010-09-07 21:34:53 +00006278 IXGBE_ADVTXD_POPTS_SHIFT;
Auke Kok9a799d72007-09-15 14:07:45 -07006279
Yi Zoueacd73f2009-05-13 13:11:06 +00006280 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6281 olinfo_status |= IXGBE_ADVTXD_CC;
6282 olinfo_status |= (1 << IXGBE_ADVTXD_IDX_SHIFT);
6283 if (tx_flags & IXGBE_TX_FLAGS_FSO)
6284 cmd_type_len |= IXGBE_ADVTXD_DCMD_TSE;
6285 }
6286
Auke Kok9a799d72007-09-15 14:07:45 -07006287 olinfo_status |= ((paylen - hdr_len) << IXGBE_ADVTXD_PAYLEN_SHIFT);
6288
6289 i = tx_ring->next_to_use;
6290 while (count--) {
6291 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck31f05a22010-08-19 13:40:31 +00006292 tx_desc = IXGBE_TX_DESC_ADV(tx_ring, i);
Auke Kok9a799d72007-09-15 14:07:45 -07006293 tx_desc->read.buffer_addr = cpu_to_le64(tx_buffer_info->dma);
6294 tx_desc->read.cmd_type_len =
Joe Perchese8e9f692010-09-07 21:34:53 +00006295 cpu_to_le32(cmd_type_len | tx_buffer_info->length);
Auke Kok9a799d72007-09-15 14:07:45 -07006296 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
Auke Kok9a799d72007-09-15 14:07:45 -07006297 i++;
6298 if (i == tx_ring->count)
6299 i = 0;
6300 }
6301
6302 tx_desc->read.cmd_type_len |= cpu_to_le32(txd_cmd);
6303
6304 /*
6305 * Force memory writes to complete before letting h/w
6306 * know there are new descriptors to fetch. (Only
6307 * applicable for weak-ordered memory model archs,
6308 * such as IA-64).
6309 */
6310 wmb();
6311
6312 tx_ring->next_to_use = i;
Alexander Duyck84ea2592010-11-16 19:26:49 -08006313 writel(i, tx_ring->tail);
Auke Kok9a799d72007-09-15 14:07:45 -07006314}
6315
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006316static void ixgbe_atr(struct ixgbe_adapter *adapter, struct sk_buff *skb,
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006317 u8 queue, u32 tx_flags, __be16 protocol)
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006318{
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006319 struct ixgbe_atr_input atr_input;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006320 struct iphdr *iph = ip_hdr(skb);
6321 struct ethhdr *eth = (struct ethhdr *)skb->data;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006322 struct tcphdr *th;
6323 u16 vlan_id;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006324
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006325 /* Right now, we support IPv4 w/ TCP only */
6326 if (protocol != htons(ETH_P_IP) ||
6327 iph->protocol != IPPROTO_TCP)
Guillaume Gaudonvilled3ead242010-06-29 18:29:00 +00006328 return;
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006329
6330 memset(&atr_input, 0, sizeof(struct ixgbe_atr_input));
6331
6332 vlan_id = (tx_flags & IXGBE_TX_FLAGS_VLAN_MASK) >>
Joe Perchese8e9f692010-09-07 21:34:53 +00006333 IXGBE_TX_FLAGS_VLAN_SHIFT;
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006334
6335 th = tcp_hdr(skb);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006336
6337 ixgbe_atr_set_vlan_id_82599(&atr_input, vlan_id);
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006338 ixgbe_atr_set_src_port_82599(&atr_input, th->dest);
6339 ixgbe_atr_set_dst_port_82599(&atr_input, th->source);
6340 ixgbe_atr_set_flex_byte_82599(&atr_input, eth->h_proto);
6341 ixgbe_atr_set_l4type_82599(&atr_input, IXGBE_ATR_L4TYPE_TCP);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006342 /* src and dst are inverted, think how the receiver sees them */
Alexander Duyckee9e0f02010-11-16 19:27:01 -08006343 ixgbe_atr_set_src_ipv4_82599(&atr_input, iph->daddr);
6344 ixgbe_atr_set_dst_ipv4_82599(&atr_input, iph->saddr);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006345
6346 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
6347 ixgbe_fdir_add_signature_filter_82599(&adapter->hw, &atr_input, queue);
6348}
6349
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006350static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, int size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006351{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006352 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006353 /* Herbert's original patch had:
6354 * smp_mb__after_netif_stop_queue();
6355 * but since that doesn't exist yet, just open code it. */
6356 smp_mb();
6357
6358 /* We need to check again in a case another CPU has just
6359 * made room available. */
6360 if (likely(IXGBE_DESC_UNUSED(tx_ring) < size))
6361 return -EBUSY;
6362
6363 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006364 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Alexander Duyck5b7da512010-11-16 19:26:50 -08006365 ++tx_ring->tx_stats.restart_queue;
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006366 return 0;
6367}
6368
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006369static int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, int size)
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006370{
6371 if (likely(IXGBE_DESC_UNUSED(tx_ring) >= size))
6372 return 0;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006373 return __ixgbe_maybe_stop_tx(tx_ring, size);
Ayyappan Veeraiyane092be62008-02-01 15:58:49 -08006374}
6375
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006376static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
6377{
6378 struct ixgbe_adapter *adapter = netdev_priv(dev);
Yi Zou5f715822009-12-03 11:32:44 +00006379 int txq = smp_processor_id();
John Fastabend56075a92010-07-26 20:41:31 +00006380#ifdef IXGBE_FCOE
Hao Zheng5e09a102010-11-11 13:47:59 +00006381 __be16 protocol;
6382
6383 protocol = vlan_get_protocol(skb);
6384
6385 if ((protocol == htons(ETH_P_FCOE)) ||
6386 (protocol == htons(ETH_P_FIP))) {
John Fastabend56075a92010-07-26 20:41:31 +00006387 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) {
6388 txq &= (adapter->ring_feature[RING_F_FCOE].indices - 1);
6389 txq += adapter->ring_feature[RING_F_FCOE].mask;
6390 return txq;
John Fastabend4bc091d2010-08-08 15:46:15 +00006391#ifdef CONFIG_IXGBE_DCB
John Fastabend56075a92010-07-26 20:41:31 +00006392 } else if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6393 txq = adapter->fcoe.up;
6394 return txq;
John Fastabend4bc091d2010-08-08 15:46:15 +00006395#endif
John Fastabend56075a92010-07-26 20:41:31 +00006396 }
6397 }
6398#endif
6399
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006400 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) {
6401 while (unlikely(txq >= dev->real_num_tx_queues))
6402 txq -= dev->real_num_tx_queues;
Yi Zou5f715822009-12-03 11:32:44 +00006403 return txq;
Krishna Kumarfdd3d632010-02-03 13:13:10 +00006404 }
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006405
John Fastabend2ea186a2010-02-27 03:28:24 -08006406 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6407 if (skb->priority == TC_PRIO_CONTROL)
6408 txq = adapter->ring_feature[RING_F_DCB].indices-1;
6409 else
6410 txq = (skb->vlan_tci & IXGBE_TX_FLAGS_VLAN_PRIO_MASK)
6411 >> 13;
6412 return txq;
6413 }
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006414
6415 return skb_tx_hash(dev, skb);
6416}
6417
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006418netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00006419 struct ixgbe_adapter *adapter,
6420 struct ixgbe_ring *tx_ring)
Auke Kok9a799d72007-09-15 14:07:45 -07006421{
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006422 struct net_device *netdev = tx_ring->netdev;
Eric Dumazet60d51132009-12-08 07:22:03 +00006423 struct netdev_queue *txq;
Auke Kok9a799d72007-09-15 14:07:45 -07006424 unsigned int first;
6425 unsigned int tx_flags = 0;
Ayyappan Veeraiyan30eba972008-03-03 15:03:52 -08006426 u8 hdr_len = 0;
Yi Zou5f715822009-12-03 11:32:44 +00006427 int tso;
Auke Kok9a799d72007-09-15 14:07:45 -07006428 int count = 0;
6429 unsigned int f;
Hao Zheng5e09a102010-11-11 13:47:59 +00006430 __be16 protocol;
6431
6432 protocol = vlan_get_protocol(skb);
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006433
Jesse Grosseab6d182010-10-20 13:56:03 +00006434 if (vlan_tx_tag_present(skb)) {
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006435 tx_flags |= vlan_tx_tag_get(skb);
Alexander Duyck2f90b862008-11-20 20:52:10 -08006436 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6437 tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK;
Yi Zou5f715822009-12-03 11:32:44 +00006438 tx_flags |= ((skb->queue_mapping & 0x7) << 13);
Alexander Duyck2f90b862008-11-20 20:52:10 -08006439 }
6440 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6441 tx_flags |= IXGBE_TX_FLAGS_VLAN;
John Fastabend33c66bd2010-05-18 16:00:11 +00006442 } else if (adapter->flags & IXGBE_FLAG_DCB_ENABLED &&
6443 skb->priority != TC_PRIO_CONTROL) {
John Fastabend2ea186a2010-02-27 03:28:24 -08006444 tx_flags |= ((skb->queue_mapping & 0x7) << 13);
6445 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
6446 tx_flags |= IXGBE_TX_FLAGS_VLAN;
Auke Kok9a799d72007-09-15 14:07:45 -07006447 }
Yi Zoueacd73f2009-05-13 13:11:06 +00006448
Yi Zou09ad1cc2009-09-03 14:56:10 +00006449#ifdef IXGBE_FCOE
John Fastabend56075a92010-07-26 20:41:31 +00006450 /* for FCoE with DCB, we force the priority to what
6451 * was specified by the switch */
6452 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED &&
Hao Zheng5e09a102010-11-11 13:47:59 +00006453 (protocol == htons(ETH_P_FCOE) ||
6454 protocol == htons(ETH_P_FIP))) {
John Fastabend4bc091d2010-08-08 15:46:15 +00006455#ifdef CONFIG_IXGBE_DCB
6456 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) {
6457 tx_flags &= ~(IXGBE_TX_FLAGS_VLAN_PRIO_MASK
6458 << IXGBE_TX_FLAGS_VLAN_SHIFT);
6459 tx_flags |= ((adapter->fcoe.up << 13)
6460 << IXGBE_TX_FLAGS_VLAN_SHIFT);
6461 }
6462#endif
Robert Loveca77cd52010-03-24 12:45:00 +00006463 /* flag for FCoE offloads */
Hao Zheng5e09a102010-11-11 13:47:59 +00006464 if (protocol == htons(ETH_P_FCOE))
Robert Loveca77cd52010-03-24 12:45:00 +00006465 tx_flags |= IXGBE_TX_FLAGS_FCOE;
Yi Zou09ad1cc2009-09-03 14:56:10 +00006466 }
Robert Loveca77cd52010-03-24 12:45:00 +00006467#endif
6468
Yi Zoueacd73f2009-05-13 13:11:06 +00006469 /* four things can cause us to need a context descriptor */
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006470 if (skb_is_gso(skb) ||
6471 (skb->ip_summed == CHECKSUM_PARTIAL) ||
Yi Zoueacd73f2009-05-13 13:11:06 +00006472 (tx_flags & IXGBE_TX_FLAGS_VLAN) ||
6473 (tx_flags & IXGBE_TX_FLAGS_FCOE))
Auke Kok9a799d72007-09-15 14:07:45 -07006474 count++;
6475
Jesse Brandeburg9f8cdf42008-09-11 20:03:35 -07006476 count += TXD_USE_COUNT(skb_headlen(skb));
6477 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
Auke Kok9a799d72007-09-15 14:07:45 -07006478 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
6479
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006480 if (ixgbe_maybe_stop_tx(tx_ring, count)) {
Alexander Duyck5b7da512010-11-16 19:26:50 -08006481 tx_ring->tx_stats.tx_busy++;
Auke Kok9a799d72007-09-15 14:07:45 -07006482 return NETDEV_TX_BUSY;
6483 }
Auke Kok9a799d72007-09-15 14:07:45 -07006484
Auke Kok9a799d72007-09-15 14:07:45 -07006485 first = tx_ring->next_to_use;
Yi Zoueacd73f2009-05-13 13:11:06 +00006486 if (tx_flags & IXGBE_TX_FLAGS_FCOE) {
6487#ifdef IXGBE_FCOE
6488 /* setup tx offload for FCoE */
6489 tso = ixgbe_fso(adapter, tx_ring, skb, tx_flags, &hdr_len);
6490 if (tso < 0) {
6491 dev_kfree_skb_any(skb);
6492 return NETDEV_TX_OK;
6493 }
6494 if (tso)
6495 tx_flags |= IXGBE_TX_FLAGS_FSO;
6496#endif /* IXGBE_FCOE */
6497 } else {
Hao Zheng5e09a102010-11-11 13:47:59 +00006498 if (protocol == htons(ETH_P_IP))
Yi Zoueacd73f2009-05-13 13:11:06 +00006499 tx_flags |= IXGBE_TX_FLAGS_IPV4;
Hao Zheng5e09a102010-11-11 13:47:59 +00006500 tso = ixgbe_tso(adapter, tx_ring, skb, tx_flags, &hdr_len,
6501 protocol);
Yi Zoueacd73f2009-05-13 13:11:06 +00006502 if (tso < 0) {
6503 dev_kfree_skb_any(skb);
6504 return NETDEV_TX_OK;
6505 }
6506
6507 if (tso)
6508 tx_flags |= IXGBE_TX_FLAGS_TSO;
Hao Zheng5e09a102010-11-11 13:47:59 +00006509 else if (ixgbe_tx_csum(adapter, tx_ring, skb, tx_flags,
6510 protocol) &&
Yi Zoueacd73f2009-05-13 13:11:06 +00006511 (skb->ip_summed == CHECKSUM_PARTIAL))
6512 tx_flags |= IXGBE_TX_FLAGS_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07006513 }
6514
Alexander Duyck8ad494b2010-11-16 19:26:47 -08006515 count = ixgbe_tx_map(adapter, tx_ring, skb, tx_flags, first, hdr_len);
Alexander Duyck44df32c2009-03-31 21:34:23 +00006516 if (count) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006517 /* add the ATR filter if ATR is on */
6518 if (tx_ring->atr_sample_rate) {
6519 ++tx_ring->atr_count;
6520 if ((tx_ring->atr_count >= tx_ring->atr_sample_rate) &&
Alexander Duyck7d637bc2010-11-16 19:26:56 -08006521 test_bit(__IXGBE_TX_FDIR_INIT_DONE,
6522 &tx_ring->state)) {
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006523 ixgbe_atr(adapter, skb, tx_ring->queue_index,
Hao Zheng5e09a102010-11-11 13:47:59 +00006524 tx_flags, protocol);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00006525 tx_ring->atr_count = 0;
6526 }
6527 }
Eric Dumazet60d51132009-12-08 07:22:03 +00006528 txq = netdev_get_tx_queue(netdev, tx_ring->queue_index);
6529 txq->tx_bytes += skb->len;
6530 txq->tx_packets++;
Alexander Duyck84ea2592010-11-16 19:26:49 -08006531 ixgbe_tx_queue(tx_ring, tx_flags, count, skb->len, hdr_len);
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006532 ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED);
Auke Kok9a799d72007-09-15 14:07:45 -07006533
Alexander Duyck44df32c2009-03-31 21:34:23 +00006534 } else {
6535 dev_kfree_skb_any(skb);
6536 tx_ring->tx_buffer_info[first].time_stamp = 0;
6537 tx_ring->next_to_use = first;
6538 }
Auke Kok9a799d72007-09-15 14:07:45 -07006539
6540 return NETDEV_TX_OK;
6541}
6542
Alexander Duyck84418e32010-08-19 13:40:54 +00006543static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
6544{
6545 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6546 struct ixgbe_ring *tx_ring;
6547
6548 tx_ring = adapter->tx_ring[skb->queue_mapping];
Alexander Duyckfc77dc32010-11-16 19:26:51 -08006549 return ixgbe_xmit_frame_ring(skb, adapter, tx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00006550}
6551
Auke Kok9a799d72007-09-15 14:07:45 -07006552/**
Auke Kok9a799d72007-09-15 14:07:45 -07006553 * ixgbe_set_mac - Change the Ethernet Address of the NIC
6554 * @netdev: network interface device structure
6555 * @p: pointer to an address structure
6556 *
6557 * Returns 0 on success, negative on failure
6558 **/
6559static int ixgbe_set_mac(struct net_device *netdev, void *p)
6560{
6561 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006562 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07006563 struct sockaddr *addr = p;
6564
6565 if (!is_valid_ether_addr(addr->sa_data))
6566 return -EADDRNOTAVAIL;
6567
6568 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07006569 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9a799d72007-09-15 14:07:45 -07006570
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006571 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, adapter->num_vfs,
6572 IXGBE_RAH_AV);
Auke Kok9a799d72007-09-15 14:07:45 -07006573
6574 return 0;
6575}
6576
Ben Hutchings6b73e102009-04-29 08:08:58 +00006577static int
6578ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr)
6579{
6580 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6581 struct ixgbe_hw *hw = &adapter->hw;
6582 u16 value;
6583 int rc;
6584
6585 if (prtad != hw->phy.mdio.prtad)
6586 return -EINVAL;
6587 rc = hw->phy.ops.read_reg(hw, addr, devad, &value);
6588 if (!rc)
6589 rc = value;
6590 return rc;
6591}
6592
6593static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad,
6594 u16 addr, u16 value)
6595{
6596 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6597 struct ixgbe_hw *hw = &adapter->hw;
6598
6599 if (prtad != hw->phy.mdio.prtad)
6600 return -EINVAL;
6601 return hw->phy.ops.write_reg(hw, addr, devad, value);
6602}
6603
6604static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd)
6605{
6606 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6607
6608 return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd);
6609}
6610
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006611/**
6612 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006613 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006614 * @netdev: network interface device structure
6615 *
6616 * Returns non-zero on failure
6617 **/
6618static int ixgbe_add_sanmac_netdev(struct net_device *dev)
6619{
6620 int err = 0;
6621 struct ixgbe_adapter *adapter = netdev_priv(dev);
6622 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6623
6624 if (is_valid_ether_addr(mac->san_addr)) {
6625 rtnl_lock();
6626 err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6627 rtnl_unlock();
6628 }
6629 return err;
6630}
6631
6632/**
6633 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
Jiri Pirko31278e72009-06-17 01:12:19 +00006634 * netdev->dev_addrs
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00006635 * @netdev: network interface device structure
6636 *
6637 * Returns non-zero on failure
6638 **/
6639static int ixgbe_del_sanmac_netdev(struct net_device *dev)
6640{
6641 int err = 0;
6642 struct ixgbe_adapter *adapter = netdev_priv(dev);
6643 struct ixgbe_mac_info *mac = &adapter->hw.mac;
6644
6645 if (is_valid_ether_addr(mac->san_addr)) {
6646 rtnl_lock();
6647 err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN);
6648 rtnl_unlock();
6649 }
6650 return err;
6651}
6652
Auke Kok9a799d72007-09-15 14:07:45 -07006653#ifdef CONFIG_NET_POLL_CONTROLLER
6654/*
6655 * Polling 'interrupt' - used by things like netconsole to send skbs
6656 * without having to re-enable interrupts. It's not called while
6657 * the interrupt routine is executing.
6658 */
6659static void ixgbe_netpoll(struct net_device *netdev)
6660{
6661 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006662 int i;
Auke Kok9a799d72007-09-15 14:07:45 -07006663
Alexander Duyck1a647bd2010-01-13 01:49:13 +00006664 /* if interface is down do nothing */
6665 if (test_bit(__IXGBE_DOWN, &adapter->state))
6666 return;
6667
Auke Kok9a799d72007-09-15 14:07:45 -07006668 adapter->flags |= IXGBE_FLAG_IN_NETPOLL;
Peter P Waskiewicz Jr8f9a7162009-07-30 12:25:09 +00006669 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
6670 int num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
6671 for (i = 0; i < num_q_vectors; i++) {
6672 struct ixgbe_q_vector *q_vector = adapter->q_vector[i];
6673 ixgbe_msix_clean_many(0, q_vector);
6674 }
6675 } else {
6676 ixgbe_intr(adapter->pdev->irq, netdev);
6677 }
Auke Kok9a799d72007-09-15 14:07:45 -07006678 adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL;
Auke Kok9a799d72007-09-15 14:07:45 -07006679}
6680#endif
6681
Eric Dumazetde1036b2010-10-20 23:00:04 +00006682static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev,
6683 struct rtnl_link_stats64 *stats)
6684{
6685 struct ixgbe_adapter *adapter = netdev_priv(netdev);
6686 int i;
6687
6688 /* accurate rx/tx bytes/packets stats */
6689 dev_txq_stats_fold(netdev, stats);
Eric Dumazet1a515022010-11-16 19:26:42 -08006690 rcu_read_lock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006691 for (i = 0; i < adapter->num_rx_queues; i++) {
Eric Dumazet1a515022010-11-16 19:26:42 -08006692 struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]);
Eric Dumazetde1036b2010-10-20 23:00:04 +00006693 u64 bytes, packets;
6694 unsigned int start;
6695
Eric Dumazet1a515022010-11-16 19:26:42 -08006696 if (ring) {
6697 do {
6698 start = u64_stats_fetch_begin_bh(&ring->syncp);
6699 packets = ring->stats.packets;
6700 bytes = ring->stats.bytes;
6701 } while (u64_stats_fetch_retry_bh(&ring->syncp, start));
6702 stats->rx_packets += packets;
6703 stats->rx_bytes += bytes;
6704 }
Eric Dumazetde1036b2010-10-20 23:00:04 +00006705 }
Eric Dumazet1a515022010-11-16 19:26:42 -08006706 rcu_read_unlock();
Eric Dumazetde1036b2010-10-20 23:00:04 +00006707 /* following stats updated by ixgbe_watchdog_task() */
6708 stats->multicast = netdev->stats.multicast;
6709 stats->rx_errors = netdev->stats.rx_errors;
6710 stats->rx_length_errors = netdev->stats.rx_length_errors;
6711 stats->rx_crc_errors = netdev->stats.rx_crc_errors;
6712 stats->rx_missed_errors = netdev->stats.rx_missed_errors;
6713 return stats;
6714}
6715
6716
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006717static const struct net_device_ops ixgbe_netdev_ops = {
Joe Perchese8e9f692010-09-07 21:34:53 +00006718 .ndo_open = ixgbe_open,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006719 .ndo_stop = ixgbe_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08006720 .ndo_start_xmit = ixgbe_xmit_frame,
Stephen Hemminger09a3b1f2009-03-21 13:40:01 -07006721 .ndo_select_queue = ixgbe_select_queue,
Chris Leeche90d4002009-03-10 16:00:24 +00006722 .ndo_set_rx_mode = ixgbe_set_rx_mode,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006723 .ndo_set_multicast_list = ixgbe_set_rx_mode,
6724 .ndo_validate_addr = eth_validate_addr,
6725 .ndo_set_mac_address = ixgbe_set_mac,
6726 .ndo_change_mtu = ixgbe_change_mtu,
6727 .ndo_tx_timeout = ixgbe_tx_timeout,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006728 .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid,
6729 .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid,
Ben Hutchings6b73e102009-04-29 08:08:58 +00006730 .ndo_do_ioctl = ixgbe_ioctl,
Greg Rose7f016482010-05-04 22:12:06 +00006731 .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac,
6732 .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan,
6733 .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw,
6734 .ndo_get_vf_config = ixgbe_ndo_get_vf_config,
Eric Dumazetde1036b2010-10-20 23:00:04 +00006735 .ndo_get_stats64 = ixgbe_get_stats64,
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006736#ifdef CONFIG_NET_POLL_CONTROLLER
6737 .ndo_poll_controller = ixgbe_netpoll,
6738#endif
Yi Zou332d4a72009-05-13 13:11:53 +00006739#ifdef IXGBE_FCOE
6740 .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get,
6741 .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put,
Yi Zou8450ff82009-08-31 12:32:14 +00006742 .ndo_fcoe_enable = ixgbe_fcoe_enable,
6743 .ndo_fcoe_disable = ixgbe_fcoe_disable,
Yi Zou61a1fa12009-10-28 18:24:56 +00006744 .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn,
Yi Zou332d4a72009-05-13 13:11:53 +00006745#endif /* IXGBE_FCOE */
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006746};
6747
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006748static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
6749 const struct ixgbe_info *ii)
6750{
6751#ifdef CONFIG_PCI_IOV
6752 struct ixgbe_hw *hw = &adapter->hw;
6753 int err;
6754
6755 if (hw->mac.type != ixgbe_mac_82599EB || !max_vfs)
6756 return;
6757
6758 /* The 82599 supports up to 64 VFs per physical function
6759 * but this implementation limits allocation to 63 so that
6760 * basic networking resources are still available to the
6761 * physical function
6762 */
6763 adapter->num_vfs = (max_vfs > 63) ? 63 : max_vfs;
6764 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
6765 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
6766 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +00006767 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006768 goto err_novfs;
6769 }
6770 /* If call to enable VFs succeeded then allocate memory
6771 * for per VF control structures.
6772 */
6773 adapter->vfinfo =
6774 kcalloc(adapter->num_vfs,
6775 sizeof(struct vf_data_storage), GFP_KERNEL);
6776 if (adapter->vfinfo) {
6777 /* Now that we're sure SR-IOV is enabled
6778 * and memory allocated set up the mailbox parameters
6779 */
6780 ixgbe_init_mbx_params_pf(hw);
6781 memcpy(&hw->mbx.ops, ii->mbx_ops,
6782 sizeof(hw->mbx.ops));
6783
6784 /* Disable RSC when in SR-IOV mode */
6785 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
6786 IXGBE_FLAG2_RSC_ENABLED);
6787 return;
6788 }
6789
6790 /* Oh oh */
Emil Tantilov396e7992010-07-01 20:05:12 +00006791 e_err(probe, "Unable to allocate memory for VF Data Storage - "
6792 "SRIOV disabled\n");
Greg Rose1cdd1ec2010-01-09 02:26:46 +00006793 pci_disable_sriov(adapter->pdev);
6794
6795err_novfs:
6796 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
6797 adapter->num_vfs = 0;
6798#endif /* CONFIG_PCI_IOV */
6799}
6800
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006801/**
Auke Kok9a799d72007-09-15 14:07:45 -07006802 * ixgbe_probe - Device Initialization Routine
6803 * @pdev: PCI device information struct
6804 * @ent: entry in ixgbe_pci_tbl
6805 *
6806 * Returns 0 on success, negative on failure
6807 *
6808 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
6809 * The OS initialization, configuring of the adapter private structure,
6810 * and a hardware reset occur.
6811 **/
6812static int __devinit ixgbe_probe(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00006813 const struct pci_device_id *ent)
Auke Kok9a799d72007-09-15 14:07:45 -07006814{
6815 struct net_device *netdev;
6816 struct ixgbe_adapter *adapter = NULL;
6817 struct ixgbe_hw *hw;
6818 const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data];
Auke Kok9a799d72007-09-15 14:07:45 -07006819 static int cards_found;
6820 int i, err, pci_using_dac;
John Fastabendc85a2612010-02-25 23:15:21 +00006821 unsigned int indices = num_possible_cpus();
Yi Zoueacd73f2009-05-13 13:11:06 +00006822#ifdef IXGBE_FCOE
6823 u16 device_caps;
6824#endif
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006825 u32 part_num, eec;
Auke Kok9a799d72007-09-15 14:07:45 -07006826
Andy Gospodarekbded64a2010-07-21 06:40:31 +00006827 /* Catch broken hardware that put the wrong VF device ID in
6828 * the PCIe SR-IOV capability.
6829 */
6830 if (pdev->is_virtfn) {
6831 WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
6832 pci_name(pdev), pdev->vendor, pdev->device);
6833 return -EINVAL;
6834 }
6835
gouji-new9ce77662009-05-06 10:44:45 +00006836 err = pci_enable_device_mem(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006837 if (err)
6838 return err;
6839
Nick Nunley1b507732010-04-27 13:10:27 +00006840 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
6841 !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
Auke Kok9a799d72007-09-15 14:07:45 -07006842 pci_using_dac = 1;
6843 } else {
Nick Nunley1b507732010-04-27 13:10:27 +00006844 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07006845 if (err) {
Nick Nunley1b507732010-04-27 13:10:27 +00006846 err = dma_set_coherent_mask(&pdev->dev,
6847 DMA_BIT_MASK(32));
Auke Kok9a799d72007-09-15 14:07:45 -07006848 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00006849 dev_err(&pdev->dev,
6850 "No usable DMA configuration, aborting\n");
Auke Kok9a799d72007-09-15 14:07:45 -07006851 goto err_dma;
6852 }
6853 }
6854 pci_using_dac = 0;
6855 }
6856
gouji-new9ce77662009-05-06 10:44:45 +00006857 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00006858 IORESOURCE_MEM), ixgbe_driver_name);
Auke Kok9a799d72007-09-15 14:07:45 -07006859 if (err) {
Dan Carpenterb8bc0422010-07-27 00:05:56 +00006860 dev_err(&pdev->dev,
6861 "pci_request_selected_regions failed 0x%x\n", err);
Auke Kok9a799d72007-09-15 14:07:45 -07006862 goto err_pci_reg;
6863 }
6864
Frans Pop19d5afd2009-10-02 10:04:12 -07006865 pci_enable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08006866
Auke Kok9a799d72007-09-15 14:07:45 -07006867 pci_set_master(pdev);
Wendy Xiongfb3b27b2008-04-23 11:09:24 -07006868 pci_save_state(pdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006869
John Fastabendc85a2612010-02-25 23:15:21 +00006870 if (ii->mac == ixgbe_mac_82598EB)
6871 indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES);
6872 else
6873 indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES);
6874
6875 indices = max_t(unsigned int, indices, IXGBE_MAX_DCB_INDICES);
6876#ifdef IXGBE_FCOE
6877 indices += min_t(unsigned int, num_possible_cpus(),
6878 IXGBE_MAX_FCOE_INDICES);
6879#endif
John Fastabendc85a2612010-02-25 23:15:21 +00006880 netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices);
Auke Kok9a799d72007-09-15 14:07:45 -07006881 if (!netdev) {
6882 err = -ENOMEM;
6883 goto err_alloc_etherdev;
6884 }
6885
Auke Kok9a799d72007-09-15 14:07:45 -07006886 SET_NETDEV_DEV(netdev, &pdev->dev);
6887
Auke Kok9a799d72007-09-15 14:07:45 -07006888 adapter = netdev_priv(netdev);
Alexander Duyckc60fbb02010-11-16 19:26:54 -08006889 pci_set_drvdata(pdev, adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07006890
6891 adapter->netdev = netdev;
6892 adapter->pdev = pdev;
6893 hw = &adapter->hw;
6894 hw->back = adapter;
6895 adapter->msg_enable = (1 << DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
6896
Jeff Kirsher05857982008-09-11 19:57:00 -07006897 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
Joe Perchese8e9f692010-09-07 21:34:53 +00006898 pci_resource_len(pdev, 0));
Auke Kok9a799d72007-09-15 14:07:45 -07006899 if (!hw->hw_addr) {
6900 err = -EIO;
6901 goto err_ioremap;
6902 }
6903
6904 for (i = 1; i <= 5; i++) {
6905 if (pci_resource_len(pdev, i) == 0)
6906 continue;
6907 }
6908
Stephen Hemminger0edc3522008-11-19 22:24:29 -08006909 netdev->netdev_ops = &ixgbe_netdev_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07006910 ixgbe_set_ethtool_ops(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07006911 netdev->watchdog_timeo = 5 * HZ;
Auke Kok9a799d72007-09-15 14:07:45 -07006912 strcpy(netdev->name, pci_name(pdev));
6913
Auke Kok9a799d72007-09-15 14:07:45 -07006914 adapter->bd_number = cards_found;
6915
Auke Kok9a799d72007-09-15 14:07:45 -07006916 /* Setup hw api */
6917 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08006918 hw->mac.type = ii->mac;
Auke Kok9a799d72007-09-15 14:07:45 -07006919
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006920 /* EEPROM */
6921 memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops));
6922 eec = IXGBE_READ_REG(hw, IXGBE_EEC);
6923 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
6924 if (!(eec & (1 << 8)))
6925 hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic;
6926
6927 /* PHY */
6928 memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops));
Donald Skidmorec4900be2008-11-20 21:11:42 -08006929 hw->phy.sfp_type = ixgbe_sfp_type_unknown;
Ben Hutchings6b73e102009-04-29 08:08:58 +00006930 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
6931 hw->phy.mdio.prtad = MDIO_PRTAD_NONE;
6932 hw->phy.mdio.mmds = 0;
6933 hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
6934 hw->phy.mdio.dev = netdev;
6935 hw->phy.mdio.mdio_read = ixgbe_mdio_read;
6936 hw->phy.mdio.mdio_write = ixgbe_mdio_write;
Donald Skidmorec4900be2008-11-20 21:11:42 -08006937
6938 /* set up this timer and work struct before calling get_invariants
6939 * which might start the timer
6940 */
6941 init_timer(&adapter->sfp_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00006942 adapter->sfp_timer.function = ixgbe_sfp_timer;
Donald Skidmorec4900be2008-11-20 21:11:42 -08006943 adapter->sfp_timer.data = (unsigned long) adapter;
6944
6945 INIT_WORK(&adapter->sfp_task, ixgbe_sfp_task);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006946
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006947 /* multispeed fiber has its own tasklet, called from GPI SDP1 context */
6948 INIT_WORK(&adapter->multispeed_fiber_task, ixgbe_multispeed_fiber_task);
6949
6950 /* a new SFP+ module arrival, called from GPI SDP2 context */
6951 INIT_WORK(&adapter->sfp_config_module_task,
Joe Perchese8e9f692010-09-07 21:34:53 +00006952 ixgbe_sfp_config_module_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00006953
Don Skidmore8ca783a2009-05-26 20:40:47 -07006954 ii->get_invariants(hw);
Auke Kok9a799d72007-09-15 14:07:45 -07006955
6956 /* setup the private structure */
6957 err = ixgbe_sw_init(adapter);
6958 if (err)
6959 goto err_sw_init;
6960
Don Skidmoree86bff02010-02-11 04:14:08 +00006961 /* Make it possible the adapter to be woken up via WOL */
6962 if (adapter->hw.mac.type == ixgbe_mac_82599EB)
6963 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
6964
Don Skidmorebf069c92009-05-07 10:39:54 +00006965 /*
6966 * If there is a fan on this device and it has failed log the
6967 * failure.
6968 */
6969 if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) {
6970 u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP);
6971 if (esdp & IXGBE_ESDP_SDP1)
Emil Tantilov396e7992010-07-01 20:05:12 +00006972 e_crit(probe, "Fan has stopped, replace the adapter\n");
Don Skidmorebf069c92009-05-07 10:39:54 +00006973 }
6974
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006975 /* reset_hw fills in the perm_addr as well */
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07006976 hw->phy.reset_if_overtemp = true;
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006977 err = hw->mac.ops.reset_hw(hw);
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07006978 hw->phy.reset_if_overtemp = false;
Don Skidmore8ca783a2009-05-26 20:40:47 -07006979 if (err == IXGBE_ERR_SFP_NOT_PRESENT &&
6980 hw->mac.type == ixgbe_mac_82598EB) {
6981 /*
6982 * Start a kernel thread to watch for a module to arrive.
6983 * Only do this for 82598, since 82599 will generate
6984 * interrupts on module arrival.
6985 */
6986 set_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
6987 mod_timer(&adapter->sfp_timer,
6988 round_jiffies(jiffies + (2 * HZ)));
6989 err = 0;
6990 } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) {
Emil Tantilov849c4542010-06-03 16:53:41 +00006991 e_dev_err("failed to initialize because an unsupported SFP+ "
6992 "module type was detected.\n");
6993 e_dev_err("Reload the driver after installing a supported "
6994 "module.\n");
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00006995 goto err_sw_init;
6996 } else if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00006997 e_dev_err("HW Init failed: %d\n", err);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07006998 goto err_sw_init;
6999 }
7000
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007001 ixgbe_probe_vf(adapter, ii);
7002
Emil Tantilov396e7992010-07-01 20:05:12 +00007003 netdev->features = NETIF_F_SG |
Joe Perchese8e9f692010-09-07 21:34:53 +00007004 NETIF_F_IP_CSUM |
7005 NETIF_F_HW_VLAN_TX |
7006 NETIF_F_HW_VLAN_RX |
7007 NETIF_F_HW_VLAN_FILTER;
Auke Kok9a799d72007-09-15 14:07:45 -07007008
Jesse Brandeburge9990a92008-08-26 04:27:24 -07007009 netdev->features |= NETIF_F_IPV6_CSUM;
Auke Kok9a799d72007-09-15 14:07:45 -07007010 netdev->features |= NETIF_F_TSO;
Auke Kok9a799d72007-09-15 14:07:45 -07007011 netdev->features |= NETIF_F_TSO6;
Herbert Xu78b6f4c2009-01-18 21:49:45 -08007012 netdev->features |= NETIF_F_GRO;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007013
Jesse Brandeburg45a5ead2009-04-27 22:36:35 +00007014 if (adapter->hw.mac.type == ixgbe_mac_82599EB)
7015 netdev->features |= NETIF_F_SCTP_CSUM;
7016
Jeff Kirsherad31c402008-06-05 04:05:30 -07007017 netdev->vlan_features |= NETIF_F_TSO;
7018 netdev->vlan_features |= NETIF_F_TSO6;
Jesse Brandeburg22f32b7a52008-08-26 04:27:18 -07007019 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00007020 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsherad31c402008-06-05 04:05:30 -07007021 netdev->vlan_features |= NETIF_F_SG;
7022
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007023 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7024 adapter->flags &= ~(IXGBE_FLAG_RSS_ENABLED |
7025 IXGBE_FLAG_DCB_ENABLED);
Alexander Duyck2f90b862008-11-20 20:52:10 -08007026 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
7027 adapter->flags &= ~IXGBE_FLAG_RSS_ENABLED;
7028
Jeff Kirsher7a6b6f52008-11-25 01:02:08 -08007029#ifdef CONFIG_IXGBE_DCB
Alexander Duyck2f90b862008-11-20 20:52:10 -08007030 netdev->dcbnl_ops = &dcbnl_ops;
7031#endif
7032
Yi Zoueacd73f2009-05-13 13:11:06 +00007033#ifdef IXGBE_FCOE
Yi Zou0d551582009-07-22 14:07:12 +00007034 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
Yi Zoueacd73f2009-05-13 13:11:06 +00007035 if (hw->mac.ops.get_device_caps) {
7036 hw->mac.ops.get_device_caps(hw, &device_caps);
Yi Zou0d551582009-07-22 14:07:12 +00007037 if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS)
7038 adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE;
Yi Zoueacd73f2009-05-13 13:11:06 +00007039 }
7040 }
Yi Zou5e09d7f2010-07-19 13:59:52 +00007041 if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) {
7042 netdev->vlan_features |= NETIF_F_FCOE_CRC;
7043 netdev->vlan_features |= NETIF_F_FSO;
7044 netdev->vlan_features |= NETIF_F_FCOE_MTU;
7045 }
Yi Zoueacd73f2009-05-13 13:11:06 +00007046#endif /* IXGBE_FCOE */
Yi Zou7b872a52010-09-22 17:57:58 +00007047 if (pci_using_dac) {
Auke Kok9a799d72007-09-15 14:07:45 -07007048 netdev->features |= NETIF_F_HIGHDMA;
Yi Zou7b872a52010-09-22 17:57:58 +00007049 netdev->vlan_features |= NETIF_F_HIGHDMA;
7050 }
Auke Kok9a799d72007-09-15 14:07:45 -07007051
Peter P Waskiewicz Jr0c19d6a2009-07-30 12:25:28 +00007052 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
Alexander Duyckf8212f92009-04-27 22:42:37 +00007053 netdev->features |= NETIF_F_LRO;
7054
Auke Kok9a799d72007-09-15 14:07:45 -07007055 /* make sure the EEPROM is good */
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007056 if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007057 e_dev_err("The EEPROM Checksum Is Not Valid\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007058 err = -EIO;
7059 goto err_eeprom;
7060 }
7061
7062 memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len);
7063 memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len);
7064
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007065 if (ixgbe_validate_mac_addr(netdev->perm_addr)) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007066 e_dev_err("invalid MAC address\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007067 err = -EIO;
7068 goto err_eeprom;
7069 }
7070
Peter Waskiewicz61fac742010-04-27 00:38:15 +00007071 /* power down the optics */
7072 if (hw->phy.multispeed_fiber)
7073 hw->mac.ops.disable_tx_laser(hw);
7074
Auke Kok9a799d72007-09-15 14:07:45 -07007075 init_timer(&adapter->watchdog_timer);
Joe Perchesc061b182010-08-23 18:20:03 +00007076 adapter->watchdog_timer.function = ixgbe_watchdog;
Auke Kok9a799d72007-09-15 14:07:45 -07007077 adapter->watchdog_timer.data = (unsigned long)adapter;
7078
7079 INIT_WORK(&adapter->reset_task, ixgbe_reset_task);
Jesse Brandeburgcf8280e2008-09-11 19:55:32 -07007080 INIT_WORK(&adapter->watchdog_task, ixgbe_watchdog_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007081
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007082 err = ixgbe_init_interrupt_scheme(adapter);
7083 if (err)
7084 goto err_sw_init;
Auke Kok9a799d72007-09-15 14:07:45 -07007085
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007086 switch (pdev->device) {
Alexander Duyck50d6c682010-11-16 19:27:05 -08007087 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE:
7088 /* All except this subdevice support WOL */
7089 if (pdev->subsystem_device ==
7090 IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) {
7091 adapter->wol = 0;
7092 break;
7093 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007094 case IXGBE_DEV_ID_82599_KX4:
Waskiewicz Jr, Peter P495dce12009-04-23 11:15:18 +00007095 adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX |
Joe Perchese8e9f692010-09-07 21:34:53 +00007096 IXGBE_WUFC_MC | IXGBE_WUFC_BC);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007097 break;
7098 default:
7099 adapter->wol = 0;
7100 break;
7101 }
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007102 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
7103
PJ Waskiewicz04f165e2009-04-09 22:27:57 +00007104 /* pick up the PCI bus settings for reporting later */
7105 hw->mac.ops.get_bus_info(hw);
7106
Auke Kok9a799d72007-09-15 14:07:45 -07007107 /* print bus type/speed/width info */
Emil Tantilov849c4542010-06-03 16:53:41 +00007108 e_dev_info("(PCI Express:%s:%s) %pM\n",
Joe Perchese8e9f692010-09-07 21:34:53 +00007109 (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0Gb/s" :
7110 hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5Gb/s" :
7111 "Unknown"),
7112 (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" :
7113 hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" :
7114 hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" :
7115 "Unknown"),
7116 netdev->dev_addr);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007117 ixgbe_read_pba_num_generic(hw, &part_num);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007118 if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present)
Emil Tantilov849c4542010-06-03 16:53:41 +00007119 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, "
7120 "PBA No: %06x-%03x\n",
7121 hw->mac.type, hw->phy.type, hw->phy.sfp_type,
7122 (part_num >> 8), (part_num & 0xff));
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007123 else
Emil Tantilov849c4542010-06-03 16:53:41 +00007124 e_dev_info("MAC: %d, PHY: %d, PBA No: %06x-%03x\n",
7125 hw->mac.type, hw->phy.type,
7126 (part_num >> 8), (part_num & 0xff));
Auke Kok9a799d72007-09-15 14:07:45 -07007127
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007128 if (hw->bus.width <= ixgbe_bus_width_pcie_x4) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007129 e_dev_warn("PCI-Express bandwidth available for this card is "
7130 "not sufficient for optimal performance.\n");
7131 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7132 "is required.\n");
Auke Kok0c254d82008-02-11 09:25:56 -08007133 }
7134
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -08007135 /* save off EEPROM version number */
7136 hw->eeprom.ops.read(hw, 0x29, &adapter->eeprom_version);
7137
Auke Kok9a799d72007-09-15 14:07:45 -07007138 /* reset the hardware with the new settings */
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007139 err = hw->mac.ops.start_hw(hw);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07007140
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007141 if (err == IXGBE_ERR_EEPROM_VERSION) {
7142 /* We are running on a pre-production device, log a warning */
Emil Tantilov849c4542010-06-03 16:53:41 +00007143 e_dev_warn("This device is a pre-production adapter/LOM. "
7144 "Please be aware there may be issues associated "
7145 "with your hardware. If you are experiencing "
7146 "problems please contact your Intel or hardware "
7147 "representative who provided you with this "
7148 "hardware.\n");
Peter P Waskiewicz Jr794caeb2009-06-04 16:02:24 +00007149 }
Auke Kok9a799d72007-09-15 14:07:45 -07007150 strcpy(netdev->name, "eth%d");
7151 err = register_netdev(netdev);
7152 if (err)
7153 goto err_register;
7154
Jesse Brandeburg54386462009-04-17 20:44:27 +00007155 /* carrier off reporting is important to ethtool even BEFORE open */
7156 netif_carrier_off(netdev);
7157
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007158 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
7159 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
7160 INIT_WORK(&adapter->fdir_reinit_task, ixgbe_fdir_reinit_task);
7161
Mallikarjuna R Chilakala119fc602010-05-20 23:07:06 -07007162 if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)
Joe Perchese8e9f692010-09-07 21:34:53 +00007163 INIT_WORK(&adapter->check_overtemp_task,
7164 ixgbe_check_overtemp_task);
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007165#ifdef CONFIG_IXGBE_DCA
Denis V. Lunev652f0932008-03-27 14:39:17 +03007166 if (dca_add_requester(&pdev->dev) == 0) {
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007167 adapter->flags |= IXGBE_FLAG_DCA_ENABLED;
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007168 ixgbe_setup_dca(adapter);
7169 }
7170#endif
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007171 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007172 e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs);
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007173 for (i = 0; i < adapter->num_vfs; i++)
7174 ixgbe_vf_configuration(pdev, (i | 0x10000000));
7175 }
7176
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007177 /* add san mac addr to netdev */
7178 ixgbe_add_sanmac_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007179
Emil Tantilov849c4542010-06-03 16:53:41 +00007180 e_dev_info("Intel(R) 10 Gigabit Network Connection\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007181 cards_found++;
7182 return 0;
7183
7184err_register:
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007185 ixgbe_release_hw_control(adapter);
Alexander Duyck7a921c92009-05-06 10:43:28 +00007186 ixgbe_clear_interrupt_scheme(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007187err_sw_init:
7188err_eeprom:
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007189 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7190 ixgbe_disable_sriov(adapter);
Donald Skidmorec4900be2008-11-20 21:11:42 -08007191 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
7192 del_timer_sync(&adapter->sfp_timer);
7193 cancel_work_sync(&adapter->sfp_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007194 cancel_work_sync(&adapter->multispeed_fiber_task);
7195 cancel_work_sync(&adapter->sfp_config_module_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007196 iounmap(hw->hw_addr);
7197err_ioremap:
7198 free_netdev(netdev);
7199err_alloc_etherdev:
Joe Perchese8e9f692010-09-07 21:34:53 +00007200 pci_release_selected_regions(pdev,
7201 pci_select_bars(pdev, IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007202err_pci_reg:
7203err_dma:
7204 pci_disable_device(pdev);
7205 return err;
7206}
7207
7208/**
7209 * ixgbe_remove - Device Removal Routine
7210 * @pdev: PCI device information struct
7211 *
7212 * ixgbe_remove is called by the PCI subsystem to alert the driver
7213 * that it should release a PCI device. The could be caused by a
7214 * Hot-Plug event, or because the driver is going to be removed from
7215 * memory.
7216 **/
7217static void __devexit ixgbe_remove(struct pci_dev *pdev)
7218{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007219 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7220 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007221
7222 set_bit(__IXGBE_DOWN, &adapter->state);
Donald Skidmorec4900be2008-11-20 21:11:42 -08007223 /* clear the module not found bit to make sure the worker won't
7224 * reschedule
7225 */
7226 clear_bit(__IXGBE_SFP_MODULE_NOT_FOUND, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07007227 del_timer_sync(&adapter->watchdog_timer);
7228
Donald Skidmorec4900be2008-11-20 21:11:42 -08007229 del_timer_sync(&adapter->sfp_timer);
7230 cancel_work_sync(&adapter->watchdog_task);
7231 cancel_work_sync(&adapter->sfp_task);
PJ Waskiewicze8e26352009-02-27 15:45:05 +00007232 cancel_work_sync(&adapter->multispeed_fiber_task);
7233 cancel_work_sync(&adapter->sfp_config_module_task);
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +00007234 if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE ||
7235 adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)
7236 cancel_work_sync(&adapter->fdir_reinit_task);
Auke Kok9a799d72007-09-15 14:07:45 -07007237 flush_scheduled_work();
7238
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007239#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007240 if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) {
7241 adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED;
7242 dca_remove_requester(&pdev->dev);
7243 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1);
7244 }
7245
7246#endif
Yi Zou332d4a72009-05-13 13:11:53 +00007247#ifdef IXGBE_FCOE
7248 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
7249 ixgbe_cleanup_fcoe(adapter);
7250
7251#endif /* IXGBE_FCOE */
PJ Waskiewicz0365e6e2009-05-17 12:32:25 +00007252
7253 /* remove the added san mac */
7254 ixgbe_del_sanmac_netdev(netdev);
7255
Donald Skidmorec4900be2008-11-20 21:11:42 -08007256 if (netdev->reg_state == NETREG_REGISTERED)
7257 unregister_netdev(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007258
Greg Rose1cdd1ec2010-01-09 02:26:46 +00007259 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
7260 ixgbe_disable_sriov(adapter);
7261
Alexander Duyck7a921c92009-05-06 10:43:28 +00007262 ixgbe_clear_interrupt_scheme(adapter);
Ayyappan Veeraiyan5eba3692008-02-01 15:59:04 -08007263
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007264 ixgbe_release_hw_control(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07007265
7266 iounmap(adapter->hw.hw_addr);
gouji-new9ce77662009-05-06 10:44:45 +00007267 pci_release_selected_regions(pdev, pci_select_bars(pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007268 IORESOURCE_MEM));
Auke Kok9a799d72007-09-15 14:07:45 -07007269
Emil Tantilov849c4542010-06-03 16:53:41 +00007270 e_dev_info("complete\n");
Ayyappan Veeraiyan021230d2008-03-03 15:03:45 -08007271
Auke Kok9a799d72007-09-15 14:07:45 -07007272 free_netdev(netdev);
7273
Frans Pop19d5afd2009-10-02 10:04:12 -07007274 pci_disable_pcie_error_reporting(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007275
Auke Kok9a799d72007-09-15 14:07:45 -07007276 pci_disable_device(pdev);
7277}
7278
7279/**
7280 * ixgbe_io_error_detected - called when PCI error is detected
7281 * @pdev: Pointer to PCI device
7282 * @state: The current pci connection state
7283 *
7284 * This function is called after a PCI bus error affecting
7285 * this device has been detected.
7286 */
7287static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev,
Joe Perchese8e9f692010-09-07 21:34:53 +00007288 pci_channel_state_t state)
Auke Kok9a799d72007-09-15 14:07:45 -07007289{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007290 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7291 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007292
7293 netif_device_detach(netdev);
7294
Breno Leitao3044b8d2009-05-06 10:44:26 +00007295 if (state == pci_channel_io_perm_failure)
7296 return PCI_ERS_RESULT_DISCONNECT;
7297
Auke Kok9a799d72007-09-15 14:07:45 -07007298 if (netif_running(netdev))
7299 ixgbe_down(adapter);
7300 pci_disable_device(pdev);
7301
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007302 /* Request a slot reset. */
Auke Kok9a799d72007-09-15 14:07:45 -07007303 return PCI_ERS_RESULT_NEED_RESET;
7304}
7305
7306/**
7307 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7308 * @pdev: Pointer to PCI device
7309 *
7310 * Restart the card from scratch, as if from a cold-boot.
7311 */
7312static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev)
7313{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007314 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007315 pci_ers_result_t result;
7316 int err;
Auke Kok9a799d72007-09-15 14:07:45 -07007317
gouji-new9ce77662009-05-06 10:44:45 +00007318 if (pci_enable_device_mem(pdev)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007319 e_err(probe, "Cannot re-enable PCI device after reset.\n");
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007320 result = PCI_ERS_RESULT_DISCONNECT;
7321 } else {
7322 pci_set_master(pdev);
7323 pci_restore_state(pdev);
Breno Leitaoc0e1f682009-11-10 08:37:47 +00007324 pci_save_state(pdev);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007325
Don Skidmoredd4d8ca2009-04-29 00:22:31 -07007326 pci_wake_from_d3(pdev, false);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007327
7328 ixgbe_reset(adapter);
PJ Waskiewicz88512532009-03-13 22:15:10 +00007329 IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007330 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9a799d72007-09-15 14:07:45 -07007331 }
Auke Kok9a799d72007-09-15 14:07:45 -07007332
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007333 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7334 if (err) {
Emil Tantilov849c4542010-06-03 16:53:41 +00007335 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7336 "failed 0x%0x\n", err);
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007337 /* non-fatal, continue */
7338 }
Auke Kok9a799d72007-09-15 14:07:45 -07007339
Peter P Waskiewicz Jr6fabd712008-12-10 01:13:08 -08007340 return result;
Auke Kok9a799d72007-09-15 14:07:45 -07007341}
7342
7343/**
7344 * ixgbe_io_resume - called when traffic can start flowing again.
7345 * @pdev: Pointer to PCI device
7346 *
7347 * This callback is called when the error recovery driver tells us that
7348 * its OK to resume normal operation.
7349 */
7350static void ixgbe_io_resume(struct pci_dev *pdev)
7351{
Alexander Duyckc60fbb02010-11-16 19:26:54 -08007352 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
7353 struct net_device *netdev = adapter->netdev;
Auke Kok9a799d72007-09-15 14:07:45 -07007354
7355 if (netif_running(netdev)) {
7356 if (ixgbe_up(adapter)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00007357 e_info(probe, "ixgbe_up failed after reset\n");
Auke Kok9a799d72007-09-15 14:07:45 -07007358 return;
7359 }
7360 }
7361
7362 netif_device_attach(netdev);
Auke Kok9a799d72007-09-15 14:07:45 -07007363}
7364
7365static struct pci_error_handlers ixgbe_err_handler = {
7366 .error_detected = ixgbe_io_error_detected,
7367 .slot_reset = ixgbe_io_slot_reset,
7368 .resume = ixgbe_io_resume,
7369};
7370
7371static struct pci_driver ixgbe_driver = {
7372 .name = ixgbe_driver_name,
7373 .id_table = ixgbe_pci_tbl,
7374 .probe = ixgbe_probe,
7375 .remove = __devexit_p(ixgbe_remove),
7376#ifdef CONFIG_PM
7377 .suspend = ixgbe_suspend,
7378 .resume = ixgbe_resume,
7379#endif
7380 .shutdown = ixgbe_shutdown,
7381 .err_handler = &ixgbe_err_handler
7382};
7383
7384/**
7385 * ixgbe_init_module - Driver Registration Routine
7386 *
7387 * ixgbe_init_module is the first routine called when the driver is
7388 * loaded. All it does is register with the PCI subsystem.
7389 **/
7390static int __init ixgbe_init_module(void)
7391{
7392 int ret;
Joe Perchesc7689572010-09-07 21:35:17 +00007393 pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version);
Emil Tantilov849c4542010-06-03 16:53:41 +00007394 pr_info("%s\n", ixgbe_copyright);
Auke Kok9a799d72007-09-15 14:07:45 -07007395
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007396#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007397 dca_register_notify(&dca_notifier);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007398#endif
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007399
Auke Kok9a799d72007-09-15 14:07:45 -07007400 ret = pci_register_driver(&ixgbe_driver);
7401 return ret;
7402}
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07007403
Auke Kok9a799d72007-09-15 14:07:45 -07007404module_init(ixgbe_init_module);
7405
7406/**
7407 * ixgbe_exit_module - Driver Exit Cleanup Routine
7408 *
7409 * ixgbe_exit_module is called just before the driver is removed
7410 * from memory.
7411 **/
7412static void __exit ixgbe_exit_module(void)
7413{
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007414#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007415 dca_unregister_notify(&dca_notifier);
7416#endif
Auke Kok9a799d72007-09-15 14:07:45 -07007417 pci_unregister_driver(&ixgbe_driver);
Eric Dumazet1a515022010-11-16 19:26:42 -08007418 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Auke Kok9a799d72007-09-15 14:07:45 -07007419}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007420
Jeff Garzik5dd2d332008-10-16 05:09:31 -04007421#ifdef CONFIG_IXGBE_DCA
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007422static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007423 void *p)
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007424{
7425 int ret_val;
7426
7427 ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event,
Joe Perchese8e9f692010-09-07 21:34:53 +00007428 __ixgbe_notify_dca);
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007429
7430 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
7431}
Jeb Cramerbd0362d2008-03-03 15:04:02 -08007432
Alexander Duyckb4533682009-03-31 21:32:42 +00007433#endif /* CONFIG_IXGBE_DCA */
Emil Tantilov849c4542010-06-03 16:53:41 +00007434
Alexander Duyckb4533682009-03-31 21:32:42 +00007435/**
Emil Tantilov849c4542010-06-03 16:53:41 +00007436 * ixgbe_get_hw_dev return device
Alexander Duyckb4533682009-03-31 21:32:42 +00007437 * used by hardware layer to print debugging information
7438 **/
Emil Tantilov849c4542010-06-03 16:53:41 +00007439struct net_device *ixgbe_get_hw_dev(struct ixgbe_hw *hw)
Alexander Duyckb4533682009-03-31 21:32:42 +00007440{
7441 struct ixgbe_adapter *adapter = hw->back;
Emil Tantilov849c4542010-06-03 16:53:41 +00007442 return adapter->netdev;
Alexander Duyckb4533682009-03-31 21:32:42 +00007443}
7444
Auke Kok9a799d72007-09-15 14:07:45 -07007445module_exit(ixgbe_exit_module);
7446
7447/* ixgbe_main.c */