1 /*******************************************************************************
3 Intel(R) Gigabit Ethernet Linux driver
4 Copyright(c) 2007-2012 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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #include <linux/module.h>
31 #include <linux/types.h>
32 #include <linux/init.h>
33 #include <linux/bitops.h>
34 #include <linux/vmalloc.h>
35 #include <linux/pagemap.h>
36 #include <linux/netdevice.h>
37 #include <linux/ipv6.h>
38 #include <linux/slab.h>
39 #include <net/checksum.h>
40 #include <net/ip6_checksum.h>
41 #include <linux/net_tstamp.h>
42 #include <linux/mii.h>
43 #include <linux/ethtool.h>
45 #include <linux/if_vlan.h>
46 #include <linux/pci.h>
47 #include <linux/pci-aspm.h>
48 #include <linux/delay.h>
49 #include <linux/interrupt.h>
51 #include <linux/tcp.h>
52 #include <linux/sctp.h>
53 #include <linux/if_ether.h>
54 #include <linux/aer.h>
55 #include <linux/prefetch.h>
56 #include <linux/pm_runtime.h>
58 #include <linux/dca.h>
65 #define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
66 __stringify(BUILD) "-k"
67 char igb_driver_name
[] = "igb";
68 char igb_driver_version
[] = DRV_VERSION
;
69 static const char igb_driver_string
[] =
70 "Intel(R) Gigabit Ethernet Network Driver";
71 static const char igb_copyright
[] = "Copyright (c) 2007-2012 Intel Corporation.";
73 static const struct e1000_info
*igb_info_tbl
[] = {
74 [board_82575
] = &e1000_82575_info
,
77 static DEFINE_PCI_DEVICE_TABLE(igb_pci_tbl
) = {
78 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I211_COPPER
), board_82575
},
79 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I210_COPPER
), board_82575
},
80 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I210_FIBER
), board_82575
},
81 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I210_SERDES
), board_82575
},
82 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I210_SGMII
), board_82575
},
83 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I350_COPPER
), board_82575
},
84 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I350_FIBER
), board_82575
},
85 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I350_SERDES
), board_82575
},
86 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_I350_SGMII
), board_82575
},
87 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82580_COPPER
), board_82575
},
88 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82580_FIBER
), board_82575
},
89 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82580_QUAD_FIBER
), board_82575
},
90 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82580_SERDES
), board_82575
},
91 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82580_SGMII
), board_82575
},
92 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82580_COPPER_DUAL
), board_82575
},
93 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_DH89XXCC_SGMII
), board_82575
},
94 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_DH89XXCC_SERDES
), board_82575
},
95 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_DH89XXCC_BACKPLANE
), board_82575
},
96 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_DH89XXCC_SFP
), board_82575
},
97 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576
), board_82575
},
98 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576_NS
), board_82575
},
99 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576_NS_SERDES
), board_82575
},
100 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576_FIBER
), board_82575
},
101 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576_SERDES
), board_82575
},
102 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576_SERDES_QUAD
), board_82575
},
103 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576_QUAD_COPPER_ET2
), board_82575
},
104 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82576_QUAD_COPPER
), board_82575
},
105 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82575EB_COPPER
), board_82575
},
106 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82575EB_FIBER_SERDES
), board_82575
},
107 { PCI_VDEVICE(INTEL
, E1000_DEV_ID_82575GB_QUAD_COPPER
), board_82575
},
108 /* required last entry */
112 MODULE_DEVICE_TABLE(pci
, igb_pci_tbl
);
114 void igb_reset(struct igb_adapter
*);
115 static int igb_setup_all_tx_resources(struct igb_adapter
*);
116 static int igb_setup_all_rx_resources(struct igb_adapter
*);
117 static void igb_free_all_tx_resources(struct igb_adapter
*);
118 static void igb_free_all_rx_resources(struct igb_adapter
*);
119 static void igb_setup_mrqc(struct igb_adapter
*);
120 static int igb_probe(struct pci_dev
*, const struct pci_device_id
*);
121 static void __devexit
igb_remove(struct pci_dev
*pdev
);
122 static int igb_sw_init(struct igb_adapter
*);
123 static int igb_open(struct net_device
*);
124 static int igb_close(struct net_device
*);
125 static void igb_configure_tx(struct igb_adapter
*);
126 static void igb_configure_rx(struct igb_adapter
*);
127 static void igb_clean_all_tx_rings(struct igb_adapter
*);
128 static void igb_clean_all_rx_rings(struct igb_adapter
*);
129 static void igb_clean_tx_ring(struct igb_ring
*);
130 static void igb_clean_rx_ring(struct igb_ring
*);
131 static void igb_set_rx_mode(struct net_device
*);
132 static void igb_update_phy_info(unsigned long);
133 static void igb_watchdog(unsigned long);
134 static void igb_watchdog_task(struct work_struct
*);
135 static netdev_tx_t
igb_xmit_frame(struct sk_buff
*skb
, struct net_device
*);
136 static struct rtnl_link_stats64
*igb_get_stats64(struct net_device
*dev
,
137 struct rtnl_link_stats64
*stats
);
138 static int igb_change_mtu(struct net_device
*, int);
139 static int igb_set_mac(struct net_device
*, void *);
140 static void igb_set_uta(struct igb_adapter
*adapter
);
141 static irqreturn_t
igb_intr(int irq
, void *);
142 static irqreturn_t
igb_intr_msi(int irq
, void *);
143 static irqreturn_t
igb_msix_other(int irq
, void *);
144 static irqreturn_t
igb_msix_ring(int irq
, void *);
145 #ifdef CONFIG_IGB_DCA
146 static void igb_update_dca(struct igb_q_vector
*);
147 static void igb_setup_dca(struct igb_adapter
*);
148 #endif /* CONFIG_IGB_DCA */
149 static int igb_poll(struct napi_struct
*, int);
150 static bool igb_clean_tx_irq(struct igb_q_vector
*);
151 static bool igb_clean_rx_irq(struct igb_q_vector
*, int);
152 static int igb_ioctl(struct net_device
*, struct ifreq
*, int cmd
);
153 static void igb_tx_timeout(struct net_device
*);
154 static void igb_reset_task(struct work_struct
*);
155 static void igb_vlan_mode(struct net_device
*netdev
, netdev_features_t features
);
156 static int igb_vlan_rx_add_vid(struct net_device
*, u16
);
157 static int igb_vlan_rx_kill_vid(struct net_device
*, u16
);
158 static void igb_restore_vlan(struct igb_adapter
*);
159 static void igb_rar_set_qsel(struct igb_adapter
*, u8
*, u32
, u8
);
160 static void igb_ping_all_vfs(struct igb_adapter
*);
161 static void igb_msg_task(struct igb_adapter
*);
162 static void igb_vmm_control(struct igb_adapter
*);
163 static int igb_set_vf_mac(struct igb_adapter
*, int, unsigned char *);
164 static void igb_restore_vf_multicasts(struct igb_adapter
*adapter
);
165 static int igb_ndo_set_vf_mac(struct net_device
*netdev
, int vf
, u8
*mac
);
166 static int igb_ndo_set_vf_vlan(struct net_device
*netdev
,
167 int vf
, u16 vlan
, u8 qos
);
168 static int igb_ndo_set_vf_bw(struct net_device
*netdev
, int vf
, int tx_rate
);
169 static int igb_ndo_get_vf_config(struct net_device
*netdev
, int vf
,
170 struct ifla_vf_info
*ivi
);
171 static void igb_check_vf_rate_limit(struct igb_adapter
*);
173 #ifdef CONFIG_PCI_IOV
174 static int igb_vf_configure(struct igb_adapter
*adapter
, int vf
);
175 static int igb_find_enabled_vfs(struct igb_adapter
*adapter
);
176 static int igb_check_vf_assignment(struct igb_adapter
*adapter
);
180 #ifdef CONFIG_PM_SLEEP
181 static int igb_suspend(struct device
*);
183 static int igb_resume(struct device
*);
184 #ifdef CONFIG_PM_RUNTIME
185 static int igb_runtime_suspend(struct device
*dev
);
186 static int igb_runtime_resume(struct device
*dev
);
187 static int igb_runtime_idle(struct device
*dev
);
189 static const struct dev_pm_ops igb_pm_ops
= {
190 SET_SYSTEM_SLEEP_PM_OPS(igb_suspend
, igb_resume
)
191 SET_RUNTIME_PM_OPS(igb_runtime_suspend
, igb_runtime_resume
,
195 static void igb_shutdown(struct pci_dev
*);
196 #ifdef CONFIG_IGB_DCA
197 static int igb_notify_dca(struct notifier_block
*, unsigned long, void *);
198 static struct notifier_block dca_notifier
= {
199 .notifier_call
= igb_notify_dca
,
204 #ifdef CONFIG_NET_POLL_CONTROLLER
205 /* for netdump / net console */
206 static void igb_netpoll(struct net_device
*);
208 #ifdef CONFIG_PCI_IOV
209 static unsigned int max_vfs
= 0;
210 module_param(max_vfs
, uint
, 0);
211 MODULE_PARM_DESC(max_vfs
, "Maximum number of virtual functions to allocate "
212 "per physical function");
213 #endif /* CONFIG_PCI_IOV */
215 static pci_ers_result_t
igb_io_error_detected(struct pci_dev
*,
216 pci_channel_state_t
);
217 static pci_ers_result_t
igb_io_slot_reset(struct pci_dev
*);
218 static void igb_io_resume(struct pci_dev
*);
220 static struct pci_error_handlers igb_err_handler
= {
221 .error_detected
= igb_io_error_detected
,
222 .slot_reset
= igb_io_slot_reset
,
223 .resume
= igb_io_resume
,
226 static void igb_init_dmac(struct igb_adapter
*adapter
, u32 pba
);
228 static struct pci_driver igb_driver
= {
229 .name
= igb_driver_name
,
230 .id_table
= igb_pci_tbl
,
232 .remove
= __devexit_p(igb_remove
),
234 .driver
.pm
= &igb_pm_ops
,
236 .shutdown
= igb_shutdown
,
237 .err_handler
= &igb_err_handler
240 MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
241 MODULE_DESCRIPTION("Intel(R) Gigabit Ethernet Network Driver");
242 MODULE_LICENSE("GPL");
243 MODULE_VERSION(DRV_VERSION
);
245 #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
246 static int debug
= -1;
247 module_param(debug
, int, 0);
248 MODULE_PARM_DESC(debug
, "Debug level (0=none,...,16=all)");
250 struct igb_reg_info
{
255 static const struct igb_reg_info igb_reg_info_tbl
[] = {
257 /* General Registers */
258 {E1000_CTRL
, "CTRL"},
259 {E1000_STATUS
, "STATUS"},
260 {E1000_CTRL_EXT
, "CTRL_EXT"},
262 /* Interrupt Registers */
266 {E1000_RCTL
, "RCTL"},
267 {E1000_RDLEN(0), "RDLEN"},
268 {E1000_RDH(0), "RDH"},
269 {E1000_RDT(0), "RDT"},
270 {E1000_RXDCTL(0), "RXDCTL"},
271 {E1000_RDBAL(0), "RDBAL"},
272 {E1000_RDBAH(0), "RDBAH"},
275 {E1000_TCTL
, "TCTL"},
276 {E1000_TDBAL(0), "TDBAL"},
277 {E1000_TDBAH(0), "TDBAH"},
278 {E1000_TDLEN(0), "TDLEN"},
279 {E1000_TDH(0), "TDH"},
280 {E1000_TDT(0), "TDT"},
281 {E1000_TXDCTL(0), "TXDCTL"},
282 {E1000_TDFH
, "TDFH"},
283 {E1000_TDFT
, "TDFT"},
284 {E1000_TDFHS
, "TDFHS"},
285 {E1000_TDFPC
, "TDFPC"},
287 /* List Terminator */
292 * igb_regdump - register printout routine
294 static void igb_regdump(struct e1000_hw
*hw
, struct igb_reg_info
*reginfo
)
300 switch (reginfo
->ofs
) {
302 for (n
= 0; n
< 4; n
++)
303 regs
[n
] = rd32(E1000_RDLEN(n
));
306 for (n
= 0; n
< 4; n
++)
307 regs
[n
] = rd32(E1000_RDH(n
));
310 for (n
= 0; n
< 4; n
++)
311 regs
[n
] = rd32(E1000_RDT(n
));
313 case E1000_RXDCTL(0):
314 for (n
= 0; n
< 4; n
++)
315 regs
[n
] = rd32(E1000_RXDCTL(n
));
318 for (n
= 0; n
< 4; n
++)
319 regs
[n
] = rd32(E1000_RDBAL(n
));
322 for (n
= 0; n
< 4; n
++)
323 regs
[n
] = rd32(E1000_RDBAH(n
));
326 for (n
= 0; n
< 4; n
++)
327 regs
[n
] = rd32(E1000_RDBAL(n
));
330 for (n
= 0; n
< 4; n
++)
331 regs
[n
] = rd32(E1000_TDBAH(n
));
334 for (n
= 0; n
< 4; n
++)
335 regs
[n
] = rd32(E1000_TDLEN(n
));
338 for (n
= 0; n
< 4; n
++)
339 regs
[n
] = rd32(E1000_TDH(n
));
342 for (n
= 0; n
< 4; n
++)
343 regs
[n
] = rd32(E1000_TDT(n
));
345 case E1000_TXDCTL(0):
346 for (n
= 0; n
< 4; n
++)
347 regs
[n
] = rd32(E1000_TXDCTL(n
));
350 pr_info("%-15s %08x\n", reginfo
->name
, rd32(reginfo
->ofs
));
354 snprintf(rname
, 16, "%s%s", reginfo
->name
, "[0-3]");
355 pr_info("%-15s %08x %08x %08x %08x\n", rname
, regs
[0], regs
[1],
360 * igb_dump - Print registers, tx-rings and rx-rings
362 static void igb_dump(struct igb_adapter
*adapter
)
364 struct net_device
*netdev
= adapter
->netdev
;
365 struct e1000_hw
*hw
= &adapter
->hw
;
366 struct igb_reg_info
*reginfo
;
367 struct igb_ring
*tx_ring
;
368 union e1000_adv_tx_desc
*tx_desc
;
369 struct my_u0
{ u64 a
; u64 b
; } *u0
;
370 struct igb_ring
*rx_ring
;
371 union e1000_adv_rx_desc
*rx_desc
;
375 if (!netif_msg_hw(adapter
))
378 /* Print netdevice Info */
380 dev_info(&adapter
->pdev
->dev
, "Net device Info\n");
381 pr_info("Device Name state trans_start "
383 pr_info("%-15s %016lX %016lX %016lX\n", netdev
->name
,
384 netdev
->state
, netdev
->trans_start
, netdev
->last_rx
);
387 /* Print Registers */
388 dev_info(&adapter
->pdev
->dev
, "Register Dump\n");
389 pr_info(" Register Name Value\n");
390 for (reginfo
= (struct igb_reg_info
*)igb_reg_info_tbl
;
391 reginfo
->name
; reginfo
++) {
392 igb_regdump(hw
, reginfo
);
395 /* Print TX Ring Summary */
396 if (!netdev
|| !netif_running(netdev
))
399 dev_info(&adapter
->pdev
->dev
, "TX Rings Summary\n");
400 pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n");
401 for (n
= 0; n
< adapter
->num_tx_queues
; n
++) {
402 struct igb_tx_buffer
*buffer_info
;
403 tx_ring
= adapter
->tx_ring
[n
];
404 buffer_info
= &tx_ring
->tx_buffer_info
[tx_ring
->next_to_clean
];
405 pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n",
406 n
, tx_ring
->next_to_use
, tx_ring
->next_to_clean
,
407 (u64
)buffer_info
->dma
,
409 buffer_info
->next_to_watch
,
410 (u64
)buffer_info
->time_stamp
);
414 if (!netif_msg_tx_done(adapter
))
415 goto rx_ring_summary
;
417 dev_info(&adapter
->pdev
->dev
, "TX Rings Dump\n");
419 /* Transmit Descriptor Formats
421 * Advanced Transmit Descriptor
422 * +--------------------------------------------------------------+
423 * 0 | Buffer Address [63:0] |
424 * +--------------------------------------------------------------+
425 * 8 | PAYLEN | PORTS |CC|IDX | STA | DCMD |DTYP|MAC|RSV| DTALEN |
426 * +--------------------------------------------------------------+
427 * 63 46 45 40 39 38 36 35 32 31 24 15 0
430 for (n
= 0; n
< adapter
->num_tx_queues
; n
++) {
431 tx_ring
= adapter
->tx_ring
[n
];
432 pr_info("------------------------------------\n");
433 pr_info("TX QUEUE INDEX = %d\n", tx_ring
->queue_index
);
434 pr_info("------------------------------------\n");
435 pr_info("T [desc] [address 63:0 ] [PlPOCIStDDM Ln] "
436 "[bi->dma ] leng ntw timestamp "
439 for (i
= 0; tx_ring
->desc
&& (i
< tx_ring
->count
); i
++) {
440 const char *next_desc
;
441 struct igb_tx_buffer
*buffer_info
;
442 tx_desc
= IGB_TX_DESC(tx_ring
, i
);
443 buffer_info
= &tx_ring
->tx_buffer_info
[i
];
444 u0
= (struct my_u0
*)tx_desc
;
445 if (i
== tx_ring
->next_to_use
&&
446 i
== tx_ring
->next_to_clean
)
447 next_desc
= " NTC/U";
448 else if (i
== tx_ring
->next_to_use
)
450 else if (i
== tx_ring
->next_to_clean
)
455 pr_info("T [0x%03X] %016llX %016llX %016llX"
456 " %04X %p %016llX %p%s\n", i
,
459 (u64
)buffer_info
->dma
,
461 buffer_info
->next_to_watch
,
462 (u64
)buffer_info
->time_stamp
,
463 buffer_info
->skb
, next_desc
);
465 if (netif_msg_pktdata(adapter
) && buffer_info
->skb
)
466 print_hex_dump(KERN_INFO
, "",
468 16, 1, buffer_info
->skb
->data
,
469 buffer_info
->length
, true);
473 /* Print RX Rings Summary */
475 dev_info(&adapter
->pdev
->dev
, "RX Rings Summary\n");
476 pr_info("Queue [NTU] [NTC]\n");
477 for (n
= 0; n
< adapter
->num_rx_queues
; n
++) {
478 rx_ring
= adapter
->rx_ring
[n
];
479 pr_info(" %5d %5X %5X\n",
480 n
, rx_ring
->next_to_use
, rx_ring
->next_to_clean
);
484 if (!netif_msg_rx_status(adapter
))
487 dev_info(&adapter
->pdev
->dev
, "RX Rings Dump\n");
489 /* Advanced Receive Descriptor (Read) Format
491 * +-----------------------------------------------------+
492 * 0 | Packet Buffer Address [63:1] |A0/NSE|
493 * +----------------------------------------------+------+
494 * 8 | Header Buffer Address [63:1] | DD |
495 * +-----------------------------------------------------+
498 * Advanced Receive Descriptor (Write-Back) Format
500 * 63 48 47 32 31 30 21 20 17 16 4 3 0
501 * +------------------------------------------------------+
502 * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS |
503 * | Checksum Ident | | | | Type | Type |
504 * +------------------------------------------------------+
505 * 8 | VLAN Tag | Length | Extended Error | Extended Status |
506 * +------------------------------------------------------+
507 * 63 48 47 32 31 20 19 0
510 for (n
= 0; n
< adapter
->num_rx_queues
; n
++) {
511 rx_ring
= adapter
->rx_ring
[n
];
512 pr_info("------------------------------------\n");
513 pr_info("RX QUEUE INDEX = %d\n", rx_ring
->queue_index
);
514 pr_info("------------------------------------\n");
515 pr_info("R [desc] [ PktBuf A0] [ HeadBuf DD] "
516 "[bi->dma ] [bi->skb] <-- Adv Rx Read format\n");
517 pr_info("RWB[desc] [PcsmIpSHl PtRs] [vl er S cks ln] -----"
518 "----------- [bi->skb] <-- Adv Rx Write-Back format\n");
520 for (i
= 0; i
< rx_ring
->count
; i
++) {
521 const char *next_desc
;
522 struct igb_rx_buffer
*buffer_info
;
523 buffer_info
= &rx_ring
->rx_buffer_info
[i
];
524 rx_desc
= IGB_RX_DESC(rx_ring
, i
);
525 u0
= (struct my_u0
*)rx_desc
;
526 staterr
= le32_to_cpu(rx_desc
->wb
.upper
.status_error
);
528 if (i
== rx_ring
->next_to_use
)
530 else if (i
== rx_ring
->next_to_clean
)
535 if (staterr
& E1000_RXD_STAT_DD
) {
536 /* Descriptor Done */
537 pr_info("%s[0x%03X] %016llX %016llX -------"
538 "--------- %p%s\n", "RWB", i
,
541 buffer_info
->skb
, next_desc
);
543 pr_info("%s[0x%03X] %016llX %016llX %016llX"
547 (u64
)buffer_info
->dma
,
548 buffer_info
->skb
, next_desc
);
550 if (netif_msg_pktdata(adapter
) &&
551 buffer_info
->dma
&& buffer_info
->skb
) {
552 print_hex_dump(KERN_INFO
, "",
554 16, 1, buffer_info
->skb
->data
,
555 IGB_RX_HDR_LEN
, true);
556 print_hex_dump(KERN_INFO
, "",
559 page_address(buffer_info
->page
) +
560 buffer_info
->page_offset
,
572 * igb_get_hw_dev - return device
573 * used by hardware layer to print debugging information
575 struct net_device
*igb_get_hw_dev(struct e1000_hw
*hw
)
577 struct igb_adapter
*adapter
= hw
->back
;
578 return adapter
->netdev
;
582 * igb_init_module - Driver Registration Routine
584 * igb_init_module is the first routine called when the driver is
585 * loaded. All it does is register with the PCI subsystem.
587 static int __init
igb_init_module(void)
590 pr_info("%s - version %s\n",
591 igb_driver_string
, igb_driver_version
);
593 pr_info("%s\n", igb_copyright
);
595 #ifdef CONFIG_IGB_DCA
596 dca_register_notify(&dca_notifier
);
598 ret
= pci_register_driver(&igb_driver
);
602 module_init(igb_init_module
);
605 * igb_exit_module - Driver Exit Cleanup Routine
607 * igb_exit_module is called just before the driver is removed
610 static void __exit
igb_exit_module(void)
612 #ifdef CONFIG_IGB_DCA
613 dca_unregister_notify(&dca_notifier
);
615 pci_unregister_driver(&igb_driver
);
618 module_exit(igb_exit_module
);
620 #define Q_IDX_82576(i) (((i & 0x1) << 3) + (i >> 1))
622 * igb_cache_ring_register - Descriptor ring to register mapping
623 * @adapter: board private structure to initialize
625 * Once we know the feature-set enabled for the device, we'll cache
626 * the register offset the descriptor ring is assigned to.
628 static void igb_cache_ring_register(struct igb_adapter
*adapter
)
631 u32 rbase_offset
= adapter
->vfs_allocated_count
;
633 switch (adapter
->hw
.mac
.type
) {
635 /* The queues are allocated for virtualization such that VF 0
636 * is allocated queues 0 and 8, VF 1 queues 1 and 9, etc.
637 * In order to avoid collision we start at the first free queue
638 * and continue consuming queues in the same sequence
640 if (adapter
->vfs_allocated_count
) {
641 for (; i
< adapter
->rss_queues
; i
++)
642 adapter
->rx_ring
[i
]->reg_idx
= rbase_offset
+
651 for (; i
< adapter
->num_rx_queues
; i
++)
652 adapter
->rx_ring
[i
]->reg_idx
= rbase_offset
+ i
;
653 for (; j
< adapter
->num_tx_queues
; j
++)
654 adapter
->tx_ring
[j
]->reg_idx
= rbase_offset
+ j
;
659 static void igb_free_queues(struct igb_adapter
*adapter
)
663 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
664 kfree(adapter
->tx_ring
[i
]);
665 adapter
->tx_ring
[i
] = NULL
;
667 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
668 kfree(adapter
->rx_ring
[i
]);
669 adapter
->rx_ring
[i
] = NULL
;
671 adapter
->num_rx_queues
= 0;
672 adapter
->num_tx_queues
= 0;
676 * igb_alloc_queues - Allocate memory for all rings
677 * @adapter: board private structure to initialize
679 * We allocate one ring per queue at run-time since we don't know the
680 * number of queues at compile-time.
682 static int igb_alloc_queues(struct igb_adapter
*adapter
)
684 struct igb_ring
*ring
;
686 int orig_node
= adapter
->node
;
688 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
689 if (orig_node
== -1) {
690 int cur_node
= next_online_node(adapter
->node
);
691 if (cur_node
== MAX_NUMNODES
)
692 cur_node
= first_online_node
;
693 adapter
->node
= cur_node
;
695 ring
= kzalloc_node(sizeof(struct igb_ring
), GFP_KERNEL
,
698 ring
= kzalloc(sizeof(struct igb_ring
), GFP_KERNEL
);
701 ring
->count
= adapter
->tx_ring_count
;
702 ring
->queue_index
= i
;
703 ring
->dev
= &adapter
->pdev
->dev
;
704 ring
->netdev
= adapter
->netdev
;
705 ring
->numa_node
= adapter
->node
;
706 /* For 82575, context index must be unique per ring. */
707 if (adapter
->hw
.mac
.type
== e1000_82575
)
708 set_bit(IGB_RING_FLAG_TX_CTX_IDX
, &ring
->flags
);
709 adapter
->tx_ring
[i
] = ring
;
711 /* Restore the adapter's original node */
712 adapter
->node
= orig_node
;
714 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
715 if (orig_node
== -1) {
716 int cur_node
= next_online_node(adapter
->node
);
717 if (cur_node
== MAX_NUMNODES
)
718 cur_node
= first_online_node
;
719 adapter
->node
= cur_node
;
721 ring
= kzalloc_node(sizeof(struct igb_ring
), GFP_KERNEL
,
724 ring
= kzalloc(sizeof(struct igb_ring
), GFP_KERNEL
);
727 ring
->count
= adapter
->rx_ring_count
;
728 ring
->queue_index
= i
;
729 ring
->dev
= &adapter
->pdev
->dev
;
730 ring
->netdev
= adapter
->netdev
;
731 ring
->numa_node
= adapter
->node
;
732 /* set flag indicating ring supports SCTP checksum offload */
733 if (adapter
->hw
.mac
.type
>= e1000_82576
)
734 set_bit(IGB_RING_FLAG_RX_SCTP_CSUM
, &ring
->flags
);
737 * On i350, i210, and i211, loopback VLAN packets
738 * have the tag byte-swapped.
740 if (adapter
->hw
.mac
.type
>= e1000_i350
)
741 set_bit(IGB_RING_FLAG_RX_LB_VLAN_BSWAP
, &ring
->flags
);
743 adapter
->rx_ring
[i
] = ring
;
745 /* Restore the adapter's original node */
746 adapter
->node
= orig_node
;
748 igb_cache_ring_register(adapter
);
753 /* Restore the adapter's original node */
754 adapter
->node
= orig_node
;
755 igb_free_queues(adapter
);
761 * igb_write_ivar - configure ivar for given MSI-X vector
762 * @hw: pointer to the HW structure
763 * @msix_vector: vector number we are allocating to a given ring
764 * @index: row index of IVAR register to write within IVAR table
765 * @offset: column offset of in IVAR, should be multiple of 8
767 * This function is intended to handle the writing of the IVAR register
768 * for adapters 82576 and newer. The IVAR table consists of 2 columns,
769 * each containing an cause allocation for an Rx and Tx ring, and a
770 * variable number of rows depending on the number of queues supported.
772 static void igb_write_ivar(struct e1000_hw
*hw
, int msix_vector
,
773 int index
, int offset
)
775 u32 ivar
= array_rd32(E1000_IVAR0
, index
);
777 /* clear any bits that are currently set */
778 ivar
&= ~((u32
)0xFF << offset
);
780 /* write vector and valid bit */
781 ivar
|= (msix_vector
| E1000_IVAR_VALID
) << offset
;
783 array_wr32(E1000_IVAR0
, index
, ivar
);
786 #define IGB_N0_QUEUE -1
787 static void igb_assign_vector(struct igb_q_vector
*q_vector
, int msix_vector
)
789 struct igb_adapter
*adapter
= q_vector
->adapter
;
790 struct e1000_hw
*hw
= &adapter
->hw
;
791 int rx_queue
= IGB_N0_QUEUE
;
792 int tx_queue
= IGB_N0_QUEUE
;
795 if (q_vector
->rx
.ring
)
796 rx_queue
= q_vector
->rx
.ring
->reg_idx
;
797 if (q_vector
->tx
.ring
)
798 tx_queue
= q_vector
->tx
.ring
->reg_idx
;
800 switch (hw
->mac
.type
) {
802 /* The 82575 assigns vectors using a bitmask, which matches the
803 bitmask for the EICR/EIMS/EIMC registers. To assign one
804 or more queues to a vector, we write the appropriate bits
805 into the MSIXBM register for that vector. */
806 if (rx_queue
> IGB_N0_QUEUE
)
807 msixbm
= E1000_EICR_RX_QUEUE0
<< rx_queue
;
808 if (tx_queue
> IGB_N0_QUEUE
)
809 msixbm
|= E1000_EICR_TX_QUEUE0
<< tx_queue
;
810 if (!adapter
->msix_entries
&& msix_vector
== 0)
811 msixbm
|= E1000_EIMS_OTHER
;
812 array_wr32(E1000_MSIXBM(0), msix_vector
, msixbm
);
813 q_vector
->eims_value
= msixbm
;
817 * 82576 uses a table that essentially consists of 2 columns
818 * with 8 rows. The ordering is column-major so we use the
819 * lower 3 bits as the row index, and the 4th bit as the
822 if (rx_queue
> IGB_N0_QUEUE
)
823 igb_write_ivar(hw
, msix_vector
,
825 (rx_queue
& 0x8) << 1);
826 if (tx_queue
> IGB_N0_QUEUE
)
827 igb_write_ivar(hw
, msix_vector
,
829 ((tx_queue
& 0x8) << 1) + 8);
830 q_vector
->eims_value
= 1 << msix_vector
;
837 * On 82580 and newer adapters the scheme is similar to 82576
838 * however instead of ordering column-major we have things
839 * ordered row-major. So we traverse the table by using
840 * bit 0 as the column offset, and the remaining bits as the
843 if (rx_queue
> IGB_N0_QUEUE
)
844 igb_write_ivar(hw
, msix_vector
,
846 (rx_queue
& 0x1) << 4);
847 if (tx_queue
> IGB_N0_QUEUE
)
848 igb_write_ivar(hw
, msix_vector
,
850 ((tx_queue
& 0x1) << 4) + 8);
851 q_vector
->eims_value
= 1 << msix_vector
;
858 /* add q_vector eims value to global eims_enable_mask */
859 adapter
->eims_enable_mask
|= q_vector
->eims_value
;
861 /* configure q_vector to set itr on first interrupt */
862 q_vector
->set_itr
= 1;
866 * igb_configure_msix - Configure MSI-X hardware
868 * igb_configure_msix sets up the hardware to properly
869 * generate MSI-X interrupts.
871 static void igb_configure_msix(struct igb_adapter
*adapter
)
875 struct e1000_hw
*hw
= &adapter
->hw
;
877 adapter
->eims_enable_mask
= 0;
879 /* set vector for other causes, i.e. link changes */
880 switch (hw
->mac
.type
) {
882 tmp
= rd32(E1000_CTRL_EXT
);
883 /* enable MSI-X PBA support*/
884 tmp
|= E1000_CTRL_EXT_PBA_CLR
;
886 /* Auto-Mask interrupts upon ICR read. */
887 tmp
|= E1000_CTRL_EXT_EIAME
;
888 tmp
|= E1000_CTRL_EXT_IRCA
;
890 wr32(E1000_CTRL_EXT
, tmp
);
892 /* enable msix_other interrupt */
893 array_wr32(E1000_MSIXBM(0), vector
++,
895 adapter
->eims_other
= E1000_EIMS_OTHER
;
904 /* Turn on MSI-X capability first, or our settings
905 * won't stick. And it will take days to debug. */
906 wr32(E1000_GPIE
, E1000_GPIE_MSIX_MODE
|
907 E1000_GPIE_PBA
| E1000_GPIE_EIAME
|
910 /* enable msix_other interrupt */
911 adapter
->eims_other
= 1 << vector
;
912 tmp
= (vector
++ | E1000_IVAR_VALID
) << 8;
914 wr32(E1000_IVAR_MISC
, tmp
);
917 /* do nothing, since nothing else supports MSI-X */
919 } /* switch (hw->mac.type) */
921 adapter
->eims_enable_mask
|= adapter
->eims_other
;
923 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
924 igb_assign_vector(adapter
->q_vector
[i
], vector
++);
930 * igb_request_msix - Initialize MSI-X interrupts
932 * igb_request_msix allocates MSI-X vectors and requests interrupts from the
935 static int igb_request_msix(struct igb_adapter
*adapter
)
937 struct net_device
*netdev
= adapter
->netdev
;
938 struct e1000_hw
*hw
= &adapter
->hw
;
939 int i
, err
= 0, vector
= 0;
941 err
= request_irq(adapter
->msix_entries
[vector
].vector
,
942 igb_msix_other
, 0, netdev
->name
, adapter
);
947 for (i
= 0; i
< adapter
->num_q_vectors
; i
++) {
948 struct igb_q_vector
*q_vector
= adapter
->q_vector
[i
];
950 q_vector
->itr_register
= hw
->hw_addr
+ E1000_EITR(vector
);
952 if (q_vector
->rx
.ring
&& q_vector
->tx
.ring
)
953 sprintf(q_vector
->name
, "%s-TxRx-%u", netdev
->name
,
954 q_vector
->rx
.ring
->queue_index
);
955 else if (q_vector
->tx
.ring
)
956 sprintf(q_vector
->name
, "%s-tx-%u", netdev
->name
,
957 q_vector
->tx
.ring
->queue_index
);
958 else if (q_vector
->rx
.ring
)
959 sprintf(q_vector
->name
, "%s-rx-%u", netdev
->name
,
960 q_vector
->rx
.ring
->queue_index
);
962 sprintf(q_vector
->name
, "%s-unused", netdev
->name
);
964 err
= request_irq(adapter
->msix_entries
[vector
].vector
,
965 igb_msix_ring
, 0, q_vector
->name
,
972 igb_configure_msix(adapter
);
978 static void igb_reset_interrupt_capability(struct igb_adapter
*adapter
)
980 if (adapter
->msix_entries
) {
981 pci_disable_msix(adapter
->pdev
);
982 kfree(adapter
->msix_entries
);
983 adapter
->msix_entries
= NULL
;
984 } else if (adapter
->flags
& IGB_FLAG_HAS_MSI
) {
985 pci_disable_msi(adapter
->pdev
);
990 * igb_free_q_vectors - Free memory allocated for interrupt vectors
991 * @adapter: board private structure to initialize
993 * This function frees the memory allocated to the q_vectors. In addition if
994 * NAPI is enabled it will delete any references to the NAPI struct prior
995 * to freeing the q_vector.
997 static void igb_free_q_vectors(struct igb_adapter
*adapter
)
1001 for (v_idx
= 0; v_idx
< adapter
->num_q_vectors
; v_idx
++) {
1002 struct igb_q_vector
*q_vector
= adapter
->q_vector
[v_idx
];
1003 adapter
->q_vector
[v_idx
] = NULL
;
1006 netif_napi_del(&q_vector
->napi
);
1009 adapter
->num_q_vectors
= 0;
1013 * igb_clear_interrupt_scheme - reset the device to a state of no interrupts
1015 * This function resets the device so that it has 0 rx queues, tx queues, and
1016 * MSI-X interrupts allocated.
1018 static void igb_clear_interrupt_scheme(struct igb_adapter
*adapter
)
1020 igb_free_queues(adapter
);
1021 igb_free_q_vectors(adapter
);
1022 igb_reset_interrupt_capability(adapter
);
1026 * igb_set_interrupt_capability - set MSI or MSI-X if supported
1028 * Attempt to configure interrupts using the best available
1029 * capabilities of the hardware and kernel.
1031 static int igb_set_interrupt_capability(struct igb_adapter
*adapter
)
1036 /* Number of supported queues. */
1037 adapter
->num_rx_queues
= adapter
->rss_queues
;
1038 if (adapter
->vfs_allocated_count
)
1039 adapter
->num_tx_queues
= 1;
1041 adapter
->num_tx_queues
= adapter
->rss_queues
;
1043 /* start with one vector for every rx queue */
1044 numvecs
= adapter
->num_rx_queues
;
1046 /* if tx handler is separate add 1 for every tx queue */
1047 if (!(adapter
->flags
& IGB_FLAG_QUEUE_PAIRS
))
1048 numvecs
+= adapter
->num_tx_queues
;
1050 /* store the number of vectors reserved for queues */
1051 adapter
->num_q_vectors
= numvecs
;
1053 /* add 1 vector for link status interrupts */
1055 adapter
->msix_entries
= kcalloc(numvecs
, sizeof(struct msix_entry
),
1058 if (!adapter
->msix_entries
)
1061 for (i
= 0; i
< numvecs
; i
++)
1062 adapter
->msix_entries
[i
].entry
= i
;
1064 err
= pci_enable_msix(adapter
->pdev
,
1065 adapter
->msix_entries
,
1070 igb_reset_interrupt_capability(adapter
);
1072 /* If we can't do MSI-X, try MSI */
1074 #ifdef CONFIG_PCI_IOV
1075 /* disable SR-IOV for non MSI-X configurations */
1076 if (adapter
->vf_data
) {
1077 struct e1000_hw
*hw
= &adapter
->hw
;
1078 /* disable iov and allow time for transactions to clear */
1079 pci_disable_sriov(adapter
->pdev
);
1082 kfree(adapter
->vf_data
);
1083 adapter
->vf_data
= NULL
;
1084 wr32(E1000_IOVCTL
, E1000_IOVCTL_REUSE_VFQ
);
1087 dev_info(&adapter
->pdev
->dev
, "IOV Disabled\n");
1090 adapter
->vfs_allocated_count
= 0;
1091 adapter
->rss_queues
= 1;
1092 adapter
->flags
|= IGB_FLAG_QUEUE_PAIRS
;
1093 adapter
->num_rx_queues
= 1;
1094 adapter
->num_tx_queues
= 1;
1095 adapter
->num_q_vectors
= 1;
1096 if (!pci_enable_msi(adapter
->pdev
))
1097 adapter
->flags
|= IGB_FLAG_HAS_MSI
;
1099 /* Notify the stack of the (possibly) reduced queue counts. */
1101 netif_set_real_num_tx_queues(adapter
->netdev
, adapter
->num_tx_queues
);
1102 err
= netif_set_real_num_rx_queues(adapter
->netdev
,
1103 adapter
->num_rx_queues
);
1109 * igb_alloc_q_vectors - Allocate memory for interrupt vectors
1110 * @adapter: board private structure to initialize
1112 * We allocate one q_vector per queue interrupt. If allocation fails we
1115 static int igb_alloc_q_vectors(struct igb_adapter
*adapter
)
1117 struct igb_q_vector
*q_vector
;
1118 struct e1000_hw
*hw
= &adapter
->hw
;
1120 int orig_node
= adapter
->node
;
1122 for (v_idx
= 0; v_idx
< adapter
->num_q_vectors
; v_idx
++) {
1123 if ((adapter
->num_q_vectors
== (adapter
->num_rx_queues
+
1124 adapter
->num_tx_queues
)) &&
1125 (adapter
->num_rx_queues
== v_idx
))
1126 adapter
->node
= orig_node
;
1127 if (orig_node
== -1) {
1128 int cur_node
= next_online_node(adapter
->node
);
1129 if (cur_node
== MAX_NUMNODES
)
1130 cur_node
= first_online_node
;
1131 adapter
->node
= cur_node
;
1133 q_vector
= kzalloc_node(sizeof(struct igb_q_vector
), GFP_KERNEL
,
1136 q_vector
= kzalloc(sizeof(struct igb_q_vector
),
1140 q_vector
->adapter
= adapter
;
1141 q_vector
->itr_register
= hw
->hw_addr
+ E1000_EITR(0);
1142 q_vector
->itr_val
= IGB_START_ITR
;
1143 netif_napi_add(adapter
->netdev
, &q_vector
->napi
, igb_poll
, 64);
1144 adapter
->q_vector
[v_idx
] = q_vector
;
1146 /* Restore the adapter's original node */
1147 adapter
->node
= orig_node
;
1152 /* Restore the adapter's original node */
1153 adapter
->node
= orig_node
;
1154 igb_free_q_vectors(adapter
);
1158 static void igb_map_rx_ring_to_vector(struct igb_adapter
*adapter
,
1159 int ring_idx
, int v_idx
)
1161 struct igb_q_vector
*q_vector
= adapter
->q_vector
[v_idx
];
1163 q_vector
->rx
.ring
= adapter
->rx_ring
[ring_idx
];
1164 q_vector
->rx
.ring
->q_vector
= q_vector
;
1165 q_vector
->rx
.count
++;
1166 q_vector
->itr_val
= adapter
->rx_itr_setting
;
1167 if (q_vector
->itr_val
&& q_vector
->itr_val
<= 3)
1168 q_vector
->itr_val
= IGB_START_ITR
;
1171 static void igb_map_tx_ring_to_vector(struct igb_adapter
*adapter
,
1172 int ring_idx
, int v_idx
)
1174 struct igb_q_vector
*q_vector
= adapter
->q_vector
[v_idx
];
1176 q_vector
->tx
.ring
= adapter
->tx_ring
[ring_idx
];
1177 q_vector
->tx
.ring
->q_vector
= q_vector
;
1178 q_vector
->tx
.count
++;
1179 q_vector
->itr_val
= adapter
->tx_itr_setting
;
1180 q_vector
->tx
.work_limit
= adapter
->tx_work_limit
;
1181 if (q_vector
->itr_val
&& q_vector
->itr_val
<= 3)
1182 q_vector
->itr_val
= IGB_START_ITR
;
1186 * igb_map_ring_to_vector - maps allocated queues to vectors
1188 * This function maps the recently allocated queues to vectors.
1190 static int igb_map_ring_to_vector(struct igb_adapter
*adapter
)
1195 if ((adapter
->num_q_vectors
< adapter
->num_rx_queues
) ||
1196 (adapter
->num_q_vectors
< adapter
->num_tx_queues
))
1199 if (adapter
->num_q_vectors
>=
1200 (adapter
->num_rx_queues
+ adapter
->num_tx_queues
)) {
1201 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
1202 igb_map_rx_ring_to_vector(adapter
, i
, v_idx
++);
1203 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
1204 igb_map_tx_ring_to_vector(adapter
, i
, v_idx
++);
1206 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1207 if (i
< adapter
->num_tx_queues
)
1208 igb_map_tx_ring_to_vector(adapter
, i
, v_idx
);
1209 igb_map_rx_ring_to_vector(adapter
, i
, v_idx
++);
1211 for (; i
< adapter
->num_tx_queues
; i
++)
1212 igb_map_tx_ring_to_vector(adapter
, i
, v_idx
++);
1218 * igb_init_interrupt_scheme - initialize interrupts, allocate queues/vectors
1220 * This function initializes the interrupts and allocates all of the queues.
1222 static int igb_init_interrupt_scheme(struct igb_adapter
*adapter
)
1224 struct pci_dev
*pdev
= adapter
->pdev
;
1227 err
= igb_set_interrupt_capability(adapter
);
1231 err
= igb_alloc_q_vectors(adapter
);
1233 dev_err(&pdev
->dev
, "Unable to allocate memory for vectors\n");
1234 goto err_alloc_q_vectors
;
1237 err
= igb_alloc_queues(adapter
);
1239 dev_err(&pdev
->dev
, "Unable to allocate memory for queues\n");
1240 goto err_alloc_queues
;
1243 err
= igb_map_ring_to_vector(adapter
);
1245 dev_err(&pdev
->dev
, "Invalid q_vector to ring mapping\n");
1246 goto err_map_queues
;
1252 igb_free_queues(adapter
);
1254 igb_free_q_vectors(adapter
);
1255 err_alloc_q_vectors
:
1256 igb_reset_interrupt_capability(adapter
);
1261 * igb_request_irq - initialize interrupts
1263 * Attempts to configure interrupts using the best available
1264 * capabilities of the hardware and kernel.
1266 static int igb_request_irq(struct igb_adapter
*adapter
)
1268 struct net_device
*netdev
= adapter
->netdev
;
1269 struct pci_dev
*pdev
= adapter
->pdev
;
1272 if (adapter
->msix_entries
) {
1273 err
= igb_request_msix(adapter
);
1276 /* fall back to MSI */
1277 igb_clear_interrupt_scheme(adapter
);
1278 if (!pci_enable_msi(pdev
))
1279 adapter
->flags
|= IGB_FLAG_HAS_MSI
;
1280 igb_free_all_tx_resources(adapter
);
1281 igb_free_all_rx_resources(adapter
);
1282 adapter
->num_tx_queues
= 1;
1283 adapter
->num_rx_queues
= 1;
1284 adapter
->num_q_vectors
= 1;
1285 err
= igb_alloc_q_vectors(adapter
);
1288 "Unable to allocate memory for vectors\n");
1291 err
= igb_alloc_queues(adapter
);
1294 "Unable to allocate memory for queues\n");
1295 igb_free_q_vectors(adapter
);
1298 igb_setup_all_tx_resources(adapter
);
1299 igb_setup_all_rx_resources(adapter
);
1302 igb_assign_vector(adapter
->q_vector
[0], 0);
1304 if (adapter
->flags
& IGB_FLAG_HAS_MSI
) {
1305 err
= request_irq(pdev
->irq
, igb_intr_msi
, 0,
1306 netdev
->name
, adapter
);
1310 /* fall back to legacy interrupts */
1311 igb_reset_interrupt_capability(adapter
);
1312 adapter
->flags
&= ~IGB_FLAG_HAS_MSI
;
1315 err
= request_irq(pdev
->irq
, igb_intr
, IRQF_SHARED
,
1316 netdev
->name
, adapter
);
1319 dev_err(&pdev
->dev
, "Error %d getting interrupt\n",
1326 static void igb_free_irq(struct igb_adapter
*adapter
)
1328 if (adapter
->msix_entries
) {
1331 free_irq(adapter
->msix_entries
[vector
++].vector
, adapter
);
1333 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
1334 free_irq(adapter
->msix_entries
[vector
++].vector
,
1335 adapter
->q_vector
[i
]);
1337 free_irq(adapter
->pdev
->irq
, adapter
);
1342 * igb_irq_disable - Mask off interrupt generation on the NIC
1343 * @adapter: board private structure
1345 static void igb_irq_disable(struct igb_adapter
*adapter
)
1347 struct e1000_hw
*hw
= &adapter
->hw
;
1350 * we need to be careful when disabling interrupts. The VFs are also
1351 * mapped into these registers and so clearing the bits can cause
1352 * issues on the VF drivers so we only need to clear what we set
1354 if (adapter
->msix_entries
) {
1355 u32 regval
= rd32(E1000_EIAM
);
1356 wr32(E1000_EIAM
, regval
& ~adapter
->eims_enable_mask
);
1357 wr32(E1000_EIMC
, adapter
->eims_enable_mask
);
1358 regval
= rd32(E1000_EIAC
);
1359 wr32(E1000_EIAC
, regval
& ~adapter
->eims_enable_mask
);
1363 wr32(E1000_IMC
, ~0);
1365 if (adapter
->msix_entries
) {
1367 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
1368 synchronize_irq(adapter
->msix_entries
[i
].vector
);
1370 synchronize_irq(adapter
->pdev
->irq
);
1375 * igb_irq_enable - Enable default interrupt generation settings
1376 * @adapter: board private structure
1378 static void igb_irq_enable(struct igb_adapter
*adapter
)
1380 struct e1000_hw
*hw
= &adapter
->hw
;
1382 if (adapter
->msix_entries
) {
1383 u32 ims
= E1000_IMS_LSC
| E1000_IMS_DOUTSYNC
| E1000_IMS_DRSTA
;
1384 u32 regval
= rd32(E1000_EIAC
);
1385 wr32(E1000_EIAC
, regval
| adapter
->eims_enable_mask
);
1386 regval
= rd32(E1000_EIAM
);
1387 wr32(E1000_EIAM
, regval
| adapter
->eims_enable_mask
);
1388 wr32(E1000_EIMS
, adapter
->eims_enable_mask
);
1389 if (adapter
->vfs_allocated_count
) {
1390 wr32(E1000_MBVFIMR
, 0xFF);
1391 ims
|= E1000_IMS_VMMB
;
1393 wr32(E1000_IMS
, ims
);
1395 wr32(E1000_IMS
, IMS_ENABLE_MASK
|
1397 wr32(E1000_IAM
, IMS_ENABLE_MASK
|
1402 static void igb_update_mng_vlan(struct igb_adapter
*adapter
)
1404 struct e1000_hw
*hw
= &adapter
->hw
;
1405 u16 vid
= adapter
->hw
.mng_cookie
.vlan_id
;
1406 u16 old_vid
= adapter
->mng_vlan_id
;
1408 if (hw
->mng_cookie
.status
& E1000_MNG_DHCP_COOKIE_STATUS_VLAN
) {
1409 /* add VID to filter table */
1410 igb_vfta_set(hw
, vid
, true);
1411 adapter
->mng_vlan_id
= vid
;
1413 adapter
->mng_vlan_id
= IGB_MNG_VLAN_NONE
;
1416 if ((old_vid
!= (u16
)IGB_MNG_VLAN_NONE
) &&
1418 !test_bit(old_vid
, adapter
->active_vlans
)) {
1419 /* remove VID from filter table */
1420 igb_vfta_set(hw
, old_vid
, false);
1425 * igb_release_hw_control - release control of the h/w to f/w
1426 * @adapter: address of board private structure
1428 * igb_release_hw_control resets CTRL_EXT:DRV_LOAD bit.
1429 * For ASF and Pass Through versions of f/w this means that the
1430 * driver is no longer loaded.
1433 static void igb_release_hw_control(struct igb_adapter
*adapter
)
1435 struct e1000_hw
*hw
= &adapter
->hw
;
1438 /* Let firmware take over control of h/w */
1439 ctrl_ext
= rd32(E1000_CTRL_EXT
);
1440 wr32(E1000_CTRL_EXT
,
1441 ctrl_ext
& ~E1000_CTRL_EXT_DRV_LOAD
);
1445 * igb_get_hw_control - get control of the h/w from f/w
1446 * @adapter: address of board private structure
1448 * igb_get_hw_control sets CTRL_EXT:DRV_LOAD bit.
1449 * For ASF and Pass Through versions of f/w this means that
1450 * the driver is loaded.
1453 static void igb_get_hw_control(struct igb_adapter
*adapter
)
1455 struct e1000_hw
*hw
= &adapter
->hw
;
1458 /* Let firmware know the driver has taken over */
1459 ctrl_ext
= rd32(E1000_CTRL_EXT
);
1460 wr32(E1000_CTRL_EXT
,
1461 ctrl_ext
| E1000_CTRL_EXT_DRV_LOAD
);
1465 * igb_configure - configure the hardware for RX and TX
1466 * @adapter: private board structure
1468 static void igb_configure(struct igb_adapter
*adapter
)
1470 struct net_device
*netdev
= adapter
->netdev
;
1473 igb_get_hw_control(adapter
);
1474 igb_set_rx_mode(netdev
);
1476 igb_restore_vlan(adapter
);
1478 igb_setup_tctl(adapter
);
1479 igb_setup_mrqc(adapter
);
1480 igb_setup_rctl(adapter
);
1482 igb_configure_tx(adapter
);
1483 igb_configure_rx(adapter
);
1485 igb_rx_fifo_flush_82575(&adapter
->hw
);
1487 /* call igb_desc_unused which always leaves
1488 * at least 1 descriptor unused to make sure
1489 * next_to_use != next_to_clean */
1490 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
1491 struct igb_ring
*ring
= adapter
->rx_ring
[i
];
1492 igb_alloc_rx_buffers(ring
, igb_desc_unused(ring
));
1497 * igb_power_up_link - Power up the phy/serdes link
1498 * @adapter: address of board private structure
1500 void igb_power_up_link(struct igb_adapter
*adapter
)
1502 igb_reset_phy(&adapter
->hw
);
1504 if (adapter
->hw
.phy
.media_type
== e1000_media_type_copper
)
1505 igb_power_up_phy_copper(&adapter
->hw
);
1507 igb_power_up_serdes_link_82575(&adapter
->hw
);
1511 * igb_power_down_link - Power down the phy/serdes link
1512 * @adapter: address of board private structure
1514 static void igb_power_down_link(struct igb_adapter
*adapter
)
1516 if (adapter
->hw
.phy
.media_type
== e1000_media_type_copper
)
1517 igb_power_down_phy_copper_82575(&adapter
->hw
);
1519 igb_shutdown_serdes_link_82575(&adapter
->hw
);
1523 * igb_up - Open the interface and prepare it to handle traffic
1524 * @adapter: board private structure
1526 int igb_up(struct igb_adapter
*adapter
)
1528 struct e1000_hw
*hw
= &adapter
->hw
;
1531 /* hardware has been reset, we need to reload some things */
1532 igb_configure(adapter
);
1534 clear_bit(__IGB_DOWN
, &adapter
->state
);
1536 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
1537 napi_enable(&(adapter
->q_vector
[i
]->napi
));
1539 if (adapter
->msix_entries
)
1540 igb_configure_msix(adapter
);
1542 igb_assign_vector(adapter
->q_vector
[0], 0);
1544 /* Clear any pending interrupts. */
1546 igb_irq_enable(adapter
);
1548 /* notify VFs that reset has been completed */
1549 if (adapter
->vfs_allocated_count
) {
1550 u32 reg_data
= rd32(E1000_CTRL_EXT
);
1551 reg_data
|= E1000_CTRL_EXT_PFRSTD
;
1552 wr32(E1000_CTRL_EXT
, reg_data
);
1555 netif_tx_start_all_queues(adapter
->netdev
);
1557 /* start the watchdog. */
1558 hw
->mac
.get_link_status
= 1;
1559 schedule_work(&adapter
->watchdog_task
);
1564 void igb_down(struct igb_adapter
*adapter
)
1566 struct net_device
*netdev
= adapter
->netdev
;
1567 struct e1000_hw
*hw
= &adapter
->hw
;
1571 /* signal that we're down so the interrupt handler does not
1572 * reschedule our watchdog timer */
1573 set_bit(__IGB_DOWN
, &adapter
->state
);
1575 /* disable receives in the hardware */
1576 rctl
= rd32(E1000_RCTL
);
1577 wr32(E1000_RCTL
, rctl
& ~E1000_RCTL_EN
);
1578 /* flush and sleep below */
1580 netif_tx_stop_all_queues(netdev
);
1582 /* disable transmits in the hardware */
1583 tctl
= rd32(E1000_TCTL
);
1584 tctl
&= ~E1000_TCTL_EN
;
1585 wr32(E1000_TCTL
, tctl
);
1586 /* flush both disables and wait for them to finish */
1590 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
1591 napi_disable(&(adapter
->q_vector
[i
]->napi
));
1593 igb_irq_disable(adapter
);
1595 del_timer_sync(&adapter
->watchdog_timer
);
1596 del_timer_sync(&adapter
->phy_info_timer
);
1598 netif_carrier_off(netdev
);
1600 /* record the stats before reset*/
1601 spin_lock(&adapter
->stats64_lock
);
1602 igb_update_stats(adapter
, &adapter
->stats64
);
1603 spin_unlock(&adapter
->stats64_lock
);
1605 adapter
->link_speed
= 0;
1606 adapter
->link_duplex
= 0;
1608 if (!pci_channel_offline(adapter
->pdev
))
1610 igb_clean_all_tx_rings(adapter
);
1611 igb_clean_all_rx_rings(adapter
);
1612 #ifdef CONFIG_IGB_DCA
1614 /* since we reset the hardware DCA settings were cleared */
1615 igb_setup_dca(adapter
);
1619 void igb_reinit_locked(struct igb_adapter
*adapter
)
1621 WARN_ON(in_interrupt());
1622 while (test_and_set_bit(__IGB_RESETTING
, &adapter
->state
))
1626 clear_bit(__IGB_RESETTING
, &adapter
->state
);
1629 void igb_reset(struct igb_adapter
*adapter
)
1631 struct pci_dev
*pdev
= adapter
->pdev
;
1632 struct e1000_hw
*hw
= &adapter
->hw
;
1633 struct e1000_mac_info
*mac
= &hw
->mac
;
1634 struct e1000_fc_info
*fc
= &hw
->fc
;
1635 u32 pba
= 0, tx_space
, min_tx_space
, min_rx_space
;
1638 /* Repartition Pba for greater than 9k mtu
1639 * To take effect CTRL.RST is required.
1641 switch (mac
->type
) {
1644 pba
= rd32(E1000_RXPBS
);
1645 pba
= igb_rxpbs_adjust_82580(pba
);
1648 pba
= rd32(E1000_RXPBS
);
1649 pba
&= E1000_RXPBS_SIZE_MASK_82576
;
1655 pba
= E1000_PBA_34K
;
1659 if ((adapter
->max_frame_size
> ETH_FRAME_LEN
+ ETH_FCS_LEN
) &&
1660 (mac
->type
< e1000_82576
)) {
1661 /* adjust PBA for jumbo frames */
1662 wr32(E1000_PBA
, pba
);
1664 /* To maintain wire speed transmits, the Tx FIFO should be
1665 * large enough to accommodate two full transmit packets,
1666 * rounded up to the next 1KB and expressed in KB. Likewise,
1667 * the Rx FIFO should be large enough to accommodate at least
1668 * one full receive packet and is similarly rounded up and
1669 * expressed in KB. */
1670 pba
= rd32(E1000_PBA
);
1671 /* upper 16 bits has Tx packet buffer allocation size in KB */
1672 tx_space
= pba
>> 16;
1673 /* lower 16 bits has Rx packet buffer allocation size in KB */
1675 /* the tx fifo also stores 16 bytes of information about the tx
1676 * but don't include ethernet FCS because hardware appends it */
1677 min_tx_space
= (adapter
->max_frame_size
+
1678 sizeof(union e1000_adv_tx_desc
) -
1680 min_tx_space
= ALIGN(min_tx_space
, 1024);
1681 min_tx_space
>>= 10;
1682 /* software strips receive CRC, so leave room for it */
1683 min_rx_space
= adapter
->max_frame_size
;
1684 min_rx_space
= ALIGN(min_rx_space
, 1024);
1685 min_rx_space
>>= 10;
1687 /* If current Tx allocation is less than the min Tx FIFO size,
1688 * and the min Tx FIFO size is less than the current Rx FIFO
1689 * allocation, take space away from current Rx allocation */
1690 if (tx_space
< min_tx_space
&&
1691 ((min_tx_space
- tx_space
) < pba
)) {
1692 pba
= pba
- (min_tx_space
- tx_space
);
1694 /* if short on rx space, rx wins and must trump tx
1696 if (pba
< min_rx_space
)
1699 wr32(E1000_PBA
, pba
);
1702 /* flow control settings */
1703 /* The high water mark must be low enough to fit one full frame
1704 * (or the size used for early receive) above it in the Rx FIFO.
1705 * Set it to the lower of:
1706 * - 90% of the Rx FIFO size, or
1707 * - the full Rx FIFO size minus one full frame */
1708 hwm
= min(((pba
<< 10) * 9 / 10),
1709 ((pba
<< 10) - 2 * adapter
->max_frame_size
));
1711 fc
->high_water
= hwm
& 0xFFF0; /* 16-byte granularity */
1712 fc
->low_water
= fc
->high_water
- 16;
1713 fc
->pause_time
= 0xFFFF;
1715 fc
->current_mode
= fc
->requested_mode
;
1717 /* disable receive for all VFs and wait one second */
1718 if (adapter
->vfs_allocated_count
) {
1720 for (i
= 0 ; i
< adapter
->vfs_allocated_count
; i
++)
1721 adapter
->vf_data
[i
].flags
&= IGB_VF_FLAG_PF_SET_MAC
;
1723 /* ping all the active vfs to let them know we are going down */
1724 igb_ping_all_vfs(adapter
);
1726 /* disable transmits and receives */
1727 wr32(E1000_VFRE
, 0);
1728 wr32(E1000_VFTE
, 0);
1731 /* Allow time for pending master requests to run */
1732 hw
->mac
.ops
.reset_hw(hw
);
1735 if (hw
->mac
.ops
.init_hw(hw
))
1736 dev_err(&pdev
->dev
, "Hardware Error\n");
1739 * Flow control settings reset on hardware reset, so guarantee flow
1740 * control is off when forcing speed.
1742 if (!hw
->mac
.autoneg
)
1743 igb_force_mac_fc(hw
);
1745 igb_init_dmac(adapter
, pba
);
1746 if (!netif_running(adapter
->netdev
))
1747 igb_power_down_link(adapter
);
1749 igb_update_mng_vlan(adapter
);
1751 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
1752 wr32(E1000_VET
, ETHERNET_IEEE_VLAN_TYPE
);
1754 igb_get_phy_info(hw
);
1757 static netdev_features_t
igb_fix_features(struct net_device
*netdev
,
1758 netdev_features_t features
)
1761 * Since there is no support for separate rx/tx vlan accel
1762 * enable/disable make sure tx flag is always in same state as rx.
1764 if (features
& NETIF_F_HW_VLAN_RX
)
1765 features
|= NETIF_F_HW_VLAN_TX
;
1767 features
&= ~NETIF_F_HW_VLAN_TX
;
1772 static int igb_set_features(struct net_device
*netdev
,
1773 netdev_features_t features
)
1775 netdev_features_t changed
= netdev
->features
^ features
;
1776 struct igb_adapter
*adapter
= netdev_priv(netdev
);
1778 if (changed
& NETIF_F_HW_VLAN_RX
)
1779 igb_vlan_mode(netdev
, features
);
1781 if (!(changed
& NETIF_F_RXALL
))
1784 netdev
->features
= features
;
1786 if (netif_running(netdev
))
1787 igb_reinit_locked(adapter
);
1794 static const struct net_device_ops igb_netdev_ops
= {
1795 .ndo_open
= igb_open
,
1796 .ndo_stop
= igb_close
,
1797 .ndo_start_xmit
= igb_xmit_frame
,
1798 .ndo_get_stats64
= igb_get_stats64
,
1799 .ndo_set_rx_mode
= igb_set_rx_mode
,
1800 .ndo_set_mac_address
= igb_set_mac
,
1801 .ndo_change_mtu
= igb_change_mtu
,
1802 .ndo_do_ioctl
= igb_ioctl
,
1803 .ndo_tx_timeout
= igb_tx_timeout
,
1804 .ndo_validate_addr
= eth_validate_addr
,
1805 .ndo_vlan_rx_add_vid
= igb_vlan_rx_add_vid
,
1806 .ndo_vlan_rx_kill_vid
= igb_vlan_rx_kill_vid
,
1807 .ndo_set_vf_mac
= igb_ndo_set_vf_mac
,
1808 .ndo_set_vf_vlan
= igb_ndo_set_vf_vlan
,
1809 .ndo_set_vf_tx_rate
= igb_ndo_set_vf_bw
,
1810 .ndo_get_vf_config
= igb_ndo_get_vf_config
,
1811 #ifdef CONFIG_NET_POLL_CONTROLLER
1812 .ndo_poll_controller
= igb_netpoll
,
1814 .ndo_fix_features
= igb_fix_features
,
1815 .ndo_set_features
= igb_set_features
,
1819 * igb_set_fw_version - Configure version string for ethtool
1820 * @adapter: adapter struct
1823 void igb_set_fw_version(struct igb_adapter
*adapter
)
1825 struct e1000_hw
*hw
= &adapter
->hw
;
1826 u16 eeprom_verh
, eeprom_verl
, comb_verh
, comb_verl
, comb_offset
;
1827 u16 major
, build
, patch
, fw_version
;
1830 hw
->nvm
.ops
.read(hw
, 5, 1, &fw_version
);
1831 if (adapter
->hw
.mac
.type
!= e1000_i211
) {
1832 hw
->nvm
.ops
.read(hw
, NVM_ETRACK_WORD
, 1, &eeprom_verh
);
1833 hw
->nvm
.ops
.read(hw
, (NVM_ETRACK_WORD
+ 1), 1, &eeprom_verl
);
1834 etrack_id
= (eeprom_verh
<< IGB_ETRACK_SHIFT
) | eeprom_verl
;
1836 /* combo image version needs to be found */
1837 hw
->nvm
.ops
.read(hw
, NVM_COMB_VER_PTR
, 1, &comb_offset
);
1838 if ((comb_offset
!= 0x0) &&
1839 (comb_offset
!= IGB_NVM_VER_INVALID
)) {
1840 hw
->nvm
.ops
.read(hw
, (NVM_COMB_VER_OFF
+ comb_offset
1841 + 1), 1, &comb_verh
);
1842 hw
->nvm
.ops
.read(hw
, (NVM_COMB_VER_OFF
+ comb_offset
),
1845 /* Only display Option Rom if it exists and is valid */
1846 if ((comb_verh
&& comb_verl
) &&
1847 ((comb_verh
!= IGB_NVM_VER_INVALID
) &&
1848 (comb_verl
!= IGB_NVM_VER_INVALID
))) {
1849 major
= comb_verl
>> IGB_COMB_VER_SHFT
;
1850 build
= (comb_verl
<< IGB_COMB_VER_SHFT
) |
1851 (comb_verh
>> IGB_COMB_VER_SHFT
);
1852 patch
= comb_verh
& IGB_COMB_VER_MASK
;
1853 snprintf(adapter
->fw_version
,
1854 sizeof(adapter
->fw_version
),
1855 "%d.%d%d, 0x%08x, %d.%d.%d",
1856 (fw_version
& IGB_MAJOR_MASK
) >>
1858 (fw_version
& IGB_MINOR_MASK
) >>
1860 (fw_version
& IGB_BUILD_MASK
),
1861 etrack_id
, major
, build
, patch
);
1865 snprintf(adapter
->fw_version
, sizeof(adapter
->fw_version
),
1867 (fw_version
& IGB_MAJOR_MASK
) >> IGB_MAJOR_SHIFT
,
1868 (fw_version
& IGB_MINOR_MASK
) >> IGB_MINOR_SHIFT
,
1869 (fw_version
& IGB_BUILD_MASK
), etrack_id
);
1871 snprintf(adapter
->fw_version
, sizeof(adapter
->fw_version
),
1873 (fw_version
& IGB_MAJOR_MASK
) >> IGB_MAJOR_SHIFT
,
1874 (fw_version
& IGB_MINOR_MASK
) >> IGB_MINOR_SHIFT
,
1875 (fw_version
& IGB_BUILD_MASK
));
1882 * igb_probe - Device Initialization Routine
1883 * @pdev: PCI device information struct
1884 * @ent: entry in igb_pci_tbl
1886 * Returns 0 on success, negative on failure
1888 * igb_probe initializes an adapter identified by a pci_dev structure.
1889 * The OS initialization, configuring of the adapter private structure,
1890 * and a hardware reset occur.
1892 static int __devinit
igb_probe(struct pci_dev
*pdev
,
1893 const struct pci_device_id
*ent
)
1895 struct net_device
*netdev
;
1896 struct igb_adapter
*adapter
;
1897 struct e1000_hw
*hw
;
1898 u16 eeprom_data
= 0;
1900 static int global_quad_port_a
; /* global quad port a indication */
1901 const struct e1000_info
*ei
= igb_info_tbl
[ent
->driver_data
];
1902 unsigned long mmio_start
, mmio_len
;
1903 int err
, pci_using_dac
;
1904 u16 eeprom_apme_mask
= IGB_EEPROM_APME
;
1905 u8 part_str
[E1000_PBANUM_LENGTH
];
1907 /* Catch broken hardware that put the wrong VF device ID in
1908 * the PCIe SR-IOV capability.
1910 if (pdev
->is_virtfn
) {
1911 WARN(1, KERN_ERR
"%s (%hx:%hx) should not be a VF!\n",
1912 pci_name(pdev
), pdev
->vendor
, pdev
->device
);
1916 err
= pci_enable_device_mem(pdev
);
1921 err
= dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(64));
1923 err
= dma_set_coherent_mask(&pdev
->dev
, DMA_BIT_MASK(64));
1927 err
= dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32));
1929 err
= dma_set_coherent_mask(&pdev
->dev
, DMA_BIT_MASK(32));
1931 dev_err(&pdev
->dev
, "No usable DMA "
1932 "configuration, aborting\n");
1938 err
= pci_request_selected_regions(pdev
, pci_select_bars(pdev
,
1944 pci_enable_pcie_error_reporting(pdev
);
1946 pci_set_master(pdev
);
1947 pci_save_state(pdev
);
1950 netdev
= alloc_etherdev_mq(sizeof(struct igb_adapter
),
1953 goto err_alloc_etherdev
;
1955 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
1957 pci_set_drvdata(pdev
, netdev
);
1958 adapter
= netdev_priv(netdev
);
1959 adapter
->netdev
= netdev
;
1960 adapter
->pdev
= pdev
;
1963 adapter
->msg_enable
= netif_msg_init(debug
, DEFAULT_MSG_ENABLE
);
1965 mmio_start
= pci_resource_start(pdev
, 0);
1966 mmio_len
= pci_resource_len(pdev
, 0);
1969 hw
->hw_addr
= ioremap(mmio_start
, mmio_len
);
1973 netdev
->netdev_ops
= &igb_netdev_ops
;
1974 igb_set_ethtool_ops(netdev
);
1975 netdev
->watchdog_timeo
= 5 * HZ
;
1977 strncpy(netdev
->name
, pci_name(pdev
), sizeof(netdev
->name
) - 1);
1979 netdev
->mem_start
= mmio_start
;
1980 netdev
->mem_end
= mmio_start
+ mmio_len
;
1982 /* PCI config space info */
1983 hw
->vendor_id
= pdev
->vendor
;
1984 hw
->device_id
= pdev
->device
;
1985 hw
->revision_id
= pdev
->revision
;
1986 hw
->subsystem_vendor_id
= pdev
->subsystem_vendor
;
1987 hw
->subsystem_device_id
= pdev
->subsystem_device
;
1989 /* Copy the default MAC, PHY and NVM function pointers */
1990 memcpy(&hw
->mac
.ops
, ei
->mac_ops
, sizeof(hw
->mac
.ops
));
1991 memcpy(&hw
->phy
.ops
, ei
->phy_ops
, sizeof(hw
->phy
.ops
));
1992 memcpy(&hw
->nvm
.ops
, ei
->nvm_ops
, sizeof(hw
->nvm
.ops
));
1993 /* Initialize skew-specific constants */
1994 err
= ei
->get_invariants(hw
);
1998 /* setup the private structure */
1999 err
= igb_sw_init(adapter
);
2003 igb_get_bus_info_pcie(hw
);
2005 hw
->phy
.autoneg_wait_to_complete
= false;
2007 /* Copper options */
2008 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
2009 hw
->phy
.mdix
= AUTO_ALL_MODES
;
2010 hw
->phy
.disable_polarity_correction
= false;
2011 hw
->phy
.ms_type
= e1000_ms_hw_default
;
2014 if (igb_check_reset_block(hw
))
2015 dev_info(&pdev
->dev
,
2016 "PHY reset is blocked due to SOL/IDER session.\n");
2019 * features is initialized to 0 in allocation, it might have bits
2020 * set by igb_sw_init so we should use an or instead of an
2023 netdev
->features
|= NETIF_F_SG
|
2030 NETIF_F_HW_VLAN_RX
|
2033 /* copy netdev features into list of user selectable features */
2034 netdev
->hw_features
|= netdev
->features
;
2035 netdev
->hw_features
|= NETIF_F_RXALL
;
2037 /* set this bit last since it cannot be part of hw_features */
2038 netdev
->features
|= NETIF_F_HW_VLAN_FILTER
;
2040 netdev
->vlan_features
|= NETIF_F_TSO
|
2046 netdev
->priv_flags
|= IFF_SUPP_NOFCS
;
2048 if (pci_using_dac
) {
2049 netdev
->features
|= NETIF_F_HIGHDMA
;
2050 netdev
->vlan_features
|= NETIF_F_HIGHDMA
;
2053 if (hw
->mac
.type
>= e1000_82576
) {
2054 netdev
->hw_features
|= NETIF_F_SCTP_CSUM
;
2055 netdev
->features
|= NETIF_F_SCTP_CSUM
;
2058 netdev
->priv_flags
|= IFF_UNICAST_FLT
;
2060 adapter
->en_mng_pt
= igb_enable_mng_pass_thru(hw
);
2062 /* before reading the NVM, reset the controller to put the device in a
2063 * known good starting state */
2064 hw
->mac
.ops
.reset_hw(hw
);
2067 * make sure the NVM is good , i211 parts have special NVM that
2068 * doesn't contain a checksum
2070 if (hw
->mac
.type
!= e1000_i211
) {
2071 if (hw
->nvm
.ops
.validate(hw
) < 0) {
2072 dev_err(&pdev
->dev
, "The NVM Checksum Is Not Valid\n");
2078 /* copy the MAC address out of the NVM */
2079 if (hw
->mac
.ops
.read_mac_addr(hw
))
2080 dev_err(&pdev
->dev
, "NVM Read Error\n");
2082 memcpy(netdev
->dev_addr
, hw
->mac
.addr
, netdev
->addr_len
);
2083 memcpy(netdev
->perm_addr
, hw
->mac
.addr
, netdev
->addr_len
);
2085 if (!is_valid_ether_addr(netdev
->perm_addr
)) {
2086 dev_err(&pdev
->dev
, "Invalid MAC Address\n");
2091 /* get firmware version for ethtool -i */
2092 igb_set_fw_version(adapter
);
2094 setup_timer(&adapter
->watchdog_timer
, igb_watchdog
,
2095 (unsigned long) adapter
);
2096 setup_timer(&adapter
->phy_info_timer
, igb_update_phy_info
,
2097 (unsigned long) adapter
);
2099 INIT_WORK(&adapter
->reset_task
, igb_reset_task
);
2100 INIT_WORK(&adapter
->watchdog_task
, igb_watchdog_task
);
2102 /* Initialize link properties that are user-changeable */
2103 adapter
->fc_autoneg
= true;
2104 hw
->mac
.autoneg
= true;
2105 hw
->phy
.autoneg_advertised
= 0x2f;
2107 hw
->fc
.requested_mode
= e1000_fc_default
;
2108 hw
->fc
.current_mode
= e1000_fc_default
;
2110 igb_validate_mdi_setting(hw
);
2112 /* Initial Wake on LAN setting If APM wake is enabled in the EEPROM,
2113 * enable the ACPI Magic Packet filter
2116 if (hw
->bus
.func
== 0)
2117 hw
->nvm
.ops
.read(hw
, NVM_INIT_CONTROL3_PORT_A
, 1, &eeprom_data
);
2118 else if (hw
->mac
.type
>= e1000_82580
)
2119 hw
->nvm
.ops
.read(hw
, NVM_INIT_CONTROL3_PORT_A
+
2120 NVM_82580_LAN_FUNC_OFFSET(hw
->bus
.func
), 1,
2122 else if (hw
->bus
.func
== 1)
2123 hw
->nvm
.ops
.read(hw
, NVM_INIT_CONTROL3_PORT_B
, 1, &eeprom_data
);
2125 if (eeprom_data
& eeprom_apme_mask
)
2126 adapter
->eeprom_wol
|= E1000_WUFC_MAG
;
2128 /* now that we have the eeprom settings, apply the special cases where
2129 * the eeprom may be wrong or the board simply won't support wake on
2130 * lan on a particular port */
2131 switch (pdev
->device
) {
2132 case E1000_DEV_ID_82575GB_QUAD_COPPER
:
2133 adapter
->eeprom_wol
= 0;
2135 case E1000_DEV_ID_82575EB_FIBER_SERDES
:
2136 case E1000_DEV_ID_82576_FIBER
:
2137 case E1000_DEV_ID_82576_SERDES
:
2138 /* Wake events only supported on port A for dual fiber
2139 * regardless of eeprom setting */
2140 if (rd32(E1000_STATUS
) & E1000_STATUS_FUNC_1
)
2141 adapter
->eeprom_wol
= 0;
2143 case E1000_DEV_ID_82576_QUAD_COPPER
:
2144 case E1000_DEV_ID_82576_QUAD_COPPER_ET2
:
2145 /* if quad port adapter, disable WoL on all but port A */
2146 if (global_quad_port_a
!= 0)
2147 adapter
->eeprom_wol
= 0;
2149 adapter
->flags
|= IGB_FLAG_QUAD_PORT_A
;
2150 /* Reset for multiple quad port adapters */
2151 if (++global_quad_port_a
== 4)
2152 global_quad_port_a
= 0;
2156 /* initialize the wol settings based on the eeprom settings */
2157 adapter
->wol
= adapter
->eeprom_wol
;
2158 device_set_wakeup_enable(&adapter
->pdev
->dev
, adapter
->wol
);
2160 /* reset the hardware with the new settings */
2163 /* let the f/w know that the h/w is now under the control of the
2165 igb_get_hw_control(adapter
);
2167 strcpy(netdev
->name
, "eth%d");
2168 err
= register_netdev(netdev
);
2172 /* carrier off reporting is important to ethtool even BEFORE open */
2173 netif_carrier_off(netdev
);
2175 #ifdef CONFIG_IGB_DCA
2176 if (dca_add_requester(&pdev
->dev
) == 0) {
2177 adapter
->flags
|= IGB_FLAG_DCA_ENABLED
;
2178 dev_info(&pdev
->dev
, "DCA enabled\n");
2179 igb_setup_dca(adapter
);
2183 #ifdef CONFIG_IGB_PTP
2184 /* do hw tstamp init after resetting */
2185 igb_ptp_init(adapter
);
2188 dev_info(&pdev
->dev
, "Intel(R) Gigabit Ethernet Network Connection\n");
2189 /* print bus type/speed/width info */
2190 dev_info(&pdev
->dev
, "%s: (PCIe:%s:%s) %pM\n",
2192 ((hw
->bus
.speed
== e1000_bus_speed_2500
) ? "2.5Gb/s" :
2193 (hw
->bus
.speed
== e1000_bus_speed_5000
) ? "5.0Gb/s" :
2195 ((hw
->bus
.width
== e1000_bus_width_pcie_x4
) ? "Width x4" :
2196 (hw
->bus
.width
== e1000_bus_width_pcie_x2
) ? "Width x2" :
2197 (hw
->bus
.width
== e1000_bus_width_pcie_x1
) ? "Width x1" :
2201 ret_val
= igb_read_part_string(hw
, part_str
, E1000_PBANUM_LENGTH
);
2203 strcpy(part_str
, "Unknown");
2204 dev_info(&pdev
->dev
, "%s: PBA No: %s\n", netdev
->name
, part_str
);
2205 dev_info(&pdev
->dev
,
2206 "Using %s interrupts. %d rx queue(s), %d tx queue(s)\n",
2207 adapter
->msix_entries
? "MSI-X" :
2208 (adapter
->flags
& IGB_FLAG_HAS_MSI
) ? "MSI" : "legacy",
2209 adapter
->num_rx_queues
, adapter
->num_tx_queues
);
2210 switch (hw
->mac
.type
) {
2214 igb_set_eee_i350(hw
);
2220 pm_runtime_put_noidle(&pdev
->dev
);
2224 igb_release_hw_control(adapter
);
2226 if (!igb_check_reset_block(hw
))
2229 if (hw
->flash_address
)
2230 iounmap(hw
->flash_address
);
2232 igb_clear_interrupt_scheme(adapter
);
2233 iounmap(hw
->hw_addr
);
2235 free_netdev(netdev
);
2237 pci_release_selected_regions(pdev
,
2238 pci_select_bars(pdev
, IORESOURCE_MEM
));
2241 pci_disable_device(pdev
);
2246 * igb_remove - Device Removal Routine
2247 * @pdev: PCI device information struct
2249 * igb_remove is called by the PCI subsystem to alert the driver
2250 * that it should release a PCI device. The could be caused by a
2251 * Hot-Plug event, or because the driver is going to be removed from
2254 static void __devexit
igb_remove(struct pci_dev
*pdev
)
2256 struct net_device
*netdev
= pci_get_drvdata(pdev
);
2257 struct igb_adapter
*adapter
= netdev_priv(netdev
);
2258 struct e1000_hw
*hw
= &adapter
->hw
;
2260 pm_runtime_get_noresume(&pdev
->dev
);
2261 #ifdef CONFIG_IGB_PTP
2262 igb_ptp_remove(adapter
);
2266 * The watchdog timer may be rescheduled, so explicitly
2267 * disable watchdog from being rescheduled.
2269 set_bit(__IGB_DOWN
, &adapter
->state
);
2270 del_timer_sync(&adapter
->watchdog_timer
);
2271 del_timer_sync(&adapter
->phy_info_timer
);
2273 cancel_work_sync(&adapter
->reset_task
);
2274 cancel_work_sync(&adapter
->watchdog_task
);
2276 #ifdef CONFIG_IGB_DCA
2277 if (adapter
->flags
& IGB_FLAG_DCA_ENABLED
) {
2278 dev_info(&pdev
->dev
, "DCA disabled\n");
2279 dca_remove_requester(&pdev
->dev
);
2280 adapter
->flags
&= ~IGB_FLAG_DCA_ENABLED
;
2281 wr32(E1000_DCA_CTRL
, E1000_DCA_CTRL_DCA_MODE_DISABLE
);
2285 /* Release control of h/w to f/w. If f/w is AMT enabled, this
2286 * would have already happened in close and is redundant. */
2287 igb_release_hw_control(adapter
);
2289 unregister_netdev(netdev
);
2291 igb_clear_interrupt_scheme(adapter
);
2293 #ifdef CONFIG_PCI_IOV
2294 /* reclaim resources allocated to VFs */
2295 if (adapter
->vf_data
) {
2296 /* disable iov and allow time for transactions to clear */
2297 if (!igb_check_vf_assignment(adapter
)) {
2298 pci_disable_sriov(pdev
);
2301 dev_info(&pdev
->dev
, "VF(s) assigned to guests!\n");
2304 kfree(adapter
->vf_data
);
2305 adapter
->vf_data
= NULL
;
2306 wr32(E1000_IOVCTL
, E1000_IOVCTL_REUSE_VFQ
);
2309 dev_info(&pdev
->dev
, "IOV Disabled\n");
2313 iounmap(hw
->hw_addr
);
2314 if (hw
->flash_address
)
2315 iounmap(hw
->flash_address
);
2316 pci_release_selected_regions(pdev
,
2317 pci_select_bars(pdev
, IORESOURCE_MEM
));
2319 kfree(adapter
->shadow_vfta
);
2320 free_netdev(netdev
);
2322 pci_disable_pcie_error_reporting(pdev
);
2324 pci_disable_device(pdev
);
2328 * igb_probe_vfs - Initialize vf data storage and add VFs to pci config space
2329 * @adapter: board private structure to initialize
2331 * This function initializes the vf specific data storage and then attempts to
2332 * allocate the VFs. The reason for ordering it this way is because it is much
2333 * mor expensive time wise to disable SR-IOV than it is to allocate and free
2334 * the memory for the VFs.
2336 static void __devinit
igb_probe_vfs(struct igb_adapter
* adapter
)
2338 #ifdef CONFIG_PCI_IOV
2339 struct pci_dev
*pdev
= adapter
->pdev
;
2340 struct e1000_hw
*hw
= &adapter
->hw
;
2341 int old_vfs
= igb_find_enabled_vfs(adapter
);
2344 /* Virtualization features not supported on i210 family. */
2345 if ((hw
->mac
.type
== e1000_i210
) || (hw
->mac
.type
== e1000_i211
))
2349 dev_info(&pdev
->dev
, "%d pre-allocated VFs found - override "
2350 "max_vfs setting of %d\n", old_vfs
, max_vfs
);
2351 adapter
->vfs_allocated_count
= old_vfs
;
2354 if (!adapter
->vfs_allocated_count
)
2357 adapter
->vf_data
= kcalloc(adapter
->vfs_allocated_count
,
2358 sizeof(struct vf_data_storage
), GFP_KERNEL
);
2360 /* if allocation failed then we do not support SR-IOV */
2361 if (!adapter
->vf_data
) {
2362 adapter
->vfs_allocated_count
= 0;
2363 dev_err(&pdev
->dev
, "Unable to allocate memory for VF "
2369 if (pci_enable_sriov(pdev
, adapter
->vfs_allocated_count
))
2372 dev_info(&pdev
->dev
, "%d VFs allocated\n",
2373 adapter
->vfs_allocated_count
);
2374 for (i
= 0; i
< adapter
->vfs_allocated_count
; i
++)
2375 igb_vf_configure(adapter
, i
);
2377 /* DMA Coalescing is not supported in IOV mode. */
2378 adapter
->flags
&= ~IGB_FLAG_DMAC
;
2381 kfree(adapter
->vf_data
);
2382 adapter
->vf_data
= NULL
;
2383 adapter
->vfs_allocated_count
= 0;
2386 #endif /* CONFIG_PCI_IOV */
2390 * igb_sw_init - Initialize general software structures (struct igb_adapter)
2391 * @adapter: board private structure to initialize
2393 * igb_sw_init initializes the Adapter private data structure.
2394 * Fields are initialized based on PCI device information and
2395 * OS network device settings (MTU size).
2397 static int __devinit
igb_sw_init(struct igb_adapter
*adapter
)
2399 struct e1000_hw
*hw
= &adapter
->hw
;
2400 struct net_device
*netdev
= adapter
->netdev
;
2401 struct pci_dev
*pdev
= adapter
->pdev
;
2404 pci_read_config_word(pdev
, PCI_COMMAND
, &hw
->bus
.pci_cmd_word
);
2406 /* set default ring sizes */
2407 adapter
->tx_ring_count
= IGB_DEFAULT_TXD
;
2408 adapter
->rx_ring_count
= IGB_DEFAULT_RXD
;
2410 /* set default ITR values */
2411 adapter
->rx_itr_setting
= IGB_DEFAULT_ITR
;
2412 adapter
->tx_itr_setting
= IGB_DEFAULT_ITR
;
2414 /* set default work limits */
2415 adapter
->tx_work_limit
= IGB_DEFAULT_TX_WORK
;
2417 adapter
->max_frame_size
= netdev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+
2419 adapter
->min_frame_size
= ETH_ZLEN
+ ETH_FCS_LEN
;
2423 spin_lock_init(&adapter
->stats64_lock
);
2424 #ifdef CONFIG_PCI_IOV
2425 switch (hw
->mac
.type
) {
2429 dev_warn(&pdev
->dev
,
2430 "Maximum of 7 VFs per PF, using max\n");
2431 adapter
->vfs_allocated_count
= 7;
2433 adapter
->vfs_allocated_count
= max_vfs
;
2438 #endif /* CONFIG_PCI_IOV */
2440 /* Determine the maximum number of RSS queues supported. */
2441 switch (hw
->mac
.type
) {
2443 max_rss_queues
= IGB_MAX_RX_QUEUES_I211
;
2447 max_rss_queues
= IGB_MAX_RX_QUEUES_82575
;
2450 /* I350 cannot do RSS and SR-IOV at the same time */
2451 if (!!adapter
->vfs_allocated_count
) {
2457 if (!!adapter
->vfs_allocated_count
) {
2464 max_rss_queues
= IGB_MAX_RX_QUEUES
;
2468 adapter
->rss_queues
= min_t(u32
, max_rss_queues
, num_online_cpus());
2470 /* Determine if we need to pair queues. */
2471 switch (hw
->mac
.type
) {
2474 /* Device supports enough interrupts without queue pairing. */
2478 * If VFs are going to be allocated with RSS queues then we
2479 * should pair the queues in order to conserve interrupts due
2480 * to limited supply.
2482 if ((adapter
->rss_queues
> 1) &&
2483 (adapter
->vfs_allocated_count
> 6))
2484 adapter
->flags
|= IGB_FLAG_QUEUE_PAIRS
;
2491 * If rss_queues > half of max_rss_queues, pair the queues in
2492 * order to conserve interrupts due to limited supply.
2494 if (adapter
->rss_queues
> (max_rss_queues
/ 2))
2495 adapter
->flags
|= IGB_FLAG_QUEUE_PAIRS
;
2499 /* Setup and initialize a copy of the hw vlan table array */
2500 adapter
->shadow_vfta
= kzalloc(sizeof(u32
) *
2501 E1000_VLAN_FILTER_TBL_SIZE
,
2504 /* This call may decrease the number of queues */
2505 if (igb_init_interrupt_scheme(adapter
)) {
2506 dev_err(&pdev
->dev
, "Unable to allocate memory for queues\n");
2510 igb_probe_vfs(adapter
);
2512 /* Explicitly disable IRQ since the NIC can be in any state. */
2513 igb_irq_disable(adapter
);
2515 if (hw
->mac
.type
>= e1000_i350
)
2516 adapter
->flags
&= ~IGB_FLAG_DMAC
;
2518 set_bit(__IGB_DOWN
, &adapter
->state
);
2523 * igb_open - Called when a network interface is made active
2524 * @netdev: network interface device structure
2526 * Returns 0 on success, negative value on failure
2528 * The open entry point is called when a network interface is made
2529 * active by the system (IFF_UP). At this point all resources needed
2530 * for transmit and receive operations are allocated, the interrupt
2531 * handler is registered with the OS, the watchdog timer is started,
2532 * and the stack is notified that the interface is ready.
2534 static int __igb_open(struct net_device
*netdev
, bool resuming
)
2536 struct igb_adapter
*adapter
= netdev_priv(netdev
);
2537 struct e1000_hw
*hw
= &adapter
->hw
;
2538 struct pci_dev
*pdev
= adapter
->pdev
;
2542 /* disallow open during test */
2543 if (test_bit(__IGB_TESTING
, &adapter
->state
)) {
2549 pm_runtime_get_sync(&pdev
->dev
);
2551 netif_carrier_off(netdev
);
2553 /* allocate transmit descriptors */
2554 err
= igb_setup_all_tx_resources(adapter
);
2558 /* allocate receive descriptors */
2559 err
= igb_setup_all_rx_resources(adapter
);
2563 igb_power_up_link(adapter
);
2565 /* before we allocate an interrupt, we must be ready to handle it.
2566 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
2567 * as soon as we call pci_request_irq, so we have to setup our
2568 * clean_rx handler before we do so. */
2569 igb_configure(adapter
);
2571 err
= igb_request_irq(adapter
);
2575 /* From here on the code is the same as igb_up() */
2576 clear_bit(__IGB_DOWN
, &adapter
->state
);
2578 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
2579 napi_enable(&(adapter
->q_vector
[i
]->napi
));
2581 /* Clear any pending interrupts. */
2584 igb_irq_enable(adapter
);
2586 /* notify VFs that reset has been completed */
2587 if (adapter
->vfs_allocated_count
) {
2588 u32 reg_data
= rd32(E1000_CTRL_EXT
);
2589 reg_data
|= E1000_CTRL_EXT_PFRSTD
;
2590 wr32(E1000_CTRL_EXT
, reg_data
);
2593 netif_tx_start_all_queues(netdev
);
2596 pm_runtime_put(&pdev
->dev
);
2598 /* start the watchdog. */
2599 hw
->mac
.get_link_status
= 1;
2600 schedule_work(&adapter
->watchdog_task
);
2605 igb_release_hw_control(adapter
);
2606 igb_power_down_link(adapter
);
2607 igb_free_all_rx_resources(adapter
);
2609 igb_free_all_tx_resources(adapter
);
2613 pm_runtime_put(&pdev
->dev
);
2618 static int igb_open(struct net_device
*netdev
)
2620 return __igb_open(netdev
, false);
2624 * igb_close - Disables a network interface
2625 * @netdev: network interface device structure
2627 * Returns 0, this is not allowed to fail
2629 * The close entry point is called when an interface is de-activated
2630 * by the OS. The hardware is still under the driver's control, but
2631 * needs to be disabled. A global MAC reset is issued to stop the
2632 * hardware, and all transmit and receive resources are freed.
2634 static int __igb_close(struct net_device
*netdev
, bool suspending
)
2636 struct igb_adapter
*adapter
= netdev_priv(netdev
);
2637 struct pci_dev
*pdev
= adapter
->pdev
;
2639 WARN_ON(test_bit(__IGB_RESETTING
, &adapter
->state
));
2642 pm_runtime_get_sync(&pdev
->dev
);
2645 igb_free_irq(adapter
);
2647 igb_free_all_tx_resources(adapter
);
2648 igb_free_all_rx_resources(adapter
);
2651 pm_runtime_put_sync(&pdev
->dev
);
2655 static int igb_close(struct net_device
*netdev
)
2657 return __igb_close(netdev
, false);
2661 * igb_setup_tx_resources - allocate Tx resources (Descriptors)
2662 * @tx_ring: tx descriptor ring (for a specific queue) to setup
2664 * Return 0 on success, negative on failure
2666 int igb_setup_tx_resources(struct igb_ring
*tx_ring
)
2668 struct device
*dev
= tx_ring
->dev
;
2669 int orig_node
= dev_to_node(dev
);
2672 size
= sizeof(struct igb_tx_buffer
) * tx_ring
->count
;
2673 tx_ring
->tx_buffer_info
= vzalloc_node(size
, tx_ring
->numa_node
);
2674 if (!tx_ring
->tx_buffer_info
)
2675 tx_ring
->tx_buffer_info
= vzalloc(size
);
2676 if (!tx_ring
->tx_buffer_info
)
2679 /* round up to nearest 4K */
2680 tx_ring
->size
= tx_ring
->count
* sizeof(union e1000_adv_tx_desc
);
2681 tx_ring
->size
= ALIGN(tx_ring
->size
, 4096);
2683 set_dev_node(dev
, tx_ring
->numa_node
);
2684 tx_ring
->desc
= dma_alloc_coherent(dev
,
2688 set_dev_node(dev
, orig_node
);
2690 tx_ring
->desc
= dma_alloc_coherent(dev
,
2698 tx_ring
->next_to_use
= 0;
2699 tx_ring
->next_to_clean
= 0;
2704 vfree(tx_ring
->tx_buffer_info
);
2706 "Unable to allocate memory for the transmit descriptor ring\n");
2711 * igb_setup_all_tx_resources - wrapper to allocate Tx resources
2712 * (Descriptors) for all queues
2713 * @adapter: board private structure
2715 * Return 0 on success, negative on failure
2717 static int igb_setup_all_tx_resources(struct igb_adapter
*adapter
)
2719 struct pci_dev
*pdev
= adapter
->pdev
;
2722 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
2723 err
= igb_setup_tx_resources(adapter
->tx_ring
[i
]);
2726 "Allocation for Tx Queue %u failed\n", i
);
2727 for (i
--; i
>= 0; i
--)
2728 igb_free_tx_resources(adapter
->tx_ring
[i
]);
2737 * igb_setup_tctl - configure the transmit control registers
2738 * @adapter: Board private structure
2740 void igb_setup_tctl(struct igb_adapter
*adapter
)
2742 struct e1000_hw
*hw
= &adapter
->hw
;
2745 /* disable queue 0 which is enabled by default on 82575 and 82576 */
2746 wr32(E1000_TXDCTL(0), 0);
2748 /* Program the Transmit Control Register */
2749 tctl
= rd32(E1000_TCTL
);
2750 tctl
&= ~E1000_TCTL_CT
;
2751 tctl
|= E1000_TCTL_PSP
| E1000_TCTL_RTLC
|
2752 (E1000_COLLISION_THRESHOLD
<< E1000_CT_SHIFT
);
2754 igb_config_collision_dist(hw
);
2756 /* Enable transmits */
2757 tctl
|= E1000_TCTL_EN
;
2759 wr32(E1000_TCTL
, tctl
);
2763 * igb_configure_tx_ring - Configure transmit ring after Reset
2764 * @adapter: board private structure
2765 * @ring: tx ring to configure
2767 * Configure a transmit ring after a reset.
2769 void igb_configure_tx_ring(struct igb_adapter
*adapter
,
2770 struct igb_ring
*ring
)
2772 struct e1000_hw
*hw
= &adapter
->hw
;
2774 u64 tdba
= ring
->dma
;
2775 int reg_idx
= ring
->reg_idx
;
2777 /* disable the queue */
2778 wr32(E1000_TXDCTL(reg_idx
), 0);
2782 wr32(E1000_TDLEN(reg_idx
),
2783 ring
->count
* sizeof(union e1000_adv_tx_desc
));
2784 wr32(E1000_TDBAL(reg_idx
),
2785 tdba
& 0x00000000ffffffffULL
);
2786 wr32(E1000_TDBAH(reg_idx
), tdba
>> 32);
2788 ring
->tail
= hw
->hw_addr
+ E1000_TDT(reg_idx
);
2789 wr32(E1000_TDH(reg_idx
), 0);
2790 writel(0, ring
->tail
);
2792 txdctl
|= IGB_TX_PTHRESH
;
2793 txdctl
|= IGB_TX_HTHRESH
<< 8;
2794 txdctl
|= IGB_TX_WTHRESH
<< 16;
2796 txdctl
|= E1000_TXDCTL_QUEUE_ENABLE
;
2797 wr32(E1000_TXDCTL(reg_idx
), txdctl
);
2801 * igb_configure_tx - Configure transmit Unit after Reset
2802 * @adapter: board private structure
2804 * Configure the Tx unit of the MAC after a reset.
2806 static void igb_configure_tx(struct igb_adapter
*adapter
)
2810 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
2811 igb_configure_tx_ring(adapter
, adapter
->tx_ring
[i
]);
2815 * igb_setup_rx_resources - allocate Rx resources (Descriptors)
2816 * @rx_ring: rx descriptor ring (for a specific queue) to setup
2818 * Returns 0 on success, negative on failure
2820 int igb_setup_rx_resources(struct igb_ring
*rx_ring
)
2822 struct device
*dev
= rx_ring
->dev
;
2823 int orig_node
= dev_to_node(dev
);
2826 size
= sizeof(struct igb_rx_buffer
) * rx_ring
->count
;
2827 rx_ring
->rx_buffer_info
= vzalloc_node(size
, rx_ring
->numa_node
);
2828 if (!rx_ring
->rx_buffer_info
)
2829 rx_ring
->rx_buffer_info
= vzalloc(size
);
2830 if (!rx_ring
->rx_buffer_info
)
2833 desc_len
= sizeof(union e1000_adv_rx_desc
);
2835 /* Round up to nearest 4K */
2836 rx_ring
->size
= rx_ring
->count
* desc_len
;
2837 rx_ring
->size
= ALIGN(rx_ring
->size
, 4096);
2839 set_dev_node(dev
, rx_ring
->numa_node
);
2840 rx_ring
->desc
= dma_alloc_coherent(dev
,
2844 set_dev_node(dev
, orig_node
);
2846 rx_ring
->desc
= dma_alloc_coherent(dev
,
2854 rx_ring
->next_to_clean
= 0;
2855 rx_ring
->next_to_use
= 0;
2860 vfree(rx_ring
->rx_buffer_info
);
2861 rx_ring
->rx_buffer_info
= NULL
;
2862 dev_err(dev
, "Unable to allocate memory for the receive descriptor"
2868 * igb_setup_all_rx_resources - wrapper to allocate Rx resources
2869 * (Descriptors) for all queues
2870 * @adapter: board private structure
2872 * Return 0 on success, negative on failure
2874 static int igb_setup_all_rx_resources(struct igb_adapter
*adapter
)
2876 struct pci_dev
*pdev
= adapter
->pdev
;
2879 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
2880 err
= igb_setup_rx_resources(adapter
->rx_ring
[i
]);
2883 "Allocation for Rx Queue %u failed\n", i
);
2884 for (i
--; i
>= 0; i
--)
2885 igb_free_rx_resources(adapter
->rx_ring
[i
]);
2894 * igb_setup_mrqc - configure the multiple receive queue control registers
2895 * @adapter: Board private structure
2897 static void igb_setup_mrqc(struct igb_adapter
*adapter
)
2899 struct e1000_hw
*hw
= &adapter
->hw
;
2901 u32 j
, num_rx_queues
, shift
= 0, shift2
= 0;
2906 static const u8 rsshash
[40] = {
2907 0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2, 0x41, 0x67,
2908 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0, 0xd0, 0xca, 0x2b, 0xcb,
2909 0xae, 0x7b, 0x30, 0xb4, 0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30,
2910 0xf2, 0x0c, 0x6a, 0x42, 0xb7, 0x3b, 0xbe, 0xac, 0x01, 0xfa };
2912 /* Fill out hash function seeds */
2913 for (j
= 0; j
< 10; j
++) {
2914 u32 rsskey
= rsshash
[(j
* 4)];
2915 rsskey
|= rsshash
[(j
* 4) + 1] << 8;
2916 rsskey
|= rsshash
[(j
* 4) + 2] << 16;
2917 rsskey
|= rsshash
[(j
* 4) + 3] << 24;
2918 array_wr32(E1000_RSSRK(0), j
, rsskey
);
2921 num_rx_queues
= adapter
->rss_queues
;
2923 if (adapter
->vfs_allocated_count
) {
2924 /* 82575 and 82576 supports 2 RSS queues for VMDq */
2925 switch (hw
->mac
.type
) {
2942 if (hw
->mac
.type
== e1000_82575
)
2946 for (j
= 0; j
< (32 * 4); j
++) {
2947 reta
.bytes
[j
& 3] = (j
% num_rx_queues
) << shift
;
2949 reta
.bytes
[j
& 3] |= num_rx_queues
<< shift2
;
2951 wr32(E1000_RETA(j
>> 2), reta
.dword
);
2955 * Disable raw packet checksumming so that RSS hash is placed in
2956 * descriptor on writeback. No need to enable TCP/UDP/IP checksum
2957 * offloads as they are enabled by default
2959 rxcsum
= rd32(E1000_RXCSUM
);
2960 rxcsum
|= E1000_RXCSUM_PCSD
;
2962 if (adapter
->hw
.mac
.type
>= e1000_82576
)
2963 /* Enable Receive Checksum Offload for SCTP */
2964 rxcsum
|= E1000_RXCSUM_CRCOFL
;
2966 /* Don't need to set TUOFL or IPOFL, they default to 1 */
2967 wr32(E1000_RXCSUM
, rxcsum
);
2969 * Generate RSS hash based on TCP port numbers and/or
2970 * IPv4/v6 src and dst addresses since UDP cannot be
2971 * hashed reliably due to IP fragmentation
2974 mrqc
= E1000_MRQC_RSS_FIELD_IPV4
|
2975 E1000_MRQC_RSS_FIELD_IPV4_TCP
|
2976 E1000_MRQC_RSS_FIELD_IPV6
|
2977 E1000_MRQC_RSS_FIELD_IPV6_TCP
|
2978 E1000_MRQC_RSS_FIELD_IPV6_TCP_EX
;
2980 /* If VMDq is enabled then we set the appropriate mode for that, else
2981 * we default to RSS so that an RSS hash is calculated per packet even
2982 * if we are only using one queue */
2983 if (adapter
->vfs_allocated_count
) {
2984 if (hw
->mac
.type
> e1000_82575
) {
2985 /* Set the default pool for the PF's first queue */
2986 u32 vtctl
= rd32(E1000_VT_CTL
);
2987 vtctl
&= ~(E1000_VT_CTL_DEFAULT_POOL_MASK
|
2988 E1000_VT_CTL_DISABLE_DEF_POOL
);
2989 vtctl
|= adapter
->vfs_allocated_count
<<
2990 E1000_VT_CTL_DEFAULT_POOL_SHIFT
;
2991 wr32(E1000_VT_CTL
, vtctl
);
2993 if (adapter
->rss_queues
> 1)
2994 mrqc
|= E1000_MRQC_ENABLE_VMDQ_RSS_2Q
;
2996 mrqc
|= E1000_MRQC_ENABLE_VMDQ
;
2998 if (hw
->mac
.type
!= e1000_i211
)
2999 mrqc
|= E1000_MRQC_ENABLE_RSS_4Q
;
3001 igb_vmm_control(adapter
);
3003 wr32(E1000_MRQC
, mrqc
);
3007 * igb_setup_rctl - configure the receive control registers
3008 * @adapter: Board private structure
3010 void igb_setup_rctl(struct igb_adapter
*adapter
)
3012 struct e1000_hw
*hw
= &adapter
->hw
;
3015 rctl
= rd32(E1000_RCTL
);
3017 rctl
&= ~(3 << E1000_RCTL_MO_SHIFT
);
3018 rctl
&= ~(E1000_RCTL_LBM_TCVR
| E1000_RCTL_LBM_MAC
);
3020 rctl
|= E1000_RCTL_EN
| E1000_RCTL_BAM
| E1000_RCTL_RDMTS_HALF
|
3021 (hw
->mac
.mc_filter_type
<< E1000_RCTL_MO_SHIFT
);
3024 * enable stripping of CRC. It's unlikely this will break BMC
3025 * redirection as it did with e1000. Newer features require
3026 * that the HW strips the CRC.
3028 rctl
|= E1000_RCTL_SECRC
;
3030 /* disable store bad packets and clear size bits. */
3031 rctl
&= ~(E1000_RCTL_SBP
| E1000_RCTL_SZ_256
);
3033 /* enable LPE to prevent packets larger than max_frame_size */
3034 rctl
|= E1000_RCTL_LPE
;
3036 /* disable queue 0 to prevent tail write w/o re-config */
3037 wr32(E1000_RXDCTL(0), 0);
3039 /* Attention!!! For SR-IOV PF driver operations you must enable
3040 * queue drop for all VF and PF queues to prevent head of line blocking
3041 * if an un-trusted VF does not provide descriptors to hardware.
3043 if (adapter
->vfs_allocated_count
) {
3044 /* set all queue drop enable bits */
3045 wr32(E1000_QDE
, ALL_QUEUES
);
3048 /* This is useful for sniffing bad packets. */
3049 if (adapter
->netdev
->features
& NETIF_F_RXALL
) {
3050 /* UPE and MPE will be handled by normal PROMISC logic
3051 * in e1000e_set_rx_mode */
3052 rctl
|= (E1000_RCTL_SBP
| /* Receive bad packets */
3053 E1000_RCTL_BAM
| /* RX All Bcast Pkts */
3054 E1000_RCTL_PMCF
); /* RX All MAC Ctrl Pkts */
3056 rctl
&= ~(E1000_RCTL_VFE
| /* Disable VLAN filter */
3057 E1000_RCTL_DPF
| /* Allow filtered pause */
3058 E1000_RCTL_CFIEN
); /* Dis VLAN CFIEN Filter */
3059 /* Do not mess with E1000_CTRL_VME, it affects transmit as well,
3060 * and that breaks VLANs.
3064 wr32(E1000_RCTL
, rctl
);
3067 static inline int igb_set_vf_rlpml(struct igb_adapter
*adapter
, int size
,
3070 struct e1000_hw
*hw
= &adapter
->hw
;
3073 /* if it isn't the PF check to see if VFs are enabled and
3074 * increase the size to support vlan tags */
3075 if (vfn
< adapter
->vfs_allocated_count
&&
3076 adapter
->vf_data
[vfn
].vlans_enabled
)
3077 size
+= VLAN_TAG_SIZE
;
3079 vmolr
= rd32(E1000_VMOLR(vfn
));
3080 vmolr
&= ~E1000_VMOLR_RLPML_MASK
;
3081 vmolr
|= size
| E1000_VMOLR_LPE
;
3082 wr32(E1000_VMOLR(vfn
), vmolr
);
3088 * igb_rlpml_set - set maximum receive packet size
3089 * @adapter: board private structure
3091 * Configure maximum receivable packet size.
3093 static void igb_rlpml_set(struct igb_adapter
*adapter
)
3095 u32 max_frame_size
= adapter
->max_frame_size
;
3096 struct e1000_hw
*hw
= &adapter
->hw
;
3097 u16 pf_id
= adapter
->vfs_allocated_count
;
3100 igb_set_vf_rlpml(adapter
, max_frame_size
, pf_id
);
3102 * If we're in VMDQ or SR-IOV mode, then set global RLPML
3103 * to our max jumbo frame size, in case we need to enable
3104 * jumbo frames on one of the rings later.
3105 * This will not pass over-length frames into the default
3106 * queue because it's gated by the VMOLR.RLPML.
3108 max_frame_size
= MAX_JUMBO_FRAME_SIZE
;
3111 wr32(E1000_RLPML
, max_frame_size
);
3114 static inline void igb_set_vmolr(struct igb_adapter
*adapter
,
3117 struct e1000_hw
*hw
= &adapter
->hw
;
3121 * This register exists only on 82576 and newer so if we are older then
3122 * we should exit and do nothing
3124 if (hw
->mac
.type
< e1000_82576
)
3127 vmolr
= rd32(E1000_VMOLR(vfn
));
3128 vmolr
|= E1000_VMOLR_STRVLAN
; /* Strip vlan tags */
3130 vmolr
|= E1000_VMOLR_AUPE
; /* Accept untagged packets */
3132 vmolr
&= ~(E1000_VMOLR_AUPE
); /* Tagged packets ONLY */
3134 /* clear all bits that might not be set */
3135 vmolr
&= ~(E1000_VMOLR_BAM
| E1000_VMOLR_RSSE
);
3137 if (adapter
->rss_queues
> 1 && vfn
== adapter
->vfs_allocated_count
)
3138 vmolr
|= E1000_VMOLR_RSSE
; /* enable RSS */
3140 * for VMDq only allow the VFs and pool 0 to accept broadcast and
3143 if (vfn
<= adapter
->vfs_allocated_count
)
3144 vmolr
|= E1000_VMOLR_BAM
; /* Accept broadcast */
3146 wr32(E1000_VMOLR(vfn
), vmolr
);
3150 * igb_configure_rx_ring - Configure a receive ring after Reset
3151 * @adapter: board private structure
3152 * @ring: receive ring to be configured
3154 * Configure the Rx unit of the MAC after a reset.
3156 void igb_configure_rx_ring(struct igb_adapter
*adapter
,
3157 struct igb_ring
*ring
)
3159 struct e1000_hw
*hw
= &adapter
->hw
;
3160 u64 rdba
= ring
->dma
;
3161 int reg_idx
= ring
->reg_idx
;
3162 u32 srrctl
= 0, rxdctl
= 0;
3164 /* disable the queue */
3165 wr32(E1000_RXDCTL(reg_idx
), 0);
3167 /* Set DMA base address registers */
3168 wr32(E1000_RDBAL(reg_idx
),
3169 rdba
& 0x00000000ffffffffULL
);
3170 wr32(E1000_RDBAH(reg_idx
), rdba
>> 32);
3171 wr32(E1000_RDLEN(reg_idx
),
3172 ring
->count
* sizeof(union e1000_adv_rx_desc
));
3174 /* initialize head and tail */
3175 ring
->tail
= hw
->hw_addr
+ E1000_RDT(reg_idx
);
3176 wr32(E1000_RDH(reg_idx
), 0);
3177 writel(0, ring
->tail
);
3179 /* set descriptor configuration */
3180 srrctl
= IGB_RX_HDR_LEN
<< E1000_SRRCTL_BSIZEHDRSIZE_SHIFT
;
3181 #if (PAGE_SIZE / 2) > IGB_RXBUFFER_16384
3182 srrctl
|= IGB_RXBUFFER_16384
>> E1000_SRRCTL_BSIZEPKT_SHIFT
;
3184 srrctl
|= (PAGE_SIZE
/ 2) >> E1000_SRRCTL_BSIZEPKT_SHIFT
;
3186 srrctl
|= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS
;
3187 if (hw
->mac
.type
>= e1000_82580
)
3188 srrctl
|= E1000_SRRCTL_TIMESTAMP
;
3189 /* Only set Drop Enable if we are supporting multiple queues */
3190 if (adapter
->vfs_allocated_count
|| adapter
->num_rx_queues
> 1)
3191 srrctl
|= E1000_SRRCTL_DROP_EN
;
3193 wr32(E1000_SRRCTL(reg_idx
), srrctl
);
3195 /* set filtering for VMDQ pools */
3196 igb_set_vmolr(adapter
, reg_idx
& 0x7, true);
3198 rxdctl
|= IGB_RX_PTHRESH
;
3199 rxdctl
|= IGB_RX_HTHRESH
<< 8;
3200 rxdctl
|= IGB_RX_WTHRESH
<< 16;
3202 /* enable receive descriptor fetching */
3203 rxdctl
|= E1000_RXDCTL_QUEUE_ENABLE
;
3204 wr32(E1000_RXDCTL(reg_idx
), rxdctl
);
3208 * igb_configure_rx - Configure receive Unit after Reset
3209 * @adapter: board private structure
3211 * Configure the Rx unit of the MAC after a reset.
3213 static void igb_configure_rx(struct igb_adapter
*adapter
)
3217 /* set UTA to appropriate mode */
3218 igb_set_uta(adapter
);
3220 /* set the correct pool for the PF default MAC address in entry 0 */
3221 igb_rar_set_qsel(adapter
, adapter
->hw
.mac
.addr
, 0,
3222 adapter
->vfs_allocated_count
);
3224 /* Setup the HW Rx Head and Tail Descriptor Pointers and
3225 * the Base and Length of the Rx Descriptor Ring */
3226 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
3227 igb_configure_rx_ring(adapter
, adapter
->rx_ring
[i
]);
3231 * igb_free_tx_resources - Free Tx Resources per Queue
3232 * @tx_ring: Tx descriptor ring for a specific queue
3234 * Free all transmit software resources
3236 void igb_free_tx_resources(struct igb_ring
*tx_ring
)
3238 igb_clean_tx_ring(tx_ring
);
3240 vfree(tx_ring
->tx_buffer_info
);
3241 tx_ring
->tx_buffer_info
= NULL
;
3243 /* if not set, then don't free */
3247 dma_free_coherent(tx_ring
->dev
, tx_ring
->size
,
3248 tx_ring
->desc
, tx_ring
->dma
);
3250 tx_ring
->desc
= NULL
;
3254 * igb_free_all_tx_resources - Free Tx Resources for All Queues
3255 * @adapter: board private structure
3257 * Free all transmit software resources
3259 static void igb_free_all_tx_resources(struct igb_adapter
*adapter
)
3263 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
3264 igb_free_tx_resources(adapter
->tx_ring
[i
]);
3267 void igb_unmap_and_free_tx_resource(struct igb_ring
*ring
,
3268 struct igb_tx_buffer
*tx_buffer
)
3270 if (tx_buffer
->skb
) {
3271 dev_kfree_skb_any(tx_buffer
->skb
);
3273 dma_unmap_single(ring
->dev
,
3277 } else if (tx_buffer
->dma
) {
3278 dma_unmap_page(ring
->dev
,
3283 tx_buffer
->next_to_watch
= NULL
;
3284 tx_buffer
->skb
= NULL
;
3286 /* buffer_info must be completely set up in the transmit path */
3290 * igb_clean_tx_ring - Free Tx Buffers
3291 * @tx_ring: ring to be cleaned
3293 static void igb_clean_tx_ring(struct igb_ring
*tx_ring
)
3295 struct igb_tx_buffer
*buffer_info
;
3299 if (!tx_ring
->tx_buffer_info
)
3301 /* Free all the Tx ring sk_buffs */
3303 for (i
= 0; i
< tx_ring
->count
; i
++) {
3304 buffer_info
= &tx_ring
->tx_buffer_info
[i
];
3305 igb_unmap_and_free_tx_resource(tx_ring
, buffer_info
);
3308 netdev_tx_reset_queue(txring_txq(tx_ring
));
3310 size
= sizeof(struct igb_tx_buffer
) * tx_ring
->count
;
3311 memset(tx_ring
->tx_buffer_info
, 0, size
);
3313 /* Zero out the descriptor ring */
3314 memset(tx_ring
->desc
, 0, tx_ring
->size
);
3316 tx_ring
->next_to_use
= 0;
3317 tx_ring
->next_to_clean
= 0;
3321 * igb_clean_all_tx_rings - Free Tx Buffers for all queues
3322 * @adapter: board private structure
3324 static void igb_clean_all_tx_rings(struct igb_adapter
*adapter
)
3328 for (i
= 0; i
< adapter
->num_tx_queues
; i
++)
3329 igb_clean_tx_ring(adapter
->tx_ring
[i
]);
3333 * igb_free_rx_resources - Free Rx Resources
3334 * @rx_ring: ring to clean the resources from
3336 * Free all receive software resources
3338 void igb_free_rx_resources(struct igb_ring
*rx_ring
)
3340 igb_clean_rx_ring(rx_ring
);
3342 vfree(rx_ring
->rx_buffer_info
);
3343 rx_ring
->rx_buffer_info
= NULL
;
3345 /* if not set, then don't free */
3349 dma_free_coherent(rx_ring
->dev
, rx_ring
->size
,
3350 rx_ring
->desc
, rx_ring
->dma
);
3352 rx_ring
->desc
= NULL
;
3356 * igb_free_all_rx_resources - Free Rx Resources for All Queues
3357 * @adapter: board private structure
3359 * Free all receive software resources
3361 static void igb_free_all_rx_resources(struct igb_adapter
*adapter
)
3365 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
3366 igb_free_rx_resources(adapter
->rx_ring
[i
]);
3370 * igb_clean_rx_ring - Free Rx Buffers per Queue
3371 * @rx_ring: ring to free buffers from
3373 static void igb_clean_rx_ring(struct igb_ring
*rx_ring
)
3378 if (!rx_ring
->rx_buffer_info
)
3381 /* Free all the Rx ring sk_buffs */
3382 for (i
= 0; i
< rx_ring
->count
; i
++) {
3383 struct igb_rx_buffer
*buffer_info
= &rx_ring
->rx_buffer_info
[i
];
3384 if (buffer_info
->dma
) {
3385 dma_unmap_single(rx_ring
->dev
,
3389 buffer_info
->dma
= 0;
3392 if (buffer_info
->skb
) {
3393 dev_kfree_skb(buffer_info
->skb
);
3394 buffer_info
->skb
= NULL
;
3396 if (buffer_info
->page_dma
) {
3397 dma_unmap_page(rx_ring
->dev
,
3398 buffer_info
->page_dma
,
3401 buffer_info
->page_dma
= 0;
3403 if (buffer_info
->page
) {
3404 put_page(buffer_info
->page
);
3405 buffer_info
->page
= NULL
;
3406 buffer_info
->page_offset
= 0;
3410 size
= sizeof(struct igb_rx_buffer
) * rx_ring
->count
;
3411 memset(rx_ring
->rx_buffer_info
, 0, size
);
3413 /* Zero out the descriptor ring */
3414 memset(rx_ring
->desc
, 0, rx_ring
->size
);
3416 rx_ring
->next_to_clean
= 0;
3417 rx_ring
->next_to_use
= 0;
3421 * igb_clean_all_rx_rings - Free Rx Buffers for all queues
3422 * @adapter: board private structure
3424 static void igb_clean_all_rx_rings(struct igb_adapter
*adapter
)
3428 for (i
= 0; i
< adapter
->num_rx_queues
; i
++)
3429 igb_clean_rx_ring(adapter
->rx_ring
[i
]);
3433 * igb_set_mac - Change the Ethernet Address of the NIC
3434 * @netdev: network interface device structure
3435 * @p: pointer to an address structure
3437 * Returns 0 on success, negative on failure
3439 static int igb_set_mac(struct net_device
*netdev
, void *p
)
3441 struct igb_adapter
*adapter
= netdev_priv(netdev
);
3442 struct e1000_hw
*hw
= &adapter
->hw
;
3443 struct sockaddr
*addr
= p
;
3445 if (!is_valid_ether_addr(addr
->sa_data
))
3446 return -EADDRNOTAVAIL
;
3448 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
3449 memcpy(hw
->mac
.addr
, addr
->sa_data
, netdev
->addr_len
);
3451 /* set the correct pool for the new PF MAC address in entry 0 */
3452 igb_rar_set_qsel(adapter
, hw
->mac
.addr
, 0,
3453 adapter
->vfs_allocated_count
);
3459 * igb_write_mc_addr_list - write multicast addresses to MTA
3460 * @netdev: network interface device structure
3462 * Writes multicast address list to the MTA hash table.
3463 * Returns: -ENOMEM on failure
3464 * 0 on no addresses written
3465 * X on writing X addresses to MTA
3467 static int igb_write_mc_addr_list(struct net_device
*netdev
)
3469 struct igb_adapter
*adapter
= netdev_priv(netdev
);
3470 struct e1000_hw
*hw
= &adapter
->hw
;
3471 struct netdev_hw_addr
*ha
;
3475 if (netdev_mc_empty(netdev
)) {
3476 /* nothing to program, so clear mc list */
3477 igb_update_mc_addr_list(hw
, NULL
, 0);
3478 igb_restore_vf_multicasts(adapter
);
3482 mta_list
= kzalloc(netdev_mc_count(netdev
) * 6, GFP_ATOMIC
);
3486 /* The shared function expects a packed array of only addresses. */
3488 netdev_for_each_mc_addr(ha
, netdev
)
3489 memcpy(mta_list
+ (i
++ * ETH_ALEN
), ha
->addr
, ETH_ALEN
);
3491 igb_update_mc_addr_list(hw
, mta_list
, i
);
3494 return netdev_mc_count(netdev
);
3498 * igb_write_uc_addr_list - write unicast addresses to RAR table
3499 * @netdev: network interface device structure
3501 * Writes unicast address list to the RAR table.
3502 * Returns: -ENOMEM on failure/insufficient address space
3503 * 0 on no addresses written
3504 * X on writing X addresses to the RAR table
3506 static int igb_write_uc_addr_list(struct net_device
*netdev
)
3508 struct igb_adapter
*adapter
= netdev_priv(netdev
);
3509 struct e1000_hw
*hw
= &adapter
->hw
;
3510 unsigned int vfn
= adapter
->vfs_allocated_count
;
3511 unsigned int rar_entries
= hw
->mac
.rar_entry_count
- (vfn
+ 1);
3514 /* return ENOMEM indicating insufficient memory for addresses */
3515 if (netdev_uc_count(netdev
) > rar_entries
)
3518 if (!netdev_uc_empty(netdev
) && rar_entries
) {
3519 struct netdev_hw_addr
*ha
;
3521 netdev_for_each_uc_addr(ha
, netdev
) {
3524 igb_rar_set_qsel(adapter
, ha
->addr
,
3530 /* write the addresses in reverse order to avoid write combining */
3531 for (; rar_entries
> 0 ; rar_entries
--) {
3532 wr32(E1000_RAH(rar_entries
), 0);
3533 wr32(E1000_RAL(rar_entries
), 0);
3541 * igb_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
3542 * @netdev: network interface device structure
3544 * The set_rx_mode entry point is called whenever the unicast or multicast
3545 * address lists or the network interface flags are updated. This routine is
3546 * responsible for configuring the hardware for proper unicast, multicast,
3547 * promiscuous mode, and all-multi behavior.
3549 static void igb_set_rx_mode(struct net_device
*netdev
)
3551 struct igb_adapter
*adapter
= netdev_priv(netdev
);
3552 struct e1000_hw
*hw
= &adapter
->hw
;
3553 unsigned int vfn
= adapter
->vfs_allocated_count
;
3554 u32 rctl
, vmolr
= 0;
3557 /* Check for Promiscuous and All Multicast modes */
3558 rctl
= rd32(E1000_RCTL
);
3560 /* clear the effected bits */
3561 rctl
&= ~(E1000_RCTL_UPE
| E1000_RCTL_MPE
| E1000_RCTL_VFE
);
3563 if (netdev
->flags
& IFF_PROMISC
) {
3564 rctl
|= (E1000_RCTL_UPE
| E1000_RCTL_MPE
);
3565 vmolr
|= (E1000_VMOLR_ROPE
| E1000_VMOLR_MPME
);
3567 if (netdev
->flags
& IFF_ALLMULTI
) {
3568 rctl
|= E1000_RCTL_MPE
;
3569 vmolr
|= E1000_VMOLR_MPME
;
3572 * Write addresses to the MTA, if the attempt fails
3573 * then we should just turn on promiscuous mode so
3574 * that we can at least receive multicast traffic
3576 count
= igb_write_mc_addr_list(netdev
);
3578 rctl
|= E1000_RCTL_MPE
;
3579 vmolr
|= E1000_VMOLR_MPME
;
3581 vmolr
|= E1000_VMOLR_ROMPE
;
3585 * Write addresses to available RAR registers, if there is not
3586 * sufficient space to store all the addresses then enable
3587 * unicast promiscuous mode
3589 count
= igb_write_uc_addr_list(netdev
);
3591 rctl
|= E1000_RCTL_UPE
;
3592 vmolr
|= E1000_VMOLR_ROPE
;
3594 rctl
|= E1000_RCTL_VFE
;
3596 wr32(E1000_RCTL
, rctl
);
3599 * In order to support SR-IOV and eventually VMDq it is necessary to set
3600 * the VMOLR to enable the appropriate modes. Without this workaround
3601 * we will have issues with VLAN tag stripping not being done for frames
3602 * that are only arriving because we are the default pool
3604 if ((hw
->mac
.type
< e1000_82576
) || (hw
->mac
.type
> e1000_i350
))
3607 vmolr
|= rd32(E1000_VMOLR(vfn
)) &
3608 ~(E1000_VMOLR_ROPE
| E1000_VMOLR_MPME
| E1000_VMOLR_ROMPE
);
3609 wr32(E1000_VMOLR(vfn
), vmolr
);
3610 igb_restore_vf_multicasts(adapter
);
3613 static void igb_check_wvbr(struct igb_adapter
*adapter
)
3615 struct e1000_hw
*hw
= &adapter
->hw
;
3618 switch (hw
->mac
.type
) {
3621 if (!(wvbr
= rd32(E1000_WVBR
)))
3628 adapter
->wvbr
|= wvbr
;
3631 #define IGB_STAGGERED_QUEUE_OFFSET 8
3633 static void igb_spoof_check(struct igb_adapter
*adapter
)
3640 for(j
= 0; j
< adapter
->vfs_allocated_count
; j
++) {
3641 if (adapter
->wvbr
& (1 << j
) ||
3642 adapter
->wvbr
& (1 << (j
+ IGB_STAGGERED_QUEUE_OFFSET
))) {
3643 dev_warn(&adapter
->pdev
->dev
,
3644 "Spoof event(s) detected on VF %d\n", j
);
3647 (1 << (j
+ IGB_STAGGERED_QUEUE_OFFSET
)));
3652 /* Need to wait a few seconds after link up to get diagnostic information from
3654 static void igb_update_phy_info(unsigned long data
)
3656 struct igb_adapter
*adapter
= (struct igb_adapter
*) data
;
3657 igb_get_phy_info(&adapter
->hw
);
3661 * igb_has_link - check shared code for link and determine up/down
3662 * @adapter: pointer to driver private info
3664 bool igb_has_link(struct igb_adapter
*adapter
)
3666 struct e1000_hw
*hw
= &adapter
->hw
;
3667 bool link_active
= false;
3670 /* get_link_status is set on LSC (link status) interrupt or
3671 * rx sequence error interrupt. get_link_status will stay
3672 * false until the e1000_check_for_link establishes link
3673 * for copper adapters ONLY
3675 switch (hw
->phy
.media_type
) {
3676 case e1000_media_type_copper
:
3677 if (hw
->mac
.get_link_status
) {
3678 ret_val
= hw
->mac
.ops
.check_for_link(hw
);
3679 link_active
= !hw
->mac
.get_link_status
;
3684 case e1000_media_type_internal_serdes
:
3685 ret_val
= hw
->mac
.ops
.check_for_link(hw
);
3686 link_active
= hw
->mac
.serdes_has_link
;
3689 case e1000_media_type_unknown
:
3696 static bool igb_thermal_sensor_event(struct e1000_hw
*hw
, u32 event
)
3699 u32 ctrl_ext
, thstat
;
3701 /* check for thermal sensor event on i350 copper only */
3702 if (hw
->mac
.type
== e1000_i350
) {
3703 thstat
= rd32(E1000_THSTAT
);
3704 ctrl_ext
= rd32(E1000_CTRL_EXT
);
3706 if ((hw
->phy
.media_type
== e1000_media_type_copper
) &&
3707 !(ctrl_ext
& E1000_CTRL_EXT_LINK_MODE_SGMII
)) {
3708 ret
= !!(thstat
& event
);
3716 * igb_watchdog - Timer Call-back
3717 * @data: pointer to adapter cast into an unsigned long
3719 static void igb_watchdog(unsigned long data
)
3721 struct igb_adapter
*adapter
= (struct igb_adapter
*)data
;
3722 /* Do the rest outside of interrupt context */
3723 schedule_work(&adapter
->watchdog_task
);
3726 static void igb_watchdog_task(struct work_struct
*work
)
3728 struct igb_adapter
*adapter
= container_of(work
,
3731 struct e1000_hw
*hw
= &adapter
->hw
;
3732 struct net_device
*netdev
= adapter
->netdev
;
3736 link
= igb_has_link(adapter
);
3738 /* Cancel scheduled suspend requests. */
3739 pm_runtime_resume(netdev
->dev
.parent
);
3741 if (!netif_carrier_ok(netdev
)) {
3743 hw
->mac
.ops
.get_speed_and_duplex(hw
,
3744 &adapter
->link_speed
,
3745 &adapter
->link_duplex
);
3747 ctrl
= rd32(E1000_CTRL
);
3748 /* Links status message must follow this format */
3749 printk(KERN_INFO
"igb: %s NIC Link is Up %d Mbps %s "
3750 "Duplex, Flow Control: %s\n",
3752 adapter
->link_speed
,
3753 adapter
->link_duplex
== FULL_DUPLEX
?
3755 (ctrl
& E1000_CTRL_TFCE
) &&
3756 (ctrl
& E1000_CTRL_RFCE
) ? "RX/TX" :
3757 (ctrl
& E1000_CTRL_RFCE
) ? "RX" :
3758 (ctrl
& E1000_CTRL_TFCE
) ? "TX" : "None");
3760 /* check for thermal sensor event */
3761 if (igb_thermal_sensor_event(hw
,
3762 E1000_THSTAT_LINK_THROTTLE
)) {
3763 netdev_info(netdev
, "The network adapter link "
3764 "speed was downshifted because it "
3768 /* adjust timeout factor according to speed/duplex */
3769 adapter
->tx_timeout_factor
= 1;
3770 switch (adapter
->link_speed
) {
3772 adapter
->tx_timeout_factor
= 14;
3775 /* maybe add some timeout factor ? */
3779 netif_carrier_on(netdev
);
3781 igb_ping_all_vfs(adapter
);
3782 igb_check_vf_rate_limit(adapter
);
3784 /* link state has changed, schedule phy info update */
3785 if (!test_bit(__IGB_DOWN
, &adapter
->state
))
3786 mod_timer(&adapter
->phy_info_timer
,
3787 round_jiffies(jiffies
+ 2 * HZ
));
3790 if (netif_carrier_ok(netdev
)) {
3791 adapter
->link_speed
= 0;
3792 adapter
->link_duplex
= 0;
3794 /* check for thermal sensor event */
3795 if (igb_thermal_sensor_event(hw
,
3796 E1000_THSTAT_PWR_DOWN
)) {
3797 netdev_err(netdev
, "The network adapter was "
3798 "stopped because it overheated\n");
3801 /* Links status message must follow this format */
3802 printk(KERN_INFO
"igb: %s NIC Link is Down\n",
3804 netif_carrier_off(netdev
);
3806 igb_ping_all_vfs(adapter
);
3808 /* link state has changed, schedule phy info update */
3809 if (!test_bit(__IGB_DOWN
, &adapter
->state
))
3810 mod_timer(&adapter
->phy_info_timer
,
3811 round_jiffies(jiffies
+ 2 * HZ
));
3813 pm_schedule_suspend(netdev
->dev
.parent
,
3818 spin_lock(&adapter
->stats64_lock
);
3819 igb_update_stats(adapter
, &adapter
->stats64
);
3820 spin_unlock(&adapter
->stats64_lock
);
3822 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
3823 struct igb_ring
*tx_ring
= adapter
->tx_ring
[i
];
3824 if (!netif_carrier_ok(netdev
)) {
3825 /* We've lost link, so the controller stops DMA,
3826 * but we've got queued Tx work that's never going
3827 * to get done, so reset controller to flush Tx.
3828 * (Do the reset outside of interrupt context). */
3829 if (igb_desc_unused(tx_ring
) + 1 < tx_ring
->count
) {
3830 adapter
->tx_timeout_count
++;
3831 schedule_work(&adapter
->reset_task
);
3832 /* return immediately since reset is imminent */
3837 /* Force detection of hung controller every watchdog period */
3838 set_bit(IGB_RING_FLAG_TX_DETECT_HANG
, &tx_ring
->flags
);
3841 /* Cause software interrupt to ensure rx ring is cleaned */
3842 if (adapter
->msix_entries
) {
3844 for (i
= 0; i
< adapter
->num_q_vectors
; i
++)
3845 eics
|= adapter
->q_vector
[i
]->eims_value
;
3846 wr32(E1000_EICS
, eics
);
3848 wr32(E1000_ICS
, E1000_ICS_RXDMT0
);
3851 igb_spoof_check(adapter
);
3853 /* Reset the timer */
3854 if (!test_bit(__IGB_DOWN
, &adapter
->state
))
3855 mod_timer(&adapter
->watchdog_timer
,
3856 round_jiffies(jiffies
+ 2 * HZ
));
3859 enum latency_range
{
3863 latency_invalid
= 255
3867 * igb_update_ring_itr - update the dynamic ITR value based on packet size
3869 * Stores a new ITR value based on strictly on packet size. This
3870 * algorithm is less sophisticated than that used in igb_update_itr,
3871 * due to the difficulty of synchronizing statistics across multiple
3872 * receive rings. The divisors and thresholds used by this function
3873 * were determined based on theoretical maximum wire speed and testing
3874 * data, in order to minimize response time while increasing bulk
3876 * This functionality is controlled by the InterruptThrottleRate module
3877 * parameter (see igb_param.c)
3878 * NOTE: This function is called only when operating in a multiqueue
3879 * receive environment.
3880 * @q_vector: pointer to q_vector
3882 static void igb_update_ring_itr(struct igb_q_vector
*q_vector
)
3884 int new_val
= q_vector
->itr_val
;
3885 int avg_wire_size
= 0;
3886 struct igb_adapter
*adapter
= q_vector
->adapter
;
3887 unsigned int packets
;
3889 /* For non-gigabit speeds, just fix the interrupt rate at 4000
3890 * ints/sec - ITR timer value of 120 ticks.
3892 if (adapter
->link_speed
!= SPEED_1000
) {
3893 new_val
= IGB_4K_ITR
;
3897 packets
= q_vector
->rx
.total_packets
;
3899 avg_wire_size
= q_vector
->rx
.total_bytes
/ packets
;
3901 packets
= q_vector
->tx
.total_packets
;
3903 avg_wire_size
= max_t(u32
, avg_wire_size
,
3904 q_vector
->tx
.total_bytes
/ packets
);
3906 /* if avg_wire_size isn't set no work was done */
3910 /* Add 24 bytes to size to account for CRC, preamble, and gap */
3911 avg_wire_size
+= 24;
3913 /* Don't starve jumbo frames */
3914 avg_wire_size
= min(avg_wire_size
, 3000);
3916 /* Give a little boost to mid-size frames */
3917 if ((avg_wire_size
> 300) && (avg_wire_size
< 1200))
3918 new_val
= avg_wire_size
/ 3;
3920 new_val
= avg_wire_size
/ 2;
3922 /* conservative mode (itr 3) eliminates the lowest_latency setting */
3923 if (new_val
< IGB_20K_ITR
&&
3924 ((q_vector
->rx
.ring
&& adapter
->rx_itr_setting
== 3) ||
3925 (!q_vector
->rx
.ring
&& adapter
->tx_itr_setting
== 3)))
3926 new_val
= IGB_20K_ITR
;
3929 if (new_val
!= q_vector
->itr_val
) {
3930 q_vector
->itr_val
= new_val
;
3931 q_vector
->set_itr
= 1;
3934 q_vector
->rx
.total_bytes
= 0;
3935 q_vector
->rx
.total_packets
= 0;
3936 q_vector
->tx
.total_bytes
= 0;
3937 q_vector
->tx
.total_packets
= 0;
3941 * igb_update_itr - update the dynamic ITR value based on statistics
3942 * Stores a new ITR value based on packets and byte
3943 * counts during the last interrupt. The advantage of per interrupt
3944 * computation is faster updates and more accurate ITR for the current
3945 * traffic pattern. Constants in this function were computed
3946 * based on theoretical maximum wire speed and thresholds were set based
3947 * on testing data as well as attempting to minimize response time
3948 * while increasing bulk throughput.
3949 * this functionality is controlled by the InterruptThrottleRate module
3950 * parameter (see igb_param.c)
3951 * NOTE: These calculations are only valid when operating in a single-
3952 * queue environment.
3953 * @q_vector: pointer to q_vector
3954 * @ring_container: ring info to update the itr for
3956 static void igb_update_itr(struct igb_q_vector
*q_vector
,
3957 struct igb_ring_container
*ring_container
)
3959 unsigned int packets
= ring_container
->total_packets
;
3960 unsigned int bytes
= ring_container
->total_bytes
;
3961 u8 itrval
= ring_container
->itr
;
3963 /* no packets, exit with status unchanged */
3968 case lowest_latency
:
3969 /* handle TSO and jumbo frames */
3970 if (bytes
/packets
> 8000)
3971 itrval
= bulk_latency
;
3972 else if ((packets
< 5) && (bytes
> 512))
3973 itrval
= low_latency
;
3975 case low_latency
: /* 50 usec aka 20000 ints/s */
3976 if (bytes
> 10000) {
3977 /* this if handles the TSO accounting */
3978 if (bytes
/packets
> 8000) {
3979 itrval
= bulk_latency
;
3980 } else if ((packets
< 10) || ((bytes
/packets
) > 1200)) {
3981 itrval
= bulk_latency
;
3982 } else if ((packets
> 35)) {
3983 itrval
= lowest_latency
;
3985 } else if (bytes
/packets
> 2000) {
3986 itrval
= bulk_latency
;
3987 } else if (packets
<= 2 && bytes
< 512) {
3988 itrval
= lowest_latency
;
3991 case bulk_latency
: /* 250 usec aka 4000 ints/s */
3992 if (bytes
> 25000) {
3994 itrval
= low_latency
;
3995 } else if (bytes
< 1500) {
3996 itrval
= low_latency
;
4001 /* clear work counters since we have the values we need */
4002 ring_container
->total_bytes
= 0;
4003 ring_container
->total_packets
= 0;
4005 /* write updated itr to ring container */
4006 ring_container
->itr
= itrval
;
4009 static void igb_set_itr(struct igb_q_vector
*q_vector
)
4011 struct igb_adapter
*adapter
= q_vector
->adapter
;
4012 u32 new_itr
= q_vector
->itr_val
;
4015 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
4016 if (adapter
->link_speed
!= SPEED_1000
) {
4018 new_itr
= IGB_4K_ITR
;
4022 igb_update_itr(q_vector
, &q_vector
->tx
);
4023 igb_update_itr(q_vector
, &q_vector
->rx
);
4025 current_itr
= max(q_vector
->rx
.itr
, q_vector
->tx
.itr
);
4027 /* conservative mode (itr 3) eliminates the lowest_latency setting */
4028 if (current_itr
== lowest_latency
&&
4029 ((q_vector
->rx
.ring
&& adapter
->rx_itr_setting
== 3) ||
4030 (!q_vector
->rx
.ring
&& adapter
->tx_itr_setting
== 3)))
4031 current_itr
= low_latency
;
4033 switch (current_itr
) {
4034 /* counts and packets in update_itr are dependent on these numbers */
4035 case lowest_latency
:
4036 new_itr
= IGB_70K_ITR
; /* 70,000 ints/sec */
4039 new_itr
= IGB_20K_ITR
; /* 20,000 ints/sec */
4042 new_itr
= IGB_4K_ITR
; /* 4,000 ints/sec */
4049 if (new_itr
!= q_vector
->itr_val
) {
4050 /* this attempts to bias the interrupt rate towards Bulk
4051 * by adding intermediate steps when interrupt rate is
4053 new_itr
= new_itr
> q_vector
->itr_val
?
4054 max((new_itr
* q_vector
->itr_val
) /
4055 (new_itr
+ (q_vector
->itr_val
>> 2)),
4058 /* Don't write the value here; it resets the adapter's
4059 * internal timer, and causes us to delay far longer than
4060 * we should between interrupts. Instead, we write the ITR
4061 * value at the beginning of the next interrupt so the timing
4062 * ends up being correct.
4064 q_vector
->itr_val
= new_itr
;
4065 q_vector
->set_itr
= 1;
4069 static void igb_tx_ctxtdesc(struct igb_ring
*tx_ring
, u32 vlan_macip_lens
,
4070 u32 type_tucmd
, u32 mss_l4len_idx
)
4072 struct e1000_adv_tx_context_desc
*context_desc
;
4073 u16 i
= tx_ring
->next_to_use
;
4075 context_desc
= IGB_TX_CTXTDESC(tx_ring
, i
);
4078 tx_ring
->next_to_use
= (i
< tx_ring
->count
) ? i
: 0;
4080 /* set bits to identify this as an advanced context descriptor */
4081 type_tucmd
|= E1000_TXD_CMD_DEXT
| E1000_ADVTXD_DTYP_CTXT
;
4083 /* For 82575, context index must be unique per ring. */
4084 if (test_bit(IGB_RING_FLAG_TX_CTX_IDX
, &tx_ring
->flags
))
4085 mss_l4len_idx
|= tx_ring
->reg_idx
<< 4;
4087 context_desc
->vlan_macip_lens
= cpu_to_le32(vlan_macip_lens
);
4088 context_desc
->seqnum_seed
= 0;
4089 context_desc
->type_tucmd_mlhl
= cpu_to_le32(type_tucmd
);
4090 context_desc
->mss_l4len_idx
= cpu_to_le32(mss_l4len_idx
);
4093 static int igb_tso(struct igb_ring
*tx_ring
,
4094 struct igb_tx_buffer
*first
,
4097 struct sk_buff
*skb
= first
->skb
;
4098 u32 vlan_macip_lens
, type_tucmd
;
4099 u32 mss_l4len_idx
, l4len
;
4101 if (!skb_is_gso(skb
))
4104 if (skb_header_cloned(skb
)) {
4105 int err
= pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
);
4110 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
4111 type_tucmd
= E1000_ADVTXD_TUCMD_L4T_TCP
;
4113 if (first
->protocol
== __constant_htons(ETH_P_IP
)) {
4114 struct iphdr
*iph
= ip_hdr(skb
);
4117 tcp_hdr(skb
)->check
= ~csum_tcpudp_magic(iph
->saddr
,
4121 type_tucmd
|= E1000_ADVTXD_TUCMD_IPV4
;
4122 first
->tx_flags
|= IGB_TX_FLAGS_TSO
|
4125 } else if (skb_is_gso_v6(skb
)) {
4126 ipv6_hdr(skb
)->payload_len
= 0;
4127 tcp_hdr(skb
)->check
= ~csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
,
4128 &ipv6_hdr(skb
)->daddr
,
4130 first
->tx_flags
|= IGB_TX_FLAGS_TSO
|
4134 /* compute header lengths */
4135 l4len
= tcp_hdrlen(skb
);
4136 *hdr_len
= skb_transport_offset(skb
) + l4len
;
4138 /* update gso size and bytecount with header size */
4139 first
->gso_segs
= skb_shinfo(skb
)->gso_segs
;
4140 first
->bytecount
+= (first
->gso_segs
- 1) * *hdr_len
;
4143 mss_l4len_idx
= l4len
<< E1000_ADVTXD_L4LEN_SHIFT
;
4144 mss_l4len_idx
|= skb_shinfo(skb
)->gso_size
<< E1000_ADVTXD_MSS_SHIFT
;
4146 /* VLAN MACLEN IPLEN */
4147 vlan_macip_lens
= skb_network_header_len(skb
);
4148 vlan_macip_lens
|= skb_network_offset(skb
) << E1000_ADVTXD_MACLEN_SHIFT
;
4149 vlan_macip_lens
|= first
->tx_flags
& IGB_TX_FLAGS_VLAN_MASK
;
4151 igb_tx_ctxtdesc(tx_ring
, vlan_macip_lens
, type_tucmd
, mss_l4len_idx
);
4156 static void igb_tx_csum(struct igb_ring
*tx_ring
, struct igb_tx_buffer
*first
)
4158 struct sk_buff
*skb
= first
->skb
;
4159 u32 vlan_macip_lens
= 0;
4160 u32 mss_l4len_idx
= 0;
4163 if (skb
->ip_summed
!= CHECKSUM_PARTIAL
) {
4164 if (!(first
->tx_flags
& IGB_TX_FLAGS_VLAN
))
4168 switch (first
->protocol
) {
4169 case __constant_htons(ETH_P_IP
):
4170 vlan_macip_lens
|= skb_network_header_len(skb
);
4171 type_tucmd
|= E1000_ADVTXD_TUCMD_IPV4
;
4172 l4_hdr
= ip_hdr(skb
)->protocol
;
4174 case __constant_htons(ETH_P_IPV6
):
4175 vlan_macip_lens
|= skb_network_header_len(skb
);
4176 l4_hdr
= ipv6_hdr(skb
)->nexthdr
;
4179 if (unlikely(net_ratelimit())) {
4180 dev_warn(tx_ring
->dev
,
4181 "partial checksum but proto=%x!\n",
4189 type_tucmd
|= E1000_ADVTXD_TUCMD_L4T_TCP
;
4190 mss_l4len_idx
= tcp_hdrlen(skb
) <<
4191 E1000_ADVTXD_L4LEN_SHIFT
;
4194 type_tucmd
|= E1000_ADVTXD_TUCMD_L4T_SCTP
;
4195 mss_l4len_idx
= sizeof(struct sctphdr
) <<
4196 E1000_ADVTXD_L4LEN_SHIFT
;
4199 mss_l4len_idx
= sizeof(struct udphdr
) <<
4200 E1000_ADVTXD_L4LEN_SHIFT
;
4203 if (unlikely(net_ratelimit())) {
4204 dev_warn(tx_ring
->dev
,
4205 "partial checksum but l4 proto=%x!\n",
4211 /* update TX checksum flag */
4212 first
->tx_flags
|= IGB_TX_FLAGS_CSUM
;
4215 vlan_macip_lens
|= skb_network_offset(skb
) << E1000_ADVTXD_MACLEN_SHIFT
;
4216 vlan_macip_lens
|= first
->tx_flags
& IGB_TX_FLAGS_VLAN_MASK
;
4218 igb_tx_ctxtdesc(tx_ring
, vlan_macip_lens
, type_tucmd
, mss_l4len_idx
);
4221 static __le32
igb_tx_cmd_type(u32 tx_flags
)
4223 /* set type for advanced descriptor with frame checksum insertion */
4224 __le32 cmd_type
= cpu_to_le32(E1000_ADVTXD_DTYP_DATA
|
4225 E1000_ADVTXD_DCMD_IFCS
|
4226 E1000_ADVTXD_DCMD_DEXT
);
4228 /* set HW vlan bit if vlan is present */
4229 if (tx_flags
& IGB_TX_FLAGS_VLAN
)
4230 cmd_type
|= cpu_to_le32(E1000_ADVTXD_DCMD_VLE
);
4232 /* set timestamp bit if present */
4233 if (tx_flags
& IGB_TX_FLAGS_TSTAMP
)
4234 cmd_type
|= cpu_to_le32(E1000_ADVTXD_MAC_TSTAMP
);
4236 /* set segmentation bits for TSO */
4237 if (tx_flags
& IGB_TX_FLAGS_TSO
)
4238 cmd_type
|= cpu_to_le32(E1000_ADVTXD_DCMD_TSE
);
4243 static void igb_tx_olinfo_status(struct igb_ring
*tx_ring
,
4244 union e1000_adv_tx_desc
*tx_desc
,
4245 u32 tx_flags
, unsigned int paylen
)
4247 u32 olinfo_status
= paylen
<< E1000_ADVTXD_PAYLEN_SHIFT
;
4249 /* 82575 requires a unique index per ring if any offload is enabled */
4250 if ((tx_flags
& (IGB_TX_FLAGS_CSUM
| IGB_TX_FLAGS_VLAN
)) &&
4251 test_bit(IGB_RING_FLAG_TX_CTX_IDX
, &tx_ring
->flags
))
4252 olinfo_status
|= tx_ring
->reg_idx
<< 4;
4254 /* insert L4 checksum */
4255 if (tx_flags
& IGB_TX_FLAGS_CSUM
) {
4256 olinfo_status
|= E1000_TXD_POPTS_TXSM
<< 8;
4258 /* insert IPv4 checksum */
4259 if (tx_flags
& IGB_TX_FLAGS_IPV4
)
4260 olinfo_status
|= E1000_TXD_POPTS_IXSM
<< 8;
4263 tx_desc
->read
.olinfo_status
= cpu_to_le32(olinfo_status
);
4267 * The largest size we can write to the descriptor is 65535. In order to
4268 * maintain a power of two alignment we have to limit ourselves to 32K.
4270 #define IGB_MAX_TXD_PWR 15
4271 #define IGB_MAX_DATA_PER_TXD (1<<IGB_MAX_TXD_PWR)
4273 static void igb_tx_map(struct igb_ring
*tx_ring
,
4274 struct igb_tx_buffer
*first
,
4277 struct sk_buff
*skb
= first
->skb
;
4278 struct igb_tx_buffer
*tx_buffer_info
;
4279 union e1000_adv_tx_desc
*tx_desc
;
4281 struct skb_frag_struct
*frag
= &skb_shinfo(skb
)->frags
[0];
4282 unsigned int data_len
= skb
->data_len
;
4283 unsigned int size
= skb_headlen(skb
);
4284 unsigned int paylen
= skb
->len
- hdr_len
;
4286 u32 tx_flags
= first
->tx_flags
;
4287 u16 i
= tx_ring
->next_to_use
;
4289 tx_desc
= IGB_TX_DESC(tx_ring
, i
);
4291 igb_tx_olinfo_status(tx_ring
, tx_desc
, tx_flags
, paylen
);
4292 cmd_type
= igb_tx_cmd_type(tx_flags
);
4294 dma
= dma_map_single(tx_ring
->dev
, skb
->data
, size
, DMA_TO_DEVICE
);
4295 if (dma_mapping_error(tx_ring
->dev
, dma
))
4298 /* record length, and DMA address */
4299 first
->length
= size
;
4301 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
4304 while (unlikely(size
> IGB_MAX_DATA_PER_TXD
)) {
4305 tx_desc
->read
.cmd_type_len
=
4306 cmd_type
| cpu_to_le32(IGB_MAX_DATA_PER_TXD
);
4310 if (i
== tx_ring
->count
) {
4311 tx_desc
= IGB_TX_DESC(tx_ring
, 0);
4315 dma
+= IGB_MAX_DATA_PER_TXD
;
4316 size
-= IGB_MAX_DATA_PER_TXD
;
4318 tx_desc
->read
.olinfo_status
= 0;
4319 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
4322 if (likely(!data_len
))
4325 tx_desc
->read
.cmd_type_len
= cmd_type
| cpu_to_le32(size
);
4329 if (i
== tx_ring
->count
) {
4330 tx_desc
= IGB_TX_DESC(tx_ring
, 0);
4334 size
= skb_frag_size(frag
);
4337 dma
= skb_frag_dma_map(tx_ring
->dev
, frag
, 0,
4338 size
, DMA_TO_DEVICE
);
4339 if (dma_mapping_error(tx_ring
->dev
, dma
))
4342 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
4343 tx_buffer_info
->length
= size
;
4344 tx_buffer_info
->dma
= dma
;
4346 tx_desc
->read
.olinfo_status
= 0;
4347 tx_desc
->read
.buffer_addr
= cpu_to_le64(dma
);
4352 netdev_tx_sent_queue(txring_txq(tx_ring
), first
->bytecount
);
4354 /* write last descriptor with RS and EOP bits */
4355 cmd_type
|= cpu_to_le32(size
) | cpu_to_le32(IGB_TXD_DCMD
);
4356 if (unlikely(skb
->no_fcs
))
4357 cmd_type
&= ~(cpu_to_le32(E1000_ADVTXD_DCMD_IFCS
));
4358 tx_desc
->read
.cmd_type_len
= cmd_type
;
4360 /* set the timestamp */
4361 first
->time_stamp
= jiffies
;
4364 * Force memory writes to complete before letting h/w know there
4365 * are new descriptors to fetch. (Only applicable for weak-ordered
4366 * memory model archs, such as IA-64).
4368 * We also need this memory barrier to make certain all of the
4369 * status bits have been updated before next_to_watch is written.
4373 /* set next_to_watch value indicating a packet is present */
4374 first
->next_to_watch
= tx_desc
;
4377 if (i
== tx_ring
->count
)
4380 tx_ring
->next_to_use
= i
;
4382 writel(i
, tx_ring
->tail
);
4384 /* we need this if more than one processor can write to our tail
4385 * at a time, it syncronizes IO on IA64/Altix systems */
4391 dev_err(tx_ring
->dev
, "TX DMA map failed\n");
4393 /* clear dma mappings for failed tx_buffer_info map */
4395 tx_buffer_info
= &tx_ring
->tx_buffer_info
[i
];
4396 igb_unmap_and_free_tx_resource(tx_ring
, tx_buffer_info
);
4397 if (tx_buffer_info
== first
)
4404 tx_ring
->next_to_use
= i
;
4407 static int __igb_maybe_stop_tx(struct igb_ring
*tx_ring
, const u16 size
)
4409 struct net_device
*netdev
= tx_ring
->netdev
;
4411 netif_stop_subqueue(netdev
, tx_ring
->queue_index
);
4413 /* Herbert's original patch had:
4414 * smp_mb__after_netif_stop_queue();
4415 * but since that doesn't exist yet, just open code it. */
4418 /* We need to check again in a case another CPU has just
4419 * made room available. */
4420 if (igb_desc_unused(tx_ring
) < size
)
4424 netif_wake_subqueue(netdev
, tx_ring
->queue_index
);
4426 u64_stats_update_begin(&tx_ring
->tx_syncp2
);
4427 tx_ring
->tx_stats
.restart_queue2
++;
4428 u64_stats_update_end(&tx_ring
->tx_syncp2
);
4433 static inline int igb_maybe_stop_tx(struct igb_ring
*tx_ring
, const u16 size
)
4435 if (igb_desc_unused(tx_ring
) >= size
)
4437 return __igb_maybe_stop_tx(tx_ring
, size
);
4440 netdev_tx_t
igb_xmit_frame_ring(struct sk_buff
*skb
,
4441 struct igb_ring
*tx_ring
)
4443 struct igb_tx_buffer
*first
;
4446 __be16 protocol
= vlan_get_protocol(skb
);
4449 /* need: 1 descriptor per page,
4450 * + 2 desc gap to keep tail from touching head,
4451 * + 1 desc for skb->data,
4452 * + 1 desc for context descriptor,
4453 * otherwise try next time */
4454 if (igb_maybe_stop_tx(tx_ring
, skb_shinfo(skb
)->nr_frags
+ 4)) {
4455 /* this is a hard error */
4456 return NETDEV_TX_BUSY
;
4459 /* record the location of the first descriptor for this packet */
4460 first
= &tx_ring
->tx_buffer_info
[tx_ring
->next_to_use
];
4462 first
->bytecount
= skb
->len
;
4463 first
->gso_segs
= 1;
4465 if (unlikely(skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
)) {
4466 skb_shinfo(skb
)->tx_flags
|= SKBTX_IN_PROGRESS
;
4467 tx_flags
|= IGB_TX_FLAGS_TSTAMP
;
4470 if (vlan_tx_tag_present(skb
)) {
4471 tx_flags
|= IGB_TX_FLAGS_VLAN
;
4472 tx_flags
|= (vlan_tx_tag_get(skb
) << IGB_TX_FLAGS_VLAN_SHIFT
);
4475 /* record initial flags and protocol */
4476 first
->tx_flags
= tx_flags
;
4477 first
->protocol
= protocol
;
4479 tso
= igb_tso(tx_ring
, first
, &hdr_len
);
4483 igb_tx_csum(tx_ring
, first
);
4485 igb_tx_map(tx_ring
, first
, hdr_len
);
4487 /* Make sure there is space in the ring for the next send. */
4488 igb_maybe_stop_tx(tx_ring
, MAX_SKB_FRAGS
+ 4);
4490 return NETDEV_TX_OK
;
4493 igb_unmap_and_free_tx_resource(tx_ring
, first
);
4495 return NETDEV_TX_OK
;
4498 static inline struct igb_ring
*igb_tx_queue_mapping(struct igb_adapter
*adapter
,
4499 struct sk_buff
*skb
)
4501 unsigned int r_idx
= skb
->queue_mapping
;
4503 if (r_idx
>= adapter
->num_tx_queues
)
4504 r_idx
= r_idx
% adapter
->num_tx_queues
;
4506 return adapter
->tx_ring
[r_idx
];
4509 static netdev_tx_t
igb_xmit_frame(struct sk_buff
*skb
,
4510 struct net_device
*netdev
)
4512 struct igb_adapter
*adapter
= netdev_priv(netdev
);
4514 if (test_bit(__IGB_DOWN
, &adapter
->state
)) {
4515 dev_kfree_skb_any(skb
);
4516 return NETDEV_TX_OK
;
4519 if (skb
->len
<= 0) {
4520 dev_kfree_skb_any(skb
);
4521 return NETDEV_TX_OK
;
4525 * The minimum packet size with TCTL.PSP set is 17 so pad the skb
4526 * in order to meet this minimum size requirement.
4528 if (skb
->len
< 17) {
4529 if (skb_padto(skb
, 17))
4530 return NETDEV_TX_OK
;
4534 return igb_xmit_frame_ring(skb
, igb_tx_queue_mapping(adapter
, skb
));
4538 * igb_tx_timeout - Respond to a Tx Hang
4539 * @netdev: network interface device structure
4541 static void igb_tx_timeout(struct net_device
*netdev
)
4543 struct igb_adapter
*adapter
= netdev_priv(netdev
);
4544 struct e1000_hw
*hw
= &adapter
->hw
;
4546 /* Do the reset outside of interrupt context */
4547 adapter
->tx_timeout_count
++;
4549 if (hw
->mac
.type
>= e1000_82580
)
4550 hw
->dev_spec
._82575
.global_device_reset
= true;
4552 schedule_work(&adapter
->reset_task
);
4554 (adapter
->eims_enable_mask
& ~adapter
->eims_other
));
4557 static void igb_reset_task(struct work_struct
*work
)
4559 struct igb_adapter
*adapter
;
4560 adapter
= container_of(work
, struct igb_adapter
, reset_task
);
4563 netdev_err(adapter
->netdev
, "Reset adapter\n");
4564 igb_reinit_locked(adapter
);
4568 * igb_get_stats64 - Get System Network Statistics
4569 * @netdev: network interface device structure
4570 * @stats: rtnl_link_stats64 pointer
4573 static struct rtnl_link_stats64
*igb_get_stats64(struct net_device
*netdev
,
4574 struct rtnl_link_stats64
*stats
)
4576 struct igb_adapter
*adapter
= netdev_priv(netdev
);
4578 spin_lock(&adapter
->stats64_lock
);
4579 igb_update_stats(adapter
, &adapter
->stats64
);
4580 memcpy(stats
, &adapter
->stats64
, sizeof(*stats
));
4581 spin_unlock(&adapter
->stats64_lock
);
4587 * igb_change_mtu - Change the Maximum Transfer Unit
4588 * @netdev: network interface device structure
4589 * @new_mtu: new value for maximum frame size
4591 * Returns 0 on success, negative on failure
4593 static int igb_change_mtu(struct net_device
*netdev
, int new_mtu
)
4595 struct igb_adapter
*adapter
= netdev_priv(netdev
);
4596 struct pci_dev
*pdev
= adapter
->pdev
;
4597 int max_frame
= new_mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
4599 if ((new_mtu
< 68) || (max_frame
> MAX_JUMBO_FRAME_SIZE
)) {
4600 dev_err(&pdev
->dev
, "Invalid MTU setting\n");
4604 #define MAX_STD_JUMBO_FRAME_SIZE 9238
4605 if (max_frame
> MAX_STD_JUMBO_FRAME_SIZE
) {
4606 dev_err(&pdev
->dev
, "MTU > 9216 not supported.\n");
4610 while (test_and_set_bit(__IGB_RESETTING
, &adapter
->state
))
4613 /* igb_down has a dependency on max_frame_size */
4614 adapter
->max_frame_size
= max_frame
;
4616 if (netif_running(netdev
))
4619 dev_info(&pdev
->dev
, "changing MTU from %d to %d\n",
4620 netdev
->mtu
, new_mtu
);
4621 netdev
->mtu
= new_mtu
;
4623 if (netif_running(netdev
))
4628 clear_bit(__IGB_RESETTING
, &adapter
->state
);
4634 * igb_update_stats - Update the board statistics counters
4635 * @adapter: board private structure
4638 void igb_update_stats(struct igb_adapter
*adapter
,
4639 struct rtnl_link_stats64
*net_stats
)
4641 struct e1000_hw
*hw
= &adapter
->hw
;
4642 struct pci_dev
*pdev
= adapter
->pdev
;
4648 u64 _bytes
, _packets
;
4650 #define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
4653 * Prevent stats update while adapter is being reset, or if the pci
4654 * connection is down.
4656 if (adapter
->link_speed
== 0)
4658 if (pci_channel_offline(pdev
))
4663 for (i
= 0; i
< adapter
->num_rx_queues
; i
++) {
4664 u32 rqdpc_tmp
= rd32(E1000_RQDPC(i
)) & 0x0FFF;
4665 struct igb_ring
*ring
= adapter
->rx_ring
[i
];
4667 ring
->rx_stats
.drops
+= rqdpc_tmp
;
4668 net_stats
->rx_fifo_errors
+= rqdpc_tmp
;
4671 start
= u64_stats_fetch_begin_bh(&ring
->rx_syncp
);
4672 _bytes
= ring
->rx_stats
.bytes
;
4673 _packets
= ring
->rx_stats
.packets
;
4674 } while (u64_stats_fetch_retry_bh(&ring
->rx_syncp
, start
));
4676 packets
+= _packets
;
4679 net_stats
->rx_bytes
= bytes
;
4680 net_stats
->rx_packets
= packets
;
4684 for (i
= 0; i
< adapter
->num_tx_queues
; i
++) {
4685 struct igb_ring
*ring
= adapter
->tx_ring
[i
];
4687 start
= u64_stats_fetch_begin_bh(&ring
->tx_syncp
);
4688 _bytes
= ring
->tx_stats
.bytes
;
4689 _packets
= ring
->tx_stats
.packets
;
4690 } while (u64_stats_fetch_retry_bh(&ring
->tx_syncp
, start
));
4692 packets
+= _packets
;
4694 net_stats
->tx_bytes
= bytes
;
4695 net_stats
->tx_packets
= packets
;
4697 /* read stats registers */
4698 adapter
->stats
.crcerrs
+= rd32(E1000_CRCERRS
);
4699 adapter
->stats
.gprc
+= rd32(E1000_GPRC
);
4700 adapter
->stats
.gorc
+= rd32(E1000_GORCL
);
4701 rd32(E1000_GORCH
); /* clear GORCL */
4702 adapter
->stats
.bprc
+= rd32(E1000_BPRC
);
4703 adapter
->stats
.mprc
+= rd32(E1000_MPRC
);
4704 adapter
->stats
.roc
+= rd32(E1000_ROC
);
4706 adapter
->stats
.prc64
+= rd32(E1000_PRC64
);
4707 adapter
->stats
.prc127
+= rd32(E1000_PRC127
);
4708 adapter
->stats
.prc255
+= rd32(E1000_PRC255
);
4709 adapter
->stats
.prc511
+= rd32(E1000_PRC511
);
4710 adapter
->stats
.prc1023
+= rd32(E1000_PRC1023
);
4711 adapter
->stats
.prc1522
+= rd32(E1000_PRC1522
);
4712 adapter
->stats
.symerrs
+= rd32(E1000_SYMERRS
);
4713 adapter
->stats
.sec
+= rd32(E1000_SEC
);
4715 mpc
= rd32(E1000_MPC
);
4716 adapter
->stats
.mpc
+= mpc
;
4717 net_stats
->rx_fifo_errors
+= mpc
;
4718 adapter
->stats
.scc
+= rd32(E1000_SCC
);
4719 adapter
->stats
.ecol
+= rd32(E1000_ECOL
);
4720 adapter
->stats
.mcc
+= rd32(E1000_MCC
);
4721 adapter
->stats
.latecol
+= rd32(E1000_LATECOL
);
4722 adapter
->stats
.dc
+= rd32(E1000_DC
);
4723 adapter
->stats
.rlec
+= rd32(E1000_RLEC
);
4724 adapter
->stats
.xonrxc
+= rd32(E1000_XONRXC
);
4725 adapter
->stats
.xontxc
+= rd32(E1000_XONTXC
);
4726 adapter
->stats
.xoffrxc
+= rd32(E1000_XOFFRXC
);
4727 adapter
->stats
.xofftxc
+= rd32(E1000_XOFFTXC
);
4728 adapter
->stats
.fcruc
+= rd32(E1000_FCRUC
);
4729 adapter
->stats
.gptc
+= rd32(E1000_GPTC
);
4730 adapter
->stats
.gotc
+= rd32(E1000_GOTCL
);
4731 rd32(E1000_GOTCH
); /* clear GOTCL */
4732 adapter
->stats
.rnbc
+= rd32(E1000_RNBC
);
4733 adapter
->stats
.ruc
+= rd32(E1000_RUC
);
4734 adapter
->stats
.rfc
+= rd32(E1000_RFC
);
4735 adapter
->stats
.rjc
+= rd32(E1000_RJC
);
4736 adapter
->stats
.tor
+= rd32(E1000_TORH
);
4737 adapter
->stats
.tot
+= rd32(E1000_TOTH
);
4738 adapter
->stats
.tpr
+= rd32(E1000_TPR
);
4740 adapter
->stats
.ptc64
+= rd32(E1000_PTC64
);
4741 adapter
->stats
.ptc127
+= rd32(E1000_PTC127
);
4742 adapter
->stats
.ptc255
+= rd32(E1000_PTC255
);
4743 adapter
->stats
.ptc511
+= rd32(E1000_PTC511
);
4744 adapter
->stats
.ptc1023
+= rd32(E1000_PTC1023
);
4745 adapter
->stats
.ptc1522
+= rd32(E1000_PTC1522
);
4747 adapter
->stats
.mptc
+= rd32(E1000_MPTC
);
4748 adapter
->stats
.bptc
+= rd32(E1000_BPTC
);
4750 adapter
->stats
.tpt
+= rd32(E1000_TPT
);
4751 adapter
->stats
.colc
+= rd32(E1000_COLC
);
4753 adapter
->stats
.algnerrc
+= rd32(E1000_ALGNERRC
);
4754 /* read internal phy specific stats */
4755 reg
= rd32(E1000_CTRL_EXT
);
4756 if (!(reg
& E1000_CTRL_EXT_LINK_MODE_MASK
)) {
4757 adapter
->stats
.rxerrc
+= rd32(E1000_RXERRC
);
4758 adapter
->stats
.tncrs
+= rd32(E1000_TNCRS
);
4761 adapter
->stats
.tsctc
+= rd32(E1000_TSCTC
);
4762 adapter
->stats
.tsctfc
+= rd32(E1000_TSCTFC
);
4764 adapter
->stats
.iac
+= rd32(E1000_IAC
);
4765 adapter
->stats
.icrxoc
+= rd32(E1000_ICRXOC
);
4766 adapter
->stats
.icrxptc
+= rd32(E1000_ICRXPTC
);
4767 adapter
->stats
.icrxatc
+= rd32(E1000_ICRXATC
);
4768 adapter
->stats
.ictxptc
+= rd32(E1000_ICTXPTC
);
4769 adapter
->stats
.ictxatc
+= rd32(E1000_ICTXATC
);
4770 adapter
->stats
.ictxqec
+= rd32(E1000_ICTXQEC
);
4771 adapter
->stats
.ictxqmtc
+= rd32(E1000_ICTXQMTC
);
4772 adapter
->stats
.icrxdmtc
+= rd32(E1000_ICRXDMTC
);
4774 /* Fill out the OS statistics structure */
4775 net_stats
->multicast
= adapter
->stats
.mprc
;
4776 net_stats
->collisions
= adapter
->stats
.colc
;
4780 /* RLEC on some newer hardware can be incorrect so build
4781 * our own version based on RUC and ROC */
4782 net_stats
->rx_errors
= adapter
->stats
.rxerrc
+
4783 adapter
->stats
.crcerrs
+ adapter
->stats
.algnerrc
+
4784 adapter
->stats
.ruc
+ adapter
->stats
.roc
+
4785 adapter
->stats
.cexterr
;
4786 net_stats
->rx_length_errors
= adapter
->stats
.ruc
+
4788 net_stats
->rx_crc_errors
= adapter
->stats
.crcerrs
;
4789 net_stats
->rx_frame_errors
= adapter
->stats
.algnerrc
;
4790 net_stats
->rx_missed_errors
= adapter
->stats
.mpc
;
4793 net_stats
->tx_errors
= adapter
->stats
.ecol
+
4794 adapter
->stats
.latecol
;
4795 net_stats
->tx_aborted_errors
= adapter
->stats
.ecol
;
4796 net_stats
->tx_window_errors
= adapter
->stats
.latecol
;
4797 net_stats
->tx_carrier_errors
= adapter
->stats
.tncrs
;
4799 /* Tx Dropped needs to be maintained elsewhere */
4802 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
4803 if ((adapter
->link_speed
== SPEED_1000
) &&
4804 (!igb_read_phy_reg(hw
, PHY_1000T_STATUS
, &phy_tmp
))) {
4805 phy_tmp
&= PHY_IDLE_ERROR_COUNT_MASK
;
4806 adapter
->phy_stats
.idle_errors
+= phy_tmp
;
4810 /* Management Stats */
4811 adapter
->stats
.mgptc
+= rd32(E1000_MGTPTC
);
4812 adapter
->stats
.mgprc
+= rd32(E1000_MGTPRC
);
4813 adapter
->stats
.mgpdc
+= rd32(E1000_MGTPDC
);
4816 reg
= rd32(E1000_MANC
);
4817 if (reg
& E1000_MANC_EN_BMC2OS
) {
4818 adapter
->stats
.o2bgptc
+= rd32(E1000_O2BGPTC
);
4819 adapter
->stats
.o2bspc
+= rd32(E1000_O2BSPC
);
4820 adapter
->stats
.b2ospc
+= rd32(E1000_B2OSPC
);
4821 adapter
->stats
.b2ogprc
+= rd32(E1000_B2OGPRC
);
4825 static irqreturn_t
igb_msix_other(int irq
, void *data
)
4827 struct igb_adapter
*adapter
= data
;
4828 struct e1000_hw
*hw
= &adapter
->hw
;
4829 u32 icr
= rd32(E1000_ICR
);
4830 /* reading ICR causes bit 31 of EICR to be cleared */
4832 if (icr
& E1000_ICR_DRSTA
)
4833 schedule_work(&adapter
->reset_task
);
4835 if (icr
& E1000_ICR_DOUTSYNC
) {
4836 /* HW is reporting DMA is out of sync */
4837 adapter
->stats
.doosync
++;
4838 /* The DMA Out of Sync is also indication of a spoof event
4839 * in IOV mode. Check the Wrong VM Behavior register to
4840 * see if it is really a spoof event. */
4841 igb_check_wvbr(adapter
);
4844 /* Check for a mailbox event */
4845 if (icr
& E1000_ICR_VMMB
)
4846 igb_msg_task(adapter
);
4848 if (icr
& E1000_ICR_LSC
) {
4849 hw
->mac
.get_link_status
= 1;
4850 /* guard against interrupt when we're going down */
4851 if (!test_bit(__IGB_DOWN
, &adapter
->state
))
4852 mod_timer(&adapter
->watchdog_timer
, jiffies
+ 1);
4855 wr32(E1000_EIMS
, adapter
->eims_other
);
4860 static void igb_write_itr(struct igb_q_vector
*q_vector
)
4862 struct igb_adapter
*adapter
= q_vector
->adapter
;
4863 u32 itr_val
= q_vector
->itr_val
& 0x7FFC;
4865 if (!q_vector
->set_itr
)
4871 if (adapter
->hw
.mac
.type
== e1000_82575
)
4872 itr_val
|= itr_val
<< 16;
4874 itr_val
|= E1000_EITR_CNT_IGNR
;
4876 writel(itr_val
, q_vector
->itr_register
);
4877 q_vector
->set_itr
= 0;
4880 static irqreturn_t
igb_msix_ring(int irq
, void *data
)
4882 struct igb_q_vector
*q_vector
= data
;
4884 /* Write the ITR value calculated from the previous interrupt. */
4885 igb_write_itr(q_vector
);
4887 napi_schedule(&q_vector
->napi
);
4892 #ifdef CONFIG_IGB_DCA
4893 static void igb_update_dca(struct igb_q_vector
*q_vector
)
4895 struct igb_adapter
*adapter
= q_vector
->adapter
;
4896 struct e1000_hw
*hw
= &adapter
->hw
;
4897 int cpu
= get_cpu();
4899 if (q_vector
->cpu
== cpu
)
4902 if (q_vector
->tx
.ring
) {
4903 int q
= q_vector
->tx
.ring
->reg_idx
;
4904 u32 dca_txctrl
= rd32(E1000_DCA_TXCTRL(q
));
4905 if (hw
->mac
.type
== e1000_82575
) {
4906 dca_txctrl
&= ~E1000_DCA_TXCTRL_CPUID_MASK
;
4907 dca_txctrl
|= dca3_get_tag(&adapter
->pdev
->dev
, cpu
);
4909 dca_txctrl
&= ~E1000_DCA_TXCTRL_CPUID_MASK_82576
;
4910 dca_txctrl
|= dca3_get_tag(&adapter
->pdev
->dev
, cpu
) <<
4911 E1000_DCA_TXCTRL_CPUID_SHIFT
;
4913 dca_txctrl
|= E1000_DCA_TXCTRL_DESC_DCA_EN
;
4914 wr32(E1000_DCA_TXCTRL(q
), dca_txctrl
);
4916 if (q_vector
->rx
.ring
) {
4917 int q
= q_vector
->rx
.ring
->reg_idx
;
4918 u32 dca_rxctrl
= rd32(E1000_DCA_RXCTRL(q
));
4919 if (hw
->mac
.type
== e1000_82575
) {
4920 dca_rxctrl
&= ~E1000_DCA_RXCTRL_CPUID_MASK
;
4921 dca_rxctrl
|= dca3_get_tag(&adapter
->pdev
->dev
, cpu
);
4923 dca_rxctrl
&= ~E1000_DCA_RXCTRL_CPUID_MASK_82576
;
4924 dca_rxctrl
|= dca3_get_tag(&adapter
->pdev
->dev
, cpu
) <<
4925 E1000_DCA_RXCTRL_CPUID_SHIFT
;
4927 dca_rxctrl
|= E1000_DCA_RXCTRL_DESC_DCA_EN
;
4928 dca_rxctrl
|= E1000_DCA_RXCTRL_HEAD_DCA_EN
;
4929 dca_rxctrl
|= E1000_DCA_RXCTRL_DATA_DCA_EN
;
4930 wr32(E1000_DCA_RXCTRL(q
), dca_rxctrl
);
4932 q_vector
->cpu
= cpu
;
4937 static void igb_setup_dca(struct igb_adapter
*adapter
)
4939 struct e1000_hw
*hw
= &adapter
->hw
;
4942 if (!(adapter
->flags
& IGB_FLAG_DCA_ENABLED
))
4945 /* Always use CB2 mode, difference is masked in the CB driver. */
4946 wr32(E1000_DCA_CTRL
, E1000_DCA_CTRL_DCA_MODE_CB2
);
4948 for (i
= 0; i
< adapter
->num_q_vectors
; i
++) {
4949 adapter
->q_vector
[i
]->cpu
= -1;
4950 igb_update_dca(adapter
->q_vector
[i
]);
4954 static int __igb_notify_dca(struct device
*dev
, void *data
)
4956 struct net_device
*netdev
= dev_get_drvdata(dev
);
4957 struct igb_adapter
*adapter
= netdev_priv(netdev
);
4958 struct pci_dev
*pdev
= adapter
->pdev
;
4959 struct e1000_hw
*hw
= &adapter
->hw
;
4960 unsigned long event
= *(unsigned long *)data
;
4963 case DCA_PROVIDER_ADD
:
4964 /* if already enabled, don't do it again */
4965 if (adapter
->flags
& IGB_FLAG_DCA_ENABLED
)
4967 if (dca_add_requester(dev
) == 0) {
4968 adapter
->flags
|= IGB_FLAG_DCA_ENABLED
;
4969 dev_info(&pdev
->dev
, "DCA enabled\n");
4970 igb_setup_dca(adapter
);
4973 /* Fall Through since DCA is disabled. */
4974 case DCA_PROVIDER_REMOVE
:
4975 if (adapter
->flags
& IGB_FLAG_DCA_ENABLED
) {
4976 /* without this a class_device is left
4977 * hanging around in the sysfs model */
4978 dca_remove_requester(dev
);
4979 dev_info(&pdev
->dev
, "DCA disabled\n");
4980 adapter
->flags
&= ~IGB_FLAG_DCA_ENABLED
;
4981 wr32(E1000_DCA_CTRL
, E1000_DCA_CTRL_DCA_MODE_DISABLE
);
4989 static int igb_notify_dca(struct notifier_block
*nb
, unsigned long event
,
4994 ret_val
= driver_for_each_device(&igb_driver
.driver
, NULL
, &event
,
4997 return ret_val
? NOTIFY_BAD
: NOTIFY_DONE
;
4999 #endif /* CONFIG_IGB_DCA */
5001 #ifdef CONFIG_PCI_IOV
5002 static int igb_vf_configure(struct igb_adapter
*adapter
, int vf
)
5004 unsigned char mac_addr
[ETH_ALEN
];
5005 struct pci_dev
*pdev
= adapter
->pdev
;
5006 struct e1000_hw
*hw
= &adapter
->hw
;
5007 struct pci_dev
*pvfdev
;
5008 unsigned int device_id
;
5011 eth_random_addr(mac_addr
);
5012 igb_set_vf_mac(adapter
, vf
, mac_addr
);
5014 switch (adapter
->hw
.mac
.type
) {
5016 device_id
= IGB_82576_VF_DEV_ID
;
5017 /* VF Stride for 82576 is 2 */
5018 thisvf_devfn
= (pdev
->devfn
+ 0x80 + (vf
<< 1)) |
5022 device_id
= IGB_I350_VF_DEV_ID
;
5023 /* VF Stride for I350 is 4 */
5024 thisvf_devfn
= (pdev
->devfn
+ 0x80 + (vf
<< 2)) |
5033 pvfdev
= pci_get_device(hw
->vendor_id
, device_id
, NULL
);
5035 if (pvfdev
->devfn
== thisvf_devfn
)
5037 pvfdev
= pci_get_device(hw
->vendor_id
,
5042 adapter
->vf_data
[vf
].vfdev
= pvfdev
;
5045 "Couldn't find pci dev ptr for VF %4.4x\n",
5047 return pvfdev
!= NULL
;
5050 static int igb_find_enabled_vfs(struct igb_adapter
*adapter
)
5052 struct e1000_hw
*hw
= &adapter
->hw
;
5053 struct pci_dev
*pdev
= adapter
->pdev
;
5054 struct pci_dev
*pvfdev
;
5057 unsigned int device_id
;
5060 switch (adapter
->hw
.mac
.type
) {
5062 device_id
= IGB_82576_VF_DEV_ID
;
5063 /* VF Stride for 82576 is 2 */
5067 device_id
= IGB_I350_VF_DEV_ID
;
5068 /* VF Stride for I350 is 4 */
5077 vf_devfn
= pdev
->devfn
+ 0x80;
5078 pvfdev
= pci_get_device(hw
->vendor_id
, device_id
, NULL
);
5080 if (pvfdev
->devfn
== vf_devfn
&&
5081 (pvfdev
->bus
->number
>= pdev
->bus
->number
))
5083 vf_devfn
+= vf_stride
;
5084 pvfdev
= pci_get_device(hw
->vendor_id
,
5091 static int igb_check_vf_assignment(struct igb_adapter
*adapter
)
5094 for (i
= 0; i
< adapter
->vfs_allocated_count
; i
++) {
5095 if (adapter
->vf_data
[i
].vfdev
) {
5096 if (adapter
->vf_data
[i
].vfdev
->dev_flags
&
5097 PCI_DEV_FLAGS_ASSIGNED
)
5105 static void igb_ping_all_vfs(struct igb_adapter
*adapter
)
5107 struct e1000_hw
*hw
= &adapter
->hw
;
5111 for (i
= 0 ; i
< adapter
->vfs_allocated_count
; i
++) {
5112 ping
= E1000_PF_CONTROL_MSG
;
5113 if (adapter
->vf_data
[i
].flags
& IGB_VF_FLAG_CTS
)
5114 ping
|= E1000_VT_MSGTYPE_CTS
;
5115 igb_write_mbx(hw
, &ping
, 1, i
);
5119 static int igb_set_vf_promisc(struct igb_adapter
*adapter
, u32
*msgbuf
, u32 vf
)
5121 struct e1000_hw
*hw
= &adapter
->hw
;
5122 u32 vmolr
= rd32(E1000_VMOLR(vf
));
5123 struct vf_data_storage
*vf_data
= &adapter
->vf_data
[vf
];
5125 vf_data
->flags
&= ~(IGB_VF_FLAG_UNI_PROMISC
|
5126 IGB_VF_FLAG_MULTI_PROMISC
);
5127 vmolr
&= ~(E1000_VMOLR_ROPE
| E1000_VMOLR_ROMPE
| E1000_VMOLR_MPME
);
5129 if (*msgbuf
& E1000_VF_SET_PROMISC_MULTICAST
) {
5130 vmolr
|= E1000_VMOLR_MPME
;
5131 vf_data
->flags
|= IGB_VF_FLAG_MULTI_PROMISC
;
5132 *msgbuf
&= ~E1000_VF_SET_PROMISC_MULTICAST
;
5135 * if we have hashes and we are clearing a multicast promisc
5136 * flag we need to write the hashes to the MTA as this step
5137 * was previously skipped
5139 if (vf_data
->num_vf_mc_hashes
> 30) {
5140 vmolr
|= E1000_VMOLR_MPME
;
5141 } else if (vf_data
->num_vf_mc_hashes
) {
5143 vmolr
|= E1000_VMOLR_ROMPE
;
5144 for (j
= 0; j
< vf_data
->num_vf_mc_hashes
; j
++)
5145 igb_mta_set(hw
, vf_data
->vf_mc_hashes
[j
]);
5149 wr32(E1000_VMOLR(vf
), vmolr
);
5151 /* there are flags left unprocessed, likely not supported */
5152 if (*msgbuf
& E1000_VT_MSGINFO_MASK
)
5159 static int igb_set_vf_multicasts(struct igb_adapter
*adapter
,
5160 u32
*msgbuf
, u32 vf
)
5162 int n
= (msgbuf
[0] & E1000_VT_MSGINFO_MASK
) >> E1000_VT_MSGINFO_SHIFT
;
5163 u16
*hash_list
= (u16
*)&msgbuf
[1];
5164 struct vf_data_storage
*vf_data
= &adapter
->vf_data
[vf
];
5167 /* salt away the number of multicast addresses assigned
5168 * to this VF for later use to restore when the PF multi cast
5171 vf_data
->num_vf_mc_hashes
= n
;
5173 /* only up to 30 hash values supported */
5177 /* store the hashes for later use */
5178 for (i
= 0; i
< n
; i
++)
5179 vf_data
->vf_mc_hashes
[i
] = hash_list
[i
];
5181 /* Flush and reset the mta with the new values */
5182 igb_set_rx_mode(adapter
->netdev
);
5187 static void igb_restore_vf_multicasts(struct igb_adapter
*adapter
)
5189 struct e1000_hw
*hw
= &adapter
->hw
;
5190 struct vf_data_storage
*vf_data
;
5193 for (i
= 0; i
< adapter
->vfs_allocated_count
; i
++) {
5194 u32 vmolr
= rd32(E1000_VMOLR(i
));
5195 vmolr
&= ~(E1000_VMOLR_ROMPE
| E1000_VMOLR_MPME
);
5197 vf_data
= &adapter
->vf_data
[i
];
5199 if ((vf_data
->num_vf_mc_hashes
> 30) ||
5200 (vf_data
->flags
& IGB_VF_FLAG_MULTI_PROMISC
)) {
5201 vmolr
|= E1000_VMOLR_MPME
;
5202 } else if (vf_data
->num_vf_mc_hashes
) {
5203 vmolr
|= E1000_VMOLR_ROMPE
;
5204 for (j
= 0; j
< vf_data
->num_vf_mc_hashes
; j
++)
5205 igb_mta_set(hw
, vf_data
->vf_mc_hashes
[j
]);
5207 wr32(E1000_VMOLR(i
), vmolr
);
5211 static void igb_clear_vf_vfta(struct igb_adapter
*adapter
, u32 vf
)
5213 struct e1000_hw
*hw
= &adapter
->hw
;
5214 u32 pool_mask
, reg
, vid
;
5217 pool_mask
= 1 << (E1000_VLVF_POOLSEL_SHIFT
+ vf
);
5219 /* Find the vlan filter for this id */
5220 for (i
= 0; i
< E1000_VLVF_ARRAY_SIZE
; i
++) {
5221 reg
= rd32(E1000_VLVF(i
));
5223 /* remove the vf from the pool */
5226 /* if pool is empty then remove entry from vfta */
5227 if (!(reg
& E1000_VLVF_POOLSEL_MASK
) &&
5228 (reg
& E1000_VLVF_VLANID_ENABLE
)) {
5230 vid
= reg
& E1000_VLVF_VLANID_MASK
;
5231 igb_vfta_set(hw
, vid
, false);
5234 wr32(E1000_VLVF(i
), reg
);
5237 adapter
->vf_data
[vf
].vlans_enabled
= 0;
5240 static s32
igb_vlvf_set(struct igb_adapter
*adapter
, u32 vid
, bool add
, u32 vf
)
5242 struct e1000_hw
*hw
= &adapter
->hw
;
5245 /* The vlvf table only exists on 82576 hardware and newer */
5246 if (hw
->mac
.type
< e1000_82576
)
5249 /* we only need to do this if VMDq is enabled */
5250 if (!adapter
->vfs_allocated_count
)
5253 /* Find the vlan filter for this id */
5254 for (i
= 0; i
< E1000_VLVF_ARRAY_SIZE
; i
++) {
5255 reg
= rd32(E1000_VLVF(i
));
5256 if ((reg
& E1000_VLVF_VLANID_ENABLE
) &&
5257 vid
== (reg
& E1000_VLVF_VLANID_MASK
))
5262 if (i
== E1000_VLVF_ARRAY_SIZE
) {
5263 /* Did not find a matching VLAN ID entry that was
5264 * enabled. Search for a free filter entry, i.e.
5265 * one without the enable bit set
5267 for (i
= 0; i
< E1000_VLVF_ARRAY_SIZE
; i
++) {
5268 reg
= rd32(E1000_VLVF(i
));
5269 if (!(reg
& E1000_VLVF_VLANID_ENABLE
))
5273 if (i
< E1000_VLVF_ARRAY_SIZE
) {
5274 /* Found an enabled/available entry */
5275 reg
|= 1 << (E1000_VLVF_POOLSEL_SHIFT
+ vf
);
5277 /* if !enabled we need to set this up in vfta */
5278 if (!(reg
& E1000_VLVF_VLANID_ENABLE
)) {
5279 /* add VID to filter table */
5280 igb_vfta_set(hw
, vid
, true);
5281 reg
|= E1000_VLVF_VLANID_ENABLE
;
5283 reg
&= ~E1000_VLVF_VLANID_MASK
;
5285 wr32(E1000_VLVF(i
), reg
);
5287 /* do not modify RLPML for PF devices */
5288 if (vf
>= adapter
->vfs_allocated_count
)
5291 if (!adapter
->vf_data
[vf
].vlans_enabled
) {
5293 reg
= rd32(E1000_VMOLR(vf
));
5294 size
= reg
& E1000_VMOLR_RLPML_MASK
;
5296 reg
&= ~E1000_VMOLR_RLPML_MASK
;
5298 wr32(E1000_VMOLR(vf
), reg
);
5301 adapter
->vf_data
[vf
].vlans_enabled
++;
5304 if (i
< E1000_VLVF_ARRAY_SIZE
) {
5305 /* remove vf from the pool */
5306 reg
&= ~(1 << (E1000_VLVF_POOLSEL_SHIFT
+ vf
));
5307 /* if pool is empty then remove entry from vfta */
5308 if (!(reg
& E1000_VLVF_POOLSEL_MASK
)) {
5310 igb_vfta_set(hw
, vid
, false);
5312 wr32(E1000_VLVF(i
), reg
);
5314 /* do not modify RLPML for PF devices */
5315 if (vf
>= adapter
->vfs_allocated_count
)
5318 adapter
->vf_data
[vf
].vlans_enabled
--;
5319 if (!adapter
->vf_data
[vf
].vlans_enabled
) {
5321 reg
= rd32(E1000_VMOLR(vf
));
5322 size
= reg
& E1000_VMOLR_RLPML_MASK
;
5324 reg
&= ~E1000_VMOLR_RLPML_MASK
;
5326 wr32(E1000_VMOLR(vf
), reg
);
5333 static void igb_set_vmvir(struct igb_adapter
*adapter
, u32 vid
, u32 vf
)
5335 struct e1000_hw
*hw
= &adapter
->hw
;
5338 wr32(E1000_VMVIR(vf
), (vid
| E1000_VMVIR_VLANA_DEFAULT
));
5340 wr32(E1000_VMVIR(vf
), 0);
5343 static int igb_ndo_set_vf_vlan(struct net_device
*netdev
,
5344 int vf
, u16 vlan
, u8 qos
)
5347 struct igb_adapter
*adapter
= netdev_priv(netdev
);
5349 if ((vf
>= adapter
->vfs_allocated_count
) || (vlan
> 4095) || (qos
> 7))
5352 err
= igb_vlvf_set(adapter
, vlan
, !!vlan
, vf
);
5355 igb_set_vmvir(adapter
, vlan
| (qos
<< VLAN_PRIO_SHIFT
), vf
);
5356 igb_set_vmolr(adapter
, vf
, !vlan
);
5357 adapter
->vf_data
[vf
].pf_vlan
= vlan
;
5358 adapter
->vf_data
[vf
].pf_qos
= qos
;
5359 dev_info(&adapter
->pdev
->dev
,
5360 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan
, qos
, vf
);
5361 if (test_bit(__IGB_DOWN
, &adapter
->state
)) {
5362 dev_warn(&adapter
->pdev
->dev
,
5363 "The VF VLAN has been set,"
5364 " but the PF device is not up.\n");
5365 dev_warn(&adapter
->pdev
->dev
,
5366 "Bring the PF device up before"
5367 " attempting to use the VF device.\n");
5370 igb_vlvf_set(adapter
, adapter
->vf_data
[vf
].pf_vlan
,
5372 igb_set_vmvir(adapter
, vlan
, vf
);
5373 igb_set_vmolr(adapter
, vf
, true);
5374 adapter
->vf_data
[vf
].pf_vlan
= 0;
5375 adapter
->vf_data
[vf
].pf_qos
= 0;
5381 static int igb_set_vf_vlan(struct igb_adapter
*adapter
, u32
*msgbuf
, u32 vf
)
5383 int add
= (msgbuf
[0] & E1000_VT_MSGINFO_MASK
) >> E1000_VT_MSGINFO_SHIFT
;
5384 int vid
= (msgbuf
[1] & E1000_VLVF_VLANID_MASK
);
5386 return igb_vlvf_set(adapter
, vid
, add
, vf
);
5389 static inline void igb_vf_reset(struct igb_adapter
*adapter
, u32 vf
)
5391 /* clear flags - except flag that indicates PF has set the MAC */
5392 adapter
->vf_data
[vf
].flags
&= IGB_VF_FLAG_PF_SET_MAC
;
5393 adapter
->vf_data
[vf
].last_nack
= jiffies
;
5395 /* reset offloads to defaults */
5396 igb_set_vmolr(adapter
, vf
, true);
5398 /* reset vlans for device */
5399 igb_clear_vf_vfta(adapter
, vf
);
5400 if (adapter
->vf_data
[vf
].pf_vlan
)
5401 igb_ndo_set_vf_vlan(adapter
->netdev
, vf
,
5402 adapter
->vf_data
[vf
].pf_vlan
,
5403 adapter
->vf_data
[vf
].pf_qos
);
5405 igb_clear_vf_vfta(adapter
, vf
);
5407 /* reset multicast table array for vf */
5408 adapter
->vf_data
[vf
].num_vf_mc_hashes
= 0;
5410 /* Flush and reset the mta with the new values */
5411 igb_set_rx_mode(adapter
->netdev
);
5414 static void igb_vf_reset_event(struct igb_adapter
*adapter
, u32 vf
)
5416 unsigned char *vf_mac
= adapter
->vf_data
[vf
].vf_mac_addresses
;
5418 /* generate a new mac address as we were hotplug removed/added */
5419 if (!(adapter
->vf_data
[vf
].flags
& IGB_VF_FLAG_PF_SET_MAC
))
5420 eth_random_addr(vf_mac
);
5422 /* process remaining reset events */
5423 igb_vf_reset(adapter
, vf
);
5426 static void igb_vf_reset_msg(struct igb_adapter
*adapter
, u32 vf
)
5428 struct e1000_hw
*hw
= &adapter
->hw
;
5429 unsigned char *vf_mac
= adapter
->vf_data
[vf
].vf_mac_addresses
;
5430 int rar_entry
= hw
->mac
.rar_entry_count
- (vf
+ 1);
5432 u8
*addr
= (u8
*)(&msgbuf
[1]);
5434 /* process all the same items cleared in a function level reset */
5435 igb_vf_reset(adapter
, vf
);
5437 /* set vf mac address */
5438 igb_rar_set_qsel(adapter
, vf_mac
, rar_entry
, vf
);
5440 /* enable transmit and receive for vf */
5441 reg
= rd32(E1000_VFTE
);
5442 wr32(E1000_VFTE
, reg
| (1 << vf
));
5443 reg
= rd32(E1000_VFRE
);
5444 wr32(E1000_VFRE
, reg
| (1 << vf
));
5446 adapter
->vf_data
[vf
].flags
|= IGB_VF_FLAG_CTS
;
5448 /* reply to reset with ack and vf mac address */
5449 msgbuf
[0] = E1000_VF_RESET
| E1000_VT_MSGTYPE_ACK
;
5450 memcpy(addr
, vf_mac
, 6);
5451 igb_write_mbx(hw
, msgbuf
, 3, vf
);
5454 static int igb_set_vf_mac_addr(struct igb_adapter
*adapter
, u32
*msg
, int vf
)
5457 * The VF MAC Address is stored in a packed array of bytes
5458 * starting at the second 32 bit word of the msg array
5460 unsigned char *addr
= (char *)&msg
[1];
5463 if (is_valid_ether_addr(addr
))
5464 err
= igb_set_vf_mac(adapter
, vf
, addr
);
5469 static void igb_rcv_ack_from_vf(struct igb_adapter
*adapter
, u32 vf
)
5471 struct e1000_hw
*hw
= &adapter
->hw
;
5472 struct vf_data_storage
*vf_data
= &adapter
->vf_data
[vf
];
5473 u32 msg
= E1000_VT_MSGTYPE_NACK
;
5475 /* if device isn't clear to send it shouldn't be reading either */
5476 if (!(vf_data
->flags
& IGB_VF_FLAG_CTS
) &&
5477 time_after(jiffies
, vf_data
->last_nack
+ (2 * HZ
))) {
5478 igb_write_mbx(hw
, &msg
, 1, vf
);
5479 vf_data
->last_nack
= jiffies
;
5483 static void igb_rcv_msg_from_vf(struct igb_adapter
*adapter
, u32 vf
)
5485 struct pci_dev
*pdev
= adapter
->pdev
;
5486 u32 msgbuf
[E1000_VFMAILBOX_SIZE
];
5487 struct e1000_hw
*hw
= &adapter
->hw
;
5488 struct vf_data_storage
*vf_data
= &adapter
->vf_data
[vf
];
5491 retval
= igb_read_mbx(hw
, msgbuf
, E1000_VFMAILBOX_SIZE
, vf
);
5494 /* if receive failed revoke VF CTS stats and restart init */
5495 dev_err(&pdev
->dev
, "Error receiving message from VF\n");
5496 vf_data
->flags
&= ~IGB_VF_FLAG_CTS
;
5497 if (!time_after(jiffies
, vf_data
->last_nack
+ (2 * HZ
)))
5502 /* this is a message we already processed, do nothing */
5503 if (msgbuf
[0] & (E1000_VT_MSGTYPE_ACK
| E1000_VT_MSGTYPE_NACK
))
5507 * until the vf completes a reset it should not be
5508 * allowed to start any configuration.
5511 if (msgbuf
[0] == E1000_VF_RESET
) {
5512 igb_vf_reset_msg(adapter
, vf
);
5516 if (!(vf_data
->flags
& IGB_VF_FLAG_CTS
)) {
5517 if (!time_after(jiffies
, vf_data
->last_nack
+ (2 * HZ
)))
5523 switch ((msgbuf
[0] & 0xFFFF)) {
5524 case E1000_VF_SET_MAC_ADDR
:
5526 if (!(vf_data
->flags
& IGB_VF_FLAG_PF_SET_MAC
))
5527 retval
= igb_set_vf_mac_addr(adapter
, msgbuf
, vf
);
5529 dev_warn(&pdev
->dev
,
5530 "VF %d attempted to override administratively "
5531 "set MAC address\nReload the VF driver to "
5532 "resume operations\n", vf
);
5534 case E1000_VF_SET_PROMISC
:
5535 retval
= igb_set_vf_promisc(adapter
, msgbuf
, vf
);
5537 case E1000_VF_SET_MULTICAST
:
5538 retval
= igb_set_vf_multicasts(adapter
, msgbuf
, vf
);
5540 case E1000_VF_SET_LPE
:
5541 retval
= igb_set_vf_rlpml(adapter
, msgbuf
[1], vf
);
5543 case E1000_VF_SET_VLAN
:
5545 if (vf_data
->pf_vlan
)
5546 dev_warn(&pdev
->dev
,
5547 "VF %d attempted to override administratively "
5548 "set VLAN tag\nReload the VF driver to "
5549 "resume operations\n", vf
);
5551 retval
= igb_set_vf_vlan(adapter
, msgbuf
, vf
);
5554 dev_err(&pdev
->dev
, "Unhandled Msg %08x\n", msgbuf
[0]);
5559 msgbuf
[0] |= E1000_VT_MSGTYPE_CTS
;
5561 /* notify the VF of the results of what it sent us */
5563 msgbuf
[0] |= E1000_VT_MSGTYPE_NACK
;
5565 msgbuf
[0] |= E1000_VT_MSGTYPE_ACK
;
5567 igb_write_mbx(hw
, msgbuf
, 1, vf
);
5570 static void igb_msg_task(struct igb_adapter
*adapter
)
5572 struct e1000_hw
*hw
= &adapter
->hw
;
5575 for (vf
= 0; vf
< adapter
->vfs_allocated_count
; vf
++) {
5576 /* process any reset requests */
5577 if (!igb_check_for_rst(hw
, vf
))
5578 igb_vf_reset_event(adapter
, vf
);
5580 /* process any messages pending */
5581 if (!igb_check_for_msg(hw
, vf
))
5582 igb_rcv_msg_from_vf(adapter
, vf
);
5584 /* process any acks */
5585 if (!igb_check_for_ack(hw
, vf
))
5586 igb_rcv_ack_from_vf(adapter
, vf
);
5591 * igb_set_uta - Set unicast filter table address
5592 * @adapter: board private structure
5594 * The unicast table address is a register array of 32-bit registers.
5595 * The table is meant to be used in a way similar to how the MTA is used
5596 * however due to certain limitations in the hardware it is necessary to
5597 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscuous
5598 * enable bit to allow vlan tag stripping when promiscuous mode is enabled
5600 static void igb_set_uta(struct igb_adapter
*adapter
)
5602 struct e1000_hw
*hw
= &adapter
->hw
;
5605 /* The UTA table only exists on 82576 hardware and newer */
5606 if (hw
->mac
.type
< e1000_82576
)
5609 /* we only need to do this if VMDq is enabled */
5610 if (!adapter
->vfs_allocated_count
)
5613 for (i
= 0; i
< hw
->mac
.uta_reg_count
; i
++)
5614 array_wr32(E1000_UTA
, i
, ~0);
5618 * igb_intr_msi - Interrupt Handler
5619 * @irq: interrupt number
5620 * @data: pointer to a network interface device structure
5622 static irqreturn_t
igb_intr_msi(int irq
, void *data
)
5624 struct igb_adapter
*adapter
= data
;
5625 struct igb_q_vector
*q_vector
= adapter
->q_vector
[0];
5626 struct e1000_hw
*hw
= &adapter
->hw
;
5627 /* read ICR disables interrupts using IAM */
5628 u32 icr
= rd32(E1000_ICR
);
5630 igb_write_itr(q_vector
);
5632 if (icr
& E1000_ICR_DRSTA
)
5633 schedule_work(&adapter
->reset_task
);
5635 if (icr
& E1000_ICR_DOUTSYNC
) {
5636 /* HW is reporting DMA is out of sync */
5637 adapter
->stats
.doosync
++;
5640 if (icr
& (E1000_ICR_RXSEQ
| E1000_ICR_LSC
)) {
5641 hw
->mac
.get_link_status
= 1;
5642 if (!test_bit(__IGB_DOWN
, &adapter
->state
))
5643 mod_timer(&adapter
->watchdog_timer
, jiffies
+ 1);
5646 napi_schedule(&q_vector
->napi
);
5652 * igb_intr - Legacy Interrupt Handler
5653 * @irq: interrupt number
5654 * @data: pointer to a network interface device structure
5656 static irqreturn_t
igb_intr(int irq
, void *data
)
5658 struct igb_adapter
*adapter
= data
;
5659 struct igb_q_vector
*q_vector
= adapter
->q_vector
[0];
5660 struct e1000_hw
*hw
= &adapter
->hw
;
5661 /* Interrupt Auto-Mask...upon reading ICR, interrupts are masked. No
5662 * need for the IMC write */
5663 u32 icr
= rd32(E1000_ICR
);
5665 /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
5666 * not set, then the adapter didn't send an interrupt */
5667 if (!(icr
& E1000_ICR_INT_ASSERTED
))
5670 igb_write_itr(q_vector
);
5672 if (icr
& E1000_ICR_DRSTA
)
5673 schedule_work(&adapter
->reset_task
);
5675 if (icr
& E1000_ICR_DOUTSYNC
) {
5676 /* HW is reporting DMA is out of sync */
5677 adapter
->stats
.doosync
++;
5680 if (icr
& (E1000_ICR_RXSEQ
| E1000_ICR_LSC
)) {
5681 hw
->mac
.get_link_status
= 1;
5682 /* guard against interrupt when we're going down */
5683 if (!test_bit(__IGB_DOWN
, &adapter
->state
))
5684 mod_timer(&adapter
->watchdog_timer
, jiffies
+ 1);
5687 napi_schedule(&q_vector
->napi
);
5692 static void igb_ring_irq_enable(struct igb_q_vector
*q_vector
)
5694 struct igb_adapter
*adapter
= q_vector
->adapter
;
5695 struct e1000_hw
*hw
= &adapter
->hw
;
5697 if ((q_vector
->rx
.ring
&& (adapter
->rx_itr_setting
& 3)) ||
5698 (!q_vector
->rx
.ring
&& (adapter
->tx_itr_setting
& 3))) {
5699 if ((adapter
->num_q_vectors
== 1) && !adapter
->vf_data
)
5700 igb_set_itr(q_vector
);
5702 igb_update_ring_itr(q_vector
);
5705 if (!test_bit(__IGB_DOWN
, &adapter
->state
)) {
5706 if (adapter
->msix_entries
)
5707 wr32(E1000_EIMS
, q_vector
->eims_value
);
5709 igb_irq_enable(adapter
);
5714 * igb_poll - NAPI Rx polling callback
5715 * @napi: napi polling structure
5716 * @budget: count of how many packets we should handle
5718 static int igb_poll(struct napi_struct
*napi
, int budget
)
5720 struct igb_q_vector
*q_vector
= container_of(napi
,
5721 struct igb_q_vector
,
5723 bool clean_complete
= true;
5725 #ifdef CONFIG_IGB_DCA
5726 if (q_vector
->adapter
->flags
& IGB_FLAG_DCA_ENABLED
)
5727 igb_update_dca(q_vector
);
5729 if (q_vector
->tx
.ring
)
5730 clean_complete
= igb_clean_tx_irq(q_vector
);
5732 if (q_vector
->rx
.ring
)
5733 clean_complete
&= igb_clean_rx_irq(q_vector
, budget
);
5735 /* If all work not completed, return budget and keep polling */
5736 if (!clean_complete
)
5739 /* If not enough Rx work done, exit the polling mode */
5740 napi_complete(napi
);
5741 igb_ring_irq_enable(q_vector
);
5746 #ifdef CONFIG_IGB_PTP
5748 * igb_tx_hwtstamp - utility function which checks for TX time stamp
5749 * @q_vector: pointer to q_vector containing needed info
5750 * @buffer: pointer to igb_tx_buffer structure
5752 * If we were asked to do hardware stamping and such a time stamp is
5753 * available, then it must have been for this skb here because we only
5754 * allow only one such packet into the queue.
5756 static void igb_tx_hwtstamp(struct igb_q_vector
*q_vector
,
5757 struct igb_tx_buffer
*buffer_info
)
5759 struct igb_adapter
*adapter
= q_vector
->adapter
;
5760 struct e1000_hw
*hw
= &adapter
->hw
;
5761 struct skb_shared_hwtstamps shhwtstamps
;
5764 /* if skb does not support hw timestamp or TX stamp not valid exit */
5765 if (likely(!(buffer_info
->tx_flags
& IGB_TX_FLAGS_TSTAMP
)) ||
5766 !(rd32(E1000_TSYNCTXCTL
) & E1000_TSYNCTXCTL_VALID
))
5769 regval
= rd32(E1000_TXSTMPL
);
5770 regval
|= (u64
)rd32(E1000_TXSTMPH
) << 32;
5772 igb_systim_to_hwtstamp(adapter
, &shhwtstamps
, regval
);
5773 skb_tstamp_tx(buffer_info
->skb
, &shhwtstamps
);
5778 * igb_clean_tx_irq - Reclaim resources after transmit completes
5779 * @q_vector: pointer to q_vector containing needed info
5781 * returns true if ring is completely cleaned
5783 static bool igb_clean_tx_irq(struct igb_q_vector
*q_vector
)
5785 struct igb_adapter
*adapter
= q_vector
->adapter
;
5786 struct igb_ring
*tx_ring
= q_vector
->tx
.ring
;
5787 struct igb_tx_buffer
*tx_buffer
;
5788 union e1000_adv_tx_desc
*tx_desc
, *eop_desc
;
5789 unsigned int total_bytes
= 0, total_packets
= 0;
5790 unsigned int budget
= q_vector
->tx
.work_limit
;
5791 unsigned int i
= tx_ring
->next_to_clean
;
5793 if (test_bit(__IGB_DOWN
, &adapter
->state
))
5796 tx_buffer
= &tx_ring
->tx_buffer_info
[i
];
5797 tx_desc
= IGB_TX_DESC(tx_ring
, i
);
5798 i
-= tx_ring
->count
;
5800 for (; budget
; budget
--) {
5801 eop_desc
= tx_buffer
->next_to_watch
;
5803 /* prevent any other reads prior to eop_desc */
5806 /* if next_to_watch is not set then there is no work pending */
5810 /* if DD is not set pending work has not been completed */
5811 if (!(eop_desc
->wb
.status
& cpu_to_le32(E1000_TXD_STAT_DD
)))
5814 /* clear next_to_watch to prevent false hangs */
5815 tx_buffer
->next_to_watch
= NULL
;
5817 /* update the statistics for this packet */
5818 total_bytes
+= tx_buffer
->bytecount
;
5819 total_packets
+= tx_buffer
->gso_segs
;
5821 #ifdef CONFIG_IGB_PTP
5822 /* retrieve hardware timestamp */
5823 igb_tx_hwtstamp(q_vector
, tx_buffer
);
5827 dev_kfree_skb_any(tx_buffer
->skb
);
5828 tx_buffer
->skb
= NULL
;
5830 /* unmap skb header data */
5831 dma_unmap_single(tx_ring
->dev
,
5836 /* clear last DMA location and unmap remaining buffers */
5837 while (tx_desc
!= eop_desc
) {
5844 i
-= tx_ring
->count
;
5845 tx_buffer
= tx_ring
->tx_buffer_info
;
5846 tx_desc
= IGB_TX_DESC(tx_ring
, 0);
5849 /* unmap any remaining paged data */
5850 if (tx_buffer
->dma
) {
5851 dma_unmap_page(tx_ring
->dev
,
5858 /* clear last DMA location */
5861 /* move us one more past the eop_desc for start of next pkt */
5866 i
-= tx_ring
->count
;
5867 tx_buffer
= tx_ring
->tx_buffer_info
;
5868 tx_desc
= IGB_TX_DESC(tx_ring
, 0);
5872 netdev_tx_completed_queue(txring_txq(tx_ring
),
5873 total_packets
, total_bytes
);
5874 i
+= tx_ring
->count
;
5875 tx_ring
->next_to_clean
= i
;
5876 u64_stats_update_begin(&tx_ring
->tx_syncp
);
5877 tx_ring
->tx_stats
.bytes
+= total_bytes
;
5878 tx_ring
->tx_stats
.packets
+= total_packets
;
5879 u64_stats_update_end(&tx_ring
->tx_syncp
);
5880 q_vector
->tx
.total_bytes
+= total_bytes
;
5881 q_vector
->tx
.total_packets
+= total_packets
;
5883 if (test_bit(IGB_RING_FLAG_TX_DETECT_HANG
, &tx_ring
->flags
)) {
5884 struct e1000_hw
*hw
= &adapter
->hw
;
5886 eop_desc
= tx_buffer
->next_to_watch
;
5888 /* Detect a transmit hang in hardware, this serializes the
5889 * check with the clearing of time_stamp and movement of i */
5890 clear_bit(IGB_RING_FLAG_TX_DETECT_HANG
, &tx_ring
->flags
);
5892 time_after(jiffies
, tx_buffer
->time_stamp
+
5893 (adapter
->tx_timeout_factor
* HZ
)) &&
5894 !(rd32(E1000_STATUS
) & E1000_STATUS_TXOFF
)) {
5896 /* detected Tx unit hang */
5897 dev_err(tx_ring
->dev
,
5898 "Detected Tx Unit Hang\n"
5902 " next_to_use <%x>\n"
5903 " next_to_clean <%x>\n"
5904 "buffer_info[next_to_clean]\n"
5905 " time_stamp <%lx>\n"
5906 " next_to_watch <%p>\n"
5908 " desc.status <%x>\n",
5909 tx_ring
->queue_index
,
5910 rd32(E1000_TDH(tx_ring
->reg_idx
)),
5911 readl(tx_ring
->tail
),
5912 tx_ring
->next_to_use
,
5913 tx_ring
->next_to_clean
,
5914 tx_buffer
->time_stamp
,
5917 eop_desc
->wb
.status
);
5918 netif_stop_subqueue(tx_ring
->netdev
,
5919 tx_ring
->queue_index
);
5921 /* we are about to reset, no point in enabling stuff */
5926 if (unlikely(total_packets
&&
5927 netif_carrier_ok(tx_ring
->netdev
) &&
5928 igb_desc_unused(tx_ring
) >= IGB_TX_QUEUE_WAKE
)) {
5929 /* Make sure that anybody stopping the queue after this
5930 * sees the new next_to_clean.
5933 if (__netif_subqueue_stopped(tx_ring
->netdev
,
5934 tx_ring
->queue_index
) &&
5935 !(test_bit(__IGB_DOWN
, &adapter
->state
))) {
5936 netif_wake_subqueue(tx_ring
->netdev
,
5937 tx_ring
->queue_index
);
5939 u64_stats_update_begin(&tx_ring
->tx_syncp
);
5940 tx_ring
->tx_stats
.restart_queue
++;
5941 u64_stats_update_end(&tx_ring
->tx_syncp
);
5948 static inline void igb_rx_checksum(struct igb_ring
*ring
,
5949 union e1000_adv_rx_desc
*rx_desc
,
5950 struct sk_buff
*skb
)
5952 skb_checksum_none_assert(skb
);
5954 /* Ignore Checksum bit is set */
5955 if (igb_test_staterr(rx_desc
, E1000_RXD_STAT_IXSM
))
5958 /* Rx checksum disabled via ethtool */
5959 if (!(ring
->netdev
->features
& NETIF_F_RXCSUM
))
5962 /* TCP/UDP checksum error bit is set */
5963 if (igb_test_staterr(rx_desc
,
5964 E1000_RXDEXT_STATERR_TCPE
|
5965 E1000_RXDEXT_STATERR_IPE
)) {
5967 * work around errata with sctp packets where the TCPE aka
5968 * L4E bit is set incorrectly on 64 byte (60 byte w/o crc)
5969 * packets, (aka let the stack check the crc32c)
5971 if (!((skb
->len
== 60) &&
5972 test_bit(IGB_RING_FLAG_RX_SCTP_CSUM
, &ring
->flags
))) {
5973 u64_stats_update_begin(&ring
->rx_syncp
);
5974 ring
->rx_stats
.csum_err
++;
5975 u64_stats_update_end(&ring
->rx_syncp
);
5977 /* let the stack verify checksum errors */
5980 /* It must be a TCP or UDP packet with a valid checksum */
5981 if (igb_test_staterr(rx_desc
, E1000_RXD_STAT_TCPCS
|
5982 E1000_RXD_STAT_UDPCS
))
5983 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
5985 dev_dbg(ring
->dev
, "cksum success: bits %08X\n",
5986 le32_to_cpu(rx_desc
->wb
.upper
.status_error
));
5989 static inline void igb_rx_hash(struct igb_ring
*ring
,
5990 union e1000_adv_rx_desc
*rx_desc
,
5991 struct sk_buff
*skb
)
5993 if (ring
->netdev
->features
& NETIF_F_RXHASH
)
5994 skb
->rxhash
= le32_to_cpu(rx_desc
->wb
.lower
.hi_dword
.rss
);
5997 #ifdef CONFIG_IGB_PTP
5998 static void igb_rx_hwtstamp(struct igb_q_vector
*q_vector
,
5999 union e1000_adv_rx_desc
*rx_desc
,
6000 struct sk_buff
*skb
)
6002 struct igb_adapter
*adapter
= q_vector
->adapter
;
6003 struct e1000_hw
*hw
= &adapter
->hw
;
6006 if (!igb_test_staterr(rx_desc
, E1000_RXDADV_STAT_TSIP
|
6007 E1000_RXDADV_STAT_TS
))
6011 * If this bit is set, then the RX registers contain the time stamp. No
6012 * other packet will be time stamped until we read these registers, so
6013 * read the registers to make them available again. Because only one
6014 * packet can be time stamped at a time, we know that the register
6015 * values must belong to this one here and therefore we don't need to
6016 * compare any of the additional attributes stored for it.
6018 * If nothing went wrong, then it should have a shared tx_flags that we
6019 * can turn into a skb_shared_hwtstamps.
6021 if (igb_test_staterr(rx_desc
, E1000_RXDADV_STAT_TSIP
)) {
6022 u32
*stamp
= (u32
*)skb
->data
;
6023 regval
= le32_to_cpu(*(stamp
+ 2));
6024 regval
|= (u64
)le32_to_cpu(*(stamp
+ 3)) << 32;
6025 skb_pull(skb
, IGB_TS_HDR_LEN
);
6027 if(!(rd32(E1000_TSYNCRXCTL
) & E1000_TSYNCRXCTL_VALID
))
6030 regval
= rd32(E1000_RXSTMPL
);
6031 regval
|= (u64
)rd32(E1000_RXSTMPH
) << 32;
6034 igb_systim_to_hwtstamp(adapter
, skb_hwtstamps(skb
), regval
);
6038 static void igb_rx_vlan(struct igb_ring
*ring
,
6039 union e1000_adv_rx_desc
*rx_desc
,
6040 struct sk_buff
*skb
)
6042 if (igb_test_staterr(rx_desc
, E1000_RXD_STAT_VP
)) {
6044 if (igb_test_staterr(rx_desc
, E1000_RXDEXT_STATERR_LB
) &&
6045 test_bit(IGB_RING_FLAG_RX_LB_VLAN_BSWAP
, &ring
->flags
))
6046 vid
= be16_to_cpu(rx_desc
->wb
.upper
.vlan
);
6048 vid
= le16_to_cpu(rx_desc
->wb
.upper
.vlan
);
6050 __vlan_hwaccel_put_tag(skb
, vid
);
6054 static inline u16
igb_get_hlen(union e1000_adv_rx_desc
*rx_desc
)
6056 /* HW will not DMA in data larger than the given buffer, even if it
6057 * parses the (NFS, of course) header to be larger. In that case, it
6058 * fills the header buffer and spills the rest into the page.
6060 u16 hlen
= (le16_to_cpu(rx_desc
->wb
.lower
.lo_dword
.hdr_info
) &
6061 E1000_RXDADV_HDRBUFLEN_MASK
) >> E1000_RXDADV_HDRBUFLEN_SHIFT
;
6062 if (hlen
> IGB_RX_HDR_LEN
)
6063 hlen
= IGB_RX_HDR_LEN
;
6067 static bool igb_clean_rx_irq(struct igb_q_vector
*q_vector
, int budget
)
6069 struct igb_ring
*rx_ring
= q_vector
->rx
.ring
;
6070 union e1000_adv_rx_desc
*rx_desc
;
6071 const int current_node
= numa_node_id();
6072 unsigned int total_bytes
= 0, total_packets
= 0;
6073 u16 cleaned_count
= igb_desc_unused(rx_ring
);
6074 u16 i
= rx_ring
->next_to_clean
;
6076 rx_desc
= IGB_RX_DESC(rx_ring
, i
);
6078 while (igb_test_staterr(rx_desc
, E1000_RXD_STAT_DD
)) {
6079 struct igb_rx_buffer
*buffer_info
= &rx_ring
->rx_buffer_info
[i
];
6080 struct sk_buff
*skb
= buffer_info
->skb
;
6081 union e1000_adv_rx_desc
*next_rxd
;
6083 buffer_info
->skb
= NULL
;
6084 prefetch(skb
->data
);
6087 if (i
== rx_ring
->count
)
6090 next_rxd
= IGB_RX_DESC(rx_ring
, i
);
6094 * This memory barrier is needed to keep us from reading
6095 * any other fields out of the rx_desc until we know the
6096 * RXD_STAT_DD bit is set
6100 if (!skb_is_nonlinear(skb
)) {
6101 __skb_put(skb
, igb_get_hlen(rx_desc
));
6102 dma_unmap_single(rx_ring
->dev
, buffer_info
->dma
,
6105 buffer_info
->dma
= 0;
6108 if (rx_desc
->wb
.upper
.length
) {
6109 u16 length
= le16_to_cpu(rx_desc
->wb
.upper
.length
);
6111 skb_fill_page_desc(skb
, skb_shinfo(skb
)->nr_frags
,
6113 buffer_info
->page_offset
,
6117 skb
->data_len
+= length
;
6118 skb
->truesize
+= PAGE_SIZE
/ 2;
6120 if ((page_count(buffer_info
->page
) != 1) ||
6121 (page_to_nid(buffer_info
->page
) != current_node
))
6122 buffer_info
->page
= NULL
;
6124 get_page(buffer_info
->page
);
6126 dma_unmap_page(rx_ring
->dev
, buffer_info
->page_dma
,
6127 PAGE_SIZE
/ 2, DMA_FROM_DEVICE
);
6128 buffer_info
->page_dma
= 0;
6131 if (!igb_test_staterr(rx_desc
, E1000_RXD_STAT_EOP
)) {
6132 struct igb_rx_buffer
*next_buffer
;
6133 next_buffer
= &rx_ring
->rx_buffer_info
[i
];
6134 buffer_info
->skb
= next_buffer
->skb
;
6135 buffer_info
->dma
= next_buffer
->dma
;
6136 next_buffer
->skb
= skb
;
6137 next_buffer
->dma
= 0;
6141 if (unlikely((igb_test_staterr(rx_desc
,
6142 E1000_RXDEXT_ERR_FRAME_ERR_MASK
))
6143 && !(rx_ring
->netdev
->features
& NETIF_F_RXALL
))) {
6144 dev_kfree_skb_any(skb
);
6148 #ifdef CONFIG_IGB_PTP
6149 igb_rx_hwtstamp(q_vector
, rx_desc
, skb
);
6151 igb_rx_hash(rx_ring
, rx_desc
, skb
);
6152 igb_rx_checksum(rx_ring
, rx_desc
, skb
);
6153 igb_rx_vlan(rx_ring
, rx_desc
, skb
);
6155 total_bytes
+= skb
->len
;
6158 skb
->protocol
= eth_type_trans(skb
, rx_ring
->netdev
);
6160 napi_gro_receive(&q_vector
->napi
, skb
);
6168 /* return some buffers to hardware, one at a time is too slow */
6169 if (cleaned_count
>= IGB_RX_BUFFER_WRITE
) {
6170 igb_alloc_rx_buffers(rx_ring
, cleaned_count
);
6174 /* use prefetched values */
6178 rx_ring
->next_to_clean
= i
;
6179 u64_stats_update_begin(&rx_ring
->rx_syncp
);
6180 rx_ring
->rx_stats
.packets
+= total_packets
;
6181 rx_ring
->rx_stats
.bytes
+= total_bytes
;
6182 u64_stats_update_end(&rx_ring
->rx_syncp
);
6183 q_vector
->rx
.total_packets
+= total_packets
;
6184 q_vector
->rx
.total_bytes
+= total_bytes
;
6187 igb_alloc_rx_buffers(rx_ring
, cleaned_count
);
6192 static bool igb_alloc_mapped_skb(struct igb_ring
*rx_ring
,
6193 struct igb_rx_buffer
*bi
)
6195 struct sk_buff
*skb
= bi
->skb
;
6196 dma_addr_t dma
= bi
->dma
;
6202 skb
= netdev_alloc_skb_ip_align(rx_ring
->netdev
,
6206 rx_ring
->rx_stats
.alloc_failed
++;
6210 /* initialize skb for ring */
6211 skb_record_rx_queue(skb
, rx_ring
->queue_index
);
6214 dma
= dma_map_single(rx_ring
->dev
, skb
->data
,
6215 IGB_RX_HDR_LEN
, DMA_FROM_DEVICE
);
6217 if (dma_mapping_error(rx_ring
->dev
, dma
)) {
6218 rx_ring
->rx_stats
.alloc_failed
++;
6226 static bool igb_alloc_mapped_page(struct igb_ring
*rx_ring
,
6227 struct igb_rx_buffer
*bi
)
6229 struct page
*page
= bi
->page
;
6230 dma_addr_t page_dma
= bi
->page_dma
;
6231 unsigned int page_offset
= bi
->page_offset
^ (PAGE_SIZE
/ 2);
6237 page
= __skb_alloc_page(GFP_ATOMIC
, bi
->skb
);
6239 if (unlikely(!page
)) {
6240 rx_ring
->rx_stats
.alloc_failed
++;
6245 page_dma
= dma_map_page(rx_ring
->dev
, page
,
6246 page_offset
, PAGE_SIZE
/ 2,
6249 if (dma_mapping_error(rx_ring
->dev
, page_dma
)) {
6250 rx_ring
->rx_stats
.alloc_failed
++;
6254 bi
->page_dma
= page_dma
;
6255 bi
->page_offset
= page_offset
;
6260 * igb_alloc_rx_buffers - Replace used receive buffers; packet split
6261 * @adapter: address of board private structure
6263 void igb_alloc_rx_buffers(struct igb_ring
*rx_ring
, u16 cleaned_count
)
6265 union e1000_adv_rx_desc
*rx_desc
;
6266 struct igb_rx_buffer
*bi
;
6267 u16 i
= rx_ring
->next_to_use
;
6269 rx_desc
= IGB_RX_DESC(rx_ring
, i
);
6270 bi
= &rx_ring
->rx_buffer_info
[i
];
6271 i
-= rx_ring
->count
;
6273 while (cleaned_count
--) {
6274 if (!igb_alloc_mapped_skb(rx_ring
, bi
))
6277 /* Refresh the desc even if buffer_addrs didn't change
6278 * because each write-back erases this info. */
6279 rx_desc
->read
.hdr_addr
= cpu_to_le64(bi
->dma
);
6281 if (!igb_alloc_mapped_page(rx_ring
, bi
))
6284 rx_desc
->read
.pkt_addr
= cpu_to_le64(bi
->page_dma
);
6290 rx_desc
= IGB_RX_DESC(rx_ring
, 0);
6291 bi
= rx_ring
->rx_buffer_info
;
6292 i
-= rx_ring
->count
;
6295 /* clear the hdr_addr for the next_to_use descriptor */
6296 rx_desc
->read
.hdr_addr
= 0;
6299 i
+= rx_ring
->count
;
6301 if (rx_ring
->next_to_use
!= i
) {
6302 rx_ring
->next_to_use
= i
;
6304 /* Force memory writes to complete before letting h/w
6305 * know there are new descriptors to fetch. (Only
6306 * applicable for weak-ordered memory model archs,
6307 * such as IA-64). */
6309 writel(i
, rx_ring
->tail
);
6319 static int igb_mii_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
6321 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6322 struct mii_ioctl_data
*data
= if_mii(ifr
);
6324 if (adapter
->hw
.phy
.media_type
!= e1000_media_type_copper
)
6329 data
->phy_id
= adapter
->hw
.phy
.addr
;
6332 if (igb_read_phy_reg(&adapter
->hw
, data
->reg_num
& 0x1F,
6344 * igb_hwtstamp_ioctl - control hardware time stamping
6349 * Outgoing time stamping can be enabled and disabled. Play nice and
6350 * disable it when requested, although it shouldn't case any overhead
6351 * when no packet needs it. At most one packet in the queue may be
6352 * marked for time stamping, otherwise it would be impossible to tell
6353 * for sure to which packet the hardware time stamp belongs.
6355 * Incoming time stamping has to be configured via the hardware
6356 * filters. Not all combinations are supported, in particular event
6357 * type has to be specified. Matching the kind of event packet is
6358 * not supported, with the exception of "all V2 events regardless of
6362 static int igb_hwtstamp_ioctl(struct net_device
*netdev
,
6363 struct ifreq
*ifr
, int cmd
)
6365 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6366 struct e1000_hw
*hw
= &adapter
->hw
;
6367 struct hwtstamp_config config
;
6368 u32 tsync_tx_ctl
= E1000_TSYNCTXCTL_ENABLED
;
6369 u32 tsync_rx_ctl
= E1000_TSYNCRXCTL_ENABLED
;
6370 u32 tsync_rx_cfg
= 0;
6375 if (copy_from_user(&config
, ifr
->ifr_data
, sizeof(config
)))
6378 /* reserved for future extensions */
6382 switch (config
.tx_type
) {
6383 case HWTSTAMP_TX_OFF
:
6385 case HWTSTAMP_TX_ON
:
6391 switch (config
.rx_filter
) {
6392 case HWTSTAMP_FILTER_NONE
:
6395 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT
:
6396 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT
:
6397 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT
:
6398 case HWTSTAMP_FILTER_ALL
:
6400 * register TSYNCRXCFG must be set, therefore it is not
6401 * possible to time stamp both Sync and Delay_Req messages
6402 * => fall back to time stamping all packets
6404 tsync_rx_ctl
|= E1000_TSYNCRXCTL_TYPE_ALL
;
6405 config
.rx_filter
= HWTSTAMP_FILTER_ALL
;
6407 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC
:
6408 tsync_rx_ctl
|= E1000_TSYNCRXCTL_TYPE_L4_V1
;
6409 tsync_rx_cfg
= E1000_TSYNCRXCFG_PTP_V1_SYNC_MESSAGE
;
6412 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ
:
6413 tsync_rx_ctl
|= E1000_TSYNCRXCTL_TYPE_L4_V1
;
6414 tsync_rx_cfg
= E1000_TSYNCRXCFG_PTP_V1_DELAY_REQ_MESSAGE
;
6417 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC
:
6418 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC
:
6419 tsync_rx_ctl
|= E1000_TSYNCRXCTL_TYPE_L2_L4_V2
;
6420 tsync_rx_cfg
= E1000_TSYNCRXCFG_PTP_V2_SYNC_MESSAGE
;
6423 config
.rx_filter
= HWTSTAMP_FILTER_SOME
;
6425 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ
:
6426 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ
:
6427 tsync_rx_ctl
|= E1000_TSYNCRXCTL_TYPE_L2_L4_V2
;
6428 tsync_rx_cfg
= E1000_TSYNCRXCFG_PTP_V2_DELAY_REQ_MESSAGE
;
6431 config
.rx_filter
= HWTSTAMP_FILTER_SOME
;
6433 case HWTSTAMP_FILTER_PTP_V2_EVENT
:
6434 case HWTSTAMP_FILTER_PTP_V2_SYNC
:
6435 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ
:
6436 tsync_rx_ctl
|= E1000_TSYNCRXCTL_TYPE_EVENT_V2
;
6437 config
.rx_filter
= HWTSTAMP_FILTER_PTP_V2_EVENT
;
6445 if (hw
->mac
.type
== e1000_82575
) {
6446 if (tsync_rx_ctl
| tsync_tx_ctl
)
6452 * Per-packet timestamping only works if all packets are
6453 * timestamped, so enable timestamping in all packets as
6454 * long as one rx filter was configured.
6456 if ((hw
->mac
.type
>= e1000_82580
) && tsync_rx_ctl
) {
6457 tsync_rx_ctl
= E1000_TSYNCRXCTL_ENABLED
;
6458 tsync_rx_ctl
|= E1000_TSYNCRXCTL_TYPE_ALL
;
6461 /* enable/disable TX */
6462 regval
= rd32(E1000_TSYNCTXCTL
);
6463 regval
&= ~E1000_TSYNCTXCTL_ENABLED
;
6464 regval
|= tsync_tx_ctl
;
6465 wr32(E1000_TSYNCTXCTL
, regval
);
6467 /* enable/disable RX */
6468 regval
= rd32(E1000_TSYNCRXCTL
);
6469 regval
&= ~(E1000_TSYNCRXCTL_ENABLED
| E1000_TSYNCRXCTL_TYPE_MASK
);
6470 regval
|= tsync_rx_ctl
;
6471 wr32(E1000_TSYNCRXCTL
, regval
);
6473 /* define which PTP packets are time stamped */
6474 wr32(E1000_TSYNCRXCFG
, tsync_rx_cfg
);
6476 /* define ethertype filter for timestamped packets */
6479 (E1000_ETQF_FILTER_ENABLE
| /* enable filter */
6480 E1000_ETQF_1588
| /* enable timestamping */
6481 ETH_P_1588
)); /* 1588 eth protocol type */
6483 wr32(E1000_ETQF(3), 0);
6485 #define PTP_PORT 319
6486 /* L4 Queue Filter[3]: filter by destination port and protocol */
6488 u32 ftqf
= (IPPROTO_UDP
/* UDP */
6489 | E1000_FTQF_VF_BP
/* VF not compared */
6490 | E1000_FTQF_1588_TIME_STAMP
/* Enable Timestamping */
6491 | E1000_FTQF_MASK
); /* mask all inputs */
6492 ftqf
&= ~E1000_FTQF_MASK_PROTO_BP
; /* enable protocol check */
6494 wr32(E1000_IMIR(3), htons(PTP_PORT
));
6495 wr32(E1000_IMIREXT(3),
6496 (E1000_IMIREXT_SIZE_BP
| E1000_IMIREXT_CTRL_BP
));
6497 if (hw
->mac
.type
== e1000_82576
) {
6498 /* enable source port check */
6499 wr32(E1000_SPQF(3), htons(PTP_PORT
));
6500 ftqf
&= ~E1000_FTQF_MASK_SOURCE_PORT_BP
;
6502 wr32(E1000_FTQF(3), ftqf
);
6504 wr32(E1000_FTQF(3), E1000_FTQF_MASK
);
6508 adapter
->hwtstamp_config
= config
;
6510 /* clear TX/RX time stamp registers, just to be sure */
6511 regval
= rd32(E1000_TXSTMPH
);
6512 regval
= rd32(E1000_RXSTMPH
);
6514 return copy_to_user(ifr
->ifr_data
, &config
, sizeof(config
)) ?
6524 static int igb_ioctl(struct net_device
*netdev
, struct ifreq
*ifr
, int cmd
)
6530 return igb_mii_ioctl(netdev
, ifr
, cmd
);
6532 return igb_hwtstamp_ioctl(netdev
, ifr
, cmd
);
6538 s32
igb_read_pcie_cap_reg(struct e1000_hw
*hw
, u32 reg
, u16
*value
)
6540 struct igb_adapter
*adapter
= hw
->back
;
6543 cap_offset
= adapter
->pdev
->pcie_cap
;
6545 return -E1000_ERR_CONFIG
;
6547 pci_read_config_word(adapter
->pdev
, cap_offset
+ reg
, value
);
6552 s32
igb_write_pcie_cap_reg(struct e1000_hw
*hw
, u32 reg
, u16
*value
)
6554 struct igb_adapter
*adapter
= hw
->back
;
6557 cap_offset
= adapter
->pdev
->pcie_cap
;
6559 return -E1000_ERR_CONFIG
;
6561 pci_write_config_word(adapter
->pdev
, cap_offset
+ reg
, *value
);
6566 static void igb_vlan_mode(struct net_device
*netdev
, netdev_features_t features
)
6568 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6569 struct e1000_hw
*hw
= &adapter
->hw
;
6571 bool enable
= !!(features
& NETIF_F_HW_VLAN_RX
);
6574 /* enable VLAN tag insert/strip */
6575 ctrl
= rd32(E1000_CTRL
);
6576 ctrl
|= E1000_CTRL_VME
;
6577 wr32(E1000_CTRL
, ctrl
);
6579 /* Disable CFI check */
6580 rctl
= rd32(E1000_RCTL
);
6581 rctl
&= ~E1000_RCTL_CFIEN
;
6582 wr32(E1000_RCTL
, rctl
);
6584 /* disable VLAN tag insert/strip */
6585 ctrl
= rd32(E1000_CTRL
);
6586 ctrl
&= ~E1000_CTRL_VME
;
6587 wr32(E1000_CTRL
, ctrl
);
6590 igb_rlpml_set(adapter
);
6593 static int igb_vlan_rx_add_vid(struct net_device
*netdev
, u16 vid
)
6595 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6596 struct e1000_hw
*hw
= &adapter
->hw
;
6597 int pf_id
= adapter
->vfs_allocated_count
;
6599 /* attempt to add filter to vlvf array */
6600 igb_vlvf_set(adapter
, vid
, true, pf_id
);
6602 /* add the filter since PF can receive vlans w/o entry in vlvf */
6603 igb_vfta_set(hw
, vid
, true);
6605 set_bit(vid
, adapter
->active_vlans
);
6610 static int igb_vlan_rx_kill_vid(struct net_device
*netdev
, u16 vid
)
6612 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6613 struct e1000_hw
*hw
= &adapter
->hw
;
6614 int pf_id
= adapter
->vfs_allocated_count
;
6617 /* remove vlan from VLVF table array */
6618 err
= igb_vlvf_set(adapter
, vid
, false, pf_id
);
6620 /* if vid was not present in VLVF just remove it from table */
6622 igb_vfta_set(hw
, vid
, false);
6624 clear_bit(vid
, adapter
->active_vlans
);
6629 static void igb_restore_vlan(struct igb_adapter
*adapter
)
6633 igb_vlan_mode(adapter
->netdev
, adapter
->netdev
->features
);
6635 for_each_set_bit(vid
, adapter
->active_vlans
, VLAN_N_VID
)
6636 igb_vlan_rx_add_vid(adapter
->netdev
, vid
);
6639 int igb_set_spd_dplx(struct igb_adapter
*adapter
, u32 spd
, u8 dplx
)
6641 struct pci_dev
*pdev
= adapter
->pdev
;
6642 struct e1000_mac_info
*mac
= &adapter
->hw
.mac
;
6646 /* Make sure dplx is at most 1 bit and lsb of speed is not set
6647 * for the switch() below to work */
6648 if ((spd
& 1) || (dplx
& ~1))
6651 /* Fiber NIC's only allow 1000 Gbps Full duplex */
6652 if ((adapter
->hw
.phy
.media_type
== e1000_media_type_internal_serdes
) &&
6653 spd
!= SPEED_1000
&&
6654 dplx
!= DUPLEX_FULL
)
6657 switch (spd
+ dplx
) {
6658 case SPEED_10
+ DUPLEX_HALF
:
6659 mac
->forced_speed_duplex
= ADVERTISE_10_HALF
;
6661 case SPEED_10
+ DUPLEX_FULL
:
6662 mac
->forced_speed_duplex
= ADVERTISE_10_FULL
;
6664 case SPEED_100
+ DUPLEX_HALF
:
6665 mac
->forced_speed_duplex
= ADVERTISE_100_HALF
;
6667 case SPEED_100
+ DUPLEX_FULL
:
6668 mac
->forced_speed_duplex
= ADVERTISE_100_FULL
;
6670 case SPEED_1000
+ DUPLEX_FULL
:
6672 adapter
->hw
.phy
.autoneg_advertised
= ADVERTISE_1000_FULL
;
6674 case SPEED_1000
+ DUPLEX_HALF
: /* not supported */
6681 dev_err(&pdev
->dev
, "Unsupported Speed/Duplex configuration\n");
6685 static int __igb_shutdown(struct pci_dev
*pdev
, bool *enable_wake
,
6688 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6689 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6690 struct e1000_hw
*hw
= &adapter
->hw
;
6691 u32 ctrl
, rctl
, status
;
6692 u32 wufc
= runtime
? E1000_WUFC_LNKC
: adapter
->wol
;
6697 netif_device_detach(netdev
);
6699 if (netif_running(netdev
))
6700 __igb_close(netdev
, true);
6702 igb_clear_interrupt_scheme(adapter
);
6705 retval
= pci_save_state(pdev
);
6710 status
= rd32(E1000_STATUS
);
6711 if (status
& E1000_STATUS_LU
)
6712 wufc
&= ~E1000_WUFC_LNKC
;
6715 igb_setup_rctl(adapter
);
6716 igb_set_rx_mode(netdev
);
6718 /* turn on all-multi mode if wake on multicast is enabled */
6719 if (wufc
& E1000_WUFC_MC
) {
6720 rctl
= rd32(E1000_RCTL
);
6721 rctl
|= E1000_RCTL_MPE
;
6722 wr32(E1000_RCTL
, rctl
);
6725 ctrl
= rd32(E1000_CTRL
);
6726 /* advertise wake from D3Cold */
6727 #define E1000_CTRL_ADVD3WUC 0x00100000
6728 /* phy power management enable */
6729 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
6730 ctrl
|= E1000_CTRL_ADVD3WUC
;
6731 wr32(E1000_CTRL
, ctrl
);
6733 /* Allow time for pending master requests to run */
6734 igb_disable_pcie_master(hw
);
6736 wr32(E1000_WUC
, E1000_WUC_PME_EN
);
6737 wr32(E1000_WUFC
, wufc
);
6740 wr32(E1000_WUFC
, 0);
6743 *enable_wake
= wufc
|| adapter
->en_mng_pt
;
6745 igb_power_down_link(adapter
);
6747 igb_power_up_link(adapter
);
6749 /* Release control of h/w to f/w. If f/w is AMT enabled, this
6750 * would have already happened in close and is redundant. */
6751 igb_release_hw_control(adapter
);
6753 pci_disable_device(pdev
);
6759 #ifdef CONFIG_PM_SLEEP
6760 static int igb_suspend(struct device
*dev
)
6764 struct pci_dev
*pdev
= to_pci_dev(dev
);
6766 retval
= __igb_shutdown(pdev
, &wake
, 0);
6771 pci_prepare_to_sleep(pdev
);
6773 pci_wake_from_d3(pdev
, false);
6774 pci_set_power_state(pdev
, PCI_D3hot
);
6779 #endif /* CONFIG_PM_SLEEP */
6781 static int igb_resume(struct device
*dev
)
6783 struct pci_dev
*pdev
= to_pci_dev(dev
);
6784 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6785 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6786 struct e1000_hw
*hw
= &adapter
->hw
;
6789 pci_set_power_state(pdev
, PCI_D0
);
6790 pci_restore_state(pdev
);
6791 pci_save_state(pdev
);
6793 err
= pci_enable_device_mem(pdev
);
6796 "igb: Cannot enable PCI device from suspend\n");
6799 pci_set_master(pdev
);
6801 pci_enable_wake(pdev
, PCI_D3hot
, 0);
6802 pci_enable_wake(pdev
, PCI_D3cold
, 0);
6804 if (igb_init_interrupt_scheme(adapter
)) {
6805 dev_err(&pdev
->dev
, "Unable to allocate memory for queues\n");
6811 /* let the f/w know that the h/w is now under the control of the
6813 igb_get_hw_control(adapter
);
6815 wr32(E1000_WUS
, ~0);
6817 if (netdev
->flags
& IFF_UP
) {
6818 err
= __igb_open(netdev
, true);
6823 netif_device_attach(netdev
);
6827 #ifdef CONFIG_PM_RUNTIME
6828 static int igb_runtime_idle(struct device
*dev
)
6830 struct pci_dev
*pdev
= to_pci_dev(dev
);
6831 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6832 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6834 if (!igb_has_link(adapter
))
6835 pm_schedule_suspend(dev
, MSEC_PER_SEC
* 5);
6840 static int igb_runtime_suspend(struct device
*dev
)
6842 struct pci_dev
*pdev
= to_pci_dev(dev
);
6846 retval
= __igb_shutdown(pdev
, &wake
, 1);
6851 pci_prepare_to_sleep(pdev
);
6853 pci_wake_from_d3(pdev
, false);
6854 pci_set_power_state(pdev
, PCI_D3hot
);
6860 static int igb_runtime_resume(struct device
*dev
)
6862 return igb_resume(dev
);
6864 #endif /* CONFIG_PM_RUNTIME */
6867 static void igb_shutdown(struct pci_dev
*pdev
)
6871 __igb_shutdown(pdev
, &wake
, 0);
6873 if (system_state
== SYSTEM_POWER_OFF
) {
6874 pci_wake_from_d3(pdev
, wake
);
6875 pci_set_power_state(pdev
, PCI_D3hot
);
6879 #ifdef CONFIG_NET_POLL_CONTROLLER
6881 * Polling 'interrupt' - used by things like netconsole to send skbs
6882 * without having to re-enable interrupts. It's not called while
6883 * the interrupt routine is executing.
6885 static void igb_netpoll(struct net_device
*netdev
)
6887 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6888 struct e1000_hw
*hw
= &adapter
->hw
;
6889 struct igb_q_vector
*q_vector
;
6892 for (i
= 0; i
< adapter
->num_q_vectors
; i
++) {
6893 q_vector
= adapter
->q_vector
[i
];
6894 if (adapter
->msix_entries
)
6895 wr32(E1000_EIMC
, q_vector
->eims_value
);
6897 igb_irq_disable(adapter
);
6898 napi_schedule(&q_vector
->napi
);
6901 #endif /* CONFIG_NET_POLL_CONTROLLER */
6904 * igb_io_error_detected - called when PCI error is detected
6905 * @pdev: Pointer to PCI device
6906 * @state: The current pci connection state
6908 * This function is called after a PCI bus error affecting
6909 * this device has been detected.
6911 static pci_ers_result_t
igb_io_error_detected(struct pci_dev
*pdev
,
6912 pci_channel_state_t state
)
6914 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6915 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6917 netif_device_detach(netdev
);
6919 if (state
== pci_channel_io_perm_failure
)
6920 return PCI_ERS_RESULT_DISCONNECT
;
6922 if (netif_running(netdev
))
6924 pci_disable_device(pdev
);
6926 /* Request a slot slot reset. */
6927 return PCI_ERS_RESULT_NEED_RESET
;
6931 * igb_io_slot_reset - called after the pci bus has been reset.
6932 * @pdev: Pointer to PCI device
6934 * Restart the card from scratch, as if from a cold-boot. Implementation
6935 * resembles the first-half of the igb_resume routine.
6937 static pci_ers_result_t
igb_io_slot_reset(struct pci_dev
*pdev
)
6939 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6940 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6941 struct e1000_hw
*hw
= &adapter
->hw
;
6942 pci_ers_result_t result
;
6945 if (pci_enable_device_mem(pdev
)) {
6947 "Cannot re-enable PCI device after reset.\n");
6948 result
= PCI_ERS_RESULT_DISCONNECT
;
6950 pci_set_master(pdev
);
6951 pci_restore_state(pdev
);
6952 pci_save_state(pdev
);
6954 pci_enable_wake(pdev
, PCI_D3hot
, 0);
6955 pci_enable_wake(pdev
, PCI_D3cold
, 0);
6958 wr32(E1000_WUS
, ~0);
6959 result
= PCI_ERS_RESULT_RECOVERED
;
6962 err
= pci_cleanup_aer_uncorrect_error_status(pdev
);
6964 dev_err(&pdev
->dev
, "pci_cleanup_aer_uncorrect_error_status "
6965 "failed 0x%0x\n", err
);
6966 /* non-fatal, continue */
6973 * igb_io_resume - called when traffic can start flowing again.
6974 * @pdev: Pointer to PCI device
6976 * This callback is called when the error recovery driver tells us that
6977 * its OK to resume normal operation. Implementation resembles the
6978 * second-half of the igb_resume routine.
6980 static void igb_io_resume(struct pci_dev
*pdev
)
6982 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6983 struct igb_adapter
*adapter
= netdev_priv(netdev
);
6985 if (netif_running(netdev
)) {
6986 if (igb_up(adapter
)) {
6987 dev_err(&pdev
->dev
, "igb_up failed after reset\n");
6992 netif_device_attach(netdev
);
6994 /* let the f/w know that the h/w is now under the control of the
6996 igb_get_hw_control(adapter
);
6999 static void igb_rar_set_qsel(struct igb_adapter
*adapter
, u8
*addr
, u32 index
,
7002 u32 rar_low
, rar_high
;
7003 struct e1000_hw
*hw
= &adapter
->hw
;
7005 /* HW expects these in little endian so we reverse the byte order
7006 * from network order (big endian) to little endian
7008 rar_low
= ((u32
) addr
[0] | ((u32
) addr
[1] << 8) |
7009 ((u32
) addr
[2] << 16) | ((u32
) addr
[3] << 24));
7010 rar_high
= ((u32
) addr
[4] | ((u32
) addr
[5] << 8));
7012 /* Indicate to hardware the Address is Valid. */
7013 rar_high
|= E1000_RAH_AV
;
7015 if (hw
->mac
.type
== e1000_82575
)
7016 rar_high
|= E1000_RAH_POOL_1
* qsel
;
7018 rar_high
|= E1000_RAH_POOL_1
<< qsel
;
7020 wr32(E1000_RAL(index
), rar_low
);
7022 wr32(E1000_RAH(index
), rar_high
);
7026 static int igb_set_vf_mac(struct igb_adapter
*adapter
,
7027 int vf
, unsigned char *mac_addr
)
7029 struct e1000_hw
*hw
= &adapter
->hw
;
7030 /* VF MAC addresses start at end of receive addresses and moves
7031 * torwards the first, as a result a collision should not be possible */
7032 int rar_entry
= hw
->mac
.rar_entry_count
- (vf
+ 1);
7034 memcpy(adapter
->vf_data
[vf
].vf_mac_addresses
, mac_addr
, ETH_ALEN
);
7036 igb_rar_set_qsel(adapter
, mac_addr
, rar_entry
, vf
);
7041 static int igb_ndo_set_vf_mac(struct net_device
*netdev
, int vf
, u8
*mac
)
7043 struct igb_adapter
*adapter
= netdev_priv(netdev
);
7044 if (!is_valid_ether_addr(mac
) || (vf
>= adapter
->vfs_allocated_count
))
7046 adapter
->vf_data
[vf
].flags
|= IGB_VF_FLAG_PF_SET_MAC
;
7047 dev_info(&adapter
->pdev
->dev
, "setting MAC %pM on VF %d\n", mac
, vf
);
7048 dev_info(&adapter
->pdev
->dev
, "Reload the VF driver to make this"
7049 " change effective.");
7050 if (test_bit(__IGB_DOWN
, &adapter
->state
)) {
7051 dev_warn(&adapter
->pdev
->dev
, "The VF MAC address has been set,"
7052 " but the PF device is not up.\n");
7053 dev_warn(&adapter
->pdev
->dev
, "Bring the PF device up before"
7054 " attempting to use the VF device.\n");
7056 return igb_set_vf_mac(adapter
, vf
, mac
);
7059 static int igb_link_mbps(int internal_link_speed
)
7061 switch (internal_link_speed
) {
7071 static void igb_set_vf_rate_limit(struct e1000_hw
*hw
, int vf
, int tx_rate
,
7078 /* Calculate the rate factor values to set */
7079 rf_int
= link_speed
/ tx_rate
;
7080 rf_dec
= (link_speed
- (rf_int
* tx_rate
));
7081 rf_dec
= (rf_dec
* (1<<E1000_RTTBCNRC_RF_INT_SHIFT
)) / tx_rate
;
7083 bcnrc_val
= E1000_RTTBCNRC_RS_ENA
;
7084 bcnrc_val
|= ((rf_int
<<E1000_RTTBCNRC_RF_INT_SHIFT
) &
7085 E1000_RTTBCNRC_RF_INT_MASK
);
7086 bcnrc_val
|= (rf_dec
& E1000_RTTBCNRC_RF_DEC_MASK
);
7091 wr32(E1000_RTTDQSEL
, vf
); /* vf X uses queue X */
7093 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
7094 * register. MMW_SIZE=0x014 if 9728-byte jumbo is supported.
7096 wr32(E1000_RTTBCNRM
, 0x14);
7097 wr32(E1000_RTTBCNRC
, bcnrc_val
);
7100 static void igb_check_vf_rate_limit(struct igb_adapter
*adapter
)
7102 int actual_link_speed
, i
;
7103 bool reset_rate
= false;
7105 /* VF TX rate limit was not set or not supported */
7106 if ((adapter
->vf_rate_link_speed
== 0) ||
7107 (adapter
->hw
.mac
.type
!= e1000_82576
))
7110 actual_link_speed
= igb_link_mbps(adapter
->link_speed
);
7111 if (actual_link_speed
!= adapter
->vf_rate_link_speed
) {
7113 adapter
->vf_rate_link_speed
= 0;
7114 dev_info(&adapter
->pdev
->dev
,
7115 "Link speed has been changed. VF Transmit "
7116 "rate is disabled\n");
7119 for (i
= 0; i
< adapter
->vfs_allocated_count
; i
++) {
7121 adapter
->vf_data
[i
].tx_rate
= 0;
7123 igb_set_vf_rate_limit(&adapter
->hw
, i
,
7124 adapter
->vf_data
[i
].tx_rate
,
7129 static int igb_ndo_set_vf_bw(struct net_device
*netdev
, int vf
, int tx_rate
)
7131 struct igb_adapter
*adapter
= netdev_priv(netdev
);
7132 struct e1000_hw
*hw
= &adapter
->hw
;
7133 int actual_link_speed
;
7135 if (hw
->mac
.type
!= e1000_82576
)
7138 actual_link_speed
= igb_link_mbps(adapter
->link_speed
);
7139 if ((vf
>= adapter
->vfs_allocated_count
) ||
7140 (!(rd32(E1000_STATUS
) & E1000_STATUS_LU
)) ||
7141 (tx_rate
< 0) || (tx_rate
> actual_link_speed
))
7144 adapter
->vf_rate_link_speed
= actual_link_speed
;
7145 adapter
->vf_data
[vf
].tx_rate
= (u16
)tx_rate
;
7146 igb_set_vf_rate_limit(hw
, vf
, tx_rate
, actual_link_speed
);
7151 static int igb_ndo_get_vf_config(struct net_device
*netdev
,
7152 int vf
, struct ifla_vf_info
*ivi
)
7154 struct igb_adapter
*adapter
= netdev_priv(netdev
);
7155 if (vf
>= adapter
->vfs_allocated_count
)
7158 memcpy(&ivi
->mac
, adapter
->vf_data
[vf
].vf_mac_addresses
, ETH_ALEN
);
7159 ivi
->tx_rate
= adapter
->vf_data
[vf
].tx_rate
;
7160 ivi
->vlan
= adapter
->vf_data
[vf
].pf_vlan
;
7161 ivi
->qos
= adapter
->vf_data
[vf
].pf_qos
;
7165 static void igb_vmm_control(struct igb_adapter
*adapter
)
7167 struct e1000_hw
*hw
= &adapter
->hw
;
7170 switch (hw
->mac
.type
) {
7175 /* replication is not supported for 82575 */
7178 /* notify HW that the MAC is adding vlan tags */
7179 reg
= rd32(E1000_DTXCTL
);
7180 reg
|= E1000_DTXCTL_VLAN_ADDED
;
7181 wr32(E1000_DTXCTL
, reg
);
7183 /* enable replication vlan tag stripping */
7184 reg
= rd32(E1000_RPLOLR
);
7185 reg
|= E1000_RPLOLR_STRVLAN
;
7186 wr32(E1000_RPLOLR
, reg
);
7188 /* none of the above registers are supported by i350 */
7192 if (adapter
->vfs_allocated_count
) {
7193 igb_vmdq_set_loopback_pf(hw
, true);
7194 igb_vmdq_set_replication_pf(hw
, true);
7195 igb_vmdq_set_anti_spoofing_pf(hw
, true,
7196 adapter
->vfs_allocated_count
);
7198 igb_vmdq_set_loopback_pf(hw
, false);
7199 igb_vmdq_set_replication_pf(hw
, false);
7203 static void igb_init_dmac(struct igb_adapter
*adapter
, u32 pba
)
7205 struct e1000_hw
*hw
= &adapter
->hw
;
7209 if (hw
->mac
.type
> e1000_82580
) {
7210 if (adapter
->flags
& IGB_FLAG_DMAC
) {
7213 /* force threshold to 0. */
7214 wr32(E1000_DMCTXTH
, 0);
7217 * DMA Coalescing high water mark needs to be greater
7218 * than the Rx threshold. Set hwm to PBA - max frame
7219 * size in 16B units, capping it at PBA - 6KB.
7221 hwm
= 64 * pba
- adapter
->max_frame_size
/ 16;
7222 if (hwm
< 64 * (pba
- 6))
7223 hwm
= 64 * (pba
- 6);
7224 reg
= rd32(E1000_FCRTC
);
7225 reg
&= ~E1000_FCRTC_RTH_COAL_MASK
;
7226 reg
|= ((hwm
<< E1000_FCRTC_RTH_COAL_SHIFT
)
7227 & E1000_FCRTC_RTH_COAL_MASK
);
7228 wr32(E1000_FCRTC
, reg
);
7231 * Set the DMA Coalescing Rx threshold to PBA - 2 * max
7232 * frame size, capping it at PBA - 10KB.
7234 dmac_thr
= pba
- adapter
->max_frame_size
/ 512;
7235 if (dmac_thr
< pba
- 10)
7236 dmac_thr
= pba
- 10;
7237 reg
= rd32(E1000_DMACR
);
7238 reg
&= ~E1000_DMACR_DMACTHR_MASK
;
7239 reg
|= ((dmac_thr
<< E1000_DMACR_DMACTHR_SHIFT
)
7240 & E1000_DMACR_DMACTHR_MASK
);
7242 /* transition to L0x or L1 if available..*/
7243 reg
|= (E1000_DMACR_DMAC_EN
| E1000_DMACR_DMAC_LX_MASK
);
7245 /* watchdog timer= +-1000 usec in 32usec intervals */
7248 /* Disable BMC-to-OS Watchdog Enable */
7249 reg
&= ~E1000_DMACR_DC_BMC2OSW_EN
;
7250 wr32(E1000_DMACR
, reg
);
7253 * no lower threshold to disable
7254 * coalescing(smart fifb)-UTRESH=0
7256 wr32(E1000_DMCRTRH
, 0);
7258 reg
= (IGB_DMCTLX_DCFLUSH_DIS
| 0x4);
7260 wr32(E1000_DMCTLX
, reg
);
7263 * free space in tx packet buffer to wake from
7266 wr32(E1000_DMCTXTH
, (IGB_MIN_TXPBSIZE
-
7267 (IGB_TX_BUF_4096
+ adapter
->max_frame_size
)) >> 6);
7270 * make low power state decision controlled
7273 reg
= rd32(E1000_PCIEMISC
);
7274 reg
&= ~E1000_PCIEMISC_LX_DECISION
;
7275 wr32(E1000_PCIEMISC
, reg
);
7276 } /* endif adapter->dmac is not disabled */
7277 } else if (hw
->mac
.type
== e1000_82580
) {
7278 u32 reg
= rd32(E1000_PCIEMISC
);
7279 wr32(E1000_PCIEMISC
, reg
& ~E1000_PCIEMISC_LX_DECISION
);
7280 wr32(E1000_DMACR
, 0);