1 /*******************************************************************************
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2013 Intel Corporation.
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.
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
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.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *******************************************************************************/
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>
35 #include <linux/interrupt.h>
37 #include <linux/tcp.h>
38 #include <linux/sctp.h>
39 #include <linux/pkt_sched.h>
40 #include <linux/ipv6.h>
41 #include <linux/slab.h>
42 #include <net/checksum.h>
43 #include <net/ip6_checksum.h>
44 #include <linux/ethtool.h>
46 #include <linux/if_vlan.h>
47 #include <linux/if_bridge.h>
48 #include <linux/prefetch.h>
49 #include <scsi/fc/fc_fcoe.h>
52 #include "ixgbe_common.h"
53 #include "ixgbe_dcb_82599.h"
54 #include "ixgbe_sriov.h"
56 char ixgbe_driver_name
[] = "ixgbe";
57 static const char ixgbe_driver_string
[] =
58 "Intel(R) 10 Gigabit PCI Express Network Driver";
60 char ixgbe_default_device_descr
[] =
61 "Intel(R) 10 Gigabit Network Connection";
63 static char ixgbe_default_device_descr
[] =
64 "Intel(R) 10 Gigabit Network Connection";
66 #define DRV_VERSION "3.11.33-k"
67 const char ixgbe_driver_version
[] = DRV_VERSION
;
68 static const char ixgbe_copyright
[] =
69 "Copyright (c) 1999-2013 Intel Corporation.";
71 static const struct ixgbe_info
*ixgbe_info_tbl
[] = {
72 [board_82598
] = &ixgbe_82598_info
,
73 [board_82599
] = &ixgbe_82599_info
,
74 [board_X540
] = &ixgbe_X540_info
,
77 /* ixgbe_pci_tbl - PCI Device ID Table
79 * Wildcard entries (PCI_ANY_ID) should come last
80 * Last entry must be all 0s
82 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
83 * Class, Class Mask, private data (not used) }
85 static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl
) = {
86 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598
), board_82598
},
87 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AF_DUAL_PORT
), board_82598
},
88 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AF_SINGLE_PORT
), board_82598
},
89 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AT
), board_82598
},
90 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598AT2
), board_82598
},
91 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598EB_CX4
), board_82598
},
92 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_CX4_DUAL_PORT
), board_82598
},
93 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_DA_DUAL_PORT
), board_82598
},
94 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM
), board_82598
},
95 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598EB_XF_LR
), board_82598
},
96 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598EB_SFP_LOM
), board_82598
},
97 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82598_BX
), board_82598
},
98 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_KX4
), board_82599
},
99 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_XAUI_LOM
), board_82599
},
100 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_KR
), board_82599
},
101 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP
), board_82599
},
102 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_EM
), board_82599
},
103 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_KX4_MEZZ
), board_82599
},
104 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_CX4
), board_82599
},
105 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_BACKPLANE_FCOE
), board_82599
},
106 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_FCOE
), board_82599
},
107 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_T3_LOM
), board_82599
},
108 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_COMBO_BACKPLANE
), board_82599
},
109 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X540T
), board_X540
},
110 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_SF2
), board_82599
},
111 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_LS
), board_82599
},
112 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599EN_SFP
), board_82599
},
113 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_82599_SFP_SF_QP
), board_82599
},
114 {PCI_VDEVICE(INTEL
, IXGBE_DEV_ID_X540T1
), board_X540
},
115 /* required last entry */
118 MODULE_DEVICE_TABLE(pci
, ixgbe_pci_tbl
);
120 #ifdef CONFIG_IXGBE_DCA
121 static int ixgbe_notify_dca(struct notifier_block
*, unsigned long event
,
123 static struct notifier_block dca_notifier
= {
124 .notifier_call
= ixgbe_notify_dca
,
130 #ifdef CONFIG_PCI_IOV
131 static unsigned int max_vfs
;
132 module_param(max_vfs
, uint
, 0);
133 MODULE_PARM_DESC(max_vfs
,
134 "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63");
135 #endif /* CONFIG_PCI_IOV */
137 static unsigned int allow_unsupported_sfp
;
138 module_param(allow_unsupported_sfp
, uint
, 0);
139 MODULE_PARM_DESC(allow_unsupported_sfp
,
140 "Allow unsupported and untested SFP+ modules on 82599-based adapters");
142 #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
143 static int debug
= -1;
144 module_param(debug
, int, 0);
145 MODULE_PARM_DESC(debug
, "Debug level (0=none,...,16=all)");
147 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
148 MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver");
149 MODULE_LICENSE("GPL");
150 MODULE_VERSION(DRV_VERSION
);
152 static void ixgbe_service_event_schedule(struct ixgbe_adapter
*adapter
)
154 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
) &&
155 !test_and_set_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
))
156 schedule_work(&adapter
->service_task
);
159 static void ixgbe_service_event_complete(struct ixgbe_adapter
*adapter
)
161 BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
));
163 /* flush memory to make sure state is correct before next watchdog */
164 smp_mb__before_clear_bit();
165 clear_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
);
168 struct ixgbe_reg_info
{
173 static const struct ixgbe_reg_info ixgbe_reg_info_tbl
[] = {
175 /* General Registers */
176 {IXGBE_CTRL
, "CTRL"},
177 {IXGBE_STATUS
, "STATUS"},
178 {IXGBE_CTRL_EXT
, "CTRL_EXT"},
180 /* Interrupt Registers */
181 {IXGBE_EICR
, "EICR"},
184 {IXGBE_SRRCTL(0), "SRRCTL"},
185 {IXGBE_DCA_RXCTRL(0), "DRXCTL"},
186 {IXGBE_RDLEN(0), "RDLEN"},
187 {IXGBE_RDH(0), "RDH"},
188 {IXGBE_RDT(0), "RDT"},
189 {IXGBE_RXDCTL(0), "RXDCTL"},
190 {IXGBE_RDBAL(0), "RDBAL"},
191 {IXGBE_RDBAH(0), "RDBAH"},
194 {IXGBE_TDBAL(0), "TDBAL"},
195 {IXGBE_TDBAH(0), "TDBAH"},
196 {IXGBE_TDLEN(0), "TDLEN"},
197 {IXGBE_TDH(0), "TDH"},
198 {IXGBE_TDT(0), "TDT"},
199 {IXGBE_TXDCTL(0), "TXDCTL"},
201 /* List Terminator */
207 * ixgbe_regdump - register printout routine
209 static void ixgbe_regdump(struct ixgbe_hw
*hw
, struct ixgbe_reg_info
*reginfo
)
215 switch (reginfo
->ofs
) {
216 case IXGBE_SRRCTL(0):
217 for (i
= 0; i
< 64; i
++)
218 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_SRRCTL(i
));
220 case IXGBE_DCA_RXCTRL(0):
221 for (i
= 0; i
< 64; i
++)
222 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_DCA_RXCTRL(i
));
225 for (i
= 0; i
< 64; i
++)
226 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDLEN(i
));
229 for (i
= 0; i
< 64; i
++)
230 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDH(i
));
233 for (i
= 0; i
< 64; i
++)
234 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDT(i
));
236 case IXGBE_RXDCTL(0):
237 for (i
= 0; i
< 64; i
++)
238 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RXDCTL(i
));
241 for (i
= 0; i
< 64; i
++)
242 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDBAL(i
));
245 for (i
= 0; i
< 64; i
++)
246 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_RDBAH(i
));
249 for (i
= 0; i
< 64; i
++)
250 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDBAL(i
));
253 for (i
= 0; i
< 64; i
++)
254 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDBAH(i
));
257 for (i
= 0; i
< 64; i
++)
258 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDLEN(i
));
261 for (i
= 0; i
< 64; i
++)
262 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDH(i
));
265 for (i
= 0; i
< 64; i
++)
266 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TDT(i
));
268 case IXGBE_TXDCTL(0):
269 for (i
= 0; i
< 64; i
++)
270 regs
[i
] = IXGBE_READ_REG(hw
, IXGBE_TXDCTL(i
));
273 pr_info("%-15s %08x\n", reginfo
->name
,
274 IXGBE_READ_REG(hw
, reginfo
->ofs
));
278 for (i
= 0; i
< 8; i
++) {
279 snprintf(rname
, 16, "%s[%d-%d]", reginfo
->name
, i
*8, i
*8+7);
280 pr_err("%-15s", rname
);
281 for (j
= 0; j
< 8; j
++)
282 pr_cont(" %08x", regs
[i
*8+j
]);
289 * ixgbe_dump - Print registers, tx-rings and rx-rings
291 static void ixgbe_dump(struct ixgbe_adapter
*adapter
)
293 struct net_device
*netdev
= adapter
->netdev
;
294 struct ixgbe_hw
*hw
= &adapter
->hw
;
295 struct ixgbe_reg_info
*reginfo
;
297 struct ixgbe_ring
*tx_ring
;
298 struct ixgbe_tx_buffer
*tx_buffer
;
299 union ixgbe_adv_tx_desc
*tx_desc
;
300 struct my_u0
{ u64 a
; u64 b
; } *u0
;
301 struct ixgbe_ring
*rx_ring
;
302 union ixgbe_adv_rx_desc
*rx_desc
;
303 struct ixgbe_rx_buffer
*rx_buffer_info
;
307 if (!netif_msg_hw(adapter
))
310 /* Print netdevice Info */
312 dev_info(&adapter
->pdev
->dev
, "Net device Info\n");
313 pr_info("Device Name state "
314 "trans_start last_rx\n");
315 pr_info("%-15s %016lX %016lX %016lX\n",
322 /* Print Registers */
323 dev_info(&adapter
->pdev
->dev
, "Register Dump\n");
324 pr_info(" Register Name Value\n");
325 for (reginfo
= (struct ixgbe_reg_info
*)ixgbe_reg_info_tbl
;
326 reginfo
->name
; reginfo
++) {
327 ixgbe_regdump(hw
, reginfo
);
330 /* Print TX Ring Summary */
331 if (!netdev
|| !netif_running(netdev
))
334 dev_info(&adapter
->pdev
->dev
, "TX Rings Summary\n");
335 pr_info(" %s %s %s %s\n",
336 "Queue [NTU] [NTC] [bi(ntc)->dma ]",
337 "leng", "ntw", "timestamp");
338 for (n
= 0; n
< adapter
->num_tx_queues
; n
++) {
339 tx_ring
= adapter
->tx_ring
[n
];
340 tx_buffer
= &tx_ring
->tx_buffer_info
[tx_ring
->next_to_clean
];
341 pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n",
342 n
, tx_ring
->next_to_use
, tx_ring
->next_to_clean
,
343 (u64
)dma_unmap_addr(tx_buffer
, dma
),
344 dma_unmap_len(tx_buffer
, len
),
345 tx_buffer
->next_to_watch
,
346 (u64
)tx_buffer
->time_stamp
);
350 if (!netif_msg_tx_done(adapter
))
351 goto rx_ring_summary
;
353 dev_info(&adapter
->pdev
->dev
, "TX Rings Dump\n");
355 /* Transmit Descriptor Formats
357 * 82598 Advanced Transmit Descriptor
358 * +--------------------------------------------------------------+
359 * 0 | Buffer Address [63:0] |
360 * +--------------------------------------------------------------+
361 * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN |
362 * +--------------------------------------------------------------+
363 * 63 46 45 40 39 36 35 32 31 24 23 20 19 0
365 * 82598 Advanced Transmit Descriptor (Write-Back Format)
366 * +--------------------------------------------------------------+
368 * +--------------------------------------------------------------+
369 * 8 | RSV | STA | NXTSEQ |
370 * +--------------------------------------------------------------+
373 * 82599+ Advanced Transmit Descriptor
374 * +--------------------------------------------------------------+
375 * 0 | Buffer Address [63:0] |
376 * +--------------------------------------------------------------+
377 * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN |
378 * +--------------------------------------------------------------+
379 * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0
381 * 82599+ Advanced Transmit Descriptor (Write-Back Format)
382 * +--------------------------------------------------------------+
384 * +--------------------------------------------------------------+
385 * 8 | RSV | STA | RSV |
386 * +--------------------------------------------------------------+
390 for (n
= 0; n
< adapter
->num_tx_queues
; n
++) {
391 tx_ring
= adapter
->tx_ring
[n
];
392 pr_info("------------------------------------\n");
393 pr_info("TX QUEUE INDEX = %d\n", tx_ring
->queue_index
);
394 pr_info("------------------------------------\n");
395 pr_info("%s%s %s %s %s %s\n",
396 "T [desc] [address 63:0 ] ",
397 "[PlPOIdStDDt Ln] [bi->dma ] ",
398 "leng", "ntw", "timestamp", "bi->skb");
400 for (i
= 0; tx_ring
->desc
&& (i
< tx_ring
->count
); i
++) {
401 tx_desc
= IXGBE_TX_DESC(tx_ring
, i
);
402 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
403 u0
= (struct my_u0
*)tx_desc
;
404 if (dma_unmap_len(tx_buffer
, len
) > 0) {
405 pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p",
409 (u64
)dma_unmap_addr(tx_buffer
, dma
),
410 dma_unmap_len(tx_buffer
, len
),
411 tx_buffer
->next_to_watch
,
412 (u64
)tx_buffer
->time_stamp
,
414 if (i
== tx_ring
->next_to_use
&&
415 i
== tx_ring
->next_to_clean
)
417 else if (i
== tx_ring
->next_to_use
)
419 else if (i
== tx_ring
->next_to_clean
)
424 if (netif_msg_pktdata(adapter
) &&
426 print_hex_dump(KERN_INFO
, "",
427 DUMP_PREFIX_ADDRESS
, 16, 1,
428 tx_buffer
->skb
->data
,
429 dma_unmap_len(tx_buffer
, len
),
435 /* Print RX Rings Summary */
437 dev_info(&adapter
->pdev
->dev
, "RX Rings Summary\n");
438 pr_info("Queue [NTU] [NTC]\n");
439 for (n
= 0; n
< adapter
->num_rx_queues
; n
++) {
440 rx_ring
= adapter
->rx_ring
[n
];
441 pr_info("%5d %5X %5X\n",
442 n
, rx_ring
->next_to_use
, rx_ring
->next_to_clean
);
446 if (!netif_msg_rx_status(adapter
))
449 dev_info(&adapter
->pdev
->dev
, "RX Rings Dump\n");
451 /* Receive Descriptor Formats
453 * 82598 Advanced Receive Descriptor (Read) Format
455 * +-----------------------------------------------------+
456 * 0 | Packet Buffer Address [63:1] |A0/NSE|
457 * +----------------------------------------------+------+
458 * 8 | Header Buffer Address [63:1] | DD |
459 * +-----------------------------------------------------+
462 * 82598 Advanced Receive Descriptor (Write-Back) Format
464 * 63 48 47 32 31 30 21 20 16 15 4 3 0
465 * +------------------------------------------------------+
466 * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS |
467 * | Packet | IP | | | | Type | Type |
468 * | Checksum | Ident | | | | | |
469 * +------------------------------------------------------+
470 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
471 * +------------------------------------------------------+
472 * 63 48 47 32 31 20 19 0
474 * 82599+ Advanced Receive Descriptor (Read) Format
476 * +-----------------------------------------------------+
477 * 0 | Packet Buffer Address [63:1] |A0/NSE|
478 * +----------------------------------------------+------+
479 * 8 | Header Buffer Address [63:1] | DD |
480 * +-----------------------------------------------------+
483 * 82599+ Advanced Receive Descriptor (Write-Back) Format
485 * 63 48 47 32 31 30 21 20 17 16 4 3 0
486 * +------------------------------------------------------+
487 * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS |
488 * |/ RTT / PCoE_PARAM | | | CNT | Type | Type |
489 * |/ Flow Dir Flt ID | | | | | |
490 * +------------------------------------------------------+
491 * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP |
492 * +------------------------------------------------------+
493 * 63 48 47 32 31 20 19 0
496 for (n
= 0; n
< adapter
->num_rx_queues
; n
++) {
497 rx_ring
= adapter
->rx_ring
[n
];
498 pr_info("------------------------------------\n");
499 pr_info("RX QUEUE INDEX = %d\n", rx_ring
->queue_index
);
500 pr_info("------------------------------------\n");
502 "R [desc] [ PktBuf A0] ",
503 "[ HeadBuf DD] [bi->dma ] [bi->skb ] ",
504 "<-- Adv Rx Read format\n");
506 "RWB[desc] [PcsmIpSHl PtRs] ",
507 "[vl er S cks ln] ---------------- [bi->skb ] ",
508 "<-- Adv Rx Write-Back format\n");
510 for (i
= 0; i
< rx_ring
->count
; i
++) {
511 rx_buffer_info
= &rx_ring
->rx_buffer_info
[i
];
512 rx_desc
= IXGBE_RX_DESC(rx_ring
, i
);
513 u0
= (struct my_u0
*)rx_desc
;
514 staterr
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
515 if (staterr
& IXGBE_RXD_STAT_DD
) {
516 /* Descriptor Done */
517 pr_info("RWB[0x%03X] %016llX "
518 "%016llX ---------------- %p", i
,
521 rx_buffer_info
->skb
);
523 pr_info("R [0x%03X] %016llX "
524 "%016llX %016llX %p", i
,
527 (u64
)rx_buffer_info
->dma
,
528 rx_buffer_info
->skb
);
530 if (netif_msg_pktdata(adapter
) &&
531 rx_buffer_info
->dma
) {
532 print_hex_dump(KERN_INFO
, "",
533 DUMP_PREFIX_ADDRESS
, 16, 1,
534 page_address(rx_buffer_info
->page
) +
535 rx_buffer_info
->page_offset
,
536 ixgbe_rx_bufsz(rx_ring
), true);
540 if (i
== rx_ring
->next_to_use
)
542 else if (i
== rx_ring
->next_to_clean
)
554 static void ixgbe_release_hw_control(struct ixgbe_adapter
*adapter
)
558 /* Let firmware take over control of h/w */
559 ctrl_ext
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_CTRL_EXT
);
560 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_CTRL_EXT
,
561 ctrl_ext
& ~IXGBE_CTRL_EXT_DRV_LOAD
);
564 static void ixgbe_get_hw_control(struct ixgbe_adapter
*adapter
)
568 /* Let firmware know the driver has taken over */
569 ctrl_ext
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_CTRL_EXT
);
570 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_CTRL_EXT
,
571 ctrl_ext
| IXGBE_CTRL_EXT_DRV_LOAD
);
575 * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors
576 * @adapter: pointer to adapter struct
577 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
578 * @queue: queue to map the corresponding interrupt to
579 * @msix_vector: the vector to map to the corresponding queue
582 static void ixgbe_set_ivar(struct ixgbe_adapter
*adapter
, s8 direction
,
583 u8 queue
, u8 msix_vector
)
586 struct ixgbe_hw
*hw
= &adapter
->hw
;
587 switch (hw
->mac
.type
) {
588 case ixgbe_mac_82598EB
:
589 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
592 index
= (((direction
* 64) + queue
) >> 2) & 0x1F;
593 ivar
= IXGBE_READ_REG(hw
, IXGBE_IVAR(index
));
594 ivar
&= ~(0xFF << (8 * (queue
& 0x3)));
595 ivar
|= (msix_vector
<< (8 * (queue
& 0x3)));
596 IXGBE_WRITE_REG(hw
, IXGBE_IVAR(index
), ivar
);
598 case ixgbe_mac_82599EB
:
600 if (direction
== -1) {
602 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
603 index
= ((queue
& 1) * 8);
604 ivar
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_IVAR_MISC
);
605 ivar
&= ~(0xFF << index
);
606 ivar
|= (msix_vector
<< index
);
607 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_IVAR_MISC
, ivar
);
610 /* tx or rx causes */
611 msix_vector
|= IXGBE_IVAR_ALLOC_VAL
;
612 index
= ((16 * (queue
& 1)) + (8 * direction
));
613 ivar
= IXGBE_READ_REG(hw
, IXGBE_IVAR(queue
>> 1));
614 ivar
&= ~(0xFF << index
);
615 ivar
|= (msix_vector
<< index
);
616 IXGBE_WRITE_REG(hw
, IXGBE_IVAR(queue
>> 1), ivar
);
624 static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter
*adapter
,
629 switch (adapter
->hw
.mac
.type
) {
630 case ixgbe_mac_82598EB
:
631 mask
= (IXGBE_EIMS_RTX_QUEUE
& qmask
);
632 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICS
, mask
);
634 case ixgbe_mac_82599EB
:
636 mask
= (qmask
& 0xFFFFFFFF);
637 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICS_EX(0), mask
);
638 mask
= (qmask
>> 32);
639 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EICS_EX(1), mask
);
646 void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring
*ring
,
647 struct ixgbe_tx_buffer
*tx_buffer
)
649 if (tx_buffer
->skb
) {
650 dev_kfree_skb_any(tx_buffer
->skb
);
651 if (dma_unmap_len(tx_buffer
, len
))
652 dma_unmap_single(ring
->dev
,
653 dma_unmap_addr(tx_buffer
, dma
),
654 dma_unmap_len(tx_buffer
, len
),
656 } else if (dma_unmap_len(tx_buffer
, len
)) {
657 dma_unmap_page(ring
->dev
,
658 dma_unmap_addr(tx_buffer
, dma
),
659 dma_unmap_len(tx_buffer
, len
),
662 tx_buffer
->next_to_watch
= NULL
;
663 tx_buffer
->skb
= NULL
;
664 dma_unmap_len_set(tx_buffer
, len
, 0);
665 /* tx_buffer must be completely set up in the transmit path */
668 static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter
*adapter
)
670 struct ixgbe_hw
*hw
= &adapter
->hw
;
671 struct ixgbe_hw_stats
*hwstats
= &adapter
->stats
;
675 if ((hw
->fc
.current_mode
!= ixgbe_fc_full
) &&
676 (hw
->fc
.current_mode
!= ixgbe_fc_rx_pause
))
679 switch (hw
->mac
.type
) {
680 case ixgbe_mac_82598EB
:
681 data
= IXGBE_READ_REG(hw
, IXGBE_LXOFFRXC
);
684 data
= IXGBE_READ_REG(hw
, IXGBE_LXOFFRXCNT
);
686 hwstats
->lxoffrxc
+= data
;
688 /* refill credits (no tx hang) if we received xoff */
692 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
693 clear_bit(__IXGBE_HANG_CHECK_ARMED
,
694 &adapter
->tx_ring
[i
]->state
);
697 static void ixgbe_update_xoff_received(struct ixgbe_adapter
*adapter
)
699 struct ixgbe_hw
*hw
= &adapter
->hw
;
700 struct ixgbe_hw_stats
*hwstats
= &adapter
->stats
;
704 bool pfc_en
= adapter
->dcb_cfg
.pfc_mode_enable
;
706 if (adapter
->ixgbe_ieee_pfc
)
707 pfc_en
|= !!(adapter
->ixgbe_ieee_pfc
->pfc_en
);
709 if (!(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) || !pfc_en
) {
710 ixgbe_update_xoff_rx_lfc(adapter
);
714 /* update stats for each tc, only valid with PFC enabled */
715 for (i
= 0; i
< MAX_TX_PACKET_BUFFERS
; i
++) {
718 switch (hw
->mac
.type
) {
719 case ixgbe_mac_82598EB
:
720 pxoffrxc
= IXGBE_READ_REG(hw
, IXGBE_PXOFFRXC(i
));
723 pxoffrxc
= IXGBE_READ_REG(hw
, IXGBE_PXOFFRXCNT(i
));
725 hwstats
->pxoffrxc
[i
] += pxoffrxc
;
726 /* Get the TC for given UP */
727 tc
= netdev_get_prio_tc_map(adapter
->netdev
, i
);
728 xoff
[tc
] += pxoffrxc
;
731 /* disarm tx queues that have received xoff frames */
732 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
733 struct ixgbe_ring
*tx_ring
= adapter
->tx_ring
[i
];
735 tc
= tx_ring
->dcb_tc
;
737 clear_bit(__IXGBE_HANG_CHECK_ARMED
, &tx_ring
->state
);
741 static u64
ixgbe_get_tx_completed(struct ixgbe_ring
*ring
)
743 return ring
->stats
.packets
;
746 static u64
ixgbe_get_tx_pending(struct ixgbe_ring
*ring
)
748 struct ixgbe_adapter
*adapter
= netdev_priv(ring
->netdev
);
749 struct ixgbe_hw
*hw
= &adapter
->hw
;
751 u32 head
= IXGBE_READ_REG(hw
, IXGBE_TDH(ring
->reg_idx
));
752 u32 tail
= IXGBE_READ_REG(hw
, IXGBE_TDT(ring
->reg_idx
));
755 return (head
< tail
) ?
756 tail
- head
: (tail
+ ring
->count
- head
);
761 static inline bool ixgbe_check_tx_hang(struct ixgbe_ring
*tx_ring
)
763 u32 tx_done
= ixgbe_get_tx_completed(tx_ring
);
764 u32 tx_done_old
= tx_ring
->tx_stats
.tx_done_old
;
765 u32 tx_pending
= ixgbe_get_tx_pending(tx_ring
);
768 clear_check_for_tx_hang(tx_ring
);
771 * Check for a hung queue, but be thorough. This verifies
772 * that a transmit has been completed since the previous
773 * check AND there is at least one packet pending. The
774 * ARMED bit is set to indicate a potential hang. The
775 * bit is cleared if a pause frame is received to remove
776 * false hang detection due to PFC or 802.3x frames. By
777 * requiring this to fail twice we avoid races with
778 * pfc clearing the ARMED bit and conditions where we
779 * run the check_tx_hang logic with a transmit completion
780 * pending but without time to complete it yet.
782 if ((tx_done_old
== tx_done
) && tx_pending
) {
783 /* make sure it is true for two checks in a row */
784 ret
= test_and_set_bit(__IXGBE_HANG_CHECK_ARMED
,
787 /* update completed stats and continue */
788 tx_ring
->tx_stats
.tx_done_old
= tx_done
;
789 /* reset the countdown */
790 clear_bit(__IXGBE_HANG_CHECK_ARMED
, &tx_ring
->state
);
797 * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout
798 * @adapter: driver private struct
800 static void ixgbe_tx_timeout_reset(struct ixgbe_adapter
*adapter
)
803 /* Do the reset outside of interrupt context */
804 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
805 adapter
->flags2
|= IXGBE_FLAG2_RESET_REQUESTED
;
806 e_warn(drv
, "initiating reset due to tx timeout\n");
807 ixgbe_service_event_schedule(adapter
);
812 * ixgbe_clean_tx_irq - Reclaim resources after transmit completes
813 * @q_vector: structure containing interrupt and ring information
814 * @tx_ring: tx ring to clean
816 static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector
*q_vector
,
817 struct ixgbe_ring
*tx_ring
)
819 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
820 struct ixgbe_tx_buffer
*tx_buffer
;
821 union ixgbe_adv_tx_desc
*tx_desc
;
822 unsigned int total_bytes
= 0, total_packets
= 0;
823 unsigned int budget
= q_vector
->tx
.work_limit
;
824 unsigned int i
= tx_ring
->next_to_clean
;
826 if (test_bit(__IXGBE_DOWN
, &adapter
->state
))
829 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
830 tx_desc
= IXGBE_TX_DESC(tx_ring
, i
);
834 union ixgbe_adv_tx_desc
*eop_desc
= tx_buffer
->next_to_watch
;
836 /* if next_to_watch is not set then there is no work pending */
840 /* prevent any other reads prior to eop_desc */
841 read_barrier_depends();
843 /* if DD is not set pending work has not been completed */
844 if (!(eop_desc
->wb
.status
& cpu_to_le32(IXGBE_TXD_STAT_DD
)))
847 /* clear next_to_watch to prevent false hangs */
848 tx_buffer
->next_to_watch
= NULL
;
850 /* update the statistics for this packet */
851 total_bytes
+= tx_buffer
->bytecount
;
852 total_packets
+= tx_buffer
->gso_segs
;
855 dev_kfree_skb_any(tx_buffer
->skb
);
857 /* unmap skb header data */
858 dma_unmap_single(tx_ring
->dev
,
859 dma_unmap_addr(tx_buffer
, dma
),
860 dma_unmap_len(tx_buffer
, len
),
863 /* clear tx_buffer data */
864 tx_buffer
->skb
= NULL
;
865 dma_unmap_len_set(tx_buffer
, len
, 0);
867 /* unmap remaining buffers */
868 while (tx_desc
!= eop_desc
) {
874 tx_buffer
= tx_ring
->tx_buffer_info
;
875 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
878 /* unmap any remaining paged data */
879 if (dma_unmap_len(tx_buffer
, len
)) {
880 dma_unmap_page(tx_ring
->dev
,
881 dma_unmap_addr(tx_buffer
, dma
),
882 dma_unmap_len(tx_buffer
, len
),
884 dma_unmap_len_set(tx_buffer
, len
, 0);
888 /* move us one more past the eop_desc for start of next pkt */
894 tx_buffer
= tx_ring
->tx_buffer_info
;
895 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
898 /* issue prefetch for next Tx descriptor */
901 /* update budget accounting */
903 } while (likely(budget
));
906 tx_ring
->next_to_clean
= i
;
907 u64_stats_update_begin(&tx_ring
->syncp
);
908 tx_ring
->stats
.bytes
+= total_bytes
;
909 tx_ring
->stats
.packets
+= total_packets
;
910 u64_stats_update_end(&tx_ring
->syncp
);
911 q_vector
->tx
.total_bytes
+= total_bytes
;
912 q_vector
->tx
.total_packets
+= total_packets
;
914 if (check_for_tx_hang(tx_ring
) && ixgbe_check_tx_hang(tx_ring
)) {
915 /* schedule immediate reset if we believe we hung */
916 struct ixgbe_hw
*hw
= &adapter
->hw
;
917 e_err(drv
, "Detected Tx Unit Hang\n"
919 " TDH, TDT <%x>, <%x>\n"
920 " next_to_use <%x>\n"
921 " next_to_clean <%x>\n"
922 "tx_buffer_info[next_to_clean]\n"
923 " time_stamp <%lx>\n"
925 tx_ring
->queue_index
,
926 IXGBE_READ_REG(hw
, IXGBE_TDH(tx_ring
->reg_idx
)),
927 IXGBE_READ_REG(hw
, IXGBE_TDT(tx_ring
->reg_idx
)),
928 tx_ring
->next_to_use
, i
,
929 tx_ring
->tx_buffer_info
[i
].time_stamp
, jiffies
);
931 netif_stop_subqueue(tx_ring
->netdev
, tx_ring
->queue_index
);
934 "tx hang %d detected on queue %d, resetting adapter\n",
935 adapter
->tx_timeout_count
+ 1, tx_ring
->queue_index
);
937 /* schedule immediate reset if we believe we hung */
938 ixgbe_tx_timeout_reset(adapter
);
940 /* the adapter is about to reset, no point in enabling stuff */
944 netdev_tx_completed_queue(txring_txq(tx_ring
),
945 total_packets
, total_bytes
);
947 #define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
948 if (unlikely(total_packets
&& netif_carrier_ok(tx_ring
->netdev
) &&
949 (ixgbe_desc_unused(tx_ring
) >= TX_WAKE_THRESHOLD
))) {
950 /* Make sure that anybody stopping the queue after this
951 * sees the new next_to_clean.
954 if (__netif_subqueue_stopped(tx_ring
->netdev
,
955 tx_ring
->queue_index
)
956 && !test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
957 netif_wake_subqueue(tx_ring
->netdev
,
958 tx_ring
->queue_index
);
959 ++tx_ring
->tx_stats
.restart_queue
;
966 #ifdef CONFIG_IXGBE_DCA
967 static void ixgbe_update_tx_dca(struct ixgbe_adapter
*adapter
,
968 struct ixgbe_ring
*tx_ring
,
971 struct ixgbe_hw
*hw
= &adapter
->hw
;
972 u32 txctrl
= dca3_get_tag(tx_ring
->dev
, cpu
);
975 switch (hw
->mac
.type
) {
976 case ixgbe_mac_82598EB
:
977 reg_offset
= IXGBE_DCA_TXCTRL(tx_ring
->reg_idx
);
979 case ixgbe_mac_82599EB
:
981 reg_offset
= IXGBE_DCA_TXCTRL_82599(tx_ring
->reg_idx
);
982 txctrl
<<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599
;
985 /* for unknown hardware do not write register */
990 * We can enable relaxed ordering for reads, but not writes when
991 * DCA is enabled. This is due to a known issue in some chipsets
992 * which will cause the DCA tag to be cleared.
994 txctrl
|= IXGBE_DCA_TXCTRL_DESC_RRO_EN
|
995 IXGBE_DCA_TXCTRL_DATA_RRO_EN
|
996 IXGBE_DCA_TXCTRL_DESC_DCA_EN
;
998 IXGBE_WRITE_REG(hw
, reg_offset
, txctrl
);
1001 static void ixgbe_update_rx_dca(struct ixgbe_adapter
*adapter
,
1002 struct ixgbe_ring
*rx_ring
,
1005 struct ixgbe_hw
*hw
= &adapter
->hw
;
1006 u32 rxctrl
= dca3_get_tag(rx_ring
->dev
, cpu
);
1007 u8 reg_idx
= rx_ring
->reg_idx
;
1010 switch (hw
->mac
.type
) {
1011 case ixgbe_mac_82599EB
:
1012 case ixgbe_mac_X540
:
1013 rxctrl
<<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599
;
1020 * We can enable relaxed ordering for reads, but not writes when
1021 * DCA is enabled. This is due to a known issue in some chipsets
1022 * which will cause the DCA tag to be cleared.
1024 rxctrl
|= IXGBE_DCA_RXCTRL_DESC_RRO_EN
|
1025 IXGBE_DCA_RXCTRL_DESC_DCA_EN
;
1027 IXGBE_WRITE_REG(hw
, IXGBE_DCA_RXCTRL(reg_idx
), rxctrl
);
1030 static void ixgbe_update_dca(struct ixgbe_q_vector
*q_vector
)
1032 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
1033 struct ixgbe_ring
*ring
;
1034 int cpu
= get_cpu();
1036 if (q_vector
->cpu
== cpu
)
1039 ixgbe_for_each_ring(ring
, q_vector
->tx
)
1040 ixgbe_update_tx_dca(adapter
, ring
, cpu
);
1042 ixgbe_for_each_ring(ring
, q_vector
->rx
)
1043 ixgbe_update_rx_dca(adapter
, ring
, cpu
);
1045 q_vector
->cpu
= cpu
;
1050 static void ixgbe_setup_dca(struct ixgbe_adapter
*adapter
)
1054 if (!(adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
))
1057 /* always use CB2 mode, difference is masked in the CB driver */
1058 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
, 2);
1060 for (i
= 0; i
< adapter
->num_q_vectors
; i
++) {
1061 adapter
->q_vector
[i
]->cpu
= -1;
1062 ixgbe_update_dca(adapter
->q_vector
[i
]);
1066 static int __ixgbe_notify_dca(struct device
*dev
, void *data
)
1068 struct ixgbe_adapter
*adapter
= dev_get_drvdata(dev
);
1069 unsigned long event
= *(unsigned long *)data
;
1071 if (!(adapter
->flags
& IXGBE_FLAG_DCA_CAPABLE
))
1075 case DCA_PROVIDER_ADD
:
1076 /* if we're already enabled, don't do it again */
1077 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
)
1079 if (dca_add_requester(dev
) == 0) {
1080 adapter
->flags
|= IXGBE_FLAG_DCA_ENABLED
;
1081 ixgbe_setup_dca(adapter
);
1084 /* Fall Through since DCA is disabled. */
1085 case DCA_PROVIDER_REMOVE
:
1086 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
) {
1087 dca_remove_requester(dev
);
1088 adapter
->flags
&= ~IXGBE_FLAG_DCA_ENABLED
;
1089 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
, 1);
1097 #endif /* CONFIG_IXGBE_DCA */
1098 static inline void ixgbe_rx_hash(struct ixgbe_ring
*ring
,
1099 union ixgbe_adv_rx_desc
*rx_desc
,
1100 struct sk_buff
*skb
)
1102 if (ring
->netdev
->features
& NETIF_F_RXHASH
)
1103 skb
->rxhash
= le32_to_cpu(rx_desc
->wb
.lower
.hi_dword
.rss
);
1108 * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type
1109 * @ring: structure containing ring specific data
1110 * @rx_desc: advanced rx descriptor
1112 * Returns : true if it is FCoE pkt
1114 static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring
*ring
,
1115 union ixgbe_adv_rx_desc
*rx_desc
)
1117 __le16 pkt_info
= rx_desc
->wb
.lower
.lo_dword
.hs_rss
.pkt_info
;
1119 return test_bit(__IXGBE_RX_FCOE
, &ring
->state
) &&
1120 ((pkt_info
& cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK
)) ==
1121 (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE
<<
1122 IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT
)));
1125 #endif /* IXGBE_FCOE */
1127 * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum
1128 * @ring: structure containing ring specific data
1129 * @rx_desc: current Rx descriptor being processed
1130 * @skb: skb currently being received and modified
1132 static inline void ixgbe_rx_checksum(struct ixgbe_ring
*ring
,
1133 union ixgbe_adv_rx_desc
*rx_desc
,
1134 struct sk_buff
*skb
)
1136 skb_checksum_none_assert(skb
);
1138 /* Rx csum disabled */
1139 if (!(ring
->netdev
->features
& NETIF_F_RXCSUM
))
1142 /* if IP and error */
1143 if (ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_IPCS
) &&
1144 ixgbe_test_staterr(rx_desc
, IXGBE_RXDADV_ERR_IPE
)) {
1145 ring
->rx_stats
.csum_err
++;
1149 if (!ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_L4CS
))
1152 if (ixgbe_test_staterr(rx_desc
, IXGBE_RXDADV_ERR_TCPE
)) {
1153 __le16 pkt_info
= rx_desc
->wb
.lower
.lo_dword
.hs_rss
.pkt_info
;
1156 * 82599 errata, UDP frames with a 0 checksum can be marked as
1159 if ((pkt_info
& cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP
)) &&
1160 test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR
, &ring
->state
))
1163 ring
->rx_stats
.csum_err
++;
1167 /* It must be a TCP or UDP packet with a valid checksum */
1168 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1171 static inline void ixgbe_release_rx_desc(struct ixgbe_ring
*rx_ring
, u32 val
)
1173 rx_ring
->next_to_use
= val
;
1175 /* update next to alloc since we have filled the ring */
1176 rx_ring
->next_to_alloc
= val
;
1178 * Force memory writes to complete before letting h/w
1179 * know there are new descriptors to fetch. (Only
1180 * applicable for weak-ordered memory model archs,
1184 writel(val
, rx_ring
->tail
);
1187 static bool ixgbe_alloc_mapped_page(struct ixgbe_ring
*rx_ring
,
1188 struct ixgbe_rx_buffer
*bi
)
1190 struct page
*page
= bi
->page
;
1191 dma_addr_t dma
= bi
->dma
;
1193 /* since we are recycling buffers we should seldom need to alloc */
1197 /* alloc new page for storage */
1198 if (likely(!page
)) {
1199 page
= __skb_alloc_pages(GFP_ATOMIC
| __GFP_COLD
| __GFP_COMP
,
1200 bi
->skb
, ixgbe_rx_pg_order(rx_ring
));
1201 if (unlikely(!page
)) {
1202 rx_ring
->rx_stats
.alloc_rx_page_failed
++;
1208 /* map page for use */
1209 dma
= dma_map_page(rx_ring
->dev
, page
, 0,
1210 ixgbe_rx_pg_size(rx_ring
), DMA_FROM_DEVICE
);
1213 * if mapping failed free memory back to system since
1214 * there isn't much point in holding memory we can't use
1216 if (dma_mapping_error(rx_ring
->dev
, dma
)) {
1217 __free_pages(page
, ixgbe_rx_pg_order(rx_ring
));
1220 rx_ring
->rx_stats
.alloc_rx_page_failed
++;
1225 bi
->page_offset
= 0;
1231 * ixgbe_alloc_rx_buffers - Replace used receive buffers
1232 * @rx_ring: ring to place buffers on
1233 * @cleaned_count: number of buffers to replace
1235 void ixgbe_alloc_rx_buffers(struct ixgbe_ring
*rx_ring
, u16 cleaned_count
)
1237 union ixgbe_adv_rx_desc
*rx_desc
;
1238 struct ixgbe_rx_buffer
*bi
;
1239 u16 i
= rx_ring
->next_to_use
;
1245 rx_desc
= IXGBE_RX_DESC(rx_ring
, i
);
1246 bi
= &rx_ring
->rx_buffer_info
[i
];
1247 i
-= rx_ring
->count
;
1250 if (!ixgbe_alloc_mapped_page(rx_ring
, bi
))
1254 * Refresh the desc even if buffer_addrs didn't change
1255 * because each write-back erases this info.
1257 rx_desc
->read
.pkt_addr
= cpu_to_le64(bi
->dma
+ bi
->page_offset
);
1263 rx_desc
= IXGBE_RX_DESC(rx_ring
, 0);
1264 bi
= rx_ring
->rx_buffer_info
;
1265 i
-= rx_ring
->count
;
1268 /* clear the hdr_addr for the next_to_use descriptor */
1269 rx_desc
->read
.hdr_addr
= 0;
1272 } while (cleaned_count
);
1274 i
+= rx_ring
->count
;
1276 if (rx_ring
->next_to_use
!= i
)
1277 ixgbe_release_rx_desc(rx_ring
, i
);
1281 * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE
1282 * @data: pointer to the start of the headers
1283 * @max_len: total length of section to find headers in
1285 * This function is meant to determine the length of headers that will
1286 * be recognized by hardware for LRO, GRO, and RSC offloads. The main
1287 * motivation of doing this is to only perform one pull for IPv4 TCP
1288 * packets so that we can do basic things like calculating the gso_size
1289 * based on the average data per packet.
1291 static unsigned int ixgbe_get_headlen(unsigned char *data
,
1292 unsigned int max_len
)
1295 unsigned char *network
;
1298 struct vlan_hdr
*vlan
;
1301 struct ipv6hdr
*ipv6
;
1304 u8 nexthdr
= 0; /* default to not TCP */
1307 /* this should never happen, but better safe than sorry */
1308 if (max_len
< ETH_HLEN
)
1311 /* initialize network frame pointer */
1314 /* set first protocol and move network header forward */
1315 protocol
= hdr
.eth
->h_proto
;
1316 hdr
.network
+= ETH_HLEN
;
1318 /* handle any vlan tag if present */
1319 if (protocol
== __constant_htons(ETH_P_8021Q
)) {
1320 if ((hdr
.network
- data
) > (max_len
- VLAN_HLEN
))
1323 protocol
= hdr
.vlan
->h_vlan_encapsulated_proto
;
1324 hdr
.network
+= VLAN_HLEN
;
1327 /* handle L3 protocols */
1328 if (protocol
== __constant_htons(ETH_P_IP
)) {
1329 if ((hdr
.network
- data
) > (max_len
- sizeof(struct iphdr
)))
1332 /* access ihl as a u8 to avoid unaligned access on ia64 */
1333 hlen
= (hdr
.network
[0] & 0x0F) << 2;
1335 /* verify hlen meets minimum size requirements */
1336 if (hlen
< sizeof(struct iphdr
))
1337 return hdr
.network
- data
;
1339 /* record next protocol if header is present */
1340 if (!hdr
.ipv4
->frag_off
)
1341 nexthdr
= hdr
.ipv4
->protocol
;
1342 } else if (protocol
== __constant_htons(ETH_P_IPV6
)) {
1343 if ((hdr
.network
- data
) > (max_len
- sizeof(struct ipv6hdr
)))
1346 /* record next protocol */
1347 nexthdr
= hdr
.ipv6
->nexthdr
;
1348 hlen
= sizeof(struct ipv6hdr
);
1350 } else if (protocol
== __constant_htons(ETH_P_FCOE
)) {
1351 if ((hdr
.network
- data
) > (max_len
- FCOE_HEADER_LEN
))
1353 hlen
= FCOE_HEADER_LEN
;
1356 return hdr
.network
- data
;
1359 /* relocate pointer to start of L4 header */
1360 hdr
.network
+= hlen
;
1362 /* finally sort out TCP/UDP */
1363 if (nexthdr
== IPPROTO_TCP
) {
1364 if ((hdr
.network
- data
) > (max_len
- sizeof(struct tcphdr
)))
1367 /* access doff as a u8 to avoid unaligned access on ia64 */
1368 hlen
= (hdr
.network
[12] & 0xF0) >> 2;
1370 /* verify hlen meets minimum size requirements */
1371 if (hlen
< sizeof(struct tcphdr
))
1372 return hdr
.network
- data
;
1374 hdr
.network
+= hlen
;
1375 } else if (nexthdr
== IPPROTO_UDP
) {
1376 if ((hdr
.network
- data
) > (max_len
- sizeof(struct udphdr
)))
1379 hdr
.network
+= sizeof(struct udphdr
);
1383 * If everything has gone correctly hdr.network should be the
1384 * data section of the packet and will be the end of the header.
1385 * If not then it probably represents the end of the last recognized
1388 if ((hdr
.network
- data
) < max_len
)
1389 return hdr
.network
- data
;
1394 static void ixgbe_set_rsc_gso_size(struct ixgbe_ring
*ring
,
1395 struct sk_buff
*skb
)
1397 u16 hdr_len
= skb_headlen(skb
);
1399 /* set gso_size to avoid messing up TCP MSS */
1400 skb_shinfo(skb
)->gso_size
= DIV_ROUND_UP((skb
->len
- hdr_len
),
1401 IXGBE_CB(skb
)->append_cnt
);
1402 skb_shinfo(skb
)->gso_type
= SKB_GSO_TCPV4
;
1405 static void ixgbe_update_rsc_stats(struct ixgbe_ring
*rx_ring
,
1406 struct sk_buff
*skb
)
1408 /* if append_cnt is 0 then frame is not RSC */
1409 if (!IXGBE_CB(skb
)->append_cnt
)
1412 rx_ring
->rx_stats
.rsc_count
+= IXGBE_CB(skb
)->append_cnt
;
1413 rx_ring
->rx_stats
.rsc_flush
++;
1415 ixgbe_set_rsc_gso_size(rx_ring
, skb
);
1417 /* gso_size is computed using append_cnt so always clear it last */
1418 IXGBE_CB(skb
)->append_cnt
= 0;
1422 * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor
1423 * @rx_ring: rx descriptor ring packet is being transacted on
1424 * @rx_desc: pointer to the EOP Rx descriptor
1425 * @skb: pointer to current skb being populated
1427 * This function checks the ring, descriptor, and packet information in
1428 * order to populate the hash, checksum, VLAN, timestamp, protocol, and
1429 * other fields within the skb.
1431 static void ixgbe_process_skb_fields(struct ixgbe_ring
*rx_ring
,
1432 union ixgbe_adv_rx_desc
*rx_desc
,
1433 struct sk_buff
*skb
)
1435 struct net_device
*dev
= rx_ring
->netdev
;
1437 ixgbe_update_rsc_stats(rx_ring
, skb
);
1439 ixgbe_rx_hash(rx_ring
, rx_desc
, skb
);
1441 ixgbe_rx_checksum(rx_ring
, rx_desc
, skb
);
1443 ixgbe_ptp_rx_hwtstamp(rx_ring
, rx_desc
, skb
);
1445 if ((dev
->features
& NETIF_F_HW_VLAN_RX
) &&
1446 ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_VP
)) {
1447 u16 vid
= le16_to_cpu(rx_desc
->wb
.upper
.vlan
);
1448 __vlan_hwaccel_put_tag(skb
, vid
);
1451 skb_record_rx_queue(skb
, rx_ring
->queue_index
);
1453 skb
->protocol
= eth_type_trans(skb
, dev
);
1456 static void ixgbe_rx_skb(struct ixgbe_q_vector
*q_vector
,
1457 struct sk_buff
*skb
)
1459 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
1461 if (!(adapter
->flags
& IXGBE_FLAG_IN_NETPOLL
))
1462 napi_gro_receive(&q_vector
->napi
, skb
);
1468 * ixgbe_is_non_eop - process handling of non-EOP buffers
1469 * @rx_ring: Rx ring being processed
1470 * @rx_desc: Rx descriptor for current buffer
1471 * @skb: Current socket buffer containing buffer in progress
1473 * This function updates next to clean. If the buffer is an EOP buffer
1474 * this function exits returning false, otherwise it will place the
1475 * sk_buff in the next buffer to be chained and return true indicating
1476 * that this is in fact a non-EOP buffer.
1478 static bool ixgbe_is_non_eop(struct ixgbe_ring
*rx_ring
,
1479 union ixgbe_adv_rx_desc
*rx_desc
,
1480 struct sk_buff
*skb
)
1482 u32 ntc
= rx_ring
->next_to_clean
+ 1;
1484 /* fetch, update, and store next to clean */
1485 ntc
= (ntc
< rx_ring
->count
) ? ntc
: 0;
1486 rx_ring
->next_to_clean
= ntc
;
1488 prefetch(IXGBE_RX_DESC(rx_ring
, ntc
));
1490 /* update RSC append count if present */
1491 if (ring_is_rsc_enabled(rx_ring
)) {
1492 __le32 rsc_enabled
= rx_desc
->wb
.lower
.lo_dword
.data
&
1493 cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK
);
1495 if (unlikely(rsc_enabled
)) {
1496 u32 rsc_cnt
= le32_to_cpu(rsc_enabled
);
1498 rsc_cnt
>>= IXGBE_RXDADV_RSCCNT_SHIFT
;
1499 IXGBE_CB(skb
)->append_cnt
+= rsc_cnt
- 1;
1501 /* update ntc based on RSC value */
1502 ntc
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
1503 ntc
&= IXGBE_RXDADV_NEXTP_MASK
;
1504 ntc
>>= IXGBE_RXDADV_NEXTP_SHIFT
;
1508 /* if we are the last buffer then there is nothing else to do */
1509 if (likely(ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_EOP
)))
1512 /* place skb in next buffer to be received */
1513 rx_ring
->rx_buffer_info
[ntc
].skb
= skb
;
1514 rx_ring
->rx_stats
.non_eop_descs
++;
1520 * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail
1521 * @rx_ring: rx descriptor ring packet is being transacted on
1522 * @skb: pointer to current skb being adjusted
1524 * This function is an ixgbe specific version of __pskb_pull_tail. The
1525 * main difference between this version and the original function is that
1526 * this function can make several assumptions about the state of things
1527 * that allow for significant optimizations versus the standard function.
1528 * As a result we can do things like drop a frag and maintain an accurate
1529 * truesize for the skb.
1531 static void ixgbe_pull_tail(struct ixgbe_ring
*rx_ring
,
1532 struct sk_buff
*skb
)
1534 struct skb_frag_struct
*frag
= &skb_shinfo(skb
)->frags
[0];
1536 unsigned int pull_len
;
1539 * it is valid to use page_address instead of kmap since we are
1540 * working with pages allocated out of the lomem pool per
1541 * alloc_page(GFP_ATOMIC)
1543 va
= skb_frag_address(frag
);
1546 * we need the header to contain the greater of either ETH_HLEN or
1547 * 60 bytes if the skb->len is less than 60 for skb_pad.
1549 pull_len
= ixgbe_get_headlen(va
, IXGBE_RX_HDR_SIZE
);
1551 /* align pull length to size of long to optimize memcpy performance */
1552 skb_copy_to_linear_data(skb
, va
, ALIGN(pull_len
, sizeof(long)));
1554 /* update all of the pointers */
1555 skb_frag_size_sub(frag
, pull_len
);
1556 frag
->page_offset
+= pull_len
;
1557 skb
->data_len
-= pull_len
;
1558 skb
->tail
+= pull_len
;
1562 * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB
1563 * @rx_ring: rx descriptor ring packet is being transacted on
1564 * @skb: pointer to current skb being updated
1566 * This function provides a basic DMA sync up for the first fragment of an
1567 * skb. The reason for doing this is that the first fragment cannot be
1568 * unmapped until we have reached the end of packet descriptor for a buffer
1571 static void ixgbe_dma_sync_frag(struct ixgbe_ring
*rx_ring
,
1572 struct sk_buff
*skb
)
1574 /* if the page was released unmap it, else just sync our portion */
1575 if (unlikely(IXGBE_CB(skb
)->page_released
)) {
1576 dma_unmap_page(rx_ring
->dev
, IXGBE_CB(skb
)->dma
,
1577 ixgbe_rx_pg_size(rx_ring
), DMA_FROM_DEVICE
);
1578 IXGBE_CB(skb
)->page_released
= false;
1580 struct skb_frag_struct
*frag
= &skb_shinfo(skb
)->frags
[0];
1582 dma_sync_single_range_for_cpu(rx_ring
->dev
,
1585 ixgbe_rx_bufsz(rx_ring
),
1588 IXGBE_CB(skb
)->dma
= 0;
1592 * ixgbe_cleanup_headers - Correct corrupted or empty headers
1593 * @rx_ring: rx descriptor ring packet is being transacted on
1594 * @rx_desc: pointer to the EOP Rx descriptor
1595 * @skb: pointer to current skb being fixed
1597 * Check for corrupted packet headers caused by senders on the local L2
1598 * embedded NIC switch not setting up their Tx Descriptors right. These
1599 * should be very rare.
1601 * Also address the case where we are pulling data in on pages only
1602 * and as such no data is present in the skb header.
1604 * In addition if skb is not at least 60 bytes we need to pad it so that
1605 * it is large enough to qualify as a valid Ethernet frame.
1607 * Returns true if an error was encountered and skb was freed.
1609 static bool ixgbe_cleanup_headers(struct ixgbe_ring
*rx_ring
,
1610 union ixgbe_adv_rx_desc
*rx_desc
,
1611 struct sk_buff
*skb
)
1613 struct net_device
*netdev
= rx_ring
->netdev
;
1615 /* verify that the packet does not have any known errors */
1616 if (unlikely(ixgbe_test_staterr(rx_desc
,
1617 IXGBE_RXDADV_ERR_FRAME_ERR_MASK
) &&
1618 !(netdev
->features
& NETIF_F_RXALL
))) {
1619 dev_kfree_skb_any(skb
);
1623 /* place header in linear portion of buffer */
1624 if (skb_is_nonlinear(skb
))
1625 ixgbe_pull_tail(rx_ring
, skb
);
1628 /* do not attempt to pad FCoE Frames as this will disrupt DDP */
1629 if (ixgbe_rx_is_fcoe(rx_ring
, rx_desc
))
1633 /* if skb_pad returns an error the skb was freed */
1634 if (unlikely(skb
->len
< 60)) {
1635 int pad_len
= 60 - skb
->len
;
1637 if (skb_pad(skb
, pad_len
))
1639 __skb_put(skb
, pad_len
);
1646 * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring
1647 * @rx_ring: rx descriptor ring to store buffers on
1648 * @old_buff: donor buffer to have page reused
1650 * Synchronizes page for reuse by the adapter
1652 static void ixgbe_reuse_rx_page(struct ixgbe_ring
*rx_ring
,
1653 struct ixgbe_rx_buffer
*old_buff
)
1655 struct ixgbe_rx_buffer
*new_buff
;
1656 u16 nta
= rx_ring
->next_to_alloc
;
1658 new_buff
= &rx_ring
->rx_buffer_info
[nta
];
1660 /* update, and store next to alloc */
1662 rx_ring
->next_to_alloc
= (nta
< rx_ring
->count
) ? nta
: 0;
1664 /* transfer page from old buffer to new buffer */
1665 new_buff
->page
= old_buff
->page
;
1666 new_buff
->dma
= old_buff
->dma
;
1667 new_buff
->page_offset
= old_buff
->page_offset
;
1669 /* sync the buffer for use by the device */
1670 dma_sync_single_range_for_device(rx_ring
->dev
, new_buff
->dma
,
1671 new_buff
->page_offset
,
1672 ixgbe_rx_bufsz(rx_ring
),
1677 * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff
1678 * @rx_ring: rx descriptor ring to transact packets on
1679 * @rx_buffer: buffer containing page to add
1680 * @rx_desc: descriptor containing length of buffer written by hardware
1681 * @skb: sk_buff to place the data into
1683 * This function will add the data contained in rx_buffer->page to the skb.
1684 * This is done either through a direct copy if the data in the buffer is
1685 * less than the skb header size, otherwise it will just attach the page as
1686 * a frag to the skb.
1688 * The function will then update the page offset if necessary and return
1689 * true if the buffer can be reused by the adapter.
1691 static bool ixgbe_add_rx_frag(struct ixgbe_ring
*rx_ring
,
1692 struct ixgbe_rx_buffer
*rx_buffer
,
1693 union ixgbe_adv_rx_desc
*rx_desc
,
1694 struct sk_buff
*skb
)
1696 struct page
*page
= rx_buffer
->page
;
1697 unsigned int size
= le16_to_cpu(rx_desc
->wb
.upper
.length
);
1698 #if (PAGE_SIZE < 8192)
1699 unsigned int truesize
= ixgbe_rx_bufsz(rx_ring
);
1701 unsigned int truesize
= ALIGN(size
, L1_CACHE_BYTES
);
1702 unsigned int last_offset
= ixgbe_rx_pg_size(rx_ring
) -
1703 ixgbe_rx_bufsz(rx_ring
);
1706 if ((size
<= IXGBE_RX_HDR_SIZE
) && !skb_is_nonlinear(skb
)) {
1707 unsigned char *va
= page_address(page
) + rx_buffer
->page_offset
;
1709 memcpy(__skb_put(skb
, size
), va
, ALIGN(size
, sizeof(long)));
1711 /* we can reuse buffer as-is, just make sure it is local */
1712 if (likely(page_to_nid(page
) == numa_node_id()))
1715 /* this page cannot be reused so discard it */
1720 skb_add_rx_frag(skb
, skb_shinfo(skb
)->nr_frags
, page
,
1721 rx_buffer
->page_offset
, size
, truesize
);
1723 /* avoid re-using remote pages */
1724 if (unlikely(page_to_nid(page
) != numa_node_id()))
1727 #if (PAGE_SIZE < 8192)
1728 /* if we are only owner of page we can reuse it */
1729 if (unlikely(page_count(page
) != 1))
1732 /* flip page offset to other buffer */
1733 rx_buffer
->page_offset
^= truesize
;
1736 * since we are the only owner of the page and we need to
1737 * increment it, just set the value to 2 in order to avoid
1738 * an unecessary locked operation
1740 atomic_set(&page
->_count
, 2);
1742 /* move offset up to the next cache line */
1743 rx_buffer
->page_offset
+= truesize
;
1745 if (rx_buffer
->page_offset
> last_offset
)
1748 /* bump ref count on page before it is given to the stack */
1755 static struct sk_buff
*ixgbe_fetch_rx_buffer(struct ixgbe_ring
*rx_ring
,
1756 union ixgbe_adv_rx_desc
*rx_desc
)
1758 struct ixgbe_rx_buffer
*rx_buffer
;
1759 struct sk_buff
*skb
;
1762 rx_buffer
= &rx_ring
->rx_buffer_info
[rx_ring
->next_to_clean
];
1763 page
= rx_buffer
->page
;
1766 skb
= rx_buffer
->skb
;
1769 void *page_addr
= page_address(page
) +
1770 rx_buffer
->page_offset
;
1772 /* prefetch first cache line of first page */
1773 prefetch(page_addr
);
1774 #if L1_CACHE_BYTES < 128
1775 prefetch(page_addr
+ L1_CACHE_BYTES
);
1778 /* allocate a skb to store the frags */
1779 skb
= netdev_alloc_skb_ip_align(rx_ring
->netdev
,
1781 if (unlikely(!skb
)) {
1782 rx_ring
->rx_stats
.alloc_rx_buff_failed
++;
1787 * we will be copying header into skb->data in
1788 * pskb_may_pull so it is in our interest to prefetch
1789 * it now to avoid a possible cache miss
1791 prefetchw(skb
->data
);
1794 * Delay unmapping of the first packet. It carries the
1795 * header information, HW may still access the header
1796 * after the writeback. Only unmap it when EOP is
1799 if (likely(ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_EOP
)))
1802 IXGBE_CB(skb
)->dma
= rx_buffer
->dma
;
1804 if (ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_EOP
))
1805 ixgbe_dma_sync_frag(rx_ring
, skb
);
1808 /* we are reusing so sync this buffer for CPU use */
1809 dma_sync_single_range_for_cpu(rx_ring
->dev
,
1811 rx_buffer
->page_offset
,
1812 ixgbe_rx_bufsz(rx_ring
),
1816 /* pull page into skb */
1817 if (ixgbe_add_rx_frag(rx_ring
, rx_buffer
, rx_desc
, skb
)) {
1818 /* hand second half of page back to the ring */
1819 ixgbe_reuse_rx_page(rx_ring
, rx_buffer
);
1820 } else if (IXGBE_CB(skb
)->dma
== rx_buffer
->dma
) {
1821 /* the page has been released from the ring */
1822 IXGBE_CB(skb
)->page_released
= true;
1824 /* we are not reusing the buffer so unmap it */
1825 dma_unmap_page(rx_ring
->dev
, rx_buffer
->dma
,
1826 ixgbe_rx_pg_size(rx_ring
),
1830 /* clear contents of buffer_info */
1831 rx_buffer
->skb
= NULL
;
1833 rx_buffer
->page
= NULL
;
1839 * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1840 * @q_vector: structure containing interrupt and ring information
1841 * @rx_ring: rx descriptor ring to transact packets on
1842 * @budget: Total limit on number of packets to process
1844 * This function provides a "bounce buffer" approach to Rx interrupt
1845 * processing. The advantage to this is that on systems that have
1846 * expensive overhead for IOMMU access this provides a means of avoiding
1847 * it by maintaining the mapping of the page to the syste.
1849 * Returns true if all work is completed without reaching budget
1851 static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector
*q_vector
,
1852 struct ixgbe_ring
*rx_ring
,
1855 unsigned int total_rx_bytes
= 0, total_rx_packets
= 0;
1857 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
1859 unsigned int mss
= 0;
1860 #endif /* IXGBE_FCOE */
1861 u16 cleaned_count
= ixgbe_desc_unused(rx_ring
);
1864 union ixgbe_adv_rx_desc
*rx_desc
;
1865 struct sk_buff
*skb
;
1867 /* return some buffers to hardware, one at a time is too slow */
1868 if (cleaned_count
>= IXGBE_RX_BUFFER_WRITE
) {
1869 ixgbe_alloc_rx_buffers(rx_ring
, cleaned_count
);
1873 rx_desc
= IXGBE_RX_DESC(rx_ring
, rx_ring
->next_to_clean
);
1875 if (!ixgbe_test_staterr(rx_desc
, IXGBE_RXD_STAT_DD
))
1879 * This memory barrier is needed to keep us from reading
1880 * any other fields out of the rx_desc until we know the
1881 * RXD_STAT_DD bit is set
1885 /* retrieve a buffer from the ring */
1886 skb
= ixgbe_fetch_rx_buffer(rx_ring
, rx_desc
);
1888 /* exit if we failed to retrieve a buffer */
1894 /* place incomplete frames back on ring for completion */
1895 if (ixgbe_is_non_eop(rx_ring
, rx_desc
, skb
))
1898 /* verify the packet layout is correct */
1899 if (ixgbe_cleanup_headers(rx_ring
, rx_desc
, skb
))
1902 /* probably a little skewed due to removing CRC */
1903 total_rx_bytes
+= skb
->len
;
1905 /* populate checksum, timestamp, VLAN, and protocol */
1906 ixgbe_process_skb_fields(rx_ring
, rx_desc
, skb
);
1909 /* if ddp, not passing to ULD unless for FCP_RSP or error */
1910 if (ixgbe_rx_is_fcoe(rx_ring
, rx_desc
)) {
1911 ddp_bytes
= ixgbe_fcoe_ddp(adapter
, rx_desc
, skb
);
1912 /* include DDPed FCoE data */
1913 if (ddp_bytes
> 0) {
1915 mss
= rx_ring
->netdev
->mtu
-
1916 sizeof(struct fcoe_hdr
) -
1917 sizeof(struct fc_frame_header
) -
1918 sizeof(struct fcoe_crc_eof
);
1922 total_rx_bytes
+= ddp_bytes
;
1923 total_rx_packets
+= DIV_ROUND_UP(ddp_bytes
,
1927 dev_kfree_skb_any(skb
);
1932 #endif /* IXGBE_FCOE */
1933 ixgbe_rx_skb(q_vector
, skb
);
1935 /* update budget accounting */
1937 } while (likely(total_rx_packets
< budget
));
1939 u64_stats_update_begin(&rx_ring
->syncp
);
1940 rx_ring
->stats
.packets
+= total_rx_packets
;
1941 rx_ring
->stats
.bytes
+= total_rx_bytes
;
1942 u64_stats_update_end(&rx_ring
->syncp
);
1943 q_vector
->rx
.total_packets
+= total_rx_packets
;
1944 q_vector
->rx
.total_bytes
+= total_rx_bytes
;
1947 ixgbe_alloc_rx_buffers(rx_ring
, cleaned_count
);
1949 return (total_rx_packets
< budget
);
1953 * ixgbe_configure_msix - Configure MSI-X hardware
1954 * @adapter: board private structure
1956 * ixgbe_configure_msix sets up the hardware to properly generate MSI-X
1959 static void ixgbe_configure_msix(struct ixgbe_adapter
*adapter
)
1961 struct ixgbe_q_vector
*q_vector
;
1965 /* Populate MSIX to EITR Select */
1966 if (adapter
->num_vfs
> 32) {
1967 u32 eitrsel
= (1 << (adapter
->num_vfs
- 32)) - 1;
1968 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EITRSEL
, eitrsel
);
1972 * Populate the IVAR table and set the ITR values to the
1973 * corresponding register.
1975 for (v_idx
= 0; v_idx
< adapter
->num_q_vectors
; v_idx
++) {
1976 struct ixgbe_ring
*ring
;
1977 q_vector
= adapter
->q_vector
[v_idx
];
1979 ixgbe_for_each_ring(ring
, q_vector
->rx
)
1980 ixgbe_set_ivar(adapter
, 0, ring
->reg_idx
, v_idx
);
1982 ixgbe_for_each_ring(ring
, q_vector
->tx
)
1983 ixgbe_set_ivar(adapter
, 1, ring
->reg_idx
, v_idx
);
1985 ixgbe_write_eitr(q_vector
);
1988 switch (adapter
->hw
.mac
.type
) {
1989 case ixgbe_mac_82598EB
:
1990 ixgbe_set_ivar(adapter
, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX
,
1993 case ixgbe_mac_82599EB
:
1994 case ixgbe_mac_X540
:
1995 ixgbe_set_ivar(adapter
, -1, 1, v_idx
);
2000 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EITR(v_idx
), 1950);
2002 /* set up to autoclear timer, and the vectors */
2003 mask
= IXGBE_EIMS_ENABLE_MASK
;
2004 mask
&= ~(IXGBE_EIMS_OTHER
|
2005 IXGBE_EIMS_MAILBOX
|
2008 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIAC
, mask
);
2011 enum latency_range
{
2015 latency_invalid
= 255
2019 * ixgbe_update_itr - update the dynamic ITR value based on statistics
2020 * @q_vector: structure containing interrupt and ring information
2021 * @ring_container: structure containing ring performance data
2023 * Stores a new ITR value based on packets and byte
2024 * counts during the last interrupt. The advantage of per interrupt
2025 * computation is faster updates and more accurate ITR for the current
2026 * traffic pattern. Constants in this function were computed
2027 * based on theoretical maximum wire speed and thresholds were set based
2028 * on testing data as well as attempting to minimize response time
2029 * while increasing bulk throughput.
2030 * this functionality is controlled by the InterruptThrottleRate module
2031 * parameter (see ixgbe_param.c)
2033 static void ixgbe_update_itr(struct ixgbe_q_vector
*q_vector
,
2034 struct ixgbe_ring_container
*ring_container
)
2036 int bytes
= ring_container
->total_bytes
;
2037 int packets
= ring_container
->total_packets
;
2040 u8 itr_setting
= ring_container
->itr
;
2045 /* simple throttlerate management
2046 * 0-10MB/s lowest (100000 ints/s)
2047 * 10-20MB/s low (20000 ints/s)
2048 * 20-1249MB/s bulk (8000 ints/s)
2050 /* what was last interrupt timeslice? */
2051 timepassed_us
= q_vector
->itr
>> 2;
2052 bytes_perint
= bytes
/ timepassed_us
; /* bytes/usec */
2054 switch (itr_setting
) {
2055 case lowest_latency
:
2056 if (bytes_perint
> 10)
2057 itr_setting
= low_latency
;
2060 if (bytes_perint
> 20)
2061 itr_setting
= bulk_latency
;
2062 else if (bytes_perint
<= 10)
2063 itr_setting
= lowest_latency
;
2066 if (bytes_perint
<= 20)
2067 itr_setting
= low_latency
;
2071 /* clear work counters since we have the values we need */
2072 ring_container
->total_bytes
= 0;
2073 ring_container
->total_packets
= 0;
2075 /* write updated itr to ring container */
2076 ring_container
->itr
= itr_setting
;
2080 * ixgbe_write_eitr - write EITR register in hardware specific way
2081 * @q_vector: structure containing interrupt and ring information
2083 * This function is made to be called by ethtool and by the driver
2084 * when it needs to update EITR registers at runtime. Hardware
2085 * specific quirks/differences are taken care of here.
2087 void ixgbe_write_eitr(struct ixgbe_q_vector
*q_vector
)
2089 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
2090 struct ixgbe_hw
*hw
= &adapter
->hw
;
2091 int v_idx
= q_vector
->v_idx
;
2092 u32 itr_reg
= q_vector
->itr
& IXGBE_MAX_EITR
;
2094 switch (adapter
->hw
.mac
.type
) {
2095 case ixgbe_mac_82598EB
:
2096 /* must write high and low 16 bits to reset counter */
2097 itr_reg
|= (itr_reg
<< 16);
2099 case ixgbe_mac_82599EB
:
2100 case ixgbe_mac_X540
:
2102 * set the WDIS bit to not clear the timer bits and cause an
2103 * immediate assertion of the interrupt
2105 itr_reg
|= IXGBE_EITR_CNT_WDIS
;
2110 IXGBE_WRITE_REG(hw
, IXGBE_EITR(v_idx
), itr_reg
);
2113 static void ixgbe_set_itr(struct ixgbe_q_vector
*q_vector
)
2115 u32 new_itr
= q_vector
->itr
;
2118 ixgbe_update_itr(q_vector
, &q_vector
->tx
);
2119 ixgbe_update_itr(q_vector
, &q_vector
->rx
);
2121 current_itr
= max(q_vector
->rx
.itr
, q_vector
->tx
.itr
);
2123 switch (current_itr
) {
2124 /* counts and packets in update_itr are dependent on these numbers */
2125 case lowest_latency
:
2126 new_itr
= IXGBE_100K_ITR
;
2129 new_itr
= IXGBE_20K_ITR
;
2132 new_itr
= IXGBE_8K_ITR
;
2138 if (new_itr
!= q_vector
->itr
) {
2139 /* do an exponential smoothing */
2140 new_itr
= (10 * new_itr
* q_vector
->itr
) /
2141 ((9 * new_itr
) + q_vector
->itr
);
2143 /* save the algorithm value here */
2144 q_vector
->itr
= new_itr
;
2146 ixgbe_write_eitr(q_vector
);
2151 * ixgbe_check_overtemp_subtask - check for over temperature
2152 * @adapter: pointer to adapter
2154 static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter
*adapter
)
2156 struct ixgbe_hw
*hw
= &adapter
->hw
;
2157 u32 eicr
= adapter
->interrupt_event
;
2159 if (test_bit(__IXGBE_DOWN
, &adapter
->state
))
2162 if (!(adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
) &&
2163 !(adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_EVENT
))
2166 adapter
->flags2
&= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT
;
2168 switch (hw
->device_id
) {
2169 case IXGBE_DEV_ID_82599_T3_LOM
:
2171 * Since the warning interrupt is for both ports
2172 * we don't have to check if:
2173 * - This interrupt wasn't for our port.
2174 * - We may have missed the interrupt so always have to
2175 * check if we got a LSC
2177 if (!(eicr
& IXGBE_EICR_GPI_SDP0
) &&
2178 !(eicr
& IXGBE_EICR_LSC
))
2181 if (!(eicr
& IXGBE_EICR_LSC
) && hw
->mac
.ops
.check_link
) {
2183 bool link_up
= false;
2185 hw
->mac
.ops
.check_link(hw
, &speed
, &link_up
, false);
2191 /* Check if this is not due to overtemp */
2192 if (hw
->phy
.ops
.check_overtemp(hw
) != IXGBE_ERR_OVERTEMP
)
2197 if (!(eicr
& IXGBE_EICR_GPI_SDP0
))
2202 "Network adapter has been stopped because it has over heated. "
2203 "Restart the computer. If the problem persists, "
2204 "power off the system and replace the adapter\n");
2206 adapter
->interrupt_event
= 0;
2209 static void ixgbe_check_fan_failure(struct ixgbe_adapter
*adapter
, u32 eicr
)
2211 struct ixgbe_hw
*hw
= &adapter
->hw
;
2213 if ((adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
) &&
2214 (eicr
& IXGBE_EICR_GPI_SDP1
)) {
2215 e_crit(probe
, "Fan has stopped, replace the adapter\n");
2216 /* write to clear the interrupt */
2217 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, IXGBE_EICR_GPI_SDP1
);
2221 static void ixgbe_check_overtemp_event(struct ixgbe_adapter
*adapter
, u32 eicr
)
2223 if (!(adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
))
2226 switch (adapter
->hw
.mac
.type
) {
2227 case ixgbe_mac_82599EB
:
2229 * Need to check link state so complete overtemp check
2232 if (((eicr
& IXGBE_EICR_GPI_SDP0
) || (eicr
& IXGBE_EICR_LSC
)) &&
2233 (!test_bit(__IXGBE_DOWN
, &adapter
->state
))) {
2234 adapter
->interrupt_event
= eicr
;
2235 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_EVENT
;
2236 ixgbe_service_event_schedule(adapter
);
2240 case ixgbe_mac_X540
:
2241 if (!(eicr
& IXGBE_EICR_TS
))
2249 "Network adapter has been stopped because it has over heated. "
2250 "Restart the computer. If the problem persists, "
2251 "power off the system and replace the adapter\n");
2254 static void ixgbe_check_sfp_event(struct ixgbe_adapter
*adapter
, u32 eicr
)
2256 struct ixgbe_hw
*hw
= &adapter
->hw
;
2258 if (eicr
& IXGBE_EICR_GPI_SDP2
) {
2259 /* Clear the interrupt */
2260 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, IXGBE_EICR_GPI_SDP2
);
2261 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
2262 adapter
->flags2
|= IXGBE_FLAG2_SFP_NEEDS_RESET
;
2263 ixgbe_service_event_schedule(adapter
);
2267 if (eicr
& IXGBE_EICR_GPI_SDP1
) {
2268 /* Clear the interrupt */
2269 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, IXGBE_EICR_GPI_SDP1
);
2270 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
2271 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_CONFIG
;
2272 ixgbe_service_event_schedule(adapter
);
2277 static void ixgbe_check_lsc(struct ixgbe_adapter
*adapter
)
2279 struct ixgbe_hw
*hw
= &adapter
->hw
;
2282 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_UPDATE
;
2283 adapter
->link_check_timeout
= jiffies
;
2284 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
)) {
2285 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, IXGBE_EIMC_LSC
);
2286 IXGBE_WRITE_FLUSH(hw
);
2287 ixgbe_service_event_schedule(adapter
);
2291 static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter
*adapter
,
2295 struct ixgbe_hw
*hw
= &adapter
->hw
;
2297 switch (hw
->mac
.type
) {
2298 case ixgbe_mac_82598EB
:
2299 mask
= (IXGBE_EIMS_RTX_QUEUE
& qmask
);
2300 IXGBE_WRITE_REG(hw
, IXGBE_EIMS
, mask
);
2302 case ixgbe_mac_82599EB
:
2303 case ixgbe_mac_X540
:
2304 mask
= (qmask
& 0xFFFFFFFF);
2306 IXGBE_WRITE_REG(hw
, IXGBE_EIMS_EX(0), mask
);
2307 mask
= (qmask
>> 32);
2309 IXGBE_WRITE_REG(hw
, IXGBE_EIMS_EX(1), mask
);
2314 /* skip the flush */
2317 static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter
*adapter
,
2321 struct ixgbe_hw
*hw
= &adapter
->hw
;
2323 switch (hw
->mac
.type
) {
2324 case ixgbe_mac_82598EB
:
2325 mask
= (IXGBE_EIMS_RTX_QUEUE
& qmask
);
2326 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, mask
);
2328 case ixgbe_mac_82599EB
:
2329 case ixgbe_mac_X540
:
2330 mask
= (qmask
& 0xFFFFFFFF);
2332 IXGBE_WRITE_REG(hw
, IXGBE_EIMC_EX(0), mask
);
2333 mask
= (qmask
>> 32);
2335 IXGBE_WRITE_REG(hw
, IXGBE_EIMC_EX(1), mask
);
2340 /* skip the flush */
2344 * ixgbe_irq_enable - Enable default interrupt generation settings
2345 * @adapter: board private structure
2347 static inline void ixgbe_irq_enable(struct ixgbe_adapter
*adapter
, bool queues
,
2350 u32 mask
= (IXGBE_EIMS_ENABLE_MASK
& ~IXGBE_EIMS_RTX_QUEUE
);
2352 /* don't reenable LSC while waiting for link */
2353 if (adapter
->flags
& IXGBE_FLAG_NEED_LINK_UPDATE
)
2354 mask
&= ~IXGBE_EIMS_LSC
;
2356 if (adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
)
2357 switch (adapter
->hw
.mac
.type
) {
2358 case ixgbe_mac_82599EB
:
2359 mask
|= IXGBE_EIMS_GPI_SDP0
;
2361 case ixgbe_mac_X540
:
2362 mask
|= IXGBE_EIMS_TS
;
2367 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
)
2368 mask
|= IXGBE_EIMS_GPI_SDP1
;
2369 switch (adapter
->hw
.mac
.type
) {
2370 case ixgbe_mac_82599EB
:
2371 mask
|= IXGBE_EIMS_GPI_SDP1
;
2372 mask
|= IXGBE_EIMS_GPI_SDP2
;
2373 case ixgbe_mac_X540
:
2374 mask
|= IXGBE_EIMS_ECC
;
2375 mask
|= IXGBE_EIMS_MAILBOX
;
2381 if (adapter
->hw
.mac
.type
== ixgbe_mac_X540
)
2382 mask
|= IXGBE_EIMS_TIMESYNC
;
2384 if ((adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) &&
2385 !(adapter
->flags2
& IXGBE_FLAG2_FDIR_REQUIRES_REINIT
))
2386 mask
|= IXGBE_EIMS_FLOW_DIR
;
2388 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMS
, mask
);
2390 ixgbe_irq_enable_queues(adapter
, ~0);
2392 IXGBE_WRITE_FLUSH(&adapter
->hw
);
2395 static irqreturn_t
ixgbe_msix_other(int irq
, void *data
)
2397 struct ixgbe_adapter
*adapter
= data
;
2398 struct ixgbe_hw
*hw
= &adapter
->hw
;
2402 * Workaround for Silicon errata. Use clear-by-write instead
2403 * of clear-by-read. Reading with EICS will return the
2404 * interrupt causes without clearing, which later be done
2405 * with the write to EICR.
2407 eicr
= IXGBE_READ_REG(hw
, IXGBE_EICS
);
2408 IXGBE_WRITE_REG(hw
, IXGBE_EICR
, eicr
);
2410 if (eicr
& IXGBE_EICR_LSC
)
2411 ixgbe_check_lsc(adapter
);
2413 if (eicr
& IXGBE_EICR_MAILBOX
)
2414 ixgbe_msg_task(adapter
);
2416 switch (hw
->mac
.type
) {
2417 case ixgbe_mac_82599EB
:
2418 case ixgbe_mac_X540
:
2419 if (eicr
& IXGBE_EICR_ECC
)
2420 e_info(link
, "Received unrecoverable ECC Err, please "
2422 /* Handle Flow Director Full threshold interrupt */
2423 if (eicr
& IXGBE_EICR_FLOW_DIR
) {
2424 int reinit_count
= 0;
2426 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
2427 struct ixgbe_ring
*ring
= adapter
->tx_ring
[i
];
2428 if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE
,
2433 /* no more flow director interrupts until after init */
2434 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, IXGBE_EIMC_FLOW_DIR
);
2435 adapter
->flags2
|= IXGBE_FLAG2_FDIR_REQUIRES_REINIT
;
2436 ixgbe_service_event_schedule(adapter
);
2439 ixgbe_check_sfp_event(adapter
, eicr
);
2440 ixgbe_check_overtemp_event(adapter
, eicr
);
2446 ixgbe_check_fan_failure(adapter
, eicr
);
2448 if (unlikely(eicr
& IXGBE_EICR_TIMESYNC
))
2449 ixgbe_ptp_check_pps_event(adapter
, eicr
);
2451 /* re-enable the original interrupt state, no lsc, no queues */
2452 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
2453 ixgbe_irq_enable(adapter
, false, false);
2458 static irqreturn_t
ixgbe_msix_clean_rings(int irq
, void *data
)
2460 struct ixgbe_q_vector
*q_vector
= data
;
2462 /* EIAM disabled interrupts (on this vector) for us */
2464 if (q_vector
->rx
.ring
|| q_vector
->tx
.ring
)
2465 napi_schedule(&q_vector
->napi
);
2471 * ixgbe_poll - NAPI Rx polling callback
2472 * @napi: structure for representing this polling device
2473 * @budget: how many packets driver is allowed to clean
2475 * This function is used for legacy and MSI, NAPI mode
2477 int ixgbe_poll(struct napi_struct
*napi
, int budget
)
2479 struct ixgbe_q_vector
*q_vector
=
2480 container_of(napi
, struct ixgbe_q_vector
, napi
);
2481 struct ixgbe_adapter
*adapter
= q_vector
->adapter
;
2482 struct ixgbe_ring
*ring
;
2483 int per_ring_budget
;
2484 bool clean_complete
= true;
2486 #ifdef CONFIG_IXGBE_DCA
2487 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
)
2488 ixgbe_update_dca(q_vector
);
2491 ixgbe_for_each_ring(ring
, q_vector
->tx
)
2492 clean_complete
&= !!ixgbe_clean_tx_irq(q_vector
, ring
);
2494 /* attempt to distribute budget to each queue fairly, but don't allow
2495 * the budget to go below 1 because we'll exit polling */
2496 if (q_vector
->rx
.count
> 1)
2497 per_ring_budget
= max(budget
/q_vector
->rx
.count
, 1);
2499 per_ring_budget
= budget
;
2501 ixgbe_for_each_ring(ring
, q_vector
->rx
)
2502 clean_complete
&= ixgbe_clean_rx_irq(q_vector
, ring
,
2505 /* If all work not completed, return budget and keep polling */
2506 if (!clean_complete
)
2509 /* all work done, exit the polling mode */
2510 napi_complete(napi
);
2511 if (adapter
->rx_itr_setting
& 1)
2512 ixgbe_set_itr(q_vector
);
2513 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
2514 ixgbe_irq_enable_queues(adapter
, ((u64
)1 << q_vector
->v_idx
));
2520 * ixgbe_request_msix_irqs - Initialize MSI-X interrupts
2521 * @adapter: board private structure
2523 * ixgbe_request_msix_irqs allocates MSI-X vectors and requests
2524 * interrupts from the kernel.
2526 static int ixgbe_request_msix_irqs(struct ixgbe_adapter
*adapter
)
2528 struct net_device
*netdev
= adapter
->netdev
;
2532 for (vector
= 0; vector
< adapter
->num_q_vectors
; vector
++) {
2533 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[vector
];
2534 struct msix_entry
*entry
= &adapter
->msix_entries
[vector
];
2536 if (q_vector
->tx
.ring
&& q_vector
->rx
.ring
) {
2537 snprintf(q_vector
->name
, sizeof(q_vector
->name
) - 1,
2538 "%s-%s-%d", netdev
->name
, "TxRx", ri
++);
2540 } else if (q_vector
->rx
.ring
) {
2541 snprintf(q_vector
->name
, sizeof(q_vector
->name
) - 1,
2542 "%s-%s-%d", netdev
->name
, "rx", ri
++);
2543 } else if (q_vector
->tx
.ring
) {
2544 snprintf(q_vector
->name
, sizeof(q_vector
->name
) - 1,
2545 "%s-%s-%d", netdev
->name
, "tx", ti
++);
2547 /* skip this unused q_vector */
2550 err
= request_irq(entry
->vector
, &ixgbe_msix_clean_rings
, 0,
2551 q_vector
->name
, q_vector
);
2553 e_err(probe
, "request_irq failed for MSIX interrupt "
2554 "Error: %d\n", err
);
2555 goto free_queue_irqs
;
2557 /* If Flow Director is enabled, set interrupt affinity */
2558 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) {
2559 /* assign the mask for this irq */
2560 irq_set_affinity_hint(entry
->vector
,
2561 &q_vector
->affinity_mask
);
2565 err
= request_irq(adapter
->msix_entries
[vector
].vector
,
2566 ixgbe_msix_other
, 0, netdev
->name
, adapter
);
2568 e_err(probe
, "request_irq for msix_other failed: %d\n", err
);
2569 goto free_queue_irqs
;
2577 irq_set_affinity_hint(adapter
->msix_entries
[vector
].vector
,
2579 free_irq(adapter
->msix_entries
[vector
].vector
,
2580 adapter
->q_vector
[vector
]);
2582 adapter
->flags
&= ~IXGBE_FLAG_MSIX_ENABLED
;
2583 pci_disable_msix(adapter
->pdev
);
2584 kfree(adapter
->msix_entries
);
2585 adapter
->msix_entries
= NULL
;
2590 * ixgbe_intr - legacy mode Interrupt Handler
2591 * @irq: interrupt number
2592 * @data: pointer to a network interface device structure
2594 static irqreturn_t
ixgbe_intr(int irq
, void *data
)
2596 struct ixgbe_adapter
*adapter
= data
;
2597 struct ixgbe_hw
*hw
= &adapter
->hw
;
2598 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[0];
2602 * Workaround for silicon errata #26 on 82598. Mask the interrupt
2603 * before the read of EICR.
2605 IXGBE_WRITE_REG(hw
, IXGBE_EIMC
, IXGBE_IRQ_CLEAR_MASK
);
2607 /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read
2608 * therefore no explicit interrupt disable is necessary */
2609 eicr
= IXGBE_READ_REG(hw
, IXGBE_EICR
);
2612 * shared interrupt alert!
2613 * make sure interrupts are enabled because the read will
2614 * have disabled interrupts due to EIAM
2615 * finish the workaround of silicon errata on 82598. Unmask
2616 * the interrupt that we masked before the EICR read.
2618 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
2619 ixgbe_irq_enable(adapter
, true, true);
2620 return IRQ_NONE
; /* Not our interrupt */
2623 if (eicr
& IXGBE_EICR_LSC
)
2624 ixgbe_check_lsc(adapter
);
2626 switch (hw
->mac
.type
) {
2627 case ixgbe_mac_82599EB
:
2628 ixgbe_check_sfp_event(adapter
, eicr
);
2630 case ixgbe_mac_X540
:
2631 if (eicr
& IXGBE_EICR_ECC
)
2632 e_info(link
, "Received unrecoverable ECC err, please "
2634 ixgbe_check_overtemp_event(adapter
, eicr
);
2640 ixgbe_check_fan_failure(adapter
, eicr
);
2641 if (unlikely(eicr
& IXGBE_EICR_TIMESYNC
))
2642 ixgbe_ptp_check_pps_event(adapter
, eicr
);
2644 /* would disable interrupts here but EIAM disabled it */
2645 napi_schedule(&q_vector
->napi
);
2648 * re-enable link(maybe) and non-queue interrupts, no flush.
2649 * ixgbe_poll will re-enable the queue interrupts
2651 if (!test_bit(__IXGBE_DOWN
, &adapter
->state
))
2652 ixgbe_irq_enable(adapter
, false, false);
2658 * ixgbe_request_irq - initialize interrupts
2659 * @adapter: board private structure
2661 * Attempts to configure interrupts using the best available
2662 * capabilities of the hardware and kernel.
2664 static int ixgbe_request_irq(struct ixgbe_adapter
*adapter
)
2666 struct net_device
*netdev
= adapter
->netdev
;
2669 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)
2670 err
= ixgbe_request_msix_irqs(adapter
);
2671 else if (adapter
->flags
& IXGBE_FLAG_MSI_ENABLED
)
2672 err
= request_irq(adapter
->pdev
->irq
, ixgbe_intr
, 0,
2673 netdev
->name
, adapter
);
2675 err
= request_irq(adapter
->pdev
->irq
, ixgbe_intr
, IRQF_SHARED
,
2676 netdev
->name
, adapter
);
2679 e_err(probe
, "request_irq failed, Error %d\n", err
);
2684 static void ixgbe_free_irq(struct ixgbe_adapter
*adapter
)
2688 if (!(adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)) {
2689 free_irq(adapter
->pdev
->irq
, adapter
);
2693 for (vector
= 0; vector
< adapter
->num_q_vectors
; vector
++) {
2694 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[vector
];
2695 struct msix_entry
*entry
= &adapter
->msix_entries
[vector
];
2697 /* free only the irqs that were actually requested */
2698 if (!q_vector
->rx
.ring
&& !q_vector
->tx
.ring
)
2701 /* clear the affinity_mask in the IRQ descriptor */
2702 irq_set_affinity_hint(entry
->vector
, NULL
);
2704 free_irq(entry
->vector
, q_vector
);
2707 free_irq(adapter
->msix_entries
[vector
++].vector
, adapter
);
2711 * ixgbe_irq_disable - Mask off interrupt generation on the NIC
2712 * @adapter: board private structure
2714 static inline void ixgbe_irq_disable(struct ixgbe_adapter
*adapter
)
2716 switch (adapter
->hw
.mac
.type
) {
2717 case ixgbe_mac_82598EB
:
2718 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
, ~0);
2720 case ixgbe_mac_82599EB
:
2721 case ixgbe_mac_X540
:
2722 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC
, 0xFFFF0000);
2723 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC_EX(0), ~0);
2724 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EIMC_EX(1), ~0);
2729 IXGBE_WRITE_FLUSH(&adapter
->hw
);
2730 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
) {
2733 for (vector
= 0; vector
< adapter
->num_q_vectors
; vector
++)
2734 synchronize_irq(adapter
->msix_entries
[vector
].vector
);
2736 synchronize_irq(adapter
->msix_entries
[vector
++].vector
);
2738 synchronize_irq(adapter
->pdev
->irq
);
2743 * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts
2746 static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter
*adapter
)
2748 struct ixgbe_q_vector
*q_vector
= adapter
->q_vector
[0];
2750 ixgbe_write_eitr(q_vector
);
2752 ixgbe_set_ivar(adapter
, 0, 0, 0);
2753 ixgbe_set_ivar(adapter
, 1, 0, 0);
2755 e_info(hw
, "Legacy interrupt IVAR setup done\n");
2759 * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset
2760 * @adapter: board private structure
2761 * @ring: structure containing ring specific data
2763 * Configure the Tx descriptor ring after a reset.
2765 void ixgbe_configure_tx_ring(struct ixgbe_adapter
*adapter
,
2766 struct ixgbe_ring
*ring
)
2768 struct ixgbe_hw
*hw
= &adapter
->hw
;
2769 u64 tdba
= ring
->dma
;
2771 u32 txdctl
= IXGBE_TXDCTL_ENABLE
;
2772 u8 reg_idx
= ring
->reg_idx
;
2774 /* disable queue to avoid issues while updating state */
2775 IXGBE_WRITE_REG(hw
, IXGBE_TXDCTL(reg_idx
), 0);
2776 IXGBE_WRITE_FLUSH(hw
);
2778 IXGBE_WRITE_REG(hw
, IXGBE_TDBAL(reg_idx
),
2779 (tdba
& DMA_BIT_MASK(32)));
2780 IXGBE_WRITE_REG(hw
, IXGBE_TDBAH(reg_idx
), (tdba
>> 32));
2781 IXGBE_WRITE_REG(hw
, IXGBE_TDLEN(reg_idx
),
2782 ring
->count
* sizeof(union ixgbe_adv_tx_desc
));
2783 IXGBE_WRITE_REG(hw
, IXGBE_TDH(reg_idx
), 0);
2784 IXGBE_WRITE_REG(hw
, IXGBE_TDT(reg_idx
), 0);
2785 ring
->tail
= hw
->hw_addr
+ IXGBE_TDT(reg_idx
);
2788 * set WTHRESH to encourage burst writeback, it should not be set
2789 * higher than 1 when ITR is 0 as it could cause false TX hangs
2791 * In order to avoid issues WTHRESH + PTHRESH should always be equal
2792 * to or less than the number of on chip descriptors, which is
2795 if (!ring
->q_vector
|| (ring
->q_vector
->itr
< 8))
2796 txdctl
|= (1 << 16); /* WTHRESH = 1 */
2798 txdctl
|= (8 << 16); /* WTHRESH = 8 */
2801 * Setting PTHRESH to 32 both improves performance
2802 * and avoids a TX hang with DFP enabled
2804 txdctl
|= (1 << 8) | /* HTHRESH = 1 */
2805 32; /* PTHRESH = 32 */
2807 /* reinitialize flowdirector state */
2808 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) {
2809 ring
->atr_sample_rate
= adapter
->atr_sample_rate
;
2810 ring
->atr_count
= 0;
2811 set_bit(__IXGBE_TX_FDIR_INIT_DONE
, &ring
->state
);
2813 ring
->atr_sample_rate
= 0;
2816 clear_bit(__IXGBE_HANG_CHECK_ARMED
, &ring
->state
);
2819 IXGBE_WRITE_REG(hw
, IXGBE_TXDCTL(reg_idx
), txdctl
);
2821 /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */
2822 if (hw
->mac
.type
== ixgbe_mac_82598EB
&&
2823 !(IXGBE_READ_REG(hw
, IXGBE_LINKS
) & IXGBE_LINKS_UP
))
2826 /* poll to verify queue is enabled */
2828 usleep_range(1000, 2000);
2829 txdctl
= IXGBE_READ_REG(hw
, IXGBE_TXDCTL(reg_idx
));
2830 } while (--wait_loop
&& !(txdctl
& IXGBE_TXDCTL_ENABLE
));
2832 e_err(drv
, "Could not enable Tx Queue %d\n", reg_idx
);
2835 static void ixgbe_setup_mtqc(struct ixgbe_adapter
*adapter
)
2837 struct ixgbe_hw
*hw
= &adapter
->hw
;
2839 u8 tcs
= netdev_get_num_tc(adapter
->netdev
);
2841 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
2844 /* disable the arbiter while setting MTQC */
2845 rttdcs
= IXGBE_READ_REG(hw
, IXGBE_RTTDCS
);
2846 rttdcs
|= IXGBE_RTTDCS_ARBDIS
;
2847 IXGBE_WRITE_REG(hw
, IXGBE_RTTDCS
, rttdcs
);
2849 /* set transmit pool layout */
2850 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
2851 mtqc
= IXGBE_MTQC_VT_ENA
;
2853 mtqc
|= IXGBE_MTQC_RT_ENA
| IXGBE_MTQC_8TC_8TQ
;
2855 mtqc
|= IXGBE_MTQC_RT_ENA
| IXGBE_MTQC_4TC_4TQ
;
2856 else if (adapter
->ring_feature
[RING_F_RSS
].indices
== 4)
2857 mtqc
|= IXGBE_MTQC_32VF
;
2859 mtqc
|= IXGBE_MTQC_64VF
;
2862 mtqc
= IXGBE_MTQC_RT_ENA
| IXGBE_MTQC_8TC_8TQ
;
2864 mtqc
= IXGBE_MTQC_RT_ENA
| IXGBE_MTQC_4TC_4TQ
;
2866 mtqc
= IXGBE_MTQC_64Q_1PB
;
2869 IXGBE_WRITE_REG(hw
, IXGBE_MTQC
, mtqc
);
2871 /* Enable Security TX Buffer IFG for multiple pb */
2873 u32 sectx
= IXGBE_READ_REG(hw
, IXGBE_SECTXMINIFG
);
2874 sectx
|= IXGBE_SECTX_DCB
;
2875 IXGBE_WRITE_REG(hw
, IXGBE_SECTXMINIFG
, sectx
);
2878 /* re-enable the arbiter */
2879 rttdcs
&= ~IXGBE_RTTDCS_ARBDIS
;
2880 IXGBE_WRITE_REG(hw
, IXGBE_RTTDCS
, rttdcs
);
2884 * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset
2885 * @adapter: board private structure
2887 * Configure the Tx unit of the MAC after a reset.
2889 static void ixgbe_configure_tx(struct ixgbe_adapter
*adapter
)
2891 struct ixgbe_hw
*hw
= &adapter
->hw
;
2895 ixgbe_setup_mtqc(adapter
);
2897 if (hw
->mac
.type
!= ixgbe_mac_82598EB
) {
2898 /* DMATXCTL.EN must be before Tx queues are enabled */
2899 dmatxctl
= IXGBE_READ_REG(hw
, IXGBE_DMATXCTL
);
2900 dmatxctl
|= IXGBE_DMATXCTL_TE
;
2901 IXGBE_WRITE_REG(hw
, IXGBE_DMATXCTL
, dmatxctl
);
2904 /* Setup the HW Tx Head and Tail descriptor pointers */
2905 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
2906 ixgbe_configure_tx_ring(adapter
, adapter
->tx_ring
[i
]);
2909 static void ixgbe_enable_rx_drop(struct ixgbe_adapter
*adapter
,
2910 struct ixgbe_ring
*ring
)
2912 struct ixgbe_hw
*hw
= &adapter
->hw
;
2913 u8 reg_idx
= ring
->reg_idx
;
2914 u32 srrctl
= IXGBE_READ_REG(hw
, IXGBE_SRRCTL(reg_idx
));
2916 srrctl
|= IXGBE_SRRCTL_DROP_EN
;
2918 IXGBE_WRITE_REG(hw
, IXGBE_SRRCTL(reg_idx
), srrctl
);
2921 static void ixgbe_disable_rx_drop(struct ixgbe_adapter
*adapter
,
2922 struct ixgbe_ring
*ring
)
2924 struct ixgbe_hw
*hw
= &adapter
->hw
;
2925 u8 reg_idx
= ring
->reg_idx
;
2926 u32 srrctl
= IXGBE_READ_REG(hw
, IXGBE_SRRCTL(reg_idx
));
2928 srrctl
&= ~IXGBE_SRRCTL_DROP_EN
;
2930 IXGBE_WRITE_REG(hw
, IXGBE_SRRCTL(reg_idx
), srrctl
);
2933 #ifdef CONFIG_IXGBE_DCB
2934 void ixgbe_set_rx_drop_en(struct ixgbe_adapter
*adapter
)
2936 static void ixgbe_set_rx_drop_en(struct ixgbe_adapter
*adapter
)
2940 bool pfc_en
= adapter
->dcb_cfg
.pfc_mode_enable
;
2942 if (adapter
->ixgbe_ieee_pfc
)
2943 pfc_en
|= !!(adapter
->ixgbe_ieee_pfc
->pfc_en
);
2946 * We should set the drop enable bit if:
2949 * Number of Rx queues > 1 and flow control is disabled
2951 * This allows us to avoid head of line blocking for security
2952 * and performance reasons.
2954 if (adapter
->num_vfs
|| (adapter
->num_rx_queues
> 1 &&
2955 !(adapter
->hw
.fc
.current_mode
& ixgbe_fc_tx_pause
) && !pfc_en
)) {
2956 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
2957 ixgbe_enable_rx_drop(adapter
, adapter
->rx_ring
[i
]);
2959 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
2960 ixgbe_disable_rx_drop(adapter
, adapter
->rx_ring
[i
]);
2964 #define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
2966 static void ixgbe_configure_srrctl(struct ixgbe_adapter
*adapter
,
2967 struct ixgbe_ring
*rx_ring
)
2969 struct ixgbe_hw
*hw
= &adapter
->hw
;
2971 u8 reg_idx
= rx_ring
->reg_idx
;
2973 if (hw
->mac
.type
== ixgbe_mac_82598EB
) {
2974 u16 mask
= adapter
->ring_feature
[RING_F_RSS
].mask
;
2977 * if VMDq is not active we must program one srrctl register
2978 * per RSS queue since we have enabled RDRXCTL.MVMEN
2983 /* configure header buffer length, needed for RSC */
2984 srrctl
= IXGBE_RX_HDR_SIZE
<< IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT
;
2986 /* configure the packet buffer length */
2987 srrctl
|= ixgbe_rx_bufsz(rx_ring
) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT
;
2989 /* configure descriptor type */
2990 srrctl
|= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF
;
2992 IXGBE_WRITE_REG(hw
, IXGBE_SRRCTL(reg_idx
), srrctl
);
2995 static void ixgbe_setup_mrqc(struct ixgbe_adapter
*adapter
)
2997 struct ixgbe_hw
*hw
= &adapter
->hw
;
2998 static const u32 seed
[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D,
2999 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE,
3000 0x6A3E67EA, 0x14364D17, 0x3BED200D};
3001 u32 mrqc
= 0, reta
= 0;
3004 u16 rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
;
3007 * Program table for at least 2 queues w/ SR-IOV so that VFs can
3008 * make full use of any rings they may have. We will use the
3009 * PSRTYPE register to control how many rings we use within the PF.
3011 if ((adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) && (rss_i
< 2))
3014 /* Fill out hash function seeds */
3015 for (i
= 0; i
< 10; i
++)
3016 IXGBE_WRITE_REG(hw
, IXGBE_RSSRK(i
), seed
[i
]);
3018 /* Fill out redirection table */
3019 for (i
= 0, j
= 0; i
< 128; i
++, j
++) {
3022 /* reta = 4-byte sliding window of
3023 * 0x00..(indices-1)(indices-1)00..etc. */
3024 reta
= (reta
<< 8) | (j
* 0x11);
3026 IXGBE_WRITE_REG(hw
, IXGBE_RETA(i
>> 2), reta
);
3029 /* Disable indicating checksum in descriptor, enables RSS hash */
3030 rxcsum
= IXGBE_READ_REG(hw
, IXGBE_RXCSUM
);
3031 rxcsum
|= IXGBE_RXCSUM_PCSD
;
3032 IXGBE_WRITE_REG(hw
, IXGBE_RXCSUM
, rxcsum
);
3034 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
) {
3035 if (adapter
->ring_feature
[RING_F_RSS
].mask
)
3036 mrqc
= IXGBE_MRQC_RSSEN
;
3038 u8 tcs
= netdev_get_num_tc(adapter
->netdev
);
3040 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
3042 mrqc
= IXGBE_MRQC_VMDQRT8TCEN
; /* 8 TCs */
3044 mrqc
= IXGBE_MRQC_VMDQRT4TCEN
; /* 4 TCs */
3045 else if (adapter
->ring_feature
[RING_F_RSS
].indices
== 4)
3046 mrqc
= IXGBE_MRQC_VMDQRSS32EN
;
3048 mrqc
= IXGBE_MRQC_VMDQRSS64EN
;
3051 mrqc
= IXGBE_MRQC_RTRSS8TCEN
;
3053 mrqc
= IXGBE_MRQC_RTRSS4TCEN
;
3055 mrqc
= IXGBE_MRQC_RSSEN
;
3059 /* Perform hash on these packet types */
3060 mrqc
|= IXGBE_MRQC_RSS_FIELD_IPV4
|
3061 IXGBE_MRQC_RSS_FIELD_IPV4_TCP
|
3062 IXGBE_MRQC_RSS_FIELD_IPV6
|
3063 IXGBE_MRQC_RSS_FIELD_IPV6_TCP
;
3065 if (adapter
->flags2
& IXGBE_FLAG2_RSS_FIELD_IPV4_UDP
)
3066 mrqc
|= IXGBE_MRQC_RSS_FIELD_IPV4_UDP
;
3067 if (adapter
->flags2
& IXGBE_FLAG2_RSS_FIELD_IPV6_UDP
)
3068 mrqc
|= IXGBE_MRQC_RSS_FIELD_IPV6_UDP
;
3070 IXGBE_WRITE_REG(hw
, IXGBE_MRQC
, mrqc
);
3074 * ixgbe_configure_rscctl - enable RSC for the indicated ring
3075 * @adapter: address of board private structure
3076 * @index: index of ring to set
3078 static void ixgbe_configure_rscctl(struct ixgbe_adapter
*adapter
,
3079 struct ixgbe_ring
*ring
)
3081 struct ixgbe_hw
*hw
= &adapter
->hw
;
3083 u8 reg_idx
= ring
->reg_idx
;
3085 if (!ring_is_rsc_enabled(ring
))
3088 rscctrl
= IXGBE_READ_REG(hw
, IXGBE_RSCCTL(reg_idx
));
3089 rscctrl
|= IXGBE_RSCCTL_RSCEN
;
3091 * we must limit the number of descriptors so that the
3092 * total size of max desc * buf_len is not greater
3095 rscctrl
|= IXGBE_RSCCTL_MAXDESC_16
;
3096 IXGBE_WRITE_REG(hw
, IXGBE_RSCCTL(reg_idx
), rscctrl
);
3099 #define IXGBE_MAX_RX_DESC_POLL 10
3100 static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter
*adapter
,
3101 struct ixgbe_ring
*ring
)
3103 struct ixgbe_hw
*hw
= &adapter
->hw
;
3104 int wait_loop
= IXGBE_MAX_RX_DESC_POLL
;
3106 u8 reg_idx
= ring
->reg_idx
;
3108 /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */
3109 if (hw
->mac
.type
== ixgbe_mac_82598EB
&&
3110 !(IXGBE_READ_REG(hw
, IXGBE_LINKS
) & IXGBE_LINKS_UP
))
3114 usleep_range(1000, 2000);
3115 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
3116 } while (--wait_loop
&& !(rxdctl
& IXGBE_RXDCTL_ENABLE
));
3119 e_err(drv
, "RXDCTL.ENABLE on Rx queue %d not set within "
3120 "the polling period\n", reg_idx
);
3124 void ixgbe_disable_rx_queue(struct ixgbe_adapter
*adapter
,
3125 struct ixgbe_ring
*ring
)
3127 struct ixgbe_hw
*hw
= &adapter
->hw
;
3128 int wait_loop
= IXGBE_MAX_RX_DESC_POLL
;
3130 u8 reg_idx
= ring
->reg_idx
;
3132 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
3133 rxdctl
&= ~IXGBE_RXDCTL_ENABLE
;
3135 /* write value back with RXDCTL.ENABLE bit cleared */
3136 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(reg_idx
), rxdctl
);
3138 if (hw
->mac
.type
== ixgbe_mac_82598EB
&&
3139 !(IXGBE_READ_REG(hw
, IXGBE_LINKS
) & IXGBE_LINKS_UP
))
3142 /* the hardware may take up to 100us to really disable the rx queue */
3145 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
3146 } while (--wait_loop
&& (rxdctl
& IXGBE_RXDCTL_ENABLE
));
3149 e_err(drv
, "RXDCTL.ENABLE on Rx queue %d not cleared within "
3150 "the polling period\n", reg_idx
);
3154 void ixgbe_configure_rx_ring(struct ixgbe_adapter
*adapter
,
3155 struct ixgbe_ring
*ring
)
3157 struct ixgbe_hw
*hw
= &adapter
->hw
;
3158 u64 rdba
= ring
->dma
;
3160 u8 reg_idx
= ring
->reg_idx
;
3162 /* disable queue to avoid issues while updating state */
3163 rxdctl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(reg_idx
));
3164 ixgbe_disable_rx_queue(adapter
, ring
);
3166 IXGBE_WRITE_REG(hw
, IXGBE_RDBAL(reg_idx
), (rdba
& DMA_BIT_MASK(32)));
3167 IXGBE_WRITE_REG(hw
, IXGBE_RDBAH(reg_idx
), (rdba
>> 32));
3168 IXGBE_WRITE_REG(hw
, IXGBE_RDLEN(reg_idx
),
3169 ring
->count
* sizeof(union ixgbe_adv_rx_desc
));
3170 IXGBE_WRITE_REG(hw
, IXGBE_RDH(reg_idx
), 0);
3171 IXGBE_WRITE_REG(hw
, IXGBE_RDT(reg_idx
), 0);
3172 ring
->tail
= hw
->hw_addr
+ IXGBE_RDT(reg_idx
);
3174 ixgbe_configure_srrctl(adapter
, ring
);
3175 ixgbe_configure_rscctl(adapter
, ring
);
3177 if (hw
->mac
.type
== ixgbe_mac_82598EB
) {
3179 * enable cache line friendly hardware writes:
3180 * PTHRESH=32 descriptors (half the internal cache),
3181 * this also removes ugly rx_no_buffer_count increment
3182 * HTHRESH=4 descriptors (to minimize latency on fetch)
3183 * WTHRESH=8 burst writeback up to two cache lines
3185 rxdctl
&= ~0x3FFFFF;
3189 /* enable receive descriptor ring */
3190 rxdctl
|= IXGBE_RXDCTL_ENABLE
;
3191 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(reg_idx
), rxdctl
);
3193 ixgbe_rx_desc_queue_enable(adapter
, ring
);
3194 ixgbe_alloc_rx_buffers(ring
, ixgbe_desc_unused(ring
));
3197 static void ixgbe_setup_psrtype(struct ixgbe_adapter
*adapter
)
3199 struct ixgbe_hw
*hw
= &adapter
->hw
;
3200 int rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
;
3203 /* PSRTYPE must be initialized in non 82598 adapters */
3204 u32 psrtype
= IXGBE_PSRTYPE_TCPHDR
|
3205 IXGBE_PSRTYPE_UDPHDR
|
3206 IXGBE_PSRTYPE_IPV4HDR
|
3207 IXGBE_PSRTYPE_L2HDR
|
3208 IXGBE_PSRTYPE_IPV6HDR
;
3210 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
3218 for (p
= 0; p
< adapter
->num_rx_pools
; p
++)
3219 IXGBE_WRITE_REG(hw
, IXGBE_PSRTYPE(VMDQ_P(p
)),
3223 static void ixgbe_configure_virtualization(struct ixgbe_adapter
*adapter
)
3225 struct ixgbe_hw
*hw
= &adapter
->hw
;
3226 u32 reg_offset
, vf_shift
;
3227 u32 gcr_ext
, vmdctl
;
3230 if (!(adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
))
3233 vmdctl
= IXGBE_READ_REG(hw
, IXGBE_VT_CTL
);
3234 vmdctl
|= IXGBE_VMD_CTL_VMDQ_EN
;
3235 vmdctl
&= ~IXGBE_VT_CTL_POOL_MASK
;
3236 vmdctl
|= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT
;
3237 vmdctl
|= IXGBE_VT_CTL_REPLEN
;
3238 IXGBE_WRITE_REG(hw
, IXGBE_VT_CTL
, vmdctl
);
3240 vf_shift
= VMDQ_P(0) % 32;
3241 reg_offset
= (VMDQ_P(0) >= 32) ? 1 : 0;
3243 /* Enable only the PF's pool for Tx/Rx */
3244 IXGBE_WRITE_REG(hw
, IXGBE_VFRE(reg_offset
), (~0) << vf_shift
);
3245 IXGBE_WRITE_REG(hw
, IXGBE_VFRE(reg_offset
^ 1), reg_offset
- 1);
3246 IXGBE_WRITE_REG(hw
, IXGBE_VFTE(reg_offset
), (~0) << vf_shift
);
3247 IXGBE_WRITE_REG(hw
, IXGBE_VFTE(reg_offset
^ 1), reg_offset
- 1);
3248 if (adapter
->flags2
& IXGBE_FLAG2_BRIDGE_MODE_VEB
)
3249 IXGBE_WRITE_REG(hw
, IXGBE_PFDTXGSWC
, IXGBE_PFDTXGSWC_VT_LBEN
);
3251 /* Map PF MAC address in RAR Entry 0 to first pool following VFs */
3252 hw
->mac
.ops
.set_vmdq(hw
, 0, VMDQ_P(0));
3255 * Set up VF register offsets for selected VT Mode,
3256 * i.e. 32 or 64 VFs for SR-IOV
3258 switch (adapter
->ring_feature
[RING_F_VMDQ
].mask
) {
3259 case IXGBE_82599_VMDQ_8Q_MASK
:
3260 gcr_ext
= IXGBE_GCR_EXT_VT_MODE_16
;
3262 case IXGBE_82599_VMDQ_4Q_MASK
:
3263 gcr_ext
= IXGBE_GCR_EXT_VT_MODE_32
;
3266 gcr_ext
= IXGBE_GCR_EXT_VT_MODE_64
;
3270 IXGBE_WRITE_REG(hw
, IXGBE_GCR_EXT
, gcr_ext
);
3273 /* Enable MAC Anti-Spoofing */
3274 hw
->mac
.ops
.set_mac_anti_spoofing(hw
, (adapter
->num_vfs
!= 0),
3276 /* For VFs that have spoof checking turned off */
3277 for (i
= 0; i
< adapter
->num_vfs
; i
++) {
3278 if (!adapter
->vfinfo
[i
].spoofchk_enabled
)
3279 ixgbe_ndo_set_vf_spoofchk(adapter
->netdev
, i
, false);
3283 static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter
*adapter
)
3285 struct ixgbe_hw
*hw
= &adapter
->hw
;
3286 struct net_device
*netdev
= adapter
->netdev
;
3287 int max_frame
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
3288 struct ixgbe_ring
*rx_ring
;
3293 /* adjust max frame to be able to do baby jumbo for FCoE */
3294 if ((adapter
->flags
& IXGBE_FLAG_FCOE_ENABLED
) &&
3295 (max_frame
< IXGBE_FCOE_JUMBO_FRAME_SIZE
))
3296 max_frame
= IXGBE_FCOE_JUMBO_FRAME_SIZE
;
3298 #endif /* IXGBE_FCOE */
3300 /* adjust max frame to be at least the size of a standard frame */
3301 if (max_frame
< (ETH_FRAME_LEN
+ ETH_FCS_LEN
))
3302 max_frame
= (ETH_FRAME_LEN
+ ETH_FCS_LEN
);
3304 mhadd
= IXGBE_READ_REG(hw
, IXGBE_MHADD
);
3305 if (max_frame
!= (mhadd
>> IXGBE_MHADD_MFS_SHIFT
)) {
3306 mhadd
&= ~IXGBE_MHADD_MFS_MASK
;
3307 mhadd
|= max_frame
<< IXGBE_MHADD_MFS_SHIFT
;
3309 IXGBE_WRITE_REG(hw
, IXGBE_MHADD
, mhadd
);
3312 hlreg0
= IXGBE_READ_REG(hw
, IXGBE_HLREG0
);
3313 /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */
3314 hlreg0
|= IXGBE_HLREG0_JUMBOEN
;
3315 IXGBE_WRITE_REG(hw
, IXGBE_HLREG0
, hlreg0
);
3318 * Setup the HW Rx Head and Tail Descriptor Pointers and
3319 * the Base and Length of the Rx Descriptor Ring
3321 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
3322 rx_ring
= adapter
->rx_ring
[i
];
3323 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)
3324 set_ring_rsc_enabled(rx_ring
);
3326 clear_ring_rsc_enabled(rx_ring
);
3330 static void ixgbe_setup_rdrxctl(struct ixgbe_adapter
*adapter
)
3332 struct ixgbe_hw
*hw
= &adapter
->hw
;
3333 u32 rdrxctl
= IXGBE_READ_REG(hw
, IXGBE_RDRXCTL
);
3335 switch (hw
->mac
.type
) {
3336 case ixgbe_mac_82598EB
:
3338 * For VMDq support of different descriptor types or
3339 * buffer sizes through the use of multiple SRRCTL
3340 * registers, RDRXCTL.MVMEN must be set to 1
3342 * also, the manual doesn't mention it clearly but DCA hints
3343 * will only use queue 0's tags unless this bit is set. Side
3344 * effects of setting this bit are only that SRRCTL must be
3345 * fully programmed [0..15]
3347 rdrxctl
|= IXGBE_RDRXCTL_MVMEN
;
3349 case ixgbe_mac_82599EB
:
3350 case ixgbe_mac_X540
:
3351 /* Disable RSC for ACK packets */
3352 IXGBE_WRITE_REG(hw
, IXGBE_RSCDBU
,
3353 (IXGBE_RSCDBU_RSCACKDIS
| IXGBE_READ_REG(hw
, IXGBE_RSCDBU
)));
3354 rdrxctl
&= ~IXGBE_RDRXCTL_RSCFRSTSIZE
;
3355 /* hardware requires some bits to be set by default */
3356 rdrxctl
|= (IXGBE_RDRXCTL_RSCACKC
| IXGBE_RDRXCTL_FCOE_WRFIX
);
3357 rdrxctl
|= IXGBE_RDRXCTL_CRCSTRIP
;
3360 /* We should do nothing since we don't know this hardware */
3364 IXGBE_WRITE_REG(hw
, IXGBE_RDRXCTL
, rdrxctl
);
3368 * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset
3369 * @adapter: board private structure
3371 * Configure the Rx unit of the MAC after a reset.
3373 static void ixgbe_configure_rx(struct ixgbe_adapter
*adapter
)
3375 struct ixgbe_hw
*hw
= &adapter
->hw
;
3379 /* disable receives while setting up the descriptors */
3380 rxctrl
= IXGBE_READ_REG(hw
, IXGBE_RXCTRL
);
3381 IXGBE_WRITE_REG(hw
, IXGBE_RXCTRL
, rxctrl
& ~IXGBE_RXCTRL_RXEN
);
3383 ixgbe_setup_psrtype(adapter
);
3384 ixgbe_setup_rdrxctl(adapter
);
3386 /* Program registers for the distribution of queues */
3387 ixgbe_setup_mrqc(adapter
);
3389 /* set_rx_buffer_len must be called before ring initialization */
3390 ixgbe_set_rx_buffer_len(adapter
);
3393 * Setup the HW Rx Head and Tail Descriptor Pointers and
3394 * the Base and Length of the Rx Descriptor Ring
3396 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
3397 ixgbe_configure_rx_ring(adapter
, adapter
->rx_ring
[i
]);
3399 /* disable drop enable for 82598 parts */
3400 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
3401 rxctrl
|= IXGBE_RXCTRL_DMBYPS
;
3403 /* enable all receives */
3404 rxctrl
|= IXGBE_RXCTRL_RXEN
;
3405 hw
->mac
.ops
.enable_rx_dma(hw
, rxctrl
);
3408 static int ixgbe_vlan_rx_add_vid(struct net_device
*netdev
, u16 vid
)
3410 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
3411 struct ixgbe_hw
*hw
= &adapter
->hw
;
3413 /* add VID to filter table */
3414 hw
->mac
.ops
.set_vfta(&adapter
->hw
, vid
, VMDQ_P(0), true);
3415 set_bit(vid
, adapter
->active_vlans
);
3420 static int ixgbe_vlan_rx_kill_vid(struct net_device
*netdev
, u16 vid
)
3422 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
3423 struct ixgbe_hw
*hw
= &adapter
->hw
;
3425 /* remove VID from filter table */
3426 hw
->mac
.ops
.set_vfta(&adapter
->hw
, vid
, VMDQ_P(0), false);
3427 clear_bit(vid
, adapter
->active_vlans
);
3433 * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering
3434 * @adapter: driver data
3436 static void ixgbe_vlan_filter_disable(struct ixgbe_adapter
*adapter
)
3438 struct ixgbe_hw
*hw
= &adapter
->hw
;
3441 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
3442 vlnctrl
&= ~(IXGBE_VLNCTRL_VFE
| IXGBE_VLNCTRL_CFIEN
);
3443 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
3447 * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering
3448 * @adapter: driver data
3450 static void ixgbe_vlan_filter_enable(struct ixgbe_adapter
*adapter
)
3452 struct ixgbe_hw
*hw
= &adapter
->hw
;
3455 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
3456 vlnctrl
|= IXGBE_VLNCTRL_VFE
;
3457 vlnctrl
&= ~IXGBE_VLNCTRL_CFIEN
;
3458 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
3462 * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping
3463 * @adapter: driver data
3465 static void ixgbe_vlan_strip_disable(struct ixgbe_adapter
*adapter
)
3467 struct ixgbe_hw
*hw
= &adapter
->hw
;
3471 switch (hw
->mac
.type
) {
3472 case ixgbe_mac_82598EB
:
3473 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
3474 vlnctrl
&= ~IXGBE_VLNCTRL_VME
;
3475 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
3477 case ixgbe_mac_82599EB
:
3478 case ixgbe_mac_X540
:
3479 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
3480 j
= adapter
->rx_ring
[i
]->reg_idx
;
3481 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(j
));
3482 vlnctrl
&= ~IXGBE_RXDCTL_VME
;
3483 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(j
), vlnctrl
);
3492 * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping
3493 * @adapter: driver data
3495 static void ixgbe_vlan_strip_enable(struct ixgbe_adapter
*adapter
)
3497 struct ixgbe_hw
*hw
= &adapter
->hw
;
3501 switch (hw
->mac
.type
) {
3502 case ixgbe_mac_82598EB
:
3503 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_VLNCTRL
);
3504 vlnctrl
|= IXGBE_VLNCTRL_VME
;
3505 IXGBE_WRITE_REG(hw
, IXGBE_VLNCTRL
, vlnctrl
);
3507 case ixgbe_mac_82599EB
:
3508 case ixgbe_mac_X540
:
3509 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
3510 j
= adapter
->rx_ring
[i
]->reg_idx
;
3511 vlnctrl
= IXGBE_READ_REG(hw
, IXGBE_RXDCTL(j
));
3512 vlnctrl
|= IXGBE_RXDCTL_VME
;
3513 IXGBE_WRITE_REG(hw
, IXGBE_RXDCTL(j
), vlnctrl
);
3521 static void ixgbe_restore_vlan(struct ixgbe_adapter
*adapter
)
3525 ixgbe_vlan_rx_add_vid(adapter
->netdev
, 0);
3527 for_each_set_bit(vid
, adapter
->active_vlans
, VLAN_N_VID
)
3528 ixgbe_vlan_rx_add_vid(adapter
->netdev
, vid
);
3532 * ixgbe_write_uc_addr_list - write unicast addresses to RAR table
3533 * @netdev: network interface device structure
3535 * Writes unicast address list to the RAR table.
3536 * Returns: -ENOMEM on failure/insufficient address space
3537 * 0 on no addresses written
3538 * X on writing X addresses to the RAR table
3540 static int ixgbe_write_uc_addr_list(struct net_device
*netdev
)
3542 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
3543 struct ixgbe_hw
*hw
= &adapter
->hw
;
3544 unsigned int rar_entries
= hw
->mac
.num_rar_entries
- 1;
3547 /* In SR-IOV mode significantly less RAR entries are available */
3548 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
3549 rar_entries
= IXGBE_MAX_PF_MACVLANS
- 1;
3551 /* return ENOMEM indicating insufficient memory for addresses */
3552 if (netdev_uc_count(netdev
) > rar_entries
)
3555 if (!netdev_uc_empty(netdev
)) {
3556 struct netdev_hw_addr
*ha
;
3557 /* return error if we do not support writing to RAR table */
3558 if (!hw
->mac
.ops
.set_rar
)
3561 netdev_for_each_uc_addr(ha
, netdev
) {
3564 hw
->mac
.ops
.set_rar(hw
, rar_entries
--, ha
->addr
,
3565 VMDQ_P(0), IXGBE_RAH_AV
);
3569 /* write the addresses in reverse order to avoid write combining */
3570 for (; rar_entries
> 0 ; rar_entries
--)
3571 hw
->mac
.ops
.clear_rar(hw
, rar_entries
);
3577 * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set
3578 * @netdev: network interface device structure
3580 * The set_rx_method entry point is called whenever the unicast/multicast
3581 * address list or the network interface flags are updated. This routine is
3582 * responsible for configuring the hardware for proper unicast, multicast and
3585 void ixgbe_set_rx_mode(struct net_device
*netdev
)
3587 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
3588 struct ixgbe_hw
*hw
= &adapter
->hw
;
3589 u32 fctrl
, vmolr
= IXGBE_VMOLR_BAM
| IXGBE_VMOLR_AUPE
;
3592 /* Check for Promiscuous and All Multicast modes */
3594 fctrl
= IXGBE_READ_REG(hw
, IXGBE_FCTRL
);
3596 /* set all bits that we expect to always be set */
3597 fctrl
&= ~IXGBE_FCTRL_SBP
; /* disable store-bad-packets */
3598 fctrl
|= IXGBE_FCTRL_BAM
;
3599 fctrl
|= IXGBE_FCTRL_DPF
; /* discard pause frames when FC enabled */
3600 fctrl
|= IXGBE_FCTRL_PMCF
;
3602 /* clear the bits we are changing the status of */
3603 fctrl
&= ~(IXGBE_FCTRL_UPE
| IXGBE_FCTRL_MPE
);
3605 if (netdev
->flags
& IFF_PROMISC
) {
3606 hw
->addr_ctrl
.user_set_promisc
= true;
3607 fctrl
|= (IXGBE_FCTRL_UPE
| IXGBE_FCTRL_MPE
);
3608 vmolr
|= (IXGBE_VMOLR_ROPE
| IXGBE_VMOLR_MPE
);
3609 /* don't hardware filter vlans in promisc mode */
3610 ixgbe_vlan_filter_disable(adapter
);
3612 if (netdev
->flags
& IFF_ALLMULTI
) {
3613 fctrl
|= IXGBE_FCTRL_MPE
;
3614 vmolr
|= IXGBE_VMOLR_MPE
;
3617 * Write addresses to the MTA, if the attempt fails
3618 * then we should just turn on promiscuous mode so
3619 * that we can at least receive multicast traffic
3621 hw
->mac
.ops
.update_mc_addr_list(hw
, netdev
);
3622 vmolr
|= IXGBE_VMOLR_ROMPE
;
3624 ixgbe_vlan_filter_enable(adapter
);
3625 hw
->addr_ctrl
.user_set_promisc
= false;
3629 * Write addresses to available RAR registers, if there is not
3630 * sufficient space to store all the addresses then enable
3631 * unicast promiscuous mode
3633 count
= ixgbe_write_uc_addr_list(netdev
);
3635 fctrl
|= IXGBE_FCTRL_UPE
;
3636 vmolr
|= IXGBE_VMOLR_ROPE
;
3639 if (adapter
->num_vfs
)
3640 ixgbe_restore_vf_multicasts(adapter
);
3642 if (hw
->mac
.type
!= ixgbe_mac_82598EB
) {
3643 vmolr
|= IXGBE_READ_REG(hw
, IXGBE_VMOLR(VMDQ_P(0))) &
3644 ~(IXGBE_VMOLR_MPE
| IXGBE_VMOLR_ROMPE
|
3646 IXGBE_WRITE_REG(hw
, IXGBE_VMOLR(VMDQ_P(0)), vmolr
);
3649 /* This is useful for sniffing bad packets. */
3650 if (adapter
->netdev
->features
& NETIF_F_RXALL
) {
3651 /* UPE and MPE will be handled by normal PROMISC logic
3652 * in e1000e_set_rx_mode */
3653 fctrl
|= (IXGBE_FCTRL_SBP
| /* Receive bad packets */
3654 IXGBE_FCTRL_BAM
| /* RX All Bcast Pkts */
3655 IXGBE_FCTRL_PMCF
); /* RX All MAC Ctrl Pkts */
3657 fctrl
&= ~(IXGBE_FCTRL_DPF
);
3658 /* NOTE: VLAN filtering is disabled by setting PROMISC */
3661 IXGBE_WRITE_REG(hw
, IXGBE_FCTRL
, fctrl
);
3663 if (netdev
->features
& NETIF_F_HW_VLAN_RX
)
3664 ixgbe_vlan_strip_enable(adapter
);
3666 ixgbe_vlan_strip_disable(adapter
);
3669 static void ixgbe_napi_enable_all(struct ixgbe_adapter
*adapter
)
3673 for (q_idx
= 0; q_idx
< adapter
->num_q_vectors
; q_idx
++)
3674 napi_enable(&adapter
->q_vector
[q_idx
]->napi
);
3677 static void ixgbe_napi_disable_all(struct ixgbe_adapter
*adapter
)
3681 for (q_idx
= 0; q_idx
< adapter
->num_q_vectors
; q_idx
++)
3682 napi_disable(&adapter
->q_vector
[q_idx
]->napi
);
3685 #ifdef CONFIG_IXGBE_DCB
3687 * ixgbe_configure_dcb - Configure DCB hardware
3688 * @adapter: ixgbe adapter struct
3690 * This is called by the driver on open to configure the DCB hardware.
3691 * This is also called by the gennetlink interface when reconfiguring
3694 static void ixgbe_configure_dcb(struct ixgbe_adapter
*adapter
)
3696 struct ixgbe_hw
*hw
= &adapter
->hw
;
3697 int max_frame
= adapter
->netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
3699 if (!(adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
)) {
3700 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
3701 netif_set_gso_max_size(adapter
->netdev
, 65536);
3705 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
3706 netif_set_gso_max_size(adapter
->netdev
, 32768);
3709 if (adapter
->netdev
->features
& NETIF_F_FCOE_MTU
)
3710 max_frame
= max(max_frame
, IXGBE_FCOE_JUMBO_FRAME_SIZE
);
3713 /* reconfigure the hardware */
3714 if (adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
) {
3715 ixgbe_dcb_calculate_tc_credits(hw
, &adapter
->dcb_cfg
, max_frame
,
3717 ixgbe_dcb_calculate_tc_credits(hw
, &adapter
->dcb_cfg
, max_frame
,
3719 ixgbe_dcb_hw_config(hw
, &adapter
->dcb_cfg
);
3720 } else if (adapter
->ixgbe_ieee_ets
&& adapter
->ixgbe_ieee_pfc
) {
3721 ixgbe_dcb_hw_ets(&adapter
->hw
,
3722 adapter
->ixgbe_ieee_ets
,
3724 ixgbe_dcb_hw_pfc_config(&adapter
->hw
,
3725 adapter
->ixgbe_ieee_pfc
->pfc_en
,
3726 adapter
->ixgbe_ieee_ets
->prio_tc
);
3729 /* Enable RSS Hash per TC */
3730 if (hw
->mac
.type
!= ixgbe_mac_82598EB
) {
3732 u16 rss_i
= adapter
->ring_feature
[RING_F_RSS
].indices
- 1;
3739 /* write msb to all 8 TCs in one write */
3740 IXGBE_WRITE_REG(hw
, IXGBE_RQTC
, msb
* 0x11111111);
3745 /* Additional bittime to account for IXGBE framing */
3746 #define IXGBE_ETH_FRAMING 20
3749 * ixgbe_hpbthresh - calculate high water mark for flow control
3751 * @adapter: board private structure to calculate for
3752 * @pb: packet buffer to calculate
3754 static int ixgbe_hpbthresh(struct ixgbe_adapter
*adapter
, int pb
)
3756 struct ixgbe_hw
*hw
= &adapter
->hw
;
3757 struct net_device
*dev
= adapter
->netdev
;
3758 int link
, tc
, kb
, marker
;
3761 /* Calculate max LAN frame size */
3762 tc
= link
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ IXGBE_ETH_FRAMING
;
3765 /* FCoE traffic class uses FCOE jumbo frames */
3766 if ((dev
->features
& NETIF_F_FCOE_MTU
) &&
3767 (tc
< IXGBE_FCOE_JUMBO_FRAME_SIZE
) &&
3768 (pb
== ixgbe_fcoe_get_tc(adapter
)))
3769 tc
= IXGBE_FCOE_JUMBO_FRAME_SIZE
;
3772 /* Calculate delay value for device */
3773 switch (hw
->mac
.type
) {
3774 case ixgbe_mac_X540
:
3775 dv_id
= IXGBE_DV_X540(link
, tc
);
3778 dv_id
= IXGBE_DV(link
, tc
);
3782 /* Loopback switch introduces additional latency */
3783 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
3784 dv_id
+= IXGBE_B2BT(tc
);
3786 /* Delay value is calculated in bit times convert to KB */
3787 kb
= IXGBE_BT2KB(dv_id
);
3788 rx_pba
= IXGBE_READ_REG(hw
, IXGBE_RXPBSIZE(pb
)) >> 10;
3790 marker
= rx_pba
- kb
;
3792 /* It is possible that the packet buffer is not large enough
3793 * to provide required headroom. In this case throw an error
3794 * to user and a do the best we can.
3797 e_warn(drv
, "Packet Buffer(%i) can not provide enough"
3798 "headroom to support flow control."
3799 "Decrease MTU or number of traffic classes\n", pb
);
3807 * ixgbe_lpbthresh - calculate low water mark for for flow control
3809 * @adapter: board private structure to calculate for
3810 * @pb: packet buffer to calculate
3812 static int ixgbe_lpbthresh(struct ixgbe_adapter
*adapter
)
3814 struct ixgbe_hw
*hw
= &adapter
->hw
;
3815 struct net_device
*dev
= adapter
->netdev
;
3819 /* Calculate max LAN frame size */
3820 tc
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
3822 /* Calculate delay value for device */
3823 switch (hw
->mac
.type
) {
3824 case ixgbe_mac_X540
:
3825 dv_id
= IXGBE_LOW_DV_X540(tc
);
3828 dv_id
= IXGBE_LOW_DV(tc
);
3832 /* Delay value is calculated in bit times convert to KB */
3833 return IXGBE_BT2KB(dv_id
);
3837 * ixgbe_pbthresh_setup - calculate and setup high low water marks
3839 static void ixgbe_pbthresh_setup(struct ixgbe_adapter
*adapter
)
3841 struct ixgbe_hw
*hw
= &adapter
->hw
;
3842 int num_tc
= netdev_get_num_tc(adapter
->netdev
);
3848 hw
->fc
.low_water
= ixgbe_lpbthresh(adapter
);
3850 for (i
= 0; i
< num_tc
; i
++) {
3851 hw
->fc
.high_water
[i
] = ixgbe_hpbthresh(adapter
, i
);
3853 /* Low water marks must not be larger than high water marks */
3854 if (hw
->fc
.low_water
> hw
->fc
.high_water
[i
])
3855 hw
->fc
.low_water
= 0;
3859 static void ixgbe_configure_pb(struct ixgbe_adapter
*adapter
)
3861 struct ixgbe_hw
*hw
= &adapter
->hw
;
3863 u8 tc
= netdev_get_num_tc(adapter
->netdev
);
3865 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
||
3866 adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
)
3867 hdrm
= 32 << adapter
->fdir_pballoc
;
3871 hw
->mac
.ops
.set_rxpba(hw
, tc
, hdrm
, PBA_STRATEGY_EQUAL
);
3872 ixgbe_pbthresh_setup(adapter
);
3875 static void ixgbe_fdir_filter_restore(struct ixgbe_adapter
*adapter
)
3877 struct ixgbe_hw
*hw
= &adapter
->hw
;
3878 struct hlist_node
*node
, *node2
;
3879 struct ixgbe_fdir_filter
*filter
;
3881 spin_lock(&adapter
->fdir_perfect_lock
);
3883 if (!hlist_empty(&adapter
->fdir_filter_list
))
3884 ixgbe_fdir_set_input_mask_82599(hw
, &adapter
->fdir_mask
);
3886 hlist_for_each_entry_safe(filter
, node
, node2
,
3887 &adapter
->fdir_filter_list
, fdir_node
) {
3888 ixgbe_fdir_write_perfect_filter_82599(hw
,
3891 (filter
->action
== IXGBE_FDIR_DROP_QUEUE
) ?
3892 IXGBE_FDIR_DROP_QUEUE
:
3893 adapter
->rx_ring
[filter
->action
]->reg_idx
);
3896 spin_unlock(&adapter
->fdir_perfect_lock
);
3899 static void ixgbe_configure(struct ixgbe_adapter
*adapter
)
3901 struct ixgbe_hw
*hw
= &adapter
->hw
;
3903 ixgbe_configure_pb(adapter
);
3904 #ifdef CONFIG_IXGBE_DCB
3905 ixgbe_configure_dcb(adapter
);
3908 * We must restore virtualization before VLANs or else
3909 * the VLVF registers will not be populated
3911 ixgbe_configure_virtualization(adapter
);
3913 ixgbe_set_rx_mode(adapter
->netdev
);
3914 ixgbe_restore_vlan(adapter
);
3916 switch (hw
->mac
.type
) {
3917 case ixgbe_mac_82599EB
:
3918 case ixgbe_mac_X540
:
3919 hw
->mac
.ops
.disable_rx_buff(hw
);
3925 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) {
3926 ixgbe_init_fdir_signature_82599(&adapter
->hw
,
3927 adapter
->fdir_pballoc
);
3928 } else if (adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
) {
3929 ixgbe_init_fdir_perfect_82599(&adapter
->hw
,
3930 adapter
->fdir_pballoc
);
3931 ixgbe_fdir_filter_restore(adapter
);
3934 switch (hw
->mac
.type
) {
3935 case ixgbe_mac_82599EB
:
3936 case ixgbe_mac_X540
:
3937 hw
->mac
.ops
.enable_rx_buff(hw
);
3944 /* configure FCoE L2 filters, redirection table, and Rx control */
3945 ixgbe_configure_fcoe(adapter
);
3947 #endif /* IXGBE_FCOE */
3948 ixgbe_configure_tx(adapter
);
3949 ixgbe_configure_rx(adapter
);
3952 static inline bool ixgbe_is_sfp(struct ixgbe_hw
*hw
)
3954 switch (hw
->phy
.type
) {
3955 case ixgbe_phy_sfp_avago
:
3956 case ixgbe_phy_sfp_ftl
:
3957 case ixgbe_phy_sfp_intel
:
3958 case ixgbe_phy_sfp_unknown
:
3959 case ixgbe_phy_sfp_passive_tyco
:
3960 case ixgbe_phy_sfp_passive_unknown
:
3961 case ixgbe_phy_sfp_active_unknown
:
3962 case ixgbe_phy_sfp_ftl_active
:
3965 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
3973 * ixgbe_sfp_link_config - set up SFP+ link
3974 * @adapter: pointer to private adapter struct
3976 static void ixgbe_sfp_link_config(struct ixgbe_adapter
*adapter
)
3979 * We are assuming the worst case scenario here, and that
3980 * is that an SFP was inserted/removed after the reset
3981 * but before SFP detection was enabled. As such the best
3982 * solution is to just start searching as soon as we start
3984 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
3985 adapter
->flags2
|= IXGBE_FLAG2_SEARCH_FOR_SFP
;
3987 adapter
->flags2
|= IXGBE_FLAG2_SFP_NEEDS_RESET
;
3991 * ixgbe_non_sfp_link_config - set up non-SFP+ link
3992 * @hw: pointer to private hardware struct
3994 * Returns 0 on success, negative on failure
3996 static int ixgbe_non_sfp_link_config(struct ixgbe_hw
*hw
)
3999 bool autoneg
, link_up
= false;
4000 u32 ret
= IXGBE_ERR_LINK_SETUP
;
4002 if (hw
->mac
.ops
.check_link
)
4003 ret
= hw
->mac
.ops
.check_link(hw
, &speed
, &link_up
, false);
4008 speed
= hw
->phy
.autoneg_advertised
;
4009 if ((!speed
) && (hw
->mac
.ops
.get_link_capabilities
))
4010 ret
= hw
->mac
.ops
.get_link_capabilities(hw
, &speed
,
4015 if (hw
->mac
.ops
.setup_link
)
4016 ret
= hw
->mac
.ops
.setup_link(hw
, speed
, link_up
);
4021 static void ixgbe_setup_gpie(struct ixgbe_adapter
*adapter
)
4023 struct ixgbe_hw
*hw
= &adapter
->hw
;
4026 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
) {
4027 gpie
= IXGBE_GPIE_MSIX_MODE
| IXGBE_GPIE_PBA_SUPPORT
|
4029 gpie
|= IXGBE_GPIE_EIAME
;
4031 * use EIAM to auto-mask when MSI-X interrupt is asserted
4032 * this saves a register write for every interrupt
4034 switch (hw
->mac
.type
) {
4035 case ixgbe_mac_82598EB
:
4036 IXGBE_WRITE_REG(hw
, IXGBE_EIAM
, IXGBE_EICS_RTX_QUEUE
);
4038 case ixgbe_mac_82599EB
:
4039 case ixgbe_mac_X540
:
4041 IXGBE_WRITE_REG(hw
, IXGBE_EIAM_EX(0), 0xFFFFFFFF);
4042 IXGBE_WRITE_REG(hw
, IXGBE_EIAM_EX(1), 0xFFFFFFFF);
4046 /* legacy interrupts, use EIAM to auto-mask when reading EICR,
4047 * specifically only auto mask tx and rx interrupts */
4048 IXGBE_WRITE_REG(hw
, IXGBE_EIAM
, IXGBE_EICS_RTX_QUEUE
);
4051 /* XXX: to interrupt immediately for EICS writes, enable this */
4052 /* gpie |= IXGBE_GPIE_EIMEN; */
4054 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
4055 gpie
&= ~IXGBE_GPIE_VTMODE_MASK
;
4057 switch (adapter
->ring_feature
[RING_F_VMDQ
].mask
) {
4058 case IXGBE_82599_VMDQ_8Q_MASK
:
4059 gpie
|= IXGBE_GPIE_VTMODE_16
;
4061 case IXGBE_82599_VMDQ_4Q_MASK
:
4062 gpie
|= IXGBE_GPIE_VTMODE_32
;
4065 gpie
|= IXGBE_GPIE_VTMODE_64
;
4070 /* Enable Thermal over heat sensor interrupt */
4071 if (adapter
->flags2
& IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
) {
4072 switch (adapter
->hw
.mac
.type
) {
4073 case ixgbe_mac_82599EB
:
4074 gpie
|= IXGBE_SDP0_GPIEN
;
4076 case ixgbe_mac_X540
:
4077 gpie
|= IXGBE_EIMS_TS
;
4084 /* Enable fan failure interrupt */
4085 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
)
4086 gpie
|= IXGBE_SDP1_GPIEN
;
4088 if (hw
->mac
.type
== ixgbe_mac_82599EB
) {
4089 gpie
|= IXGBE_SDP1_GPIEN
;
4090 gpie
|= IXGBE_SDP2_GPIEN
;
4093 IXGBE_WRITE_REG(hw
, IXGBE_GPIE
, gpie
);
4096 static void ixgbe_up_complete(struct ixgbe_adapter
*adapter
)
4098 struct ixgbe_hw
*hw
= &adapter
->hw
;
4102 ixgbe_get_hw_control(adapter
);
4103 ixgbe_setup_gpie(adapter
);
4105 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)
4106 ixgbe_configure_msix(adapter
);
4108 ixgbe_configure_msi_and_legacy(adapter
);
4110 /* enable the optics for 82599 SFP+ fiber */
4111 if (hw
->mac
.ops
.enable_tx_laser
)
4112 hw
->mac
.ops
.enable_tx_laser(hw
);
4114 clear_bit(__IXGBE_DOWN
, &adapter
->state
);
4115 ixgbe_napi_enable_all(adapter
);
4117 if (ixgbe_is_sfp(hw
)) {
4118 ixgbe_sfp_link_config(adapter
);
4120 err
= ixgbe_non_sfp_link_config(hw
);
4122 e_err(probe
, "link_config FAILED %d\n", err
);
4125 /* clear any pending interrupts, may auto mask */
4126 IXGBE_READ_REG(hw
, IXGBE_EICR
);
4127 ixgbe_irq_enable(adapter
, true, true);
4130 * If this adapter has a fan, check to see if we had a failure
4131 * before we enabled the interrupt.
4133 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
) {
4134 u32 esdp
= IXGBE_READ_REG(hw
, IXGBE_ESDP
);
4135 if (esdp
& IXGBE_ESDP_SDP1
)
4136 e_crit(drv
, "Fan has stopped, replace the adapter\n");
4139 /* enable transmits */
4140 netif_tx_start_all_queues(adapter
->netdev
);
4142 /* bring the link up in the watchdog, this could race with our first
4143 * link up interrupt but shouldn't be a problem */
4144 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_UPDATE
;
4145 adapter
->link_check_timeout
= jiffies
;
4146 mod_timer(&adapter
->service_timer
, jiffies
);
4148 /* Set PF Reset Done bit so PF/VF Mail Ops can work */
4149 ctrl_ext
= IXGBE_READ_REG(hw
, IXGBE_CTRL_EXT
);
4150 ctrl_ext
|= IXGBE_CTRL_EXT_PFRSTD
;
4151 IXGBE_WRITE_REG(hw
, IXGBE_CTRL_EXT
, ctrl_ext
);
4154 void ixgbe_reinit_locked(struct ixgbe_adapter
*adapter
)
4156 WARN_ON(in_interrupt());
4157 /* put off any impending NetWatchDogTimeout */
4158 adapter
->netdev
->trans_start
= jiffies
;
4160 while (test_and_set_bit(__IXGBE_RESETTING
, &adapter
->state
))
4161 usleep_range(1000, 2000);
4162 ixgbe_down(adapter
);
4164 * If SR-IOV enabled then wait a bit before bringing the adapter
4165 * back up to give the VFs time to respond to the reset. The
4166 * two second wait is based upon the watchdog timer cycle in
4169 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
4172 clear_bit(__IXGBE_RESETTING
, &adapter
->state
);
4175 void ixgbe_up(struct ixgbe_adapter
*adapter
)
4177 /* hardware has been reset, we need to reload some things */
4178 ixgbe_configure(adapter
);
4180 ixgbe_up_complete(adapter
);
4183 void ixgbe_reset(struct ixgbe_adapter
*adapter
)
4185 struct ixgbe_hw
*hw
= &adapter
->hw
;
4188 /* lock SFP init bit to prevent race conditions with the watchdog */
4189 while (test_and_set_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
))
4190 usleep_range(1000, 2000);
4192 /* clear all SFP and link config related flags while holding SFP_INIT */
4193 adapter
->flags2
&= ~(IXGBE_FLAG2_SEARCH_FOR_SFP
|
4194 IXGBE_FLAG2_SFP_NEEDS_RESET
);
4195 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_CONFIG
;
4197 err
= hw
->mac
.ops
.init_hw(hw
);
4200 case IXGBE_ERR_SFP_NOT_PRESENT
:
4201 case IXGBE_ERR_SFP_NOT_SUPPORTED
:
4203 case IXGBE_ERR_MASTER_REQUESTS_PENDING
:
4204 e_dev_err("master disable timed out\n");
4206 case IXGBE_ERR_EEPROM_VERSION
:
4207 /* We are running on a pre-production device, log a warning */
4208 e_dev_warn("This device is a pre-production adapter/LOM. "
4209 "Please be aware there may be issues associated with "
4210 "your hardware. If you are experiencing problems "
4211 "please contact your Intel or hardware "
4212 "representative who provided you with this "
4216 e_dev_err("Hardware Error: %d\n", err
);
4219 clear_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
);
4221 /* reprogram the RAR[0] in case user changed it. */
4222 hw
->mac
.ops
.set_rar(hw
, 0, hw
->mac
.addr
, VMDQ_P(0), IXGBE_RAH_AV
);
4224 /* update SAN MAC vmdq pool selection */
4225 if (hw
->mac
.san_mac_rar_index
)
4226 hw
->mac
.ops
.set_vmdq_san_mac(hw
, VMDQ_P(0));
4228 if (adapter
->flags2
& IXGBE_FLAG2_PTP_ENABLED
)
4229 ixgbe_ptp_reset(adapter
);
4233 * ixgbe_clean_rx_ring - Free Rx Buffers per Queue
4234 * @rx_ring: ring to free buffers from
4236 static void ixgbe_clean_rx_ring(struct ixgbe_ring
*rx_ring
)
4238 struct device
*dev
= rx_ring
->dev
;
4242 /* ring already cleared, nothing to do */
4243 if (!rx_ring
->rx_buffer_info
)
4246 /* Free all the Rx ring sk_buffs */
4247 for (i
= 0; i
< rx_ring
->count
; i
++) {
4248 struct ixgbe_rx_buffer
*rx_buffer
;
4250 rx_buffer
= &rx_ring
->rx_buffer_info
[i
];
4251 if (rx_buffer
->skb
) {
4252 struct sk_buff
*skb
= rx_buffer
->skb
;
4253 if (IXGBE_CB(skb
)->page_released
) {
4256 ixgbe_rx_bufsz(rx_ring
),
4258 IXGBE_CB(skb
)->page_released
= false;
4262 rx_buffer
->skb
= NULL
;
4264 dma_unmap_page(dev
, rx_buffer
->dma
,
4265 ixgbe_rx_pg_size(rx_ring
),
4268 if (rx_buffer
->page
)
4269 __free_pages(rx_buffer
->page
,
4270 ixgbe_rx_pg_order(rx_ring
));
4271 rx_buffer
->page
= NULL
;
4274 size
= sizeof(struct ixgbe_rx_buffer
) * rx_ring
->count
;
4275 memset(rx_ring
->rx_buffer_info
, 0, size
);
4277 /* Zero out the descriptor ring */
4278 memset(rx_ring
->desc
, 0, rx_ring
->size
);
4280 rx_ring
->next_to_alloc
= 0;
4281 rx_ring
->next_to_clean
= 0;
4282 rx_ring
->next_to_use
= 0;
4286 * ixgbe_clean_tx_ring - Free Tx Buffers
4287 * @tx_ring: ring to be cleaned
4289 static void ixgbe_clean_tx_ring(struct ixgbe_ring
*tx_ring
)
4291 struct ixgbe_tx_buffer
*tx_buffer_info
;
4295 /* ring already cleared, nothing to do */
4296 if (!tx_ring
->tx_buffer_info
)
4299 /* Free all the Tx ring sk_buffs */
4300 for (i
= 0; i
< tx_ring
->count
; i
++) {
4301 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
4302 ixgbe_unmap_and_free_tx_resource(tx_ring
, tx_buffer_info
);
4305 netdev_tx_reset_queue(txring_txq(tx_ring
));
4307 size
= sizeof(struct ixgbe_tx_buffer
) * tx_ring
->count
;
4308 memset(tx_ring
->tx_buffer_info
, 0, size
);
4310 /* Zero out the descriptor ring */
4311 memset(tx_ring
->desc
, 0, tx_ring
->size
);
4313 tx_ring
->next_to_use
= 0;
4314 tx_ring
->next_to_clean
= 0;
4318 * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues
4319 * @adapter: board private structure
4321 static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter
*adapter
)
4325 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
4326 ixgbe_clean_rx_ring(adapter
->rx_ring
[i
]);
4330 * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues
4331 * @adapter: board private structure
4333 static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter
*adapter
)
4337 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
4338 ixgbe_clean_tx_ring(adapter
->tx_ring
[i
]);
4341 static void ixgbe_fdir_filter_exit(struct ixgbe_adapter
*adapter
)
4343 struct hlist_node
*node
, *node2
;
4344 struct ixgbe_fdir_filter
*filter
;
4346 spin_lock(&adapter
->fdir_perfect_lock
);
4348 hlist_for_each_entry_safe(filter
, node
, node2
,
4349 &adapter
->fdir_filter_list
, fdir_node
) {
4350 hlist_del(&filter
->fdir_node
);
4353 adapter
->fdir_filter_count
= 0;
4355 spin_unlock(&adapter
->fdir_perfect_lock
);
4358 void ixgbe_down(struct ixgbe_adapter
*adapter
)
4360 struct net_device
*netdev
= adapter
->netdev
;
4361 struct ixgbe_hw
*hw
= &adapter
->hw
;
4365 /* signal that we are down to the interrupt handler */
4366 set_bit(__IXGBE_DOWN
, &adapter
->state
);
4368 /* disable receives */
4369 rxctrl
= IXGBE_READ_REG(hw
, IXGBE_RXCTRL
);
4370 IXGBE_WRITE_REG(hw
, IXGBE_RXCTRL
, rxctrl
& ~IXGBE_RXCTRL_RXEN
);
4372 /* disable all enabled rx queues */
4373 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
4374 /* this call also flushes the previous write */
4375 ixgbe_disable_rx_queue(adapter
, adapter
->rx_ring
[i
]);
4377 usleep_range(10000, 20000);
4379 netif_tx_stop_all_queues(netdev
);
4381 /* call carrier off first to avoid false dev_watchdog timeouts */
4382 netif_carrier_off(netdev
);
4383 netif_tx_disable(netdev
);
4385 ixgbe_irq_disable(adapter
);
4387 ixgbe_napi_disable_all(adapter
);
4389 adapter
->flags2
&= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT
|
4390 IXGBE_FLAG2_RESET_REQUESTED
);
4391 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_UPDATE
;
4393 del_timer_sync(&adapter
->service_timer
);
4395 if (adapter
->num_vfs
) {
4396 /* Clear EITR Select mapping */
4397 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_EITRSEL
, 0);
4399 /* Mark all the VFs as inactive */
4400 for (i
= 0 ; i
< adapter
->num_vfs
; i
++)
4401 adapter
->vfinfo
[i
].clear_to_send
= false;
4403 /* ping all the active vfs to let them know we are going down */
4404 ixgbe_ping_all_vfs(adapter
);
4406 /* Disable all VFTE/VFRE TX/RX */
4407 ixgbe_disable_tx_rx(adapter
);
4410 /* disable transmits in the hardware now that interrupts are off */
4411 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
4412 u8 reg_idx
= adapter
->tx_ring
[i
]->reg_idx
;
4413 IXGBE_WRITE_REG(hw
, IXGBE_TXDCTL(reg_idx
), IXGBE_TXDCTL_SWFLSH
);
4416 /* Disable the Tx DMA engine on 82599 and X540 */
4417 switch (hw
->mac
.type
) {
4418 case ixgbe_mac_82599EB
:
4419 case ixgbe_mac_X540
:
4420 IXGBE_WRITE_REG(hw
, IXGBE_DMATXCTL
,
4421 (IXGBE_READ_REG(hw
, IXGBE_DMATXCTL
) &
4422 ~IXGBE_DMATXCTL_TE
));
4428 if (!pci_channel_offline(adapter
->pdev
))
4429 ixgbe_reset(adapter
);
4431 /* power down the optics for 82599 SFP+ fiber */
4432 if (hw
->mac
.ops
.disable_tx_laser
)
4433 hw
->mac
.ops
.disable_tx_laser(hw
);
4435 ixgbe_clean_all_tx_rings(adapter
);
4436 ixgbe_clean_all_rx_rings(adapter
);
4438 #ifdef CONFIG_IXGBE_DCA
4439 /* since we reset the hardware DCA settings were cleared */
4440 ixgbe_setup_dca(adapter
);
4445 * ixgbe_tx_timeout - Respond to a Tx Hang
4446 * @netdev: network interface device structure
4448 static void ixgbe_tx_timeout(struct net_device
*netdev
)
4450 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4452 /* Do the reset outside of interrupt context */
4453 ixgbe_tx_timeout_reset(adapter
);
4457 * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter)
4458 * @adapter: board private structure to initialize
4460 * ixgbe_sw_init initializes the Adapter private data structure.
4461 * Fields are initialized based on PCI device information and
4462 * OS network device settings (MTU size).
4464 static int ixgbe_sw_init(struct ixgbe_adapter
*adapter
)
4466 struct ixgbe_hw
*hw
= &adapter
->hw
;
4467 struct pci_dev
*pdev
= adapter
->pdev
;
4468 unsigned int rss
, fdir
;
4470 #ifdef CONFIG_IXGBE_DCB
4472 struct tc_configuration
*tc
;
4475 /* PCI config space info */
4477 hw
->vendor_id
= pdev
->vendor
;
4478 hw
->device_id
= pdev
->device
;
4479 hw
->revision_id
= pdev
->revision
;
4480 hw
->subsystem_vendor_id
= pdev
->subsystem_vendor
;
4481 hw
->subsystem_device_id
= pdev
->subsystem_device
;
4483 /* Set common capability flags and settings */
4484 rss
= min_t(int, IXGBE_MAX_RSS_INDICES
, num_online_cpus());
4485 adapter
->ring_feature
[RING_F_RSS
].limit
= rss
;
4486 adapter
->flags2
|= IXGBE_FLAG2_RSC_CAPABLE
;
4487 adapter
->flags2
|= IXGBE_FLAG2_RSC_ENABLED
;
4488 adapter
->max_q_vectors
= MAX_Q_VECTORS_82599
;
4489 adapter
->atr_sample_rate
= 20;
4490 fdir
= min_t(int, IXGBE_MAX_FDIR_INDICES
, num_online_cpus());
4491 adapter
->ring_feature
[RING_F_FDIR
].limit
= fdir
;
4492 adapter
->fdir_pballoc
= IXGBE_FDIR_PBALLOC_64K
;
4493 #ifdef CONFIG_IXGBE_DCA
4494 adapter
->flags
|= IXGBE_FLAG_DCA_CAPABLE
;
4497 adapter
->flags
|= IXGBE_FLAG_FCOE_CAPABLE
;
4498 adapter
->flags
&= ~IXGBE_FLAG_FCOE_ENABLED
;
4499 #ifdef CONFIG_IXGBE_DCB
4500 /* Default traffic class to use for FCoE */
4501 adapter
->fcoe
.up
= IXGBE_FCOE_DEFTC
;
4502 #endif /* CONFIG_IXGBE_DCB */
4503 #endif /* IXGBE_FCOE */
4505 /* Set MAC specific capability flags and exceptions */
4506 switch (hw
->mac
.type
) {
4507 case ixgbe_mac_82598EB
:
4508 adapter
->flags2
&= ~IXGBE_FLAG2_RSC_CAPABLE
;
4509 adapter
->flags2
&= ~IXGBE_FLAG2_RSC_ENABLED
;
4511 if (hw
->device_id
== IXGBE_DEV_ID_82598AT
)
4512 adapter
->flags
|= IXGBE_FLAG_FAN_FAIL_CAPABLE
;
4514 adapter
->max_q_vectors
= MAX_Q_VECTORS_82598
;
4515 adapter
->ring_feature
[RING_F_FDIR
].limit
= 0;
4516 adapter
->atr_sample_rate
= 0;
4517 adapter
->fdir_pballoc
= 0;
4519 adapter
->flags
&= ~IXGBE_FLAG_FCOE_CAPABLE
;
4520 adapter
->flags
&= ~IXGBE_FLAG_FCOE_ENABLED
;
4521 #ifdef CONFIG_IXGBE_DCB
4522 adapter
->fcoe
.up
= 0;
4523 #endif /* IXGBE_DCB */
4524 #endif /* IXGBE_FCOE */
4526 case ixgbe_mac_82599EB
:
4527 if (hw
->device_id
== IXGBE_DEV_ID_82599_T3_LOM
)
4528 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
;
4530 case ixgbe_mac_X540
:
4531 fwsm
= IXGBE_READ_REG(hw
, IXGBE_FWSM
);
4532 if (fwsm
& IXGBE_FWSM_TS_ENABLED
)
4533 adapter
->flags2
|= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE
;
4540 /* FCoE support exists, always init the FCoE lock */
4541 spin_lock_init(&adapter
->fcoe
.lock
);
4544 /* n-tuple support exists, always init our spinlock */
4545 spin_lock_init(&adapter
->fdir_perfect_lock
);
4547 #ifdef CONFIG_IXGBE_DCB
4548 switch (hw
->mac
.type
) {
4549 case ixgbe_mac_X540
:
4550 adapter
->dcb_cfg
.num_tcs
.pg_tcs
= X540_TRAFFIC_CLASS
;
4551 adapter
->dcb_cfg
.num_tcs
.pfc_tcs
= X540_TRAFFIC_CLASS
;
4554 adapter
->dcb_cfg
.num_tcs
.pg_tcs
= MAX_TRAFFIC_CLASS
;
4555 adapter
->dcb_cfg
.num_tcs
.pfc_tcs
= MAX_TRAFFIC_CLASS
;
4559 /* Configure DCB traffic classes */
4560 for (j
= 0; j
< MAX_TRAFFIC_CLASS
; j
++) {
4561 tc
= &adapter
->dcb_cfg
.tc_config
[j
];
4562 tc
->path
[DCB_TX_CONFIG
].bwg_id
= 0;
4563 tc
->path
[DCB_TX_CONFIG
].bwg_percent
= 12 + (j
& 1);
4564 tc
->path
[DCB_RX_CONFIG
].bwg_id
= 0;
4565 tc
->path
[DCB_RX_CONFIG
].bwg_percent
= 12 + (j
& 1);
4566 tc
->dcb_pfc
= pfc_disabled
;
4569 /* Initialize default user to priority mapping, UPx->TC0 */
4570 tc
= &adapter
->dcb_cfg
.tc_config
[0];
4571 tc
->path
[DCB_TX_CONFIG
].up_to_tc_bitmap
= 0xFF;
4572 tc
->path
[DCB_RX_CONFIG
].up_to_tc_bitmap
= 0xFF;
4574 adapter
->dcb_cfg
.bw_percentage
[DCB_TX_CONFIG
][0] = 100;
4575 adapter
->dcb_cfg
.bw_percentage
[DCB_RX_CONFIG
][0] = 100;
4576 adapter
->dcb_cfg
.pfc_mode_enable
= false;
4577 adapter
->dcb_set_bitmap
= 0x00;
4578 adapter
->dcbx_cap
= DCB_CAP_DCBX_HOST
| DCB_CAP_DCBX_VER_CEE
;
4579 memcpy(&adapter
->temp_dcb_cfg
, &adapter
->dcb_cfg
,
4580 sizeof(adapter
->temp_dcb_cfg
));
4584 /* default flow control settings */
4585 hw
->fc
.requested_mode
= ixgbe_fc_full
;
4586 hw
->fc
.current_mode
= ixgbe_fc_full
; /* init for ethtool output */
4587 ixgbe_pbthresh_setup(adapter
);
4588 hw
->fc
.pause_time
= IXGBE_DEFAULT_FCPAUSE
;
4589 hw
->fc
.send_xon
= true;
4590 hw
->fc
.disable_fc_autoneg
=
4591 (ixgbe_device_supports_autoneg_fc(hw
) == 0) ? false : true;
4593 #ifdef CONFIG_PCI_IOV
4594 /* assign number of SR-IOV VFs */
4595 if (hw
->mac
.type
!= ixgbe_mac_82598EB
)
4596 adapter
->num_vfs
= (max_vfs
> 63) ? 0 : max_vfs
;
4599 /* enable itr by default in dynamic mode */
4600 adapter
->rx_itr_setting
= 1;
4601 adapter
->tx_itr_setting
= 1;
4603 /* set default ring sizes */
4604 adapter
->tx_ring_count
= IXGBE_DEFAULT_TXD
;
4605 adapter
->rx_ring_count
= IXGBE_DEFAULT_RXD
;
4607 /* set default work limits */
4608 adapter
->tx_work_limit
= IXGBE_DEFAULT_TX_WORK
;
4610 /* initialize eeprom parameters */
4611 if (ixgbe_init_eeprom_params_generic(hw
)) {
4612 e_dev_err("EEPROM initialization failed\n");
4616 set_bit(__IXGBE_DOWN
, &adapter
->state
);
4622 * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors)
4623 * @tx_ring: tx descriptor ring (for a specific queue) to setup
4625 * Return 0 on success, negative on failure
4627 int ixgbe_setup_tx_resources(struct ixgbe_ring
*tx_ring
)
4629 struct device
*dev
= tx_ring
->dev
;
4630 int orig_node
= dev_to_node(dev
);
4634 size
= sizeof(struct ixgbe_tx_buffer
) * tx_ring
->count
;
4636 if (tx_ring
->q_vector
)
4637 numa_node
= tx_ring
->q_vector
->numa_node
;
4639 tx_ring
->tx_buffer_info
= vzalloc_node(size
, numa_node
);
4640 if (!tx_ring
->tx_buffer_info
)
4641 tx_ring
->tx_buffer_info
= vzalloc(size
);
4642 if (!tx_ring
->tx_buffer_info
)
4645 /* round up to nearest 4K */
4646 tx_ring
->size
= tx_ring
->count
* sizeof(union ixgbe_adv_tx_desc
);
4647 tx_ring
->size
= ALIGN(tx_ring
->size
, 4096);
4649 set_dev_node(dev
, numa_node
);
4650 tx_ring
->desc
= dma_alloc_coherent(dev
,
4654 set_dev_node(dev
, orig_node
);
4656 tx_ring
->desc
= dma_alloc_coherent(dev
, tx_ring
->size
,
4657 &tx_ring
->dma
, GFP_KERNEL
);
4661 tx_ring
->next_to_use
= 0;
4662 tx_ring
->next_to_clean
= 0;
4666 vfree(tx_ring
->tx_buffer_info
);
4667 tx_ring
->tx_buffer_info
= NULL
;
4668 dev_err(dev
, "Unable to allocate memory for the Tx descriptor ring\n");
4673 * ixgbe_setup_all_tx_resources - allocate all queues Tx resources
4674 * @adapter: board private structure
4676 * If this function returns with an error, then it's possible one or
4677 * more of the rings is populated (while the rest are not). It is the
4678 * callers duty to clean those orphaned rings.
4680 * Return 0 on success, negative on failure
4682 static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter
*adapter
)
4686 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
4687 err
= ixgbe_setup_tx_resources(adapter
->tx_ring
[i
]);
4691 e_err(probe
, "Allocation for Tx Queue %u failed\n", i
);
4697 /* rewind the index freeing the rings as we go */
4699 ixgbe_free_tx_resources(adapter
->tx_ring
[i
]);
4704 * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors)
4705 * @rx_ring: rx descriptor ring (for a specific queue) to setup
4707 * Returns 0 on success, negative on failure
4709 int ixgbe_setup_rx_resources(struct ixgbe_ring
*rx_ring
)
4711 struct device
*dev
= rx_ring
->dev
;
4712 int orig_node
= dev_to_node(dev
);
4716 size
= sizeof(struct ixgbe_rx_buffer
) * rx_ring
->count
;
4718 if (rx_ring
->q_vector
)
4719 numa_node
= rx_ring
->q_vector
->numa_node
;
4721 rx_ring
->rx_buffer_info
= vzalloc_node(size
, numa_node
);
4722 if (!rx_ring
->rx_buffer_info
)
4723 rx_ring
->rx_buffer_info
= vzalloc(size
);
4724 if (!rx_ring
->rx_buffer_info
)
4727 /* Round up to nearest 4K */
4728 rx_ring
->size
= rx_ring
->count
* sizeof(union ixgbe_adv_rx_desc
);
4729 rx_ring
->size
= ALIGN(rx_ring
->size
, 4096);
4731 set_dev_node(dev
, numa_node
);
4732 rx_ring
->desc
= dma_alloc_coherent(dev
,
4736 set_dev_node(dev
, orig_node
);
4738 rx_ring
->desc
= dma_alloc_coherent(dev
, rx_ring
->size
,
4739 &rx_ring
->dma
, GFP_KERNEL
);
4743 rx_ring
->next_to_clean
= 0;
4744 rx_ring
->next_to_use
= 0;
4748 vfree(rx_ring
->rx_buffer_info
);
4749 rx_ring
->rx_buffer_info
= NULL
;
4750 dev_err(dev
, "Unable to allocate memory for the Rx descriptor ring\n");
4755 * ixgbe_setup_all_rx_resources - allocate all queues Rx resources
4756 * @adapter: board private structure
4758 * If this function returns with an error, then it's possible one or
4759 * more of the rings is populated (while the rest are not). It is the
4760 * callers duty to clean those orphaned rings.
4762 * Return 0 on success, negative on failure
4764 static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter
*adapter
)
4768 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
4769 err
= ixgbe_setup_rx_resources(adapter
->rx_ring
[i
]);
4773 e_err(probe
, "Allocation for Rx Queue %u failed\n", i
);
4778 err
= ixgbe_setup_fcoe_ddp_resources(adapter
);
4783 /* rewind the index freeing the rings as we go */
4785 ixgbe_free_rx_resources(adapter
->rx_ring
[i
]);
4790 * ixgbe_free_tx_resources - Free Tx Resources per Queue
4791 * @tx_ring: Tx descriptor ring for a specific queue
4793 * Free all transmit software resources
4795 void ixgbe_free_tx_resources(struct ixgbe_ring
*tx_ring
)
4797 ixgbe_clean_tx_ring(tx_ring
);
4799 vfree(tx_ring
->tx_buffer_info
);
4800 tx_ring
->tx_buffer_info
= NULL
;
4802 /* if not set, then don't free */
4806 dma_free_coherent(tx_ring
->dev
, tx_ring
->size
,
4807 tx_ring
->desc
, tx_ring
->dma
);
4809 tx_ring
->desc
= NULL
;
4813 * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues
4814 * @adapter: board private structure
4816 * Free all transmit software resources
4818 static void ixgbe_free_all_tx_resources(struct ixgbe_adapter
*adapter
)
4822 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
4823 if (adapter
->tx_ring
[i
]->desc
)
4824 ixgbe_free_tx_resources(adapter
->tx_ring
[i
]);
4828 * ixgbe_free_rx_resources - Free Rx Resources
4829 * @rx_ring: ring to clean the resources from
4831 * Free all receive software resources
4833 void ixgbe_free_rx_resources(struct ixgbe_ring
*rx_ring
)
4835 ixgbe_clean_rx_ring(rx_ring
);
4837 vfree(rx_ring
->rx_buffer_info
);
4838 rx_ring
->rx_buffer_info
= NULL
;
4840 /* if not set, then don't free */
4844 dma_free_coherent(rx_ring
->dev
, rx_ring
->size
,
4845 rx_ring
->desc
, rx_ring
->dma
);
4847 rx_ring
->desc
= NULL
;
4851 * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues
4852 * @adapter: board private structure
4854 * Free all receive software resources
4856 static void ixgbe_free_all_rx_resources(struct ixgbe_adapter
*adapter
)
4861 ixgbe_free_fcoe_ddp_resources(adapter
);
4864 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
4865 if (adapter
->rx_ring
[i
]->desc
)
4866 ixgbe_free_rx_resources(adapter
->rx_ring
[i
]);
4870 * ixgbe_change_mtu - Change the Maximum Transfer Unit
4871 * @netdev: network interface device structure
4872 * @new_mtu: new value for maximum frame size
4874 * Returns 0 on success, negative on failure
4876 static int ixgbe_change_mtu(struct net_device
*netdev
, int new_mtu
)
4878 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4879 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
;
4881 /* MTU < 68 is an error and causes problems on some kernels */
4882 if ((new_mtu
< 68) || (max_frame
> IXGBE_MAX_JUMBO_FRAME_SIZE
))
4886 * For 82599EB we cannot allow legacy VFs to enable their receive
4887 * paths when MTU greater than 1500 is configured. So display a
4888 * warning that legacy VFs will be disabled.
4890 if ((adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) &&
4891 (adapter
->hw
.mac
.type
== ixgbe_mac_82599EB
) &&
4892 (max_frame
> (ETH_FRAME_LEN
+ ETH_FCS_LEN
)))
4893 e_warn(probe
, "Setting MTU > 1500 will disable legacy VFs\n");
4895 e_info(probe
, "changing MTU from %d to %d\n", netdev
->mtu
, new_mtu
);
4897 /* must set new MTU before calling down or up */
4898 netdev
->mtu
= new_mtu
;
4900 if (netif_running(netdev
))
4901 ixgbe_reinit_locked(adapter
);
4907 * ixgbe_open - Called when a network interface is made active
4908 * @netdev: network interface device structure
4910 * Returns 0 on success, negative value on failure
4912 * The open entry point is called when a network interface is made
4913 * active by the system (IFF_UP). At this point all resources needed
4914 * for transmit and receive operations are allocated, the interrupt
4915 * handler is registered with the OS, the watchdog timer is started,
4916 * and the stack is notified that the interface is ready.
4918 static int ixgbe_open(struct net_device
*netdev
)
4920 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4923 /* disallow open during test */
4924 if (test_bit(__IXGBE_TESTING
, &adapter
->state
))
4927 netif_carrier_off(netdev
);
4929 /* allocate transmit descriptors */
4930 err
= ixgbe_setup_all_tx_resources(adapter
);
4934 /* allocate receive descriptors */
4935 err
= ixgbe_setup_all_rx_resources(adapter
);
4939 ixgbe_configure(adapter
);
4941 err
= ixgbe_request_irq(adapter
);
4945 /* Notify the stack of the actual queue counts. */
4946 err
= netif_set_real_num_tx_queues(netdev
,
4947 adapter
->num_rx_pools
> 1 ? 1 :
4948 adapter
->num_tx_queues
);
4950 goto err_set_queues
;
4953 err
= netif_set_real_num_rx_queues(netdev
,
4954 adapter
->num_rx_pools
> 1 ? 1 :
4955 adapter
->num_rx_queues
);
4957 goto err_set_queues
;
4959 ixgbe_ptp_init(adapter
);
4961 ixgbe_up_complete(adapter
);
4966 ixgbe_free_irq(adapter
);
4968 ixgbe_free_all_rx_resources(adapter
);
4970 ixgbe_free_all_tx_resources(adapter
);
4972 ixgbe_reset(adapter
);
4978 * ixgbe_close - Disables a network interface
4979 * @netdev: network interface device structure
4981 * Returns 0, this is not allowed to fail
4983 * The close entry point is called when an interface is de-activated
4984 * by the OS. The hardware is still under the drivers control, but
4985 * needs to be disabled. A global MAC reset is issued to stop the
4986 * hardware, and all transmit and receive resources are freed.
4988 static int ixgbe_close(struct net_device
*netdev
)
4990 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
4992 ixgbe_ptp_stop(adapter
);
4994 ixgbe_down(adapter
);
4995 ixgbe_free_irq(adapter
);
4997 ixgbe_fdir_filter_exit(adapter
);
4999 ixgbe_free_all_tx_resources(adapter
);
5000 ixgbe_free_all_rx_resources(adapter
);
5002 ixgbe_release_hw_control(adapter
);
5008 static int ixgbe_resume(struct pci_dev
*pdev
)
5010 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
5011 struct net_device
*netdev
= adapter
->netdev
;
5014 pci_set_power_state(pdev
, PCI_D0
);
5015 pci_restore_state(pdev
);
5017 * pci_restore_state clears dev->state_saved so call
5018 * pci_save_state to restore it.
5020 pci_save_state(pdev
);
5022 err
= pci_enable_device_mem(pdev
);
5024 e_dev_err("Cannot enable PCI device from suspend\n");
5027 pci_set_master(pdev
);
5029 pci_wake_from_d3(pdev
, false);
5031 ixgbe_reset(adapter
);
5033 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_WUS
, ~0);
5036 err
= ixgbe_init_interrupt_scheme(adapter
);
5037 if (!err
&& netif_running(netdev
))
5038 err
= ixgbe_open(netdev
);
5045 netif_device_attach(netdev
);
5049 #endif /* CONFIG_PM */
5051 static int __ixgbe_shutdown(struct pci_dev
*pdev
, bool *enable_wake
)
5053 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
5054 struct net_device
*netdev
= adapter
->netdev
;
5055 struct ixgbe_hw
*hw
= &adapter
->hw
;
5057 u32 wufc
= adapter
->wol
;
5062 netif_device_detach(netdev
);
5064 if (netif_running(netdev
)) {
5066 ixgbe_down(adapter
);
5067 ixgbe_free_irq(adapter
);
5068 ixgbe_free_all_tx_resources(adapter
);
5069 ixgbe_free_all_rx_resources(adapter
);
5073 ixgbe_clear_interrupt_scheme(adapter
);
5076 retval
= pci_save_state(pdev
);
5082 ixgbe_set_rx_mode(netdev
);
5084 /* enable the optics for 82599 SFP+ fiber as we can WoL */
5085 if (hw
->mac
.ops
.enable_tx_laser
)
5086 hw
->mac
.ops
.enable_tx_laser(hw
);
5088 /* turn on all-multi mode if wake on multicast is enabled */
5089 if (wufc
& IXGBE_WUFC_MC
) {
5090 fctrl
= IXGBE_READ_REG(hw
, IXGBE_FCTRL
);
5091 fctrl
|= IXGBE_FCTRL_MPE
;
5092 IXGBE_WRITE_REG(hw
, IXGBE_FCTRL
, fctrl
);
5095 ctrl
= IXGBE_READ_REG(hw
, IXGBE_CTRL
);
5096 ctrl
|= IXGBE_CTRL_GIO_DIS
;
5097 IXGBE_WRITE_REG(hw
, IXGBE_CTRL
, ctrl
);
5099 IXGBE_WRITE_REG(hw
, IXGBE_WUFC
, wufc
);
5101 IXGBE_WRITE_REG(hw
, IXGBE_WUC
, 0);
5102 IXGBE_WRITE_REG(hw
, IXGBE_WUFC
, 0);
5105 switch (hw
->mac
.type
) {
5106 case ixgbe_mac_82598EB
:
5107 pci_wake_from_d3(pdev
, false);
5109 case ixgbe_mac_82599EB
:
5110 case ixgbe_mac_X540
:
5111 pci_wake_from_d3(pdev
, !!wufc
);
5117 *enable_wake
= !!wufc
;
5119 ixgbe_release_hw_control(adapter
);
5121 pci_disable_device(pdev
);
5127 static int ixgbe_suspend(struct pci_dev
*pdev
, pm_message_t state
)
5132 retval
= __ixgbe_shutdown(pdev
, &wake
);
5137 pci_prepare_to_sleep(pdev
);
5139 pci_wake_from_d3(pdev
, false);
5140 pci_set_power_state(pdev
, PCI_D3hot
);
5145 #endif /* CONFIG_PM */
5147 static void ixgbe_shutdown(struct pci_dev
*pdev
)
5151 __ixgbe_shutdown(pdev
, &wake
);
5153 if (system_state
== SYSTEM_POWER_OFF
) {
5154 pci_wake_from_d3(pdev
, wake
);
5155 pci_set_power_state(pdev
, PCI_D3hot
);
5160 * ixgbe_update_stats - Update the board statistics counters.
5161 * @adapter: board private structure
5163 void ixgbe_update_stats(struct ixgbe_adapter
*adapter
)
5165 struct net_device
*netdev
= adapter
->netdev
;
5166 struct ixgbe_hw
*hw
= &adapter
->hw
;
5167 struct ixgbe_hw_stats
*hwstats
= &adapter
->stats
;
5169 u32 i
, missed_rx
= 0, mpc
, bprc
, lxon
, lxoff
, xon_off_tot
;
5170 u64 non_eop_descs
= 0, restart_queue
= 0, tx_busy
= 0;
5171 u64 alloc_rx_page_failed
= 0, alloc_rx_buff_failed
= 0;
5172 u64 bytes
= 0, packets
= 0, hw_csum_rx_error
= 0;
5174 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
5175 test_bit(__IXGBE_RESETTING
, &adapter
->state
))
5178 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
) {
5181 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
5182 rsc_count
+= adapter
->rx_ring
[i
]->rx_stats
.rsc_count
;
5183 rsc_flush
+= adapter
->rx_ring
[i
]->rx_stats
.rsc_flush
;
5185 adapter
->rsc_total_count
= rsc_count
;
5186 adapter
->rsc_total_flush
= rsc_flush
;
5189 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
5190 struct ixgbe_ring
*rx_ring
= adapter
->rx_ring
[i
];
5191 non_eop_descs
+= rx_ring
->rx_stats
.non_eop_descs
;
5192 alloc_rx_page_failed
+= rx_ring
->rx_stats
.alloc_rx_page_failed
;
5193 alloc_rx_buff_failed
+= rx_ring
->rx_stats
.alloc_rx_buff_failed
;
5194 hw_csum_rx_error
+= rx_ring
->rx_stats
.csum_err
;
5195 bytes
+= rx_ring
->stats
.bytes
;
5196 packets
+= rx_ring
->stats
.packets
;
5198 adapter
->non_eop_descs
= non_eop_descs
;
5199 adapter
->alloc_rx_page_failed
= alloc_rx_page_failed
;
5200 adapter
->alloc_rx_buff_failed
= alloc_rx_buff_failed
;
5201 adapter
->hw_csum_rx_error
= hw_csum_rx_error
;
5202 netdev
->stats
.rx_bytes
= bytes
;
5203 netdev
->stats
.rx_packets
= packets
;
5207 /* gather some stats to the adapter struct that are per queue */
5208 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
5209 struct ixgbe_ring
*tx_ring
= adapter
->tx_ring
[i
];
5210 restart_queue
+= tx_ring
->tx_stats
.restart_queue
;
5211 tx_busy
+= tx_ring
->tx_stats
.tx_busy
;
5212 bytes
+= tx_ring
->stats
.bytes
;
5213 packets
+= tx_ring
->stats
.packets
;
5215 adapter
->restart_queue
= restart_queue
;
5216 adapter
->tx_busy
= tx_busy
;
5217 netdev
->stats
.tx_bytes
= bytes
;
5218 netdev
->stats
.tx_packets
= packets
;
5220 hwstats
->crcerrs
+= IXGBE_READ_REG(hw
, IXGBE_CRCERRS
);
5222 /* 8 register reads */
5223 for (i
= 0; i
< 8; i
++) {
5224 /* for packet buffers not used, the register should read 0 */
5225 mpc
= IXGBE_READ_REG(hw
, IXGBE_MPC(i
));
5227 hwstats
->mpc
[i
] += mpc
;
5228 total_mpc
+= hwstats
->mpc
[i
];
5229 hwstats
->pxontxc
[i
] += IXGBE_READ_REG(hw
, IXGBE_PXONTXC(i
));
5230 hwstats
->pxofftxc
[i
] += IXGBE_READ_REG(hw
, IXGBE_PXOFFTXC(i
));
5231 switch (hw
->mac
.type
) {
5232 case ixgbe_mac_82598EB
:
5233 hwstats
->rnbc
[i
] += IXGBE_READ_REG(hw
, IXGBE_RNBC(i
));
5234 hwstats
->qbtc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBTC(i
));
5235 hwstats
->qbrc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBRC(i
));
5236 hwstats
->pxonrxc
[i
] +=
5237 IXGBE_READ_REG(hw
, IXGBE_PXONRXC(i
));
5239 case ixgbe_mac_82599EB
:
5240 case ixgbe_mac_X540
:
5241 hwstats
->pxonrxc
[i
] +=
5242 IXGBE_READ_REG(hw
, IXGBE_PXONRXCNT(i
));
5249 /*16 register reads */
5250 for (i
= 0; i
< 16; i
++) {
5251 hwstats
->qptc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QPTC(i
));
5252 hwstats
->qprc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QPRC(i
));
5253 if ((hw
->mac
.type
== ixgbe_mac_82599EB
) ||
5254 (hw
->mac
.type
== ixgbe_mac_X540
)) {
5255 hwstats
->qbtc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBTC_L(i
));
5256 IXGBE_READ_REG(hw
, IXGBE_QBTC_H(i
)); /* to clear */
5257 hwstats
->qbrc
[i
] += IXGBE_READ_REG(hw
, IXGBE_QBRC_L(i
));
5258 IXGBE_READ_REG(hw
, IXGBE_QBRC_H(i
)); /* to clear */
5262 hwstats
->gprc
+= IXGBE_READ_REG(hw
, IXGBE_GPRC
);
5263 /* work around hardware counting issue */
5264 hwstats
->gprc
-= missed_rx
;
5266 ixgbe_update_xoff_received(adapter
);
5268 /* 82598 hardware only has a 32 bit counter in the high register */
5269 switch (hw
->mac
.type
) {
5270 case ixgbe_mac_82598EB
:
5271 hwstats
->lxonrxc
+= IXGBE_READ_REG(hw
, IXGBE_LXONRXC
);
5272 hwstats
->gorc
+= IXGBE_READ_REG(hw
, IXGBE_GORCH
);
5273 hwstats
->gotc
+= IXGBE_READ_REG(hw
, IXGBE_GOTCH
);
5274 hwstats
->tor
+= IXGBE_READ_REG(hw
, IXGBE_TORH
);
5276 case ixgbe_mac_X540
:
5277 /* OS2BMC stats are X540 only*/
5278 hwstats
->o2bgptc
+= IXGBE_READ_REG(hw
, IXGBE_O2BGPTC
);
5279 hwstats
->o2bspc
+= IXGBE_READ_REG(hw
, IXGBE_O2BSPC
);
5280 hwstats
->b2ospc
+= IXGBE_READ_REG(hw
, IXGBE_B2OSPC
);
5281 hwstats
->b2ogprc
+= IXGBE_READ_REG(hw
, IXGBE_B2OGPRC
);
5282 case ixgbe_mac_82599EB
:
5283 for (i
= 0; i
< 16; i
++)
5284 adapter
->hw_rx_no_dma_resources
+=
5285 IXGBE_READ_REG(hw
, IXGBE_QPRDC(i
));
5286 hwstats
->gorc
+= IXGBE_READ_REG(hw
, IXGBE_GORCL
);
5287 IXGBE_READ_REG(hw
, IXGBE_GORCH
); /* to clear */
5288 hwstats
->gotc
+= IXGBE_READ_REG(hw
, IXGBE_GOTCL
);
5289 IXGBE_READ_REG(hw
, IXGBE_GOTCH
); /* to clear */
5290 hwstats
->tor
+= IXGBE_READ_REG(hw
, IXGBE_TORL
);
5291 IXGBE_READ_REG(hw
, IXGBE_TORH
); /* to clear */
5292 hwstats
->lxonrxc
+= IXGBE_READ_REG(hw
, IXGBE_LXONRXCNT
);
5293 hwstats
->fdirmatch
+= IXGBE_READ_REG(hw
, IXGBE_FDIRMATCH
);
5294 hwstats
->fdirmiss
+= IXGBE_READ_REG(hw
, IXGBE_FDIRMISS
);
5296 hwstats
->fccrc
+= IXGBE_READ_REG(hw
, IXGBE_FCCRC
);
5297 hwstats
->fcoerpdc
+= IXGBE_READ_REG(hw
, IXGBE_FCOERPDC
);
5298 hwstats
->fcoeprc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEPRC
);
5299 hwstats
->fcoeptc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEPTC
);
5300 hwstats
->fcoedwrc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEDWRC
);
5301 hwstats
->fcoedwtc
+= IXGBE_READ_REG(hw
, IXGBE_FCOEDWTC
);
5302 /* Add up per cpu counters for total ddp aloc fail */
5303 if (adapter
->fcoe
.ddp_pool
) {
5304 struct ixgbe_fcoe
*fcoe
= &adapter
->fcoe
;
5305 struct ixgbe_fcoe_ddp_pool
*ddp_pool
;
5307 u64 noddp
= 0, noddp_ext_buff
= 0;
5308 for_each_possible_cpu(cpu
) {
5309 ddp_pool
= per_cpu_ptr(fcoe
->ddp_pool
, cpu
);
5310 noddp
+= ddp_pool
->noddp
;
5311 noddp_ext_buff
+= ddp_pool
->noddp_ext_buff
;
5313 hwstats
->fcoe_noddp
= noddp
;
5314 hwstats
->fcoe_noddp_ext_buff
= noddp_ext_buff
;
5316 #endif /* IXGBE_FCOE */
5321 bprc
= IXGBE_READ_REG(hw
, IXGBE_BPRC
);
5322 hwstats
->bprc
+= bprc
;
5323 hwstats
->mprc
+= IXGBE_READ_REG(hw
, IXGBE_MPRC
);
5324 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
5325 hwstats
->mprc
-= bprc
;
5326 hwstats
->roc
+= IXGBE_READ_REG(hw
, IXGBE_ROC
);
5327 hwstats
->prc64
+= IXGBE_READ_REG(hw
, IXGBE_PRC64
);
5328 hwstats
->prc127
+= IXGBE_READ_REG(hw
, IXGBE_PRC127
);
5329 hwstats
->prc255
+= IXGBE_READ_REG(hw
, IXGBE_PRC255
);
5330 hwstats
->prc511
+= IXGBE_READ_REG(hw
, IXGBE_PRC511
);
5331 hwstats
->prc1023
+= IXGBE_READ_REG(hw
, IXGBE_PRC1023
);
5332 hwstats
->prc1522
+= IXGBE_READ_REG(hw
, IXGBE_PRC1522
);
5333 hwstats
->rlec
+= IXGBE_READ_REG(hw
, IXGBE_RLEC
);
5334 lxon
= IXGBE_READ_REG(hw
, IXGBE_LXONTXC
);
5335 hwstats
->lxontxc
+= lxon
;
5336 lxoff
= IXGBE_READ_REG(hw
, IXGBE_LXOFFTXC
);
5337 hwstats
->lxofftxc
+= lxoff
;
5338 hwstats
->gptc
+= IXGBE_READ_REG(hw
, IXGBE_GPTC
);
5339 hwstats
->mptc
+= IXGBE_READ_REG(hw
, IXGBE_MPTC
);
5341 * 82598 errata - tx of flow control packets is included in tx counters
5343 xon_off_tot
= lxon
+ lxoff
;
5344 hwstats
->gptc
-= xon_off_tot
;
5345 hwstats
->mptc
-= xon_off_tot
;
5346 hwstats
->gotc
-= (xon_off_tot
* (ETH_ZLEN
+ ETH_FCS_LEN
));
5347 hwstats
->ruc
+= IXGBE_READ_REG(hw
, IXGBE_RUC
);
5348 hwstats
->rfc
+= IXGBE_READ_REG(hw
, IXGBE_RFC
);
5349 hwstats
->rjc
+= IXGBE_READ_REG(hw
, IXGBE_RJC
);
5350 hwstats
->tpr
+= IXGBE_READ_REG(hw
, IXGBE_TPR
);
5351 hwstats
->ptc64
+= IXGBE_READ_REG(hw
, IXGBE_PTC64
);
5352 hwstats
->ptc64
-= xon_off_tot
;
5353 hwstats
->ptc127
+= IXGBE_READ_REG(hw
, IXGBE_PTC127
);
5354 hwstats
->ptc255
+= IXGBE_READ_REG(hw
, IXGBE_PTC255
);
5355 hwstats
->ptc511
+= IXGBE_READ_REG(hw
, IXGBE_PTC511
);
5356 hwstats
->ptc1023
+= IXGBE_READ_REG(hw
, IXGBE_PTC1023
);
5357 hwstats
->ptc1522
+= IXGBE_READ_REG(hw
, IXGBE_PTC1522
);
5358 hwstats
->bptc
+= IXGBE_READ_REG(hw
, IXGBE_BPTC
);
5360 /* Fill out the OS statistics structure */
5361 netdev
->stats
.multicast
= hwstats
->mprc
;
5364 netdev
->stats
.rx_errors
= hwstats
->crcerrs
+ hwstats
->rlec
;
5365 netdev
->stats
.rx_dropped
= 0;
5366 netdev
->stats
.rx_length_errors
= hwstats
->rlec
;
5367 netdev
->stats
.rx_crc_errors
= hwstats
->crcerrs
;
5368 netdev
->stats
.rx_missed_errors
= total_mpc
;
5372 * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table
5373 * @adapter: pointer to the device adapter structure
5375 static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter
*adapter
)
5377 struct ixgbe_hw
*hw
= &adapter
->hw
;
5380 if (!(adapter
->flags2
& IXGBE_FLAG2_FDIR_REQUIRES_REINIT
))
5383 adapter
->flags2
&= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT
;
5385 /* if interface is down do nothing */
5386 if (test_bit(__IXGBE_DOWN
, &adapter
->state
))
5389 /* do nothing if we are not using signature filters */
5390 if (!(adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
))
5393 adapter
->fdir_overflow
++;
5395 if (ixgbe_reinit_fdir_tables_82599(hw
) == 0) {
5396 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
5397 set_bit(__IXGBE_TX_FDIR_INIT_DONE
,
5398 &(adapter
->tx_ring
[i
]->state
));
5399 /* re-enable flow director interrupts */
5400 IXGBE_WRITE_REG(hw
, IXGBE_EIMS
, IXGBE_EIMS_FLOW_DIR
);
5402 e_err(probe
, "failed to finish FDIR re-initialization, "
5403 "ignored adding FDIR ATR filters\n");
5408 * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts
5409 * @adapter: pointer to the device adapter structure
5411 * This function serves two purposes. First it strobes the interrupt lines
5412 * in order to make certain interrupts are occurring. Secondly it sets the
5413 * bits needed to check for TX hangs. As a result we should immediately
5414 * determine if a hang has occurred.
5416 static void ixgbe_check_hang_subtask(struct ixgbe_adapter
*adapter
)
5418 struct ixgbe_hw
*hw
= &adapter
->hw
;
5422 /* If we're down or resetting, just bail */
5423 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
5424 test_bit(__IXGBE_RESETTING
, &adapter
->state
))
5427 /* Force detection of hung controller */
5428 if (netif_carrier_ok(adapter
->netdev
)) {
5429 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
5430 set_check_for_tx_hang(adapter
->tx_ring
[i
]);
5433 if (!(adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
)) {
5435 * for legacy and MSI interrupts don't set any bits
5436 * that are enabled for EIAM, because this operation
5437 * would set *both* EIMS and EICS for any bit in EIAM
5439 IXGBE_WRITE_REG(hw
, IXGBE_EICS
,
5440 (IXGBE_EICS_TCP_TIMER
| IXGBE_EICS_OTHER
));
5442 /* get one bit for every active tx/rx interrupt vector */
5443 for (i
= 0; i
< adapter
->num_q_vectors
; i
++) {
5444 struct ixgbe_q_vector
*qv
= adapter
->q_vector
[i
];
5445 if (qv
->rx
.ring
|| qv
->tx
.ring
)
5446 eics
|= ((u64
)1 << i
);
5450 /* Cause software interrupt to ensure rings are cleaned */
5451 ixgbe_irq_rearm_queues(adapter
, eics
);
5456 * ixgbe_watchdog_update_link - update the link status
5457 * @adapter: pointer to the device adapter structure
5458 * @link_speed: pointer to a u32 to store the link_speed
5460 static void ixgbe_watchdog_update_link(struct ixgbe_adapter
*adapter
)
5462 struct ixgbe_hw
*hw
= &adapter
->hw
;
5463 u32 link_speed
= adapter
->link_speed
;
5464 bool link_up
= adapter
->link_up
;
5465 bool pfc_en
= adapter
->dcb_cfg
.pfc_mode_enable
;
5467 if (!(adapter
->flags
& IXGBE_FLAG_NEED_LINK_UPDATE
))
5470 if (hw
->mac
.ops
.check_link
) {
5471 hw
->mac
.ops
.check_link(hw
, &link_speed
, &link_up
, false);
5473 /* always assume link is up, if no check link function */
5474 link_speed
= IXGBE_LINK_SPEED_10GB_FULL
;
5478 if (adapter
->ixgbe_ieee_pfc
)
5479 pfc_en
|= !!(adapter
->ixgbe_ieee_pfc
->pfc_en
);
5481 if (link_up
&& !((adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) && pfc_en
)) {
5482 hw
->mac
.ops
.fc_enable(hw
);
5483 ixgbe_set_rx_drop_en(adapter
);
5487 time_after(jiffies
, (adapter
->link_check_timeout
+
5488 IXGBE_TRY_LINK_TIMEOUT
))) {
5489 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_UPDATE
;
5490 IXGBE_WRITE_REG(hw
, IXGBE_EIMS
, IXGBE_EIMC_LSC
);
5491 IXGBE_WRITE_FLUSH(hw
);
5494 adapter
->link_up
= link_up
;
5495 adapter
->link_speed
= link_speed
;
5498 static void ixgbe_update_default_up(struct ixgbe_adapter
*adapter
)
5500 #ifdef CONFIG_IXGBE_DCB
5501 struct net_device
*netdev
= adapter
->netdev
;
5502 struct dcb_app app
= {
5503 .selector
= IEEE_8021QAZ_APP_SEL_ETHERTYPE
,
5508 if (adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_IEEE
)
5509 up
= dcb_ieee_getapp_mask(netdev
, &app
);
5511 adapter
->default_up
= (up
> 1) ? (ffs(up
) - 1) : 0;
5516 * ixgbe_watchdog_link_is_up - update netif_carrier status and
5517 * print link up message
5518 * @adapter: pointer to the device adapter structure
5520 static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter
*adapter
)
5522 struct net_device
*netdev
= adapter
->netdev
;
5523 struct ixgbe_hw
*hw
= &adapter
->hw
;
5524 u32 link_speed
= adapter
->link_speed
;
5525 bool flow_rx
, flow_tx
;
5527 /* only continue if link was previously down */
5528 if (netif_carrier_ok(netdev
))
5531 adapter
->flags2
&= ~IXGBE_FLAG2_SEARCH_FOR_SFP
;
5533 switch (hw
->mac
.type
) {
5534 case ixgbe_mac_82598EB
: {
5535 u32 frctl
= IXGBE_READ_REG(hw
, IXGBE_FCTRL
);
5536 u32 rmcs
= IXGBE_READ_REG(hw
, IXGBE_RMCS
);
5537 flow_rx
= !!(frctl
& IXGBE_FCTRL_RFCE
);
5538 flow_tx
= !!(rmcs
& IXGBE_RMCS_TFCE_802_3X
);
5541 case ixgbe_mac_X540
:
5542 case ixgbe_mac_82599EB
: {
5543 u32 mflcn
= IXGBE_READ_REG(hw
, IXGBE_MFLCN
);
5544 u32 fccfg
= IXGBE_READ_REG(hw
, IXGBE_FCCFG
);
5545 flow_rx
= !!(mflcn
& IXGBE_MFLCN_RFCE
);
5546 flow_tx
= !!(fccfg
& IXGBE_FCCFG_TFCE_802_3X
);
5555 adapter
->last_rx_ptp_check
= jiffies
;
5557 if (adapter
->flags2
& IXGBE_FLAG2_PTP_ENABLED
)
5558 ixgbe_ptp_start_cyclecounter(adapter
);
5560 e_info(drv
, "NIC Link is Up %s, Flow Control: %s\n",
5561 (link_speed
== IXGBE_LINK_SPEED_10GB_FULL
?
5563 (link_speed
== IXGBE_LINK_SPEED_1GB_FULL
?
5565 (link_speed
== IXGBE_LINK_SPEED_100_FULL
?
5568 ((flow_rx
&& flow_tx
) ? "RX/TX" :
5570 (flow_tx
? "TX" : "None"))));
5572 netif_carrier_on(netdev
);
5573 ixgbe_check_vf_rate_limit(adapter
);
5575 /* update the default user priority for VFs */
5576 ixgbe_update_default_up(adapter
);
5578 /* ping all the active vfs to let them know link has changed */
5579 ixgbe_ping_all_vfs(adapter
);
5583 * ixgbe_watchdog_link_is_down - update netif_carrier status and
5584 * print link down message
5585 * @adapter: pointer to the adapter structure
5587 static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter
*adapter
)
5589 struct net_device
*netdev
= adapter
->netdev
;
5590 struct ixgbe_hw
*hw
= &adapter
->hw
;
5592 adapter
->link_up
= false;
5593 adapter
->link_speed
= 0;
5595 /* only continue if link was up previously */
5596 if (!netif_carrier_ok(netdev
))
5599 /* poll for SFP+ cable when link is down */
5600 if (ixgbe_is_sfp(hw
) && hw
->mac
.type
== ixgbe_mac_82598EB
)
5601 adapter
->flags2
|= IXGBE_FLAG2_SEARCH_FOR_SFP
;
5603 if (adapter
->flags2
& IXGBE_FLAG2_PTP_ENABLED
)
5604 ixgbe_ptp_start_cyclecounter(adapter
);
5606 e_info(drv
, "NIC Link is Down\n");
5607 netif_carrier_off(netdev
);
5609 /* ping all the active vfs to let them know link has changed */
5610 ixgbe_ping_all_vfs(adapter
);
5614 * ixgbe_watchdog_flush_tx - flush queues on link down
5615 * @adapter: pointer to the device adapter structure
5617 static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter
*adapter
)
5620 int some_tx_pending
= 0;
5622 if (!netif_carrier_ok(adapter
->netdev
)) {
5623 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
5624 struct ixgbe_ring
*tx_ring
= adapter
->tx_ring
[i
];
5625 if (tx_ring
->next_to_use
!= tx_ring
->next_to_clean
) {
5626 some_tx_pending
= 1;
5631 if (some_tx_pending
) {
5632 /* We've lost link, so the controller stops DMA,
5633 * but we've got queued Tx work that's never going
5634 * to get done, so reset controller to flush Tx.
5635 * (Do the reset outside of interrupt context).
5637 e_warn(drv
, "initiating reset to clear Tx work after link loss\n");
5638 adapter
->flags2
|= IXGBE_FLAG2_RESET_REQUESTED
;
5643 static void ixgbe_spoof_check(struct ixgbe_adapter
*adapter
)
5647 /* Do not perform spoof check for 82598 or if not in IOV mode */
5648 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
||
5649 adapter
->num_vfs
== 0)
5652 ssvpc
= IXGBE_READ_REG(&adapter
->hw
, IXGBE_SSVPC
);
5655 * ssvpc register is cleared on read, if zero then no
5656 * spoofed packets in the last interval.
5661 e_warn(drv
, "%u Spoofed packets detected\n", ssvpc
);
5665 * ixgbe_watchdog_subtask - check and bring link up
5666 * @adapter: pointer to the device adapter structure
5668 static void ixgbe_watchdog_subtask(struct ixgbe_adapter
*adapter
)
5670 /* if interface is down do nothing */
5671 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
5672 test_bit(__IXGBE_RESETTING
, &adapter
->state
))
5675 ixgbe_watchdog_update_link(adapter
);
5677 if (adapter
->link_up
)
5678 ixgbe_watchdog_link_is_up(adapter
);
5680 ixgbe_watchdog_link_is_down(adapter
);
5682 ixgbe_spoof_check(adapter
);
5683 ixgbe_update_stats(adapter
);
5685 ixgbe_watchdog_flush_tx(adapter
);
5689 * ixgbe_sfp_detection_subtask - poll for SFP+ cable
5690 * @adapter: the ixgbe adapter structure
5692 static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter
*adapter
)
5694 struct ixgbe_hw
*hw
= &adapter
->hw
;
5697 /* not searching for SFP so there is nothing to do here */
5698 if (!(adapter
->flags2
& IXGBE_FLAG2_SEARCH_FOR_SFP
) &&
5699 !(adapter
->flags2
& IXGBE_FLAG2_SFP_NEEDS_RESET
))
5702 /* someone else is in init, wait until next service event */
5703 if (test_and_set_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
))
5706 err
= hw
->phy
.ops
.identify_sfp(hw
);
5707 if (err
== IXGBE_ERR_SFP_NOT_SUPPORTED
)
5710 if (err
== IXGBE_ERR_SFP_NOT_PRESENT
) {
5711 /* If no cable is present, then we need to reset
5712 * the next time we find a good cable. */
5713 adapter
->flags2
|= IXGBE_FLAG2_SFP_NEEDS_RESET
;
5720 /* exit if reset not needed */
5721 if (!(adapter
->flags2
& IXGBE_FLAG2_SFP_NEEDS_RESET
))
5724 adapter
->flags2
&= ~IXGBE_FLAG2_SFP_NEEDS_RESET
;
5727 * A module may be identified correctly, but the EEPROM may not have
5728 * support for that module. setup_sfp() will fail in that case, so
5729 * we should not allow that module to load.
5731 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
5732 err
= hw
->phy
.ops
.reset(hw
);
5734 err
= hw
->mac
.ops
.setup_sfp(hw
);
5736 if (err
== IXGBE_ERR_SFP_NOT_SUPPORTED
)
5739 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_CONFIG
;
5740 e_info(probe
, "detected SFP+: %d\n", hw
->phy
.sfp_type
);
5743 clear_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
);
5745 if ((err
== IXGBE_ERR_SFP_NOT_SUPPORTED
) &&
5746 (adapter
->netdev
->reg_state
== NETREG_REGISTERED
)) {
5747 e_dev_err("failed to initialize because an unsupported "
5748 "SFP+ module type was detected.\n");
5749 e_dev_err("Reload the driver after installing a "
5750 "supported module.\n");
5751 unregister_netdev(adapter
->netdev
);
5756 * ixgbe_sfp_link_config_subtask - set up link SFP after module install
5757 * @adapter: the ixgbe adapter structure
5759 static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter
*adapter
)
5761 struct ixgbe_hw
*hw
= &adapter
->hw
;
5763 bool autoneg
= false;
5765 if (!(adapter
->flags
& IXGBE_FLAG_NEED_LINK_CONFIG
))
5768 /* someone else is in init, wait until next service event */
5769 if (test_and_set_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
))
5772 adapter
->flags
&= ~IXGBE_FLAG_NEED_LINK_CONFIG
;
5774 speed
= hw
->phy
.autoneg_advertised
;
5775 if ((!speed
) && (hw
->mac
.ops
.get_link_capabilities
))
5776 hw
->mac
.ops
.get_link_capabilities(hw
, &speed
, &autoneg
);
5777 if (hw
->mac
.ops
.setup_link
)
5778 hw
->mac
.ops
.setup_link(hw
, speed
, true);
5780 adapter
->flags
|= IXGBE_FLAG_NEED_LINK_UPDATE
;
5781 adapter
->link_check_timeout
= jiffies
;
5782 clear_bit(__IXGBE_IN_SFP_INIT
, &adapter
->state
);
5785 #ifdef CONFIG_PCI_IOV
5786 static void ixgbe_check_for_bad_vf(struct ixgbe_adapter
*adapter
)
5789 struct ixgbe_hw
*hw
= &adapter
->hw
;
5790 struct net_device
*netdev
= adapter
->netdev
;
5794 gpc
= IXGBE_READ_REG(hw
, IXGBE_TXDGPC
);
5795 if (gpc
) /* If incrementing then no need for the check below */
5798 * Check to see if a bad DMA write target from an errant or
5799 * malicious VF has caused a PCIe error. If so then we can
5800 * issue a VFLR to the offending VF(s) and then resume without
5801 * requesting a full slot reset.
5804 for (vf
= 0; vf
< adapter
->num_vfs
; vf
++) {
5805 ciaa
= (vf
<< 16) | 0x80000000;
5806 /* 32 bit read so align, we really want status at offset 6 */
5807 ciaa
|= PCI_COMMAND
;
5808 IXGBE_WRITE_REG(hw
, IXGBE_CIAA_82599
, ciaa
);
5809 ciad
= IXGBE_READ_REG(hw
, IXGBE_CIAD_82599
);
5811 /* disable debug mode asap after reading data */
5812 IXGBE_WRITE_REG(hw
, IXGBE_CIAA_82599
, ciaa
);
5813 /* Get the upper 16 bits which will be the PCI status reg */
5815 if (ciad
& PCI_STATUS_REC_MASTER_ABORT
) {
5816 netdev_err(netdev
, "VF %d Hung DMA\n", vf
);
5818 ciaa
= (vf
<< 16) | 0x80000000;
5820 IXGBE_WRITE_REG(hw
, IXGBE_CIAA_82599
, ciaa
);
5821 ciad
= 0x00008000; /* VFLR */
5822 IXGBE_WRITE_REG(hw
, IXGBE_CIAD_82599
, ciad
);
5824 IXGBE_WRITE_REG(hw
, IXGBE_CIAA_82599
, ciaa
);
5831 * ixgbe_service_timer - Timer Call-back
5832 * @data: pointer to adapter cast into an unsigned long
5834 static void ixgbe_service_timer(unsigned long data
)
5836 struct ixgbe_adapter
*adapter
= (struct ixgbe_adapter
*)data
;
5837 unsigned long next_event_offset
;
5840 /* poll faster when waiting for link */
5841 if (adapter
->flags
& IXGBE_FLAG_NEED_LINK_UPDATE
)
5842 next_event_offset
= HZ
/ 10;
5844 next_event_offset
= HZ
* 2;
5846 #ifdef CONFIG_PCI_IOV
5848 * don't bother with SR-IOV VF DMA hang check if there are
5849 * no VFs or the link is down
5851 if (!adapter
->num_vfs
||
5852 (adapter
->flags
& IXGBE_FLAG_NEED_LINK_UPDATE
))
5853 goto normal_timer_service
;
5855 /* If we have VFs allocated then we must check for DMA hangs */
5856 ixgbe_check_for_bad_vf(adapter
);
5857 next_event_offset
= HZ
/ 50;
5858 adapter
->timer_event_accumulator
++;
5860 if (adapter
->timer_event_accumulator
>= 100)
5861 adapter
->timer_event_accumulator
= 0;
5865 normal_timer_service
:
5867 /* Reset the timer */
5868 mod_timer(&adapter
->service_timer
, next_event_offset
+ jiffies
);
5871 ixgbe_service_event_schedule(adapter
);
5874 static void ixgbe_reset_subtask(struct ixgbe_adapter
*adapter
)
5876 if (!(adapter
->flags2
& IXGBE_FLAG2_RESET_REQUESTED
))
5879 adapter
->flags2
&= ~IXGBE_FLAG2_RESET_REQUESTED
;
5881 /* If we're already down or resetting, just bail */
5882 if (test_bit(__IXGBE_DOWN
, &adapter
->state
) ||
5883 test_bit(__IXGBE_RESETTING
, &adapter
->state
))
5886 ixgbe_dump(adapter
);
5887 netdev_err(adapter
->netdev
, "Reset adapter\n");
5888 adapter
->tx_timeout_count
++;
5890 ixgbe_reinit_locked(adapter
);
5894 * ixgbe_service_task - manages and runs subtasks
5895 * @work: pointer to work_struct containing our data
5897 static void ixgbe_service_task(struct work_struct
*work
)
5899 struct ixgbe_adapter
*adapter
= container_of(work
,
5900 struct ixgbe_adapter
,
5902 ixgbe_reset_subtask(adapter
);
5903 ixgbe_sfp_detection_subtask(adapter
);
5904 ixgbe_sfp_link_config_subtask(adapter
);
5905 ixgbe_check_overtemp_subtask(adapter
);
5906 ixgbe_watchdog_subtask(adapter
);
5907 ixgbe_fdir_reinit_subtask(adapter
);
5908 ixgbe_check_hang_subtask(adapter
);
5910 if (adapter
->flags2
& IXGBE_FLAG2_PTP_ENABLED
) {
5911 ixgbe_ptp_overflow_check(adapter
);
5912 ixgbe_ptp_rx_hang(adapter
);
5915 ixgbe_service_event_complete(adapter
);
5918 static int ixgbe_tso(struct ixgbe_ring
*tx_ring
,
5919 struct ixgbe_tx_buffer
*first
,
5922 struct sk_buff
*skb
= first
->skb
;
5923 u32 vlan_macip_lens
, type_tucmd
;
5924 u32 mss_l4len_idx
, l4len
;
5926 if (skb
->ip_summed
!= CHECKSUM_PARTIAL
)
5929 if (!skb_is_gso(skb
))
5932 if (skb_header_cloned(skb
)) {
5933 int err
= pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
5938 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
5939 type_tucmd
= IXGBE_ADVTXD_TUCMD_L4T_TCP
;
5941 if (first
->protocol
== __constant_htons(ETH_P_IP
)) {
5942 struct iphdr
*iph
= ip_hdr(skb
);
5945 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(iph
->saddr
,
5949 type_tucmd
|= IXGBE_ADVTXD_TUCMD_IPV4
;
5950 first
->tx_flags
|= IXGBE_TX_FLAGS_TSO
|
5951 IXGBE_TX_FLAGS_CSUM
|
5952 IXGBE_TX_FLAGS_IPV4
;
5953 } else if (skb_is_gso_v6(skb
)) {
5954 ipv6_hdr(skb
)->payload_len
= 0;
5955 tcp_hdr(skb
)->check
=
5956 ~csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
,
5957 &ipv6_hdr(skb
)->daddr
,
5959 first
->tx_flags
|= IXGBE_TX_FLAGS_TSO
|
5960 IXGBE_TX_FLAGS_CSUM
;
5963 /* compute header lengths */
5964 l4len
= tcp_hdrlen(skb
);
5965 *hdr_len
= skb_transport_offset(skb
) + l4len
;
5967 /* update gso size and bytecount with header size */
5968 first
->gso_segs
= skb_shinfo(skb
)->gso_segs
;
5969 first
->bytecount
+= (first
->gso_segs
- 1) * *hdr_len
;
5971 /* mss_l4len_id: use 0 as index for TSO */
5972 mss_l4len_idx
= l4len
<< IXGBE_ADVTXD_L4LEN_SHIFT
;
5973 mss_l4len_idx
|= skb_shinfo(skb
)->gso_size
<< IXGBE_ADVTXD_MSS_SHIFT
;
5975 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
5976 vlan_macip_lens
= skb_network_header_len(skb
);
5977 vlan_macip_lens
|= skb_network_offset(skb
) << IXGBE_ADVTXD_MACLEN_SHIFT
;
5978 vlan_macip_lens
|= first
->tx_flags
& IXGBE_TX_FLAGS_VLAN_MASK
;
5980 ixgbe_tx_ctxtdesc(tx_ring
, vlan_macip_lens
, 0, type_tucmd
,
5986 static void ixgbe_tx_csum(struct ixgbe_ring
*tx_ring
,
5987 struct ixgbe_tx_buffer
*first
)
5989 struct sk_buff
*skb
= first
->skb
;
5990 u32 vlan_macip_lens
= 0;
5991 u32 mss_l4len_idx
= 0;
5994 if (skb
->ip_summed
!= CHECKSUM_PARTIAL
) {
5995 if (!(first
->tx_flags
& IXGBE_TX_FLAGS_HW_VLAN
) &&
5996 !(first
->tx_flags
& IXGBE_TX_FLAGS_CC
))
6000 switch (first
->protocol
) {
6001 case __constant_htons(ETH_P_IP
):
6002 vlan_macip_lens
|= skb_network_header_len(skb
);
6003 type_tucmd
|= IXGBE_ADVTXD_TUCMD_IPV4
;
6004 l4_hdr
= ip_hdr(skb
)->protocol
;
6006 case __constant_htons(ETH_P_IPV6
):
6007 vlan_macip_lens
|= skb_network_header_len(skb
);
6008 l4_hdr
= ipv6_hdr(skb
)->nexthdr
;
6011 if (unlikely(net_ratelimit())) {
6012 dev_warn(tx_ring
->dev
,
6013 "partial checksum but proto=%x!\n",
6021 type_tucmd
|= IXGBE_ADVTXD_TUCMD_L4T_TCP
;
6022 mss_l4len_idx
= tcp_hdrlen(skb
) <<
6023 IXGBE_ADVTXD_L4LEN_SHIFT
;
6026 type_tucmd
|= IXGBE_ADVTXD_TUCMD_L4T_SCTP
;
6027 mss_l4len_idx
= sizeof(struct sctphdr
) <<
6028 IXGBE_ADVTXD_L4LEN_SHIFT
;
6031 mss_l4len_idx
= sizeof(struct udphdr
) <<
6032 IXGBE_ADVTXD_L4LEN_SHIFT
;
6035 if (unlikely(net_ratelimit())) {
6036 dev_warn(tx_ring
->dev
,
6037 "partial checksum but l4 proto=%x!\n",
6043 /* update TX checksum flag */
6044 first
->tx_flags
|= IXGBE_TX_FLAGS_CSUM
;
6047 /* vlan_macip_lens: MACLEN, VLAN tag */
6048 vlan_macip_lens
|= skb_network_offset(skb
) << IXGBE_ADVTXD_MACLEN_SHIFT
;
6049 vlan_macip_lens
|= first
->tx_flags
& IXGBE_TX_FLAGS_VLAN_MASK
;
6051 ixgbe_tx_ctxtdesc(tx_ring
, vlan_macip_lens
, 0,
6052 type_tucmd
, mss_l4len_idx
);
6055 #define IXGBE_SET_FLAG(_input, _flag, _result) \
6056 ((_flag <= _result) ? \
6057 ((u32)(_input & _flag) * (_result / _flag)) : \
6058 ((u32)(_input & _flag) / (_flag / _result)))
6060 static u32
ixgbe_tx_cmd_type(struct sk_buff
*skb
, u32 tx_flags
)
6062 /* set type for advanced descriptor with frame checksum insertion */
6063 u32 cmd_type
= IXGBE_ADVTXD_DTYP_DATA
|
6064 IXGBE_ADVTXD_DCMD_DEXT
|
6065 IXGBE_ADVTXD_DCMD_IFCS
;
6067 /* set HW vlan bit if vlan is present */
6068 cmd_type
|= IXGBE_SET_FLAG(tx_flags
, IXGBE_TX_FLAGS_HW_VLAN
,
6069 IXGBE_ADVTXD_DCMD_VLE
);
6071 /* set segmentation enable bits for TSO/FSO */
6072 cmd_type
|= IXGBE_SET_FLAG(tx_flags
, IXGBE_TX_FLAGS_TSO
,
6073 IXGBE_ADVTXD_DCMD_TSE
);
6075 /* set timestamp bit if present */
6076 cmd_type
|= IXGBE_SET_FLAG(tx_flags
, IXGBE_TX_FLAGS_TSTAMP
,
6077 IXGBE_ADVTXD_MAC_TSTAMP
);
6079 /* insert frame checksum */
6080 cmd_type
^= IXGBE_SET_FLAG(skb
->no_fcs
, 1, IXGBE_ADVTXD_DCMD_IFCS
);
6085 static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc
*tx_desc
,
6086 u32 tx_flags
, unsigned int paylen
)
6088 u32 olinfo_status
= paylen
<< IXGBE_ADVTXD_PAYLEN_SHIFT
;
6090 /* enable L4 checksum for TSO and TX checksum offload */
6091 olinfo_status
|= IXGBE_SET_FLAG(tx_flags
,
6092 IXGBE_TX_FLAGS_CSUM
,
6093 IXGBE_ADVTXD_POPTS_TXSM
);
6095 /* enble IPv4 checksum for TSO */
6096 olinfo_status
|= IXGBE_SET_FLAG(tx_flags
,
6097 IXGBE_TX_FLAGS_IPV4
,
6098 IXGBE_ADVTXD_POPTS_IXSM
);
6101 * Check Context must be set if Tx switch is enabled, which it
6102 * always is for case where virtual functions are running
6104 olinfo_status
|= IXGBE_SET_FLAG(tx_flags
,
6108 tx_desc
->read
.olinfo_status
= cpu_to_le32(olinfo_status
);
6111 #define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \
6114 static void ixgbe_tx_map(struct ixgbe_ring
*tx_ring
,
6115 struct ixgbe_tx_buffer
*first
,
6118 struct sk_buff
*skb
= first
->skb
;
6119 struct ixgbe_tx_buffer
*tx_buffer
;
6120 union ixgbe_adv_tx_desc
*tx_desc
;
6121 struct skb_frag_struct
*frag
;
6123 unsigned int data_len
, size
;
6124 u32 tx_flags
= first
->tx_flags
;
6125 u32 cmd_type
= ixgbe_tx_cmd_type(skb
, tx_flags
);
6126 u16 i
= tx_ring
->next_to_use
;
6128 tx_desc
= IXGBE_TX_DESC(tx_ring
, i
);
6130 ixgbe_tx_olinfo_status(tx_desc
, tx_flags
, skb
->len
- hdr_len
);
6132 size
= skb_headlen(skb
);
6133 data_len
= skb
->data_len
;
6136 if (tx_flags
& IXGBE_TX_FLAGS_FCOE
) {
6137 if (data_len
< sizeof(struct fcoe_crc_eof
)) {
6138 size
-= sizeof(struct fcoe_crc_eof
) - data_len
;
6141 data_len
-= sizeof(struct fcoe_crc_eof
);
6146 dma
= dma_map_single(tx_ring
->dev
, skb
->data
, size
, DMA_TO_DEVICE
);
6150 for (frag
= &skb_shinfo(skb
)->frags
[0];; frag
++) {
6151 if (dma_mapping_error(tx_ring
->dev
, dma
))
6154 /* record length, and DMA address */
6155 dma_unmap_len_set(tx_buffer
, len
, size
);
6156 dma_unmap_addr_set(tx_buffer
, dma
, dma
);
6158 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
6160 while (unlikely(size
> IXGBE_MAX_DATA_PER_TXD
)) {
6161 tx_desc
->read
.cmd_type_len
=
6162 cpu_to_le32(cmd_type
^ IXGBE_MAX_DATA_PER_TXD
);
6166 if (i
== tx_ring
->count
) {
6167 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
6170 tx_desc
->read
.olinfo_status
= 0;
6172 dma
+= IXGBE_MAX_DATA_PER_TXD
;
6173 size
-= IXGBE_MAX_DATA_PER_TXD
;
6175 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
6178 if (likely(!data_len
))
6181 tx_desc
->read
.cmd_type_len
= cpu_to_le32(cmd_type
^ size
);
6185 if (i
== tx_ring
->count
) {
6186 tx_desc
= IXGBE_TX_DESC(tx_ring
, 0);
6189 tx_desc
->read
.olinfo_status
= 0;
6192 size
= min_t(unsigned int, data_len
, skb_frag_size(frag
));
6194 size
= skb_frag_size(frag
);
6198 dma
= skb_frag_dma_map(tx_ring
->dev
, frag
, 0, size
,
6201 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
6204 /* write last descriptor with RS and EOP bits */
6205 cmd_type
|= size
| IXGBE_TXD_CMD
;
6206 tx_desc
->read
.cmd_type_len
= cpu_to_le32(cmd_type
);
6208 netdev_tx_sent_queue(txring_txq(tx_ring
), first
->bytecount
);
6210 /* set the timestamp */
6211 first
->time_stamp
= jiffies
;
6214 * Force memory writes to complete before letting h/w know there
6215 * are new descriptors to fetch. (Only applicable for weak-ordered
6216 * memory model archs, such as IA-64).
6218 * We also need this memory barrier to make certain all of the
6219 * status bits have been updated before next_to_watch is written.
6223 /* set next_to_watch value indicating a packet is present */
6224 first
->next_to_watch
= tx_desc
;
6227 if (i
== tx_ring
->count
)
6230 tx_ring
->next_to_use
= i
;
6232 /* notify HW of packet */
6233 writel(i
, tx_ring
->tail
);
6237 dev_err(tx_ring
->dev
, "TX DMA map failed\n");
6239 /* clear dma mappings for failed tx_buffer_info map */
6241 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
6242 ixgbe_unmap_and_free_tx_resource(tx_ring
, tx_buffer
);
6243 if (tx_buffer
== first
)
6250 tx_ring
->next_to_use
= i
;
6253 static void ixgbe_atr(struct ixgbe_ring
*ring
,
6254 struct ixgbe_tx_buffer
*first
)
6256 struct ixgbe_q_vector
*q_vector
= ring
->q_vector
;
6257 union ixgbe_atr_hash_dword input
= { .dword
= 0 };
6258 union ixgbe_atr_hash_dword common
= { .dword
= 0 };
6260 unsigned char *network
;
6262 struct ipv6hdr
*ipv6
;
6267 /* if ring doesn't have a interrupt vector, cannot perform ATR */
6271 /* do nothing if sampling is disabled */
6272 if (!ring
->atr_sample_rate
)
6277 /* snag network header to get L4 type and address */
6278 hdr
.network
= skb_network_header(first
->skb
);
6280 /* Currently only IPv4/IPv6 with TCP is supported */
6281 if ((first
->protocol
!= __constant_htons(ETH_P_IPV6
) ||
6282 hdr
.ipv6
->nexthdr
!= IPPROTO_TCP
) &&
6283 (first
->protocol
!= __constant_htons(ETH_P_IP
) ||
6284 hdr
.ipv4
->protocol
!= IPPROTO_TCP
))
6287 th
= tcp_hdr(first
->skb
);
6289 /* skip this packet since it is invalid or the socket is closing */
6293 /* sample on all syn packets or once every atr sample count */
6294 if (!th
->syn
&& (ring
->atr_count
< ring
->atr_sample_rate
))
6297 /* reset sample count */
6298 ring
->atr_count
= 0;
6300 vlan_id
= htons(first
->tx_flags
>> IXGBE_TX_FLAGS_VLAN_SHIFT
);
6303 * src and dst are inverted, think how the receiver sees them
6305 * The input is broken into two sections, a non-compressed section
6306 * containing vm_pool, vlan_id, and flow_type. The rest of the data
6307 * is XORed together and stored in the compressed dword.
6309 input
.formatted
.vlan_id
= vlan_id
;
6312 * since src port and flex bytes occupy the same word XOR them together
6313 * and write the value to source port portion of compressed dword
6315 if (first
->tx_flags
& (IXGBE_TX_FLAGS_SW_VLAN
| IXGBE_TX_FLAGS_HW_VLAN
))
6316 common
.port
.src
^= th
->dest
^ __constant_htons(ETH_P_8021Q
);
6318 common
.port
.src
^= th
->dest
^ first
->protocol
;
6319 common
.port
.dst
^= th
->source
;
6321 if (first
->protocol
== __constant_htons(ETH_P_IP
)) {
6322 input
.formatted
.flow_type
= IXGBE_ATR_FLOW_TYPE_TCPV4
;
6323 common
.ip
^= hdr
.ipv4
->saddr
^ hdr
.ipv4
->daddr
;
6325 input
.formatted
.flow_type
= IXGBE_ATR_FLOW_TYPE_TCPV6
;
6326 common
.ip
^= hdr
.ipv6
->saddr
.s6_addr32
[0] ^
6327 hdr
.ipv6
->saddr
.s6_addr32
[1] ^
6328 hdr
.ipv6
->saddr
.s6_addr32
[2] ^
6329 hdr
.ipv6
->saddr
.s6_addr32
[3] ^
6330 hdr
.ipv6
->daddr
.s6_addr32
[0] ^
6331 hdr
.ipv6
->daddr
.s6_addr32
[1] ^
6332 hdr
.ipv6
->daddr
.s6_addr32
[2] ^
6333 hdr
.ipv6
->daddr
.s6_addr32
[3];
6336 /* This assumes the Rx queue and Tx queue are bound to the same CPU */
6337 ixgbe_fdir_add_signature_filter_82599(&q_vector
->adapter
->hw
,
6338 input
, common
, ring
->queue_index
);
6341 static int __ixgbe_maybe_stop_tx(struct ixgbe_ring
*tx_ring
, u16 size
)
6343 netif_stop_subqueue(tx_ring
->netdev
, tx_ring
->queue_index
);
6344 /* Herbert's original patch had:
6345 * smp_mb__after_netif_stop_queue();
6346 * but since that doesn't exist yet, just open code it. */
6349 /* We need to check again in a case another CPU has just
6350 * made room available. */
6351 if (likely(ixgbe_desc_unused(tx_ring
) < size
))
6354 /* A reprieve! - use start_queue because it doesn't call schedule */
6355 netif_start_subqueue(tx_ring
->netdev
, tx_ring
->queue_index
);
6356 ++tx_ring
->tx_stats
.restart_queue
;
6360 static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring
*tx_ring
, u16 size
)
6362 if (likely(ixgbe_desc_unused(tx_ring
) >= size
))
6364 return __ixgbe_maybe_stop_tx(tx_ring
, size
);
6367 static u16
ixgbe_select_queue(struct net_device
*dev
, struct sk_buff
*skb
)
6369 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
6370 int txq
= skb_rx_queue_recorded(skb
) ? skb_get_rx_queue(skb
) :
6373 __be16 protocol
= vlan_get_protocol(skb
);
6375 if (((protocol
== htons(ETH_P_FCOE
)) ||
6376 (protocol
== htons(ETH_P_FIP
))) &&
6377 (adapter
->flags
& IXGBE_FLAG_FCOE_ENABLED
)) {
6378 struct ixgbe_ring_feature
*f
;
6380 f
= &adapter
->ring_feature
[RING_F_FCOE
];
6382 while (txq
>= f
->indices
)
6384 txq
+= adapter
->ring_feature
[RING_F_FCOE
].offset
;
6390 if (adapter
->flags
& IXGBE_FLAG_FDIR_HASH_CAPABLE
) {
6391 while (unlikely(txq
>= dev
->real_num_tx_queues
))
6392 txq
-= dev
->real_num_tx_queues
;
6396 return skb_tx_hash(dev
, skb
);
6399 netdev_tx_t
ixgbe_xmit_frame_ring(struct sk_buff
*skb
,
6400 struct ixgbe_adapter
*adapter
,
6401 struct ixgbe_ring
*tx_ring
)
6403 struct ixgbe_tx_buffer
*first
;
6406 #if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6409 u16 count
= TXD_USE_COUNT(skb_headlen(skb
));
6410 __be16 protocol
= skb
->protocol
;
6414 * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
6415 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
6416 * + 2 desc gap to keep tail from touching head,
6417 * + 1 desc for context descriptor,
6418 * otherwise try next time
6420 #if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
6421 for (f
= 0; f
< skb_shinfo(skb
)->nr_frags
; f
++)
6422 count
+= TXD_USE_COUNT(skb_shinfo(skb
)->frags
[f
].size
);
6424 count
+= skb_shinfo(skb
)->nr_frags
;
6426 if (ixgbe_maybe_stop_tx(tx_ring
, count
+ 3)) {
6427 tx_ring
->tx_stats
.tx_busy
++;
6428 return NETDEV_TX_BUSY
;
6431 /* record the location of the first descriptor for this packet */
6432 first
= &tx_ring
->tx_buffer_info
[tx_ring
->next_to_use
];
6434 first
->bytecount
= skb
->len
;
6435 first
->gso_segs
= 1;
6437 /* if we have a HW VLAN tag being added default to the HW one */
6438 if (vlan_tx_tag_present(skb
)) {
6439 tx_flags
|= vlan_tx_tag_get(skb
) << IXGBE_TX_FLAGS_VLAN_SHIFT
;
6440 tx_flags
|= IXGBE_TX_FLAGS_HW_VLAN
;
6441 /* else if it is a SW VLAN check the next protocol and store the tag */
6442 } else if (protocol
== __constant_htons(ETH_P_8021Q
)) {
6443 struct vlan_hdr
*vhdr
, _vhdr
;
6444 vhdr
= skb_header_pointer(skb
, ETH_HLEN
, sizeof(_vhdr
), &_vhdr
);
6448 protocol
= vhdr
->h_vlan_encapsulated_proto
;
6449 tx_flags
|= ntohs(vhdr
->h_vlan_TCI
) <<
6450 IXGBE_TX_FLAGS_VLAN_SHIFT
;
6451 tx_flags
|= IXGBE_TX_FLAGS_SW_VLAN
;
6454 skb_tx_timestamp(skb
);
6456 if (unlikely(skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
)) {
6457 skb_shinfo(skb
)->tx_flags
|= SKBTX_IN_PROGRESS
;
6458 tx_flags
|= IXGBE_TX_FLAGS_TSTAMP
;
6460 /* schedule check for Tx timestamp */
6461 adapter
->ptp_tx_skb
= skb_get(skb
);
6462 adapter
->ptp_tx_start
= jiffies
;
6463 schedule_work(&adapter
->ptp_tx_work
);
6466 #ifdef CONFIG_PCI_IOV
6468 * Use the l2switch_enable flag - would be false if the DMA
6469 * Tx switch had been disabled.
6471 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
6472 tx_flags
|= IXGBE_TX_FLAGS_CC
;
6475 /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */
6476 if ((adapter
->flags
& IXGBE_FLAG_DCB_ENABLED
) &&
6477 ((tx_flags
& (IXGBE_TX_FLAGS_HW_VLAN
| IXGBE_TX_FLAGS_SW_VLAN
)) ||
6478 (skb
->priority
!= TC_PRIO_CONTROL
))) {
6479 tx_flags
&= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK
;
6480 tx_flags
|= (skb
->priority
& 0x7) <<
6481 IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT
;
6482 if (tx_flags
& IXGBE_TX_FLAGS_SW_VLAN
) {
6483 struct vlan_ethhdr
*vhdr
;
6484 if (skb_header_cloned(skb
) &&
6485 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
6487 vhdr
= (struct vlan_ethhdr
*)skb
->data
;
6488 vhdr
->h_vlan_TCI
= htons(tx_flags
>>
6489 IXGBE_TX_FLAGS_VLAN_SHIFT
);
6491 tx_flags
|= IXGBE_TX_FLAGS_HW_VLAN
;
6495 /* record initial flags and protocol */
6496 first
->tx_flags
= tx_flags
;
6497 first
->protocol
= protocol
;
6500 /* setup tx offload for FCoE */
6501 if ((protocol
== __constant_htons(ETH_P_FCOE
)) &&
6502 (tx_ring
->netdev
->features
& (NETIF_F_FSO
| NETIF_F_FCOE_CRC
))) {
6503 tso
= ixgbe_fso(tx_ring
, first
, &hdr_len
);
6510 #endif /* IXGBE_FCOE */
6511 tso
= ixgbe_tso(tx_ring
, first
, &hdr_len
);
6515 ixgbe_tx_csum(tx_ring
, first
);
6517 /* add the ATR filter if ATR is on */
6518 if (test_bit(__IXGBE_TX_FDIR_INIT_DONE
, &tx_ring
->state
))
6519 ixgbe_atr(tx_ring
, first
);
6523 #endif /* IXGBE_FCOE */
6524 ixgbe_tx_map(tx_ring
, first
, hdr_len
);
6526 ixgbe_maybe_stop_tx(tx_ring
, DESC_NEEDED
);
6528 return NETDEV_TX_OK
;
6531 dev_kfree_skb_any(first
->skb
);
6534 return NETDEV_TX_OK
;
6537 static netdev_tx_t
ixgbe_xmit_frame(struct sk_buff
*skb
,
6538 struct net_device
*netdev
)
6540 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6541 struct ixgbe_ring
*tx_ring
;
6544 * The minimum packet size for olinfo paylen is 17 so pad the skb
6545 * in order to meet this minimum size requirement.
6547 if (unlikely(skb
->len
< 17)) {
6548 if (skb_pad(skb
, 17 - skb
->len
))
6549 return NETDEV_TX_OK
;
6551 skb_set_tail_pointer(skb
, 17);
6554 tx_ring
= adapter
->tx_ring
[skb
->queue_mapping
];
6555 return ixgbe_xmit_frame_ring(skb
, adapter
, tx_ring
);
6559 * ixgbe_set_mac - Change the Ethernet Address of the NIC
6560 * @netdev: network interface device structure
6561 * @p: pointer to an address structure
6563 * Returns 0 on success, negative on failure
6565 static int ixgbe_set_mac(struct net_device
*netdev
, void *p
)
6567 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6568 struct ixgbe_hw
*hw
= &adapter
->hw
;
6569 struct sockaddr
*addr
= p
;
6571 if (!is_valid_ether_addr(addr
->sa_data
))
6572 return -EADDRNOTAVAIL
;
6574 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
6575 memcpy(hw
->mac
.addr
, addr
->sa_data
, netdev
->addr_len
);
6577 hw
->mac
.ops
.set_rar(hw
, 0, hw
->mac
.addr
, VMDQ_P(0), IXGBE_RAH_AV
);
6583 ixgbe_mdio_read(struct net_device
*netdev
, int prtad
, int devad
, u16 addr
)
6585 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6586 struct ixgbe_hw
*hw
= &adapter
->hw
;
6590 if (prtad
!= hw
->phy
.mdio
.prtad
)
6592 rc
= hw
->phy
.ops
.read_reg(hw
, addr
, devad
, &value
);
6598 static int ixgbe_mdio_write(struct net_device
*netdev
, int prtad
, int devad
,
6599 u16 addr
, u16 value
)
6601 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6602 struct ixgbe_hw
*hw
= &adapter
->hw
;
6604 if (prtad
!= hw
->phy
.mdio
.prtad
)
6606 return hw
->phy
.ops
.write_reg(hw
, addr
, devad
, value
);
6609 static int ixgbe_ioctl(struct net_device
*netdev
, struct ifreq
*req
, int cmd
)
6611 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6615 return ixgbe_ptp_hwtstamp_ioctl(adapter
, req
, cmd
);
6617 return mdio_mii_ioctl(&adapter
->hw
.phy
.mdio
, if_mii(req
), cmd
);
6622 * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding
6624 * @netdev: network interface device structure
6626 * Returns non-zero on failure
6628 static int ixgbe_add_sanmac_netdev(struct net_device
*dev
)
6631 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
6632 struct ixgbe_hw
*hw
= &adapter
->hw
;
6634 if (is_valid_ether_addr(hw
->mac
.san_addr
)) {
6636 err
= dev_addr_add(dev
, hw
->mac
.san_addr
, NETDEV_HW_ADDR_T_SAN
);
6639 /* update SAN MAC vmdq pool selection */
6640 hw
->mac
.ops
.set_vmdq_san_mac(hw
, VMDQ_P(0));
6646 * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding
6648 * @netdev: network interface device structure
6650 * Returns non-zero on failure
6652 static int ixgbe_del_sanmac_netdev(struct net_device
*dev
)
6655 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
6656 struct ixgbe_mac_info
*mac
= &adapter
->hw
.mac
;
6658 if (is_valid_ether_addr(mac
->san_addr
)) {
6660 err
= dev_addr_del(dev
, mac
->san_addr
, NETDEV_HW_ADDR_T_SAN
);
6666 #ifdef CONFIG_NET_POLL_CONTROLLER
6668 * Polling 'interrupt' - used by things like netconsole to send skbs
6669 * without having to re-enable interrupts. It's not called while
6670 * the interrupt routine is executing.
6672 static void ixgbe_netpoll(struct net_device
*netdev
)
6674 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6677 /* if interface is down do nothing */
6678 if (test_bit(__IXGBE_DOWN
, &adapter
->state
))
6681 adapter
->flags
|= IXGBE_FLAG_IN_NETPOLL
;
6682 if (adapter
->flags
& IXGBE_FLAG_MSIX_ENABLED
) {
6683 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
6684 ixgbe_msix_clean_rings(0, adapter
->q_vector
[i
]);
6686 ixgbe_intr(adapter
->pdev
->irq
, netdev
);
6688 adapter
->flags
&= ~IXGBE_FLAG_IN_NETPOLL
;
6692 static struct rtnl_link_stats64
*ixgbe_get_stats64(struct net_device
*netdev
,
6693 struct rtnl_link_stats64
*stats
)
6695 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6699 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
6700 struct ixgbe_ring
*ring
= ACCESS_ONCE(adapter
->rx_ring
[i
]);
6706 start
= u64_stats_fetch_begin_bh(&ring
->syncp
);
6707 packets
= ring
->stats
.packets
;
6708 bytes
= ring
->stats
.bytes
;
6709 } while (u64_stats_fetch_retry_bh(&ring
->syncp
, start
));
6710 stats
->rx_packets
+= packets
;
6711 stats
->rx_bytes
+= bytes
;
6715 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
6716 struct ixgbe_ring
*ring
= ACCESS_ONCE(adapter
->tx_ring
[i
]);
6722 start
= u64_stats_fetch_begin_bh(&ring
->syncp
);
6723 packets
= ring
->stats
.packets
;
6724 bytes
= ring
->stats
.bytes
;
6725 } while (u64_stats_fetch_retry_bh(&ring
->syncp
, start
));
6726 stats
->tx_packets
+= packets
;
6727 stats
->tx_bytes
+= bytes
;
6731 /* following stats updated by ixgbe_watchdog_task() */
6732 stats
->multicast
= netdev
->stats
.multicast
;
6733 stats
->rx_errors
= netdev
->stats
.rx_errors
;
6734 stats
->rx_length_errors
= netdev
->stats
.rx_length_errors
;
6735 stats
->rx_crc_errors
= netdev
->stats
.rx_crc_errors
;
6736 stats
->rx_missed_errors
= netdev
->stats
.rx_missed_errors
;
6740 #ifdef CONFIG_IXGBE_DCB
6742 * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid.
6743 * @adapter: pointer to ixgbe_adapter
6744 * @tc: number of traffic classes currently enabled
6746 * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm
6747 * 802.1Q priority maps to a packet buffer that exists.
6749 static void ixgbe_validate_rtr(struct ixgbe_adapter
*adapter
, u8 tc
)
6751 struct ixgbe_hw
*hw
= &adapter
->hw
;
6755 /* 82598 have a static priority to TC mapping that can not
6756 * be changed so no validation is needed.
6758 if (hw
->mac
.type
== ixgbe_mac_82598EB
)
6761 reg
= IXGBE_READ_REG(hw
, IXGBE_RTRUP2TC
);
6764 for (i
= 0; i
< MAX_TRAFFIC_CLASS
; i
++) {
6765 u8 up2tc
= reg
>> (i
* IXGBE_RTRUP2TC_UP_SHIFT
);
6767 /* If up2tc is out of bounds default to zero */
6769 reg
&= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT
);
6773 IXGBE_WRITE_REG(hw
, IXGBE_RTRUP2TC
, reg
);
6779 * ixgbe_set_prio_tc_map - Configure netdev prio tc map
6780 * @adapter: Pointer to adapter struct
6782 * Populate the netdev user priority to tc map
6784 static void ixgbe_set_prio_tc_map(struct ixgbe_adapter
*adapter
)
6786 struct net_device
*dev
= adapter
->netdev
;
6787 struct ixgbe_dcb_config
*dcb_cfg
= &adapter
->dcb_cfg
;
6788 struct ieee_ets
*ets
= adapter
->ixgbe_ieee_ets
;
6791 for (prio
= 0; prio
< MAX_USER_PRIORITY
; prio
++) {
6794 if (adapter
->dcbx_cap
& DCB_CAP_DCBX_VER_CEE
)
6795 tc
= ixgbe_dcb_get_tc_from_up(dcb_cfg
, 0, prio
);
6797 tc
= ets
->prio_tc
[prio
];
6799 netdev_set_prio_tc_map(dev
, prio
, tc
);
6804 * ixgbe_setup_tc - configure net_device for multiple traffic classes
6806 * @netdev: net device to configure
6807 * @tc: number of traffic classes to enable
6809 int ixgbe_setup_tc(struct net_device
*dev
, u8 tc
)
6811 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
6812 struct ixgbe_hw
*hw
= &adapter
->hw
;
6814 /* Hardware supports up to 8 traffic classes */
6815 if (tc
> adapter
->dcb_cfg
.num_tcs
.pg_tcs
||
6816 (hw
->mac
.type
== ixgbe_mac_82598EB
&&
6817 tc
< MAX_TRAFFIC_CLASS
))
6820 /* Hardware has to reinitialize queues and interrupts to
6821 * match packet buffer alignment. Unfortunately, the
6822 * hardware is not flexible enough to do this dynamically.
6824 if (netif_running(dev
))
6826 ixgbe_clear_interrupt_scheme(adapter
);
6829 netdev_set_num_tc(dev
, tc
);
6830 ixgbe_set_prio_tc_map(adapter
);
6832 adapter
->flags
|= IXGBE_FLAG_DCB_ENABLED
;
6834 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
) {
6835 adapter
->last_lfc_mode
= adapter
->hw
.fc
.requested_mode
;
6836 adapter
->hw
.fc
.requested_mode
= ixgbe_fc_none
;
6839 netdev_reset_tc(dev
);
6841 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
6842 adapter
->hw
.fc
.requested_mode
= adapter
->last_lfc_mode
;
6844 adapter
->flags
&= ~IXGBE_FLAG_DCB_ENABLED
;
6846 adapter
->temp_dcb_cfg
.pfc_mode_enable
= false;
6847 adapter
->dcb_cfg
.pfc_mode_enable
= false;
6850 ixgbe_init_interrupt_scheme(adapter
);
6851 ixgbe_validate_rtr(adapter
, tc
);
6852 if (netif_running(dev
))
6858 #endif /* CONFIG_IXGBE_DCB */
6859 #ifdef CONFIG_PCI_IOV
6860 void ixgbe_sriov_reinit(struct ixgbe_adapter
*adapter
)
6862 struct net_device
*netdev
= adapter
->netdev
;
6865 #ifdef CONFIG_IXGBE_DCB
6866 ixgbe_setup_tc(netdev
, netdev_get_num_tc(netdev
));
6868 if (netif_running(netdev
))
6869 ixgbe_close(netdev
);
6870 ixgbe_clear_interrupt_scheme(adapter
);
6871 ixgbe_init_interrupt_scheme(adapter
);
6872 if (netif_running(netdev
))
6879 void ixgbe_do_reset(struct net_device
*netdev
)
6881 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6883 if (netif_running(netdev
))
6884 ixgbe_reinit_locked(adapter
);
6886 ixgbe_reset(adapter
);
6889 static netdev_features_t
ixgbe_fix_features(struct net_device
*netdev
,
6890 netdev_features_t features
)
6892 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6894 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
6895 if (!(features
& NETIF_F_RXCSUM
))
6896 features
&= ~NETIF_F_LRO
;
6898 /* Turn off LRO if not RSC capable */
6899 if (!(adapter
->flags2
& IXGBE_FLAG2_RSC_CAPABLE
))
6900 features
&= ~NETIF_F_LRO
;
6905 static int ixgbe_set_features(struct net_device
*netdev
,
6906 netdev_features_t features
)
6908 struct ixgbe_adapter
*adapter
= netdev_priv(netdev
);
6909 netdev_features_t changed
= netdev
->features
^ features
;
6910 bool need_reset
= false;
6912 /* Make sure RSC matches LRO, reset if change */
6913 if (!(features
& NETIF_F_LRO
)) {
6914 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)
6916 adapter
->flags2
&= ~IXGBE_FLAG2_RSC_ENABLED
;
6917 } else if ((adapter
->flags2
& IXGBE_FLAG2_RSC_CAPABLE
) &&
6918 !(adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)) {
6919 if (adapter
->rx_itr_setting
== 1 ||
6920 adapter
->rx_itr_setting
> IXGBE_MIN_RSC_ITR
) {
6921 adapter
->flags2
|= IXGBE_FLAG2_RSC_ENABLED
;
6923 } else if ((changed
^ features
) & NETIF_F_LRO
) {
6924 e_info(probe
, "rx-usecs set too low, "
6930 * Check if Flow Director n-tuple support was enabled or disabled. If
6931 * the state changed, we need to reset.
6933 switch (features
& NETIF_F_NTUPLE
) {
6934 case NETIF_F_NTUPLE
:
6935 /* turn off ATR, enable perfect filters and reset */
6936 if (!(adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
))
6939 adapter
->flags
&= ~IXGBE_FLAG_FDIR_HASH_CAPABLE
;
6940 adapter
->flags
|= IXGBE_FLAG_FDIR_PERFECT_CAPABLE
;
6943 /* turn off perfect filters, enable ATR and reset */
6944 if (adapter
->flags
& IXGBE_FLAG_FDIR_PERFECT_CAPABLE
)
6947 adapter
->flags
&= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE
;
6949 /* We cannot enable ATR if SR-IOV is enabled */
6950 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
6953 /* We cannot enable ATR if we have 2 or more traffic classes */
6954 if (netdev_get_num_tc(netdev
) > 1)
6957 /* We cannot enable ATR if RSS is disabled */
6958 if (adapter
->ring_feature
[RING_F_RSS
].limit
<= 1)
6961 /* A sample rate of 0 indicates ATR disabled */
6962 if (!adapter
->atr_sample_rate
)
6965 adapter
->flags
|= IXGBE_FLAG_FDIR_HASH_CAPABLE
;
6969 if (features
& NETIF_F_HW_VLAN_RX
)
6970 ixgbe_vlan_strip_enable(adapter
);
6972 ixgbe_vlan_strip_disable(adapter
);
6974 if (changed
& NETIF_F_RXALL
)
6977 netdev
->features
= features
;
6979 ixgbe_do_reset(netdev
);
6984 static int ixgbe_ndo_fdb_add(struct ndmsg
*ndm
, struct nlattr
*tb
[],
6985 struct net_device
*dev
,
6986 const unsigned char *addr
,
6989 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
6992 if (!(adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
))
6995 /* Hardware does not support aging addresses so if a
6996 * ndm_state is given only allow permanent addresses
6998 if (ndm
->ndm_state
&& !(ndm
->ndm_state
& NUD_PERMANENT
)) {
6999 pr_info("%s: FDB only supports static addresses\n",
7004 if (is_unicast_ether_addr(addr
) || is_link_local_ether_addr(addr
)) {
7005 u32 rar_uc_entries
= IXGBE_MAX_PF_MACVLANS
;
7007 if (netdev_uc_count(dev
) < rar_uc_entries
)
7008 err
= dev_uc_add_excl(dev
, addr
);
7011 } else if (is_multicast_ether_addr(addr
)) {
7012 err
= dev_mc_add_excl(dev
, addr
);
7017 /* Only return duplicate errors if NLM_F_EXCL is set */
7018 if (err
== -EEXIST
&& !(flags
& NLM_F_EXCL
))
7024 static int ixgbe_ndo_fdb_del(struct ndmsg
*ndm
, struct nlattr
*tb
[],
7025 struct net_device
*dev
,
7026 const unsigned char *addr
)
7028 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
7029 int err
= -EOPNOTSUPP
;
7031 if (ndm
->ndm_state
& NUD_PERMANENT
) {
7032 pr_info("%s: FDB only supports static addresses\n",
7037 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
7038 if (is_unicast_ether_addr(addr
))
7039 err
= dev_uc_del(dev
, addr
);
7040 else if (is_multicast_ether_addr(addr
))
7041 err
= dev_mc_del(dev
, addr
);
7049 static int ixgbe_ndo_fdb_dump(struct sk_buff
*skb
,
7050 struct netlink_callback
*cb
,
7051 struct net_device
*dev
,
7054 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
7056 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
)
7057 idx
= ndo_dflt_fdb_dump(skb
, cb
, dev
, idx
);
7062 static int ixgbe_ndo_bridge_setlink(struct net_device
*dev
,
7063 struct nlmsghdr
*nlh
)
7065 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
7066 struct nlattr
*attr
, *br_spec
;
7069 if (!(adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
))
7072 br_spec
= nlmsg_find_attr(nlh
, sizeof(struct ifinfomsg
), IFLA_AF_SPEC
);
7074 nla_for_each_nested(attr
, br_spec
, rem
) {
7078 if (nla_type(attr
) != IFLA_BRIDGE_MODE
)
7081 mode
= nla_get_u16(attr
);
7082 if (mode
== BRIDGE_MODE_VEPA
) {
7084 adapter
->flags2
&= ~IXGBE_FLAG2_BRIDGE_MODE_VEB
;
7085 } else if (mode
== BRIDGE_MODE_VEB
) {
7086 reg
= IXGBE_PFDTXGSWC_VT_LBEN
;
7087 adapter
->flags2
|= IXGBE_FLAG2_BRIDGE_MODE_VEB
;
7091 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_PFDTXGSWC
, reg
);
7093 e_info(drv
, "enabling bridge mode: %s\n",
7094 mode
== BRIDGE_MODE_VEPA
? "VEPA" : "VEB");
7100 static int ixgbe_ndo_bridge_getlink(struct sk_buff
*skb
, u32 pid
, u32 seq
,
7101 struct net_device
*dev
,
7104 struct ixgbe_adapter
*adapter
= netdev_priv(dev
);
7107 if (!(adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
))
7110 if (adapter
->flags2
& IXGBE_FLAG2_BRIDGE_MODE_VEB
)
7111 mode
= BRIDGE_MODE_VEB
;
7113 mode
= BRIDGE_MODE_VEPA
;
7115 return ndo_dflt_bridge_getlink(skb
, pid
, seq
, dev
, mode
);
7118 static const struct net_device_ops ixgbe_netdev_ops
= {
7119 .ndo_open
= ixgbe_open
,
7120 .ndo_stop
= ixgbe_close
,
7121 .ndo_start_xmit
= ixgbe_xmit_frame
,
7122 .ndo_select_queue
= ixgbe_select_queue
,
7123 .ndo_set_rx_mode
= ixgbe_set_rx_mode
,
7124 .ndo_validate_addr
= eth_validate_addr
,
7125 .ndo_set_mac_address
= ixgbe_set_mac
,
7126 .ndo_change_mtu
= ixgbe_change_mtu
,
7127 .ndo_tx_timeout
= ixgbe_tx_timeout
,
7128 .ndo_vlan_rx_add_vid
= ixgbe_vlan_rx_add_vid
,
7129 .ndo_vlan_rx_kill_vid
= ixgbe_vlan_rx_kill_vid
,
7130 .ndo_do_ioctl
= ixgbe_ioctl
,
7131 .ndo_set_vf_mac
= ixgbe_ndo_set_vf_mac
,
7132 .ndo_set_vf_vlan
= ixgbe_ndo_set_vf_vlan
,
7133 .ndo_set_vf_tx_rate
= ixgbe_ndo_set_vf_bw
,
7134 .ndo_set_vf_spoofchk
= ixgbe_ndo_set_vf_spoofchk
,
7135 .ndo_get_vf_config
= ixgbe_ndo_get_vf_config
,
7136 .ndo_get_stats64
= ixgbe_get_stats64
,
7137 #ifdef CONFIG_IXGBE_DCB
7138 .ndo_setup_tc
= ixgbe_setup_tc
,
7140 #ifdef CONFIG_NET_POLL_CONTROLLER
7141 .ndo_poll_controller
= ixgbe_netpoll
,
7144 .ndo_fcoe_ddp_setup
= ixgbe_fcoe_ddp_get
,
7145 .ndo_fcoe_ddp_target
= ixgbe_fcoe_ddp_target
,
7146 .ndo_fcoe_ddp_done
= ixgbe_fcoe_ddp_put
,
7147 .ndo_fcoe_enable
= ixgbe_fcoe_enable
,
7148 .ndo_fcoe_disable
= ixgbe_fcoe_disable
,
7149 .ndo_fcoe_get_wwn
= ixgbe_fcoe_get_wwn
,
7150 .ndo_fcoe_get_hbainfo
= ixgbe_fcoe_get_hbainfo
,
7151 #endif /* IXGBE_FCOE */
7152 .ndo_set_features
= ixgbe_set_features
,
7153 .ndo_fix_features
= ixgbe_fix_features
,
7154 .ndo_fdb_add
= ixgbe_ndo_fdb_add
,
7155 .ndo_fdb_del
= ixgbe_ndo_fdb_del
,
7156 .ndo_fdb_dump
= ixgbe_ndo_fdb_dump
,
7157 .ndo_bridge_setlink
= ixgbe_ndo_bridge_setlink
,
7158 .ndo_bridge_getlink
= ixgbe_ndo_bridge_getlink
,
7162 * ixgbe_wol_supported - Check whether device supports WoL
7163 * @hw: hw specific details
7164 * @device_id: the device ID
7165 * @subdev_id: the subsystem device ID
7167 * This function is used by probe and ethtool to determine
7168 * which devices have WoL support
7171 int ixgbe_wol_supported(struct ixgbe_adapter
*adapter
, u16 device_id
,
7174 struct ixgbe_hw
*hw
= &adapter
->hw
;
7175 u16 wol_cap
= adapter
->eeprom_cap
& IXGBE_DEVICE_CAPS_WOL_MASK
;
7176 int is_wol_supported
= 0;
7178 switch (device_id
) {
7179 case IXGBE_DEV_ID_82599_SFP
:
7180 /* Only these subdevices could supports WOL */
7181 switch (subdevice_id
) {
7182 case IXGBE_SUBDEV_ID_82599_560FLR
:
7183 /* only support first port */
7184 if (hw
->bus
.func
!= 0)
7186 case IXGBE_SUBDEV_ID_82599_SFP
:
7187 case IXGBE_SUBDEV_ID_82599_RNDC
:
7188 case IXGBE_SUBDEV_ID_82599_ECNA_DP
:
7189 is_wol_supported
= 1;
7193 case IXGBE_DEV_ID_82599_COMBO_BACKPLANE
:
7194 /* All except this subdevice support WOL */
7195 if (subdevice_id
!= IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ
)
7196 is_wol_supported
= 1;
7198 case IXGBE_DEV_ID_82599_KX4
:
7199 is_wol_supported
= 1;
7201 case IXGBE_DEV_ID_X540T
:
7202 case IXGBE_DEV_ID_X540T1
:
7203 /* check eeprom to see if enabled wol */
7204 if ((wol_cap
== IXGBE_DEVICE_CAPS_WOL_PORT0_1
) ||
7205 ((wol_cap
== IXGBE_DEVICE_CAPS_WOL_PORT0
) &&
7206 (hw
->bus
.func
== 0))) {
7207 is_wol_supported
= 1;
7212 return is_wol_supported
;
7216 * ixgbe_probe - Device Initialization Routine
7217 * @pdev: PCI device information struct
7218 * @ent: entry in ixgbe_pci_tbl
7220 * Returns 0 on success, negative on failure
7222 * ixgbe_probe initializes an adapter identified by a pci_dev structure.
7223 * The OS initialization, configuring of the adapter private structure,
7224 * and a hardware reset occur.
7226 static int ixgbe_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
7228 struct net_device
*netdev
;
7229 struct ixgbe_adapter
*adapter
= NULL
;
7230 struct ixgbe_hw
*hw
;
7231 const struct ixgbe_info
*ii
= ixgbe_info_tbl
[ent
->driver_data
];
7232 static int cards_found
;
7233 int i
, err
, pci_using_dac
;
7234 unsigned int indices
= MAX_TX_QUEUES
;
7235 u8 part_str
[IXGBE_PBANUM_LENGTH
];
7241 /* Catch broken hardware that put the wrong VF device ID in
7242 * the PCIe SR-IOV capability.
7244 if (pdev
->is_virtfn
) {
7245 WARN(1, KERN_ERR
"%s (%hx:%hx) should not be a VF!\n",
7246 pci_name(pdev
), pdev
->vendor
, pdev
->device
);
7250 err
= pci_enable_device_mem(pdev
);
7254 if (!dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(64)) &&
7255 !dma_set_coherent_mask(&pdev
->dev
, DMA_BIT_MASK(64))) {
7258 err
= dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32));
7260 err
= dma_set_coherent_mask(&pdev
->dev
,
7264 "No usable DMA configuration, aborting\n");
7271 err
= pci_request_selected_regions(pdev
, pci_select_bars(pdev
,
7272 IORESOURCE_MEM
), ixgbe_driver_name
);
7275 "pci_request_selected_regions failed 0x%x\n", err
);
7279 pci_enable_pcie_error_reporting(pdev
);
7281 pci_set_master(pdev
);
7282 pci_save_state(pdev
);
7284 if (ii
->mac
== ixgbe_mac_82598EB
) {
7285 #ifdef CONFIG_IXGBE_DCB
7286 /* 8 TC w/ 4 queues per TC */
7287 indices
= 4 * MAX_TRAFFIC_CLASS
;
7289 indices
= IXGBE_MAX_RSS_INDICES
;
7293 netdev
= alloc_etherdev_mq(sizeof(struct ixgbe_adapter
), indices
);
7296 goto err_alloc_etherdev
;
7299 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
7301 adapter
= netdev_priv(netdev
);
7302 pci_set_drvdata(pdev
, adapter
);
7304 adapter
->netdev
= netdev
;
7305 adapter
->pdev
= pdev
;
7308 adapter
->msg_enable
= netif_msg_init(debug
, DEFAULT_MSG_ENABLE
);
7310 hw
->hw_addr
= ioremap(pci_resource_start(pdev
, 0),
7311 pci_resource_len(pdev
, 0));
7317 netdev
->netdev_ops
= &ixgbe_netdev_ops
;
7318 ixgbe_set_ethtool_ops(netdev
);
7319 netdev
->watchdog_timeo
= 5 * HZ
;
7320 strncpy(netdev
->name
, pci_name(pdev
), sizeof(netdev
->name
) - 1);
7322 adapter
->bd_number
= cards_found
;
7325 memcpy(&hw
->mac
.ops
, ii
->mac_ops
, sizeof(hw
->mac
.ops
));
7326 hw
->mac
.type
= ii
->mac
;
7329 memcpy(&hw
->eeprom
.ops
, ii
->eeprom_ops
, sizeof(hw
->eeprom
.ops
));
7330 eec
= IXGBE_READ_REG(hw
, IXGBE_EEC
);
7331 /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */
7332 if (!(eec
& (1 << 8)))
7333 hw
->eeprom
.ops
.read
= &ixgbe_read_eeprom_bit_bang_generic
;
7336 memcpy(&hw
->phy
.ops
, ii
->phy_ops
, sizeof(hw
->phy
.ops
));
7337 hw
->phy
.sfp_type
= ixgbe_sfp_type_unknown
;
7338 /* ixgbe_identify_phy_generic will set prtad and mmds properly */
7339 hw
->phy
.mdio
.prtad
= MDIO_PRTAD_NONE
;
7340 hw
->phy
.mdio
.mmds
= 0;
7341 hw
->phy
.mdio
.mode_support
= MDIO_SUPPORTS_C45
| MDIO_EMULATE_C22
;
7342 hw
->phy
.mdio
.dev
= netdev
;
7343 hw
->phy
.mdio
.mdio_read
= ixgbe_mdio_read
;
7344 hw
->phy
.mdio
.mdio_write
= ixgbe_mdio_write
;
7346 ii
->get_invariants(hw
);
7348 /* setup the private structure */
7349 err
= ixgbe_sw_init(adapter
);
7353 /* Make it possible the adapter to be woken up via WOL */
7354 switch (adapter
->hw
.mac
.type
) {
7355 case ixgbe_mac_82599EB
:
7356 case ixgbe_mac_X540
:
7357 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_WUS
, ~0);
7364 * If there is a fan on this device and it has failed log the
7367 if (adapter
->flags
& IXGBE_FLAG_FAN_FAIL_CAPABLE
) {
7368 u32 esdp
= IXGBE_READ_REG(hw
, IXGBE_ESDP
);
7369 if (esdp
& IXGBE_ESDP_SDP1
)
7370 e_crit(probe
, "Fan has stopped, replace the adapter\n");
7373 if (allow_unsupported_sfp
)
7374 hw
->allow_unsupported_sfp
= allow_unsupported_sfp
;
7376 /* reset_hw fills in the perm_addr as well */
7377 hw
->phy
.reset_if_overtemp
= true;
7378 err
= hw
->mac
.ops
.reset_hw(hw
);
7379 hw
->phy
.reset_if_overtemp
= false;
7380 if (err
== IXGBE_ERR_SFP_NOT_PRESENT
&&
7381 hw
->mac
.type
== ixgbe_mac_82598EB
) {
7383 } else if (err
== IXGBE_ERR_SFP_NOT_SUPPORTED
) {
7384 e_dev_err("failed to load because an unsupported SFP+ "
7385 "module type was detected.\n");
7386 e_dev_err("Reload the driver after installing a supported "
7390 e_dev_err("HW Init failed: %d\n", err
);
7394 #ifdef CONFIG_PCI_IOV
7395 /* SR-IOV not supported on the 82598 */
7396 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
)
7399 ixgbe_init_mbx_params_pf(hw
);
7400 memcpy(&hw
->mbx
.ops
, ii
->mbx_ops
, sizeof(hw
->mbx
.ops
));
7401 ixgbe_enable_sriov(adapter
);
7402 pci_sriov_set_totalvfs(pdev
, 63);
7406 netdev
->features
= NETIF_F_SG
|
7409 NETIF_F_HW_VLAN_TX
|
7410 NETIF_F_HW_VLAN_RX
|
7411 NETIF_F_HW_VLAN_FILTER
|
7417 netdev
->hw_features
= netdev
->features
;
7419 switch (adapter
->hw
.mac
.type
) {
7420 case ixgbe_mac_82599EB
:
7421 case ixgbe_mac_X540
:
7422 netdev
->features
|= NETIF_F_SCTP_CSUM
;
7423 netdev
->hw_features
|= NETIF_F_SCTP_CSUM
|
7430 netdev
->hw_features
|= NETIF_F_RXALL
;
7432 netdev
->vlan_features
|= NETIF_F_TSO
;
7433 netdev
->vlan_features
|= NETIF_F_TSO6
;
7434 netdev
->vlan_features
|= NETIF_F_IP_CSUM
;
7435 netdev
->vlan_features
|= NETIF_F_IPV6_CSUM
;
7436 netdev
->vlan_features
|= NETIF_F_SG
;
7438 netdev
->priv_flags
|= IFF_UNICAST_FLT
;
7439 netdev
->priv_flags
|= IFF_SUPP_NOFCS
;
7441 #ifdef CONFIG_IXGBE_DCB
7442 netdev
->dcbnl_ops
= &dcbnl_ops
;
7446 if (adapter
->flags
& IXGBE_FLAG_FCOE_CAPABLE
) {
7447 unsigned int fcoe_l
;
7449 if (hw
->mac
.ops
.get_device_caps
) {
7450 hw
->mac
.ops
.get_device_caps(hw
, &device_caps
);
7451 if (device_caps
& IXGBE_DEVICE_CAPS_FCOE_OFFLOADS
)
7452 adapter
->flags
&= ~IXGBE_FLAG_FCOE_CAPABLE
;
7456 fcoe_l
= min_t(int, IXGBE_FCRETA_SIZE
, num_online_cpus());
7457 adapter
->ring_feature
[RING_F_FCOE
].limit
= fcoe_l
;
7459 netdev
->features
|= NETIF_F_FSO
|
7462 netdev
->vlan_features
|= NETIF_F_FSO
|
7466 #endif /* IXGBE_FCOE */
7467 if (pci_using_dac
) {
7468 netdev
->features
|= NETIF_F_HIGHDMA
;
7469 netdev
->vlan_features
|= NETIF_F_HIGHDMA
;
7472 if (adapter
->flags2
& IXGBE_FLAG2_RSC_CAPABLE
)
7473 netdev
->hw_features
|= NETIF_F_LRO
;
7474 if (adapter
->flags2
& IXGBE_FLAG2_RSC_ENABLED
)
7475 netdev
->features
|= NETIF_F_LRO
;
7477 /* make sure the EEPROM is good */
7478 if (hw
->eeprom
.ops
.validate_checksum(hw
, NULL
) < 0) {
7479 e_dev_err("The EEPROM Checksum Is Not Valid\n");
7484 memcpy(netdev
->dev_addr
, hw
->mac
.perm_addr
, netdev
->addr_len
);
7486 if (!is_valid_ether_addr(netdev
->dev_addr
)) {
7487 e_dev_err("invalid MAC address\n");
7492 setup_timer(&adapter
->service_timer
, &ixgbe_service_timer
,
7493 (unsigned long) adapter
);
7495 INIT_WORK(&adapter
->service_task
, ixgbe_service_task
);
7496 clear_bit(__IXGBE_SERVICE_SCHED
, &adapter
->state
);
7498 err
= ixgbe_init_interrupt_scheme(adapter
);
7502 /* WOL not supported for all devices */
7504 hw
->eeprom
.ops
.read(hw
, 0x2c, &adapter
->eeprom_cap
);
7505 if (ixgbe_wol_supported(adapter
, pdev
->device
, pdev
->subsystem_device
))
7506 adapter
->wol
= IXGBE_WUFC_MAG
;
7508 device_set_wakeup_enable(&adapter
->pdev
->dev
, adapter
->wol
);
7510 /* save off EEPROM version number */
7511 hw
->eeprom
.ops
.read(hw
, 0x2e, &adapter
->eeprom_verh
);
7512 hw
->eeprom
.ops
.read(hw
, 0x2d, &adapter
->eeprom_verl
);
7514 /* pick up the PCI bus settings for reporting later */
7515 hw
->mac
.ops
.get_bus_info(hw
);
7517 /* print bus type/speed/width info */
7518 e_dev_info("(PCI Express:%s:%s) %pM\n",
7519 (hw
->bus
.speed
== ixgbe_bus_speed_5000
? "5.0GT/s" :
7520 hw
->bus
.speed
== ixgbe_bus_speed_2500
? "2.5GT/s" :
7522 (hw
->bus
.width
== ixgbe_bus_width_pcie_x8
? "Width x8" :
7523 hw
->bus
.width
== ixgbe_bus_width_pcie_x4
? "Width x4" :
7524 hw
->bus
.width
== ixgbe_bus_width_pcie_x1
? "Width x1" :
7528 err
= ixgbe_read_pba_string_generic(hw
, part_str
, IXGBE_PBANUM_LENGTH
);
7530 strncpy(part_str
, "Unknown", IXGBE_PBANUM_LENGTH
);
7531 if (ixgbe_is_sfp(hw
) && hw
->phy
.sfp_type
!= ixgbe_sfp_type_not_present
)
7532 e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n",
7533 hw
->mac
.type
, hw
->phy
.type
, hw
->phy
.sfp_type
,
7536 e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n",
7537 hw
->mac
.type
, hw
->phy
.type
, part_str
);
7539 if (hw
->bus
.width
<= ixgbe_bus_width_pcie_x4
) {
7540 e_dev_warn("PCI-Express bandwidth available for this card is "
7541 "not sufficient for optimal performance.\n");
7542 e_dev_warn("For optimal performance a x8 PCI-Express slot "
7546 /* reset the hardware with the new settings */
7547 err
= hw
->mac
.ops
.start_hw(hw
);
7548 if (err
== IXGBE_ERR_EEPROM_VERSION
) {
7549 /* We are running on a pre-production device, log a warning */
7550 e_dev_warn("This device is a pre-production adapter/LOM. "
7551 "Please be aware there may be issues associated "
7552 "with your hardware. If you are experiencing "
7553 "problems please contact your Intel or hardware "
7554 "representative who provided you with this "
7557 strcpy(netdev
->name
, "eth%d");
7558 err
= register_netdev(netdev
);
7562 /* power down the optics for 82599 SFP+ fiber */
7563 if (hw
->mac
.ops
.disable_tx_laser
)
7564 hw
->mac
.ops
.disable_tx_laser(hw
);
7566 /* carrier off reporting is important to ethtool even BEFORE open */
7567 netif_carrier_off(netdev
);
7569 #ifdef CONFIG_IXGBE_DCA
7570 if (dca_add_requester(&pdev
->dev
) == 0) {
7571 adapter
->flags
|= IXGBE_FLAG_DCA_ENABLED
;
7572 ixgbe_setup_dca(adapter
);
7575 if (adapter
->flags
& IXGBE_FLAG_SRIOV_ENABLED
) {
7576 e_info(probe
, "IOV is enabled with %d VFs\n", adapter
->num_vfs
);
7577 for (i
= 0; i
< adapter
->num_vfs
; i
++)
7578 ixgbe_vf_configuration(pdev
, (i
| 0x10000000));
7581 /* firmware requires driver version to be 0xFFFFFFFF
7582 * since os does not support feature
7584 if (hw
->mac
.ops
.set_fw_drv_ver
)
7585 hw
->mac
.ops
.set_fw_drv_ver(hw
, 0xFF, 0xFF, 0xFF,
7588 /* add san mac addr to netdev */
7589 ixgbe_add_sanmac_netdev(netdev
);
7591 e_dev_info("%s\n", ixgbe_default_device_descr
);
7594 #ifdef CONFIG_IXGBE_HWMON
7595 if (ixgbe_sysfs_init(adapter
))
7596 e_err(probe
, "failed to allocate sysfs resources\n");
7597 #endif /* CONFIG_IXGBE_HWMON */
7599 #ifdef CONFIG_DEBUG_FS
7600 ixgbe_dbg_adapter_init(adapter
);
7601 #endif /* CONFIG_DEBUG_FS */
7606 ixgbe_release_hw_control(adapter
);
7607 ixgbe_clear_interrupt_scheme(adapter
);
7609 ixgbe_disable_sriov(adapter
);
7610 adapter
->flags2
&= ~IXGBE_FLAG2_SEARCH_FOR_SFP
;
7611 iounmap(hw
->hw_addr
);
7613 free_netdev(netdev
);
7615 pci_release_selected_regions(pdev
,
7616 pci_select_bars(pdev
, IORESOURCE_MEM
));
7619 pci_disable_device(pdev
);
7624 * ixgbe_remove - Device Removal Routine
7625 * @pdev: PCI device information struct
7627 * ixgbe_remove is called by the PCI subsystem to alert the driver
7628 * that it should release a PCI device. The could be caused by a
7629 * Hot-Plug event, or because the driver is going to be removed from
7632 static void ixgbe_remove(struct pci_dev
*pdev
)
7634 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
7635 struct net_device
*netdev
= adapter
->netdev
;
7637 #ifdef CONFIG_DEBUG_FS
7638 ixgbe_dbg_adapter_exit(adapter
);
7639 #endif /*CONFIG_DEBUG_FS */
7641 set_bit(__IXGBE_DOWN
, &adapter
->state
);
7642 cancel_work_sync(&adapter
->service_task
);
7645 #ifdef CONFIG_IXGBE_DCA
7646 if (adapter
->flags
& IXGBE_FLAG_DCA_ENABLED
) {
7647 adapter
->flags
&= ~IXGBE_FLAG_DCA_ENABLED
;
7648 dca_remove_requester(&pdev
->dev
);
7649 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_DCA_CTRL
, 1);
7653 #ifdef CONFIG_IXGBE_HWMON
7654 ixgbe_sysfs_exit(adapter
);
7655 #endif /* CONFIG_IXGBE_HWMON */
7657 /* remove the added san mac */
7658 ixgbe_del_sanmac_netdev(netdev
);
7660 if (netdev
->reg_state
== NETREG_REGISTERED
)
7661 unregister_netdev(netdev
);
7663 #ifdef CONFIG_PCI_IOV
7665 * Only disable SR-IOV on unload if the user specified the now
7666 * deprecated max_vfs module parameter.
7669 ixgbe_disable_sriov(adapter
);
7671 ixgbe_clear_interrupt_scheme(adapter
);
7673 ixgbe_release_hw_control(adapter
);
7676 kfree(adapter
->ixgbe_ieee_pfc
);
7677 kfree(adapter
->ixgbe_ieee_ets
);
7680 iounmap(adapter
->hw
.hw_addr
);
7681 pci_release_selected_regions(pdev
, pci_select_bars(pdev
,
7684 e_dev_info("complete\n");
7686 free_netdev(netdev
);
7688 pci_disable_pcie_error_reporting(pdev
);
7690 pci_disable_device(pdev
);
7694 * ixgbe_io_error_detected - called when PCI error is detected
7695 * @pdev: Pointer to PCI device
7696 * @state: The current pci connection state
7698 * This function is called after a PCI bus error affecting
7699 * this device has been detected.
7701 static pci_ers_result_t
ixgbe_io_error_detected(struct pci_dev
*pdev
,
7702 pci_channel_state_t state
)
7704 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
7705 struct net_device
*netdev
= adapter
->netdev
;
7707 #ifdef CONFIG_PCI_IOV
7708 struct pci_dev
*bdev
, *vfdev
;
7709 u32 dw0
, dw1
, dw2
, dw3
;
7711 u16 req_id
, pf_func
;
7713 if (adapter
->hw
.mac
.type
== ixgbe_mac_82598EB
||
7714 adapter
->num_vfs
== 0)
7715 goto skip_bad_vf_detection
;
7717 bdev
= pdev
->bus
->self
;
7718 while (bdev
&& (pci_pcie_type(bdev
) != PCI_EXP_TYPE_ROOT_PORT
))
7719 bdev
= bdev
->bus
->self
;
7722 goto skip_bad_vf_detection
;
7724 pos
= pci_find_ext_capability(bdev
, PCI_EXT_CAP_ID_ERR
);
7726 goto skip_bad_vf_detection
;
7728 pci_read_config_dword(bdev
, pos
+ PCI_ERR_HEADER_LOG
, &dw0
);
7729 pci_read_config_dword(bdev
, pos
+ PCI_ERR_HEADER_LOG
+ 4, &dw1
);
7730 pci_read_config_dword(bdev
, pos
+ PCI_ERR_HEADER_LOG
+ 8, &dw2
);
7731 pci_read_config_dword(bdev
, pos
+ PCI_ERR_HEADER_LOG
+ 12, &dw3
);
7734 /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */
7735 if (!(req_id
& 0x0080))
7736 goto skip_bad_vf_detection
;
7738 pf_func
= req_id
& 0x01;
7739 if ((pf_func
& 1) == (pdev
->devfn
& 1)) {
7740 unsigned int device_id
;
7742 vf
= (req_id
& 0x7F) >> 1;
7743 e_dev_err("VF %d has caused a PCIe error\n", vf
);
7744 e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: "
7745 "%8.8x\tdw3: %8.8x\n",
7746 dw0
, dw1
, dw2
, dw3
);
7747 switch (adapter
->hw
.mac
.type
) {
7748 case ixgbe_mac_82599EB
:
7749 device_id
= IXGBE_82599_VF_DEVICE_ID
;
7751 case ixgbe_mac_X540
:
7752 device_id
= IXGBE_X540_VF_DEVICE_ID
;
7759 /* Find the pci device of the offending VF */
7760 vfdev
= pci_get_device(PCI_VENDOR_ID_INTEL
, device_id
, NULL
);
7762 if (vfdev
->devfn
== (req_id
& 0xFF))
7764 vfdev
= pci_get_device(PCI_VENDOR_ID_INTEL
,
7768 * There's a slim chance the VF could have been hot plugged,
7769 * so if it is no longer present we don't need to issue the
7770 * VFLR. Just clean up the AER in that case.
7773 e_dev_err("Issuing VFLR to VF %d\n", vf
);
7774 pci_write_config_dword(vfdev
, 0xA8, 0x00008000);
7775 /* Free device reference count */
7779 pci_cleanup_aer_uncorrect_error_status(pdev
);
7783 * Even though the error may have occurred on the other port
7784 * we still need to increment the vf error reference count for
7785 * both ports because the I/O resume function will be called
7788 adapter
->vferr_refcount
++;
7790 return PCI_ERS_RESULT_RECOVERED
;
7792 skip_bad_vf_detection
:
7793 #endif /* CONFIG_PCI_IOV */
7794 netif_device_detach(netdev
);
7796 if (state
== pci_channel_io_perm_failure
)
7797 return PCI_ERS_RESULT_DISCONNECT
;
7799 if (netif_running(netdev
))
7800 ixgbe_down(adapter
);
7801 pci_disable_device(pdev
);
7803 /* Request a slot reset. */
7804 return PCI_ERS_RESULT_NEED_RESET
;
7808 * ixgbe_io_slot_reset - called after the pci bus has been reset.
7809 * @pdev: Pointer to PCI device
7811 * Restart the card from scratch, as if from a cold-boot.
7813 static pci_ers_result_t
ixgbe_io_slot_reset(struct pci_dev
*pdev
)
7815 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
7816 pci_ers_result_t result
;
7819 if (pci_enable_device_mem(pdev
)) {
7820 e_err(probe
, "Cannot re-enable PCI device after reset.\n");
7821 result
= PCI_ERS_RESULT_DISCONNECT
;
7823 pci_set_master(pdev
);
7824 pci_restore_state(pdev
);
7825 pci_save_state(pdev
);
7827 pci_wake_from_d3(pdev
, false);
7829 ixgbe_reset(adapter
);
7830 IXGBE_WRITE_REG(&adapter
->hw
, IXGBE_WUS
, ~0);
7831 result
= PCI_ERS_RESULT_RECOVERED
;
7834 err
= pci_cleanup_aer_uncorrect_error_status(pdev
);
7836 e_dev_err("pci_cleanup_aer_uncorrect_error_status "
7837 "failed 0x%0x\n", err
);
7838 /* non-fatal, continue */
7845 * ixgbe_io_resume - called when traffic can start flowing again.
7846 * @pdev: Pointer to PCI device
7848 * This callback is called when the error recovery driver tells us that
7849 * its OK to resume normal operation.
7851 static void ixgbe_io_resume(struct pci_dev
*pdev
)
7853 struct ixgbe_adapter
*adapter
= pci_get_drvdata(pdev
);
7854 struct net_device
*netdev
= adapter
->netdev
;
7856 #ifdef CONFIG_PCI_IOV
7857 if (adapter
->vferr_refcount
) {
7858 e_info(drv
, "Resuming after VF err\n");
7859 adapter
->vferr_refcount
--;
7864 if (netif_running(netdev
))
7867 netif_device_attach(netdev
);
7870 static const struct pci_error_handlers ixgbe_err_handler
= {
7871 .error_detected
= ixgbe_io_error_detected
,
7872 .slot_reset
= ixgbe_io_slot_reset
,
7873 .resume
= ixgbe_io_resume
,
7876 static struct pci_driver ixgbe_driver
= {
7877 .name
= ixgbe_driver_name
,
7878 .id_table
= ixgbe_pci_tbl
,
7879 .probe
= ixgbe_probe
,
7880 .remove
= ixgbe_remove
,
7882 .suspend
= ixgbe_suspend
,
7883 .resume
= ixgbe_resume
,
7885 .shutdown
= ixgbe_shutdown
,
7886 .sriov_configure
= ixgbe_pci_sriov_configure
,
7887 .err_handler
= &ixgbe_err_handler
7891 * ixgbe_init_module - Driver Registration Routine
7893 * ixgbe_init_module is the first routine called when the driver is
7894 * loaded. All it does is register with the PCI subsystem.
7896 static int __init
ixgbe_init_module(void)
7899 pr_info("%s - version %s\n", ixgbe_driver_string
, ixgbe_driver_version
);
7900 pr_info("%s\n", ixgbe_copyright
);
7902 #ifdef CONFIG_DEBUG_FS
7904 #endif /* CONFIG_DEBUG_FS */
7906 #ifdef CONFIG_IXGBE_DCA
7907 dca_register_notify(&dca_notifier
);
7910 ret
= pci_register_driver(&ixgbe_driver
);
7914 module_init(ixgbe_init_module
);
7917 * ixgbe_exit_module - Driver Exit Cleanup Routine
7919 * ixgbe_exit_module is called just before the driver is removed
7922 static void __exit
ixgbe_exit_module(void)
7924 #ifdef CONFIG_IXGBE_DCA
7925 dca_unregister_notify(&dca_notifier
);
7927 pci_unregister_driver(&ixgbe_driver
);
7929 #ifdef CONFIG_DEBUG_FS
7931 #endif /* CONFIG_DEBUG_FS */
7933 rcu_barrier(); /* Wait for completion of call_rcu()'s */
7936 #ifdef CONFIG_IXGBE_DCA
7937 static int ixgbe_notify_dca(struct notifier_block
*nb
, unsigned long event
,
7942 ret_val
= driver_for_each_device(&ixgbe_driver
.driver
, NULL
, &event
,
7943 __ixgbe_notify_dca
);
7945 return ret_val
? NOTIFY_BAD
: NOTIFY_DONE
;
7948 #endif /* CONFIG_IXGBE_DCA */
7950 module_exit(ixgbe_exit_module
);