blob: 7f322115fd1fdb67cff0a4d84814bb6229b795a4 [file] [log] [blame]
Auke Kok9d5c8242008-01-24 02:22:38 -08001/*******************************************************************************
2
3 Intel(R) Gigabit Ethernet Linux driver
Alexander Duyck86d5d382009-02-06 23:23:12 +00004 Copyright(c) 2007-2009 Intel Corporation.
Auke Kok9d5c8242008-01-24 02:22:38 -08005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28#include <linux/module.h>
29#include <linux/types.h>
30#include <linux/init.h>
31#include <linux/vmalloc.h>
32#include <linux/pagemap.h>
33#include <linux/netdevice.h>
Auke Kok9d5c8242008-01-24 02:22:38 -080034#include <linux/ipv6.h>
35#include <net/checksum.h>
36#include <net/ip6_checksum.h>
Patrick Ohlyc6cb0902009-02-12 05:03:42 +000037#include <linux/net_tstamp.h>
Auke Kok9d5c8242008-01-24 02:22:38 -080038#include <linux/mii.h>
39#include <linux/ethtool.h>
40#include <linux/if_vlan.h>
41#include <linux/pci.h>
Alexander Duyckc54106b2008-10-16 21:26:57 -070042#include <linux/pci-aspm.h>
Auke Kok9d5c8242008-01-24 02:22:38 -080043#include <linux/delay.h>
44#include <linux/interrupt.h>
45#include <linux/if_ether.h>
Alexander Duyck40a914f2008-11-27 00:24:37 -080046#include <linux/aer.h>
Jeff Kirsher421e02f2008-10-17 11:08:31 -070047#ifdef CONFIG_IGB_DCA
Jeb Cramerfe4506b2008-07-08 15:07:55 -070048#include <linux/dca.h>
49#endif
Auke Kok9d5c8242008-01-24 02:22:38 -080050#include "igb.h"
51
Alexander Duyck86d5d382009-02-06 23:23:12 +000052#define DRV_VERSION "1.3.16-k2"
Auke Kok9d5c8242008-01-24 02:22:38 -080053char igb_driver_name[] = "igb";
54char igb_driver_version[] = DRV_VERSION;
55static const char igb_driver_string[] =
56 "Intel(R) Gigabit Ethernet Network Driver";
Alexander Duyck86d5d382009-02-06 23:23:12 +000057static const char igb_copyright[] = "Copyright (c) 2007-2009 Intel Corporation.";
Auke Kok9d5c8242008-01-24 02:22:38 -080058
Auke Kok9d5c8242008-01-24 02:22:38 -080059static const struct e1000_info *igb_info_tbl[] = {
60 [board_82575] = &e1000_82575_info,
61};
62
63static struct pci_device_id igb_pci_tbl[] = {
Alexander Duyck2d064c02008-07-08 15:10:12 -070064 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576), board_82575 },
Alexander Duyck9eb23412009-03-13 20:42:15 +000065 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_NS), board_82575 },
Alexander Duyck747d49b2009-10-05 06:33:27 +000066 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_NS_SERDES), board_82575 },
Alexander Duyck2d064c02008-07-08 15:10:12 -070067 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_FIBER), board_82575 },
68 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES), board_82575 },
Alexander Duyck4703bf72009-07-23 18:09:48 +000069 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES_QUAD), board_82575 },
Alexander Duyckc8ea5ea2009-03-13 20:42:35 +000070 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_QUAD_COPPER), board_82575 },
Auke Kok9d5c8242008-01-24 02:22:38 -080071 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_COPPER), board_82575 },
72 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_FIBER_SERDES), board_82575 },
73 { PCI_VDEVICE(INTEL, E1000_DEV_ID_82575GB_QUAD_COPPER), board_82575 },
74 /* required last entry */
75 {0, }
76};
77
78MODULE_DEVICE_TABLE(pci, igb_pci_tbl);
79
80void igb_reset(struct igb_adapter *);
81static int igb_setup_all_tx_resources(struct igb_adapter *);
82static int igb_setup_all_rx_resources(struct igb_adapter *);
83static void igb_free_all_tx_resources(struct igb_adapter *);
84static void igb_free_all_rx_resources(struct igb_adapter *);
Alexander Duyck06cf2662009-10-27 15:53:25 +000085static void igb_setup_mrqc(struct igb_adapter *);
Auke Kok9d5c8242008-01-24 02:22:38 -080086void igb_update_stats(struct igb_adapter *);
87static int igb_probe(struct pci_dev *, const struct pci_device_id *);
88static void __devexit igb_remove(struct pci_dev *pdev);
89static int igb_sw_init(struct igb_adapter *);
90static int igb_open(struct net_device *);
91static int igb_close(struct net_device *);
92static void igb_configure_tx(struct igb_adapter *);
93static void igb_configure_rx(struct igb_adapter *);
Auke Kok9d5c8242008-01-24 02:22:38 -080094static void igb_clean_all_tx_rings(struct igb_adapter *);
95static void igb_clean_all_rx_rings(struct igb_adapter *);
Mitch Williams3b644cf2008-06-27 10:59:48 -070096static void igb_clean_tx_ring(struct igb_ring *);
97static void igb_clean_rx_ring(struct igb_ring *);
Alexander Duyckff41f8d2009-09-03 14:48:56 +000098static void igb_set_rx_mode(struct net_device *);
Auke Kok9d5c8242008-01-24 02:22:38 -080099static void igb_update_phy_info(unsigned long);
100static void igb_watchdog(unsigned long);
101static void igb_watchdog_task(struct work_struct *);
Alexander Duyckb1a436c2009-10-27 15:54:43 +0000102static netdev_tx_t igb_xmit_frame_adv(struct sk_buff *skb, struct net_device *);
Auke Kok9d5c8242008-01-24 02:22:38 -0800103static struct net_device_stats *igb_get_stats(struct net_device *);
104static int igb_change_mtu(struct net_device *, int);
105static int igb_set_mac(struct net_device *, void *);
Alexander Duyck68d480c2009-10-05 06:33:08 +0000106static void igb_set_uta(struct igb_adapter *adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800107static irqreturn_t igb_intr(int irq, void *);
108static irqreturn_t igb_intr_msi(int irq, void *);
109static irqreturn_t igb_msix_other(int irq, void *);
Alexander Duyck047e0032009-10-27 15:49:27 +0000110static irqreturn_t igb_msix_ring(int irq, void *);
Jeff Kirsher421e02f2008-10-17 11:08:31 -0700111#ifdef CONFIG_IGB_DCA
Alexander Duyck047e0032009-10-27 15:49:27 +0000112static void igb_update_dca(struct igb_q_vector *);
Jeb Cramerfe4506b2008-07-08 15:07:55 -0700113static void igb_setup_dca(struct igb_adapter *);
Jeff Kirsher421e02f2008-10-17 11:08:31 -0700114#endif /* CONFIG_IGB_DCA */
Alexander Duyck047e0032009-10-27 15:49:27 +0000115static bool igb_clean_tx_irq(struct igb_q_vector *);
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -0700116static int igb_poll(struct napi_struct *, int);
Alexander Duyck047e0032009-10-27 15:49:27 +0000117static bool igb_clean_rx_irq_adv(struct igb_q_vector *, int *, int);
Auke Kok9d5c8242008-01-24 02:22:38 -0800118static int igb_ioctl(struct net_device *, struct ifreq *, int cmd);
119static void igb_tx_timeout(struct net_device *);
120static void igb_reset_task(struct work_struct *);
121static void igb_vlan_rx_register(struct net_device *, struct vlan_group *);
122static void igb_vlan_rx_add_vid(struct net_device *, u16);
123static void igb_vlan_rx_kill_vid(struct net_device *, u16);
124static void igb_restore_vlan(struct igb_adapter *);
Alexander Duyck26ad9172009-10-05 06:32:49 +0000125static void igb_rar_set_qsel(struct igb_adapter *, u8 *, u32 , u8);
Alexander Duyck4ae196d2009-02-19 20:40:07 -0800126static void igb_ping_all_vfs(struct igb_adapter *);
127static void igb_msg_task(struct igb_adapter *);
Alexander Duyck4ae196d2009-02-19 20:40:07 -0800128static void igb_vmm_control(struct igb_adapter *);
Alexander Duyckf2ca0db2009-10-27 23:46:57 +0000129static int igb_set_vf_mac(struct igb_adapter *, int, unsigned char *);
Alexander Duyck4ae196d2009-02-19 20:40:07 -0800130static void igb_restore_vf_multicasts(struct igb_adapter *adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800131
Auke Kok9d5c8242008-01-24 02:22:38 -0800132#ifdef CONFIG_PM
Rafael J. Wysocki3fe7c4c2009-03-31 21:23:50 +0000133static int igb_suspend(struct pci_dev *, pm_message_t);
Auke Kok9d5c8242008-01-24 02:22:38 -0800134static int igb_resume(struct pci_dev *);
135#endif
136static void igb_shutdown(struct pci_dev *);
Jeff Kirsher421e02f2008-10-17 11:08:31 -0700137#ifdef CONFIG_IGB_DCA
Jeb Cramerfe4506b2008-07-08 15:07:55 -0700138static int igb_notify_dca(struct notifier_block *, unsigned long, void *);
139static struct notifier_block dca_notifier = {
140 .notifier_call = igb_notify_dca,
141 .next = NULL,
142 .priority = 0
143};
144#endif
Auke Kok9d5c8242008-01-24 02:22:38 -0800145#ifdef CONFIG_NET_POLL_CONTROLLER
146/* for netdump / net console */
147static void igb_netpoll(struct net_device *);
148#endif
Alexander Duyck37680112009-02-19 20:40:30 -0800149#ifdef CONFIG_PCI_IOV
Alexander Duyck2a3abf62009-04-07 14:37:52 +0000150static unsigned int max_vfs = 0;
151module_param(max_vfs, uint, 0);
152MODULE_PARM_DESC(max_vfs, "Maximum number of virtual functions to allocate "
153 "per physical function");
154#endif /* CONFIG_PCI_IOV */
155
Auke Kok9d5c8242008-01-24 02:22:38 -0800156static pci_ers_result_t igb_io_error_detected(struct pci_dev *,
157 pci_channel_state_t);
158static pci_ers_result_t igb_io_slot_reset(struct pci_dev *);
159static void igb_io_resume(struct pci_dev *);
160
161static struct pci_error_handlers igb_err_handler = {
162 .error_detected = igb_io_error_detected,
163 .slot_reset = igb_io_slot_reset,
164 .resume = igb_io_resume,
165};
166
167
168static struct pci_driver igb_driver = {
169 .name = igb_driver_name,
170 .id_table = igb_pci_tbl,
171 .probe = igb_probe,
172 .remove = __devexit_p(igb_remove),
173#ifdef CONFIG_PM
174 /* Power Managment Hooks */
175 .suspend = igb_suspend,
176 .resume = igb_resume,
177#endif
178 .shutdown = igb_shutdown,
179 .err_handler = &igb_err_handler
180};
181
182MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
183MODULE_DESCRIPTION("Intel(R) Gigabit Ethernet Network Driver");
184MODULE_LICENSE("GPL");
185MODULE_VERSION(DRV_VERSION);
186
Patrick Ohly38c845c2009-02-12 05:03:41 +0000187/**
Patrick Ohly38c845c2009-02-12 05:03:41 +0000188 * igb_read_clock - read raw cycle counter (to be used by time counter)
189 */
190static cycle_t igb_read_clock(const struct cyclecounter *tc)
191{
192 struct igb_adapter *adapter =
193 container_of(tc, struct igb_adapter, cycles);
194 struct e1000_hw *hw = &adapter->hw;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +0000195 u64 stamp = 0;
196 int shift = 0;
Patrick Ohly38c845c2009-02-12 05:03:41 +0000197
Alexander Duyckc5b9bd52009-10-27 23:46:01 +0000198 stamp |= (u64)rd32(E1000_SYSTIML) << shift;
199 stamp |= (u64)rd32(E1000_SYSTIMH) << (shift + 32);
Patrick Ohly38c845c2009-02-12 05:03:41 +0000200 return stamp;
201}
202
Auke Kok9d5c8242008-01-24 02:22:38 -0800203#ifdef DEBUG
204/**
205 * igb_get_hw_dev_name - return device name string
206 * used by hardware layer to print debugging information
207 **/
208char *igb_get_hw_dev_name(struct e1000_hw *hw)
209{
210 struct igb_adapter *adapter = hw->back;
211 return adapter->netdev->name;
212}
Patrick Ohly38c845c2009-02-12 05:03:41 +0000213
214/**
215 * igb_get_time_str - format current NIC and system time as string
216 */
217static char *igb_get_time_str(struct igb_adapter *adapter,
218 char buffer[160])
219{
220 cycle_t hw = adapter->cycles.read(&adapter->cycles);
221 struct timespec nic = ns_to_timespec(timecounter_read(&adapter->clock));
222 struct timespec sys;
223 struct timespec delta;
224 getnstimeofday(&sys);
225
226 delta = timespec_sub(nic, sys);
227
228 sprintf(buffer,
Patrick Ohly33af6bc2009-02-12 05:03:43 +0000229 "HW %llu, NIC %ld.%09lus, SYS %ld.%09lus, NIC-SYS %lds + %09luns",
230 hw,
Patrick Ohly38c845c2009-02-12 05:03:41 +0000231 (long)nic.tv_sec, nic.tv_nsec,
232 (long)sys.tv_sec, sys.tv_nsec,
233 (long)delta.tv_sec, delta.tv_nsec);
234
235 return buffer;
236}
Auke Kok9d5c8242008-01-24 02:22:38 -0800237#endif
238
239/**
240 * igb_init_module - Driver Registration Routine
241 *
242 * igb_init_module is the first routine called when the driver is
243 * loaded. All it does is register with the PCI subsystem.
244 **/
245static int __init igb_init_module(void)
246{
247 int ret;
248 printk(KERN_INFO "%s - version %s\n",
249 igb_driver_string, igb_driver_version);
250
251 printk(KERN_INFO "%s\n", igb_copyright);
252
Jeff Kirsher421e02f2008-10-17 11:08:31 -0700253#ifdef CONFIG_IGB_DCA
Jeb Cramerfe4506b2008-07-08 15:07:55 -0700254 dca_register_notify(&dca_notifier);
255#endif
Alexander Duyckbbd98fe2009-01-31 00:52:30 -0800256 ret = pci_register_driver(&igb_driver);
Auke Kok9d5c8242008-01-24 02:22:38 -0800257 return ret;
258}
259
260module_init(igb_init_module);
261
262/**
263 * igb_exit_module - Driver Exit Cleanup Routine
264 *
265 * igb_exit_module is called just before the driver is removed
266 * from memory.
267 **/
268static void __exit igb_exit_module(void)
269{
Jeff Kirsher421e02f2008-10-17 11:08:31 -0700270#ifdef CONFIG_IGB_DCA
Jeb Cramerfe4506b2008-07-08 15:07:55 -0700271 dca_unregister_notify(&dca_notifier);
272#endif
Auke Kok9d5c8242008-01-24 02:22:38 -0800273 pci_unregister_driver(&igb_driver);
274}
275
276module_exit(igb_exit_module);
277
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800278#define Q_IDX_82576(i) (((i & 0x1) << 3) + (i >> 1))
279/**
280 * igb_cache_ring_register - Descriptor ring to register mapping
281 * @adapter: board private structure to initialize
282 *
283 * Once we know the feature-set enabled for the device, we'll cache
284 * the register offset the descriptor ring is assigned to.
285 **/
286static void igb_cache_ring_register(struct igb_adapter *adapter)
287{
288 int i;
Alexander Duyck047e0032009-10-27 15:49:27 +0000289 u32 rbase_offset = adapter->vfs_allocated_count;
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800290
291 switch (adapter->hw.mac.type) {
292 case e1000_82576:
293 /* The queues are allocated for virtualization such that VF 0
294 * is allocated queues 0 and 8, VF 1 queues 1 and 9, etc.
295 * In order to avoid collision we start at the first free queue
296 * and continue consuming queues in the same sequence
297 */
298 for (i = 0; i < adapter->num_rx_queues; i++)
Alexander Duyck1bfaf072009-02-19 20:39:23 -0800299 adapter->rx_ring[i].reg_idx = rbase_offset +
300 Q_IDX_82576(i);
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800301 for (i = 0; i < adapter->num_tx_queues; i++)
Alexander Duyck1bfaf072009-02-19 20:39:23 -0800302 adapter->tx_ring[i].reg_idx = rbase_offset +
303 Q_IDX_82576(i);
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800304 break;
305 case e1000_82575:
306 default:
307 for (i = 0; i < adapter->num_rx_queues; i++)
308 adapter->rx_ring[i].reg_idx = i;
309 for (i = 0; i < adapter->num_tx_queues; i++)
310 adapter->tx_ring[i].reg_idx = i;
311 break;
312 }
313}
314
Alexander Duyck047e0032009-10-27 15:49:27 +0000315static void igb_free_queues(struct igb_adapter *adapter)
316{
317 kfree(adapter->tx_ring);
318 kfree(adapter->rx_ring);
319
320 adapter->tx_ring = NULL;
321 adapter->rx_ring = NULL;
322
323 adapter->num_rx_queues = 0;
324 adapter->num_tx_queues = 0;
325}
326
Auke Kok9d5c8242008-01-24 02:22:38 -0800327/**
328 * igb_alloc_queues - Allocate memory for all rings
329 * @adapter: board private structure to initialize
330 *
331 * We allocate one ring per queue at run-time since we don't know the
332 * number of queues at compile-time.
333 **/
334static int igb_alloc_queues(struct igb_adapter *adapter)
335{
336 int i;
337
338 adapter->tx_ring = kcalloc(adapter->num_tx_queues,
339 sizeof(struct igb_ring), GFP_KERNEL);
340 if (!adapter->tx_ring)
Alexander Duyck047e0032009-10-27 15:49:27 +0000341 goto err;
Auke Kok9d5c8242008-01-24 02:22:38 -0800342
343 adapter->rx_ring = kcalloc(adapter->num_rx_queues,
344 sizeof(struct igb_ring), GFP_KERNEL);
Alexander Duyck047e0032009-10-27 15:49:27 +0000345 if (!adapter->rx_ring)
346 goto err;
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -0700347
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -0700348 for (i = 0; i < adapter->num_tx_queues; i++) {
349 struct igb_ring *ring = &(adapter->tx_ring[i]);
Alexander Duyck68fd9912008-11-20 00:48:10 -0800350 ring->count = adapter->tx_ring_count;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -0700351 ring->queue_index = i;
Alexander Duyck80785292009-10-27 15:51:47 +0000352 ring->pdev = adapter->pdev;
Alexander Duycke694e962009-10-27 15:53:06 +0000353 ring->netdev = adapter->netdev;
Alexander Duyck85ad76b2009-10-27 15:52:46 +0000354 /* For 82575, context index must be unique per ring. */
355 if (adapter->hw.mac.type == e1000_82575)
356 ring->flags = IGB_RING_FLAG_TX_CTX_IDX;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -0700357 }
Alexander Duyck85ad76b2009-10-27 15:52:46 +0000358
Auke Kok9d5c8242008-01-24 02:22:38 -0800359 for (i = 0; i < adapter->num_rx_queues; i++) {
360 struct igb_ring *ring = &(adapter->rx_ring[i]);
Alexander Duyck68fd9912008-11-20 00:48:10 -0800361 ring->count = adapter->rx_ring_count;
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700362 ring->queue_index = i;
Alexander Duyck80785292009-10-27 15:51:47 +0000363 ring->pdev = adapter->pdev;
Alexander Duycke694e962009-10-27 15:53:06 +0000364 ring->netdev = adapter->netdev;
Alexander Duyck4c844852009-10-27 15:52:07 +0000365 ring->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Alexander Duyck85ad76b2009-10-27 15:52:46 +0000366 ring->flags = IGB_RING_FLAG_RX_CSUM; /* enable rx checksum */
367 /* set flag indicating ring supports SCTP checksum offload */
368 if (adapter->hw.mac.type >= e1000_82576)
369 ring->flags |= IGB_RING_FLAG_RX_SCTP_CSUM;
Auke Kok9d5c8242008-01-24 02:22:38 -0800370 }
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800371
372 igb_cache_ring_register(adapter);
Alexander Duyck047e0032009-10-27 15:49:27 +0000373
Auke Kok9d5c8242008-01-24 02:22:38 -0800374 return 0;
Auke Kok9d5c8242008-01-24 02:22:38 -0800375
Alexander Duyck047e0032009-10-27 15:49:27 +0000376err:
377 igb_free_queues(adapter);
Alexander Duycka88f10e2008-07-08 15:13:38 -0700378
Alexander Duyck047e0032009-10-27 15:49:27 +0000379 return -ENOMEM;
Alexander Duycka88f10e2008-07-08 15:13:38 -0700380}
381
Auke Kok9d5c8242008-01-24 02:22:38 -0800382#define IGB_N0_QUEUE -1
Alexander Duyck047e0032009-10-27 15:49:27 +0000383static void igb_assign_vector(struct igb_q_vector *q_vector, int msix_vector)
Auke Kok9d5c8242008-01-24 02:22:38 -0800384{
385 u32 msixbm = 0;
Alexander Duyck047e0032009-10-27 15:49:27 +0000386 struct igb_adapter *adapter = q_vector->adapter;
Auke Kok9d5c8242008-01-24 02:22:38 -0800387 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700388 u32 ivar, index;
Alexander Duyck047e0032009-10-27 15:49:27 +0000389 int rx_queue = IGB_N0_QUEUE;
390 int tx_queue = IGB_N0_QUEUE;
391
392 if (q_vector->rx_ring)
393 rx_queue = q_vector->rx_ring->reg_idx;
394 if (q_vector->tx_ring)
395 tx_queue = q_vector->tx_ring->reg_idx;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700396
397 switch (hw->mac.type) {
398 case e1000_82575:
Auke Kok9d5c8242008-01-24 02:22:38 -0800399 /* The 82575 assigns vectors using a bitmask, which matches the
400 bitmask for the EICR/EIMS/EIMC registers. To assign one
401 or more queues to a vector, we write the appropriate bits
402 into the MSIXBM register for that vector. */
Alexander Duyck047e0032009-10-27 15:49:27 +0000403 if (rx_queue > IGB_N0_QUEUE)
Auke Kok9d5c8242008-01-24 02:22:38 -0800404 msixbm = E1000_EICR_RX_QUEUE0 << rx_queue;
Alexander Duyck047e0032009-10-27 15:49:27 +0000405 if (tx_queue > IGB_N0_QUEUE)
Auke Kok9d5c8242008-01-24 02:22:38 -0800406 msixbm |= E1000_EICR_TX_QUEUE0 << tx_queue;
Auke Kok9d5c8242008-01-24 02:22:38 -0800407 array_wr32(E1000_MSIXBM(0), msix_vector, msixbm);
Alexander Duyck047e0032009-10-27 15:49:27 +0000408 q_vector->eims_value = msixbm;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700409 break;
410 case e1000_82576:
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800411 /* 82576 uses a table-based method for assigning vectors.
Alexander Duyck2d064c02008-07-08 15:10:12 -0700412 Each queue has a single entry in the table to which we write
413 a vector number along with a "valid" bit. Sadly, the layout
414 of the table is somewhat counterintuitive. */
415 if (rx_queue > IGB_N0_QUEUE) {
Alexander Duyck047e0032009-10-27 15:49:27 +0000416 index = (rx_queue & 0x7);
Alexander Duyck2d064c02008-07-08 15:10:12 -0700417 ivar = array_rd32(E1000_IVAR0, index);
Alexander Duyck047e0032009-10-27 15:49:27 +0000418 if (rx_queue < 8) {
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800419 /* vector goes into low byte of register */
420 ivar = ivar & 0xFFFFFF00;
421 ivar |= msix_vector | E1000_IVAR_VALID;
Alexander Duyck047e0032009-10-27 15:49:27 +0000422 } else {
423 /* vector goes into third byte of register */
424 ivar = ivar & 0xFF00FFFF;
425 ivar |= (msix_vector | E1000_IVAR_VALID) << 16;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700426 }
Alexander Duyck2d064c02008-07-08 15:10:12 -0700427 array_wr32(E1000_IVAR0, index, ivar);
428 }
429 if (tx_queue > IGB_N0_QUEUE) {
Alexander Duyck047e0032009-10-27 15:49:27 +0000430 index = (tx_queue & 0x7);
Alexander Duyck2d064c02008-07-08 15:10:12 -0700431 ivar = array_rd32(E1000_IVAR0, index);
Alexander Duyck047e0032009-10-27 15:49:27 +0000432 if (tx_queue < 8) {
Alexander Duyck26bc19e2008-12-26 01:34:11 -0800433 /* vector goes into second byte of register */
434 ivar = ivar & 0xFFFF00FF;
435 ivar |= (msix_vector | E1000_IVAR_VALID) << 8;
Alexander Duyck047e0032009-10-27 15:49:27 +0000436 } else {
437 /* vector goes into high byte of register */
438 ivar = ivar & 0x00FFFFFF;
439 ivar |= (msix_vector | E1000_IVAR_VALID) << 24;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700440 }
Alexander Duyck2d064c02008-07-08 15:10:12 -0700441 array_wr32(E1000_IVAR0, index, ivar);
442 }
Alexander Duyck047e0032009-10-27 15:49:27 +0000443 q_vector->eims_value = 1 << msix_vector;
Alexander Duyck2d064c02008-07-08 15:10:12 -0700444 break;
445 default:
446 BUG();
447 break;
448 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800449}
450
451/**
452 * igb_configure_msix - Configure MSI-X hardware
453 *
454 * igb_configure_msix sets up the hardware to properly
455 * generate MSI-X interrupts.
456 **/
457static void igb_configure_msix(struct igb_adapter *adapter)
458{
459 u32 tmp;
460 int i, vector = 0;
461 struct e1000_hw *hw = &adapter->hw;
462
463 adapter->eims_enable_mask = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -0800464
465 /* set vector for other causes, i.e. link changes */
Alexander Duyck2d064c02008-07-08 15:10:12 -0700466 switch (hw->mac.type) {
467 case e1000_82575:
Auke Kok9d5c8242008-01-24 02:22:38 -0800468 tmp = rd32(E1000_CTRL_EXT);
469 /* enable MSI-X PBA support*/
470 tmp |= E1000_CTRL_EXT_PBA_CLR;
471
472 /* Auto-Mask interrupts upon ICR read. */
473 tmp |= E1000_CTRL_EXT_EIAME;
474 tmp |= E1000_CTRL_EXT_IRCA;
475
476 wr32(E1000_CTRL_EXT, tmp);
Alexander Duyck047e0032009-10-27 15:49:27 +0000477
478 /* enable msix_other interrupt */
479 array_wr32(E1000_MSIXBM(0), vector++,
480 E1000_EIMS_OTHER);
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700481 adapter->eims_other = E1000_EIMS_OTHER;
Auke Kok9d5c8242008-01-24 02:22:38 -0800482
Alexander Duyck2d064c02008-07-08 15:10:12 -0700483 break;
484
485 case e1000_82576:
Alexander Duyck047e0032009-10-27 15:49:27 +0000486 /* Turn on MSI-X capability first, or our settings
487 * won't stick. And it will take days to debug. */
488 wr32(E1000_GPIE, E1000_GPIE_MSIX_MODE |
489 E1000_GPIE_PBA | E1000_GPIE_EIAME |
490 E1000_GPIE_NSICR);
Alexander Duyck2d064c02008-07-08 15:10:12 -0700491
Alexander Duyck047e0032009-10-27 15:49:27 +0000492 /* enable msix_other interrupt */
493 adapter->eims_other = 1 << vector;
494 tmp = (vector++ | E1000_IVAR_VALID) << 8;
495
496 wr32(E1000_IVAR_MISC, tmp);
Alexander Duyck2d064c02008-07-08 15:10:12 -0700497 break;
498 default:
499 /* do nothing, since nothing else supports MSI-X */
500 break;
501 } /* switch (hw->mac.type) */
Alexander Duyck047e0032009-10-27 15:49:27 +0000502
503 adapter->eims_enable_mask |= adapter->eims_other;
504
505 for (i = 0; i < adapter->num_q_vectors; i++) {
506 struct igb_q_vector *q_vector = adapter->q_vector[i];
507 igb_assign_vector(q_vector, vector++);
508 adapter->eims_enable_mask |= q_vector->eims_value;
509 }
510
Auke Kok9d5c8242008-01-24 02:22:38 -0800511 wrfl();
512}
513
514/**
515 * igb_request_msix - Initialize MSI-X interrupts
516 *
517 * igb_request_msix allocates MSI-X vectors and requests interrupts from the
518 * kernel.
519 **/
520static int igb_request_msix(struct igb_adapter *adapter)
521{
522 struct net_device *netdev = adapter->netdev;
Alexander Duyck047e0032009-10-27 15:49:27 +0000523 struct e1000_hw *hw = &adapter->hw;
Auke Kok9d5c8242008-01-24 02:22:38 -0800524 int i, err = 0, vector = 0;
525
Auke Kok9d5c8242008-01-24 02:22:38 -0800526 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck047e0032009-10-27 15:49:27 +0000527 &igb_msix_other, 0, netdev->name, adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800528 if (err)
529 goto out;
Alexander Duyck047e0032009-10-27 15:49:27 +0000530 vector++;
531
532 for (i = 0; i < adapter->num_q_vectors; i++) {
533 struct igb_q_vector *q_vector = adapter->q_vector[i];
534
535 q_vector->itr_register = hw->hw_addr + E1000_EITR(vector);
536
537 if (q_vector->rx_ring && q_vector->tx_ring)
538 sprintf(q_vector->name, "%s-TxRx-%u", netdev->name,
539 q_vector->rx_ring->queue_index);
540 else if (q_vector->tx_ring)
541 sprintf(q_vector->name, "%s-tx-%u", netdev->name,
542 q_vector->tx_ring->queue_index);
543 else if (q_vector->rx_ring)
544 sprintf(q_vector->name, "%s-rx-%u", netdev->name,
545 q_vector->rx_ring->queue_index);
546 else
547 sprintf(q_vector->name, "%s-unused", netdev->name);
548
549 err = request_irq(adapter->msix_entries[vector].vector,
550 &igb_msix_ring, 0, q_vector->name,
551 q_vector);
552 if (err)
553 goto out;
554 vector++;
555 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800556
Auke Kok9d5c8242008-01-24 02:22:38 -0800557 igb_configure_msix(adapter);
558 return 0;
559out:
560 return err;
561}
562
563static void igb_reset_interrupt_capability(struct igb_adapter *adapter)
564{
565 if (adapter->msix_entries) {
566 pci_disable_msix(adapter->pdev);
567 kfree(adapter->msix_entries);
568 adapter->msix_entries = NULL;
Alexander Duyck047e0032009-10-27 15:49:27 +0000569 } else if (adapter->flags & IGB_FLAG_HAS_MSI) {
Auke Kok9d5c8242008-01-24 02:22:38 -0800570 pci_disable_msi(adapter->pdev);
Alexander Duyck047e0032009-10-27 15:49:27 +0000571 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800572}
573
Alexander Duyck047e0032009-10-27 15:49:27 +0000574/**
575 * igb_free_q_vectors - Free memory allocated for interrupt vectors
576 * @adapter: board private structure to initialize
577 *
578 * This function frees the memory allocated to the q_vectors. In addition if
579 * NAPI is enabled it will delete any references to the NAPI struct prior
580 * to freeing the q_vector.
581 **/
582static void igb_free_q_vectors(struct igb_adapter *adapter)
583{
584 int v_idx;
585
586 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
587 struct igb_q_vector *q_vector = adapter->q_vector[v_idx];
588 adapter->q_vector[v_idx] = NULL;
589 netif_napi_del(&q_vector->napi);
590 kfree(q_vector);
591 }
592 adapter->num_q_vectors = 0;
593}
594
595/**
596 * igb_clear_interrupt_scheme - reset the device to a state of no interrupts
597 *
598 * This function resets the device so that it has 0 rx queues, tx queues, and
599 * MSI-X interrupts allocated.
600 */
601static void igb_clear_interrupt_scheme(struct igb_adapter *adapter)
602{
603 igb_free_queues(adapter);
604 igb_free_q_vectors(adapter);
605 igb_reset_interrupt_capability(adapter);
606}
Auke Kok9d5c8242008-01-24 02:22:38 -0800607
608/**
609 * igb_set_interrupt_capability - set MSI or MSI-X if supported
610 *
611 * Attempt to configure interrupts using the best available
612 * capabilities of the hardware and kernel.
613 **/
614static void igb_set_interrupt_capability(struct igb_adapter *adapter)
615{
616 int err;
617 int numvecs, i;
618
Alexander Duyck83b71802009-02-06 23:15:45 +0000619 /* Number of supported queues. */
Alexander Duyck83b71802009-02-06 23:15:45 +0000620 adapter->num_rx_queues = min_t(u32, IGB_MAX_RX_QUEUES, num_online_cpus());
621 adapter->num_tx_queues = min_t(u32, IGB_MAX_TX_QUEUES, num_online_cpus());
622
Alexander Duyck047e0032009-10-27 15:49:27 +0000623 /* start with one vector for every rx queue */
624 numvecs = adapter->num_rx_queues;
625
626 /* if tx handler is seperate add 1 for every tx queue */
627 numvecs += adapter->num_tx_queues;
628
629 /* store the number of vectors reserved for queues */
630 adapter->num_q_vectors = numvecs;
631
632 /* add 1 vector for link status interrupts */
633 numvecs++;
Auke Kok9d5c8242008-01-24 02:22:38 -0800634 adapter->msix_entries = kcalloc(numvecs, sizeof(struct msix_entry),
635 GFP_KERNEL);
636 if (!adapter->msix_entries)
637 goto msi_only;
638
639 for (i = 0; i < numvecs; i++)
640 adapter->msix_entries[i].entry = i;
641
642 err = pci_enable_msix(adapter->pdev,
643 adapter->msix_entries,
644 numvecs);
645 if (err == 0)
Alexander Duyck34a20e82008-08-26 04:25:13 -0700646 goto out;
Auke Kok9d5c8242008-01-24 02:22:38 -0800647
648 igb_reset_interrupt_capability(adapter);
649
650 /* If we can't do MSI-X, try MSI */
651msi_only:
Alexander Duyck2a3abf62009-04-07 14:37:52 +0000652#ifdef CONFIG_PCI_IOV
653 /* disable SR-IOV for non MSI-X configurations */
654 if (adapter->vf_data) {
655 struct e1000_hw *hw = &adapter->hw;
656 /* disable iov and allow time for transactions to clear */
657 pci_disable_sriov(adapter->pdev);
658 msleep(500);
659
660 kfree(adapter->vf_data);
661 adapter->vf_data = NULL;
662 wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ);
663 msleep(100);
664 dev_info(&adapter->pdev->dev, "IOV Disabled\n");
665 }
666#endif
Alexander Duyck4fc82ad2009-10-27 23:45:42 +0000667 adapter->vfs_allocated_count = 0;
668 adapter->flags |= IGB_FLAG_QUEUE_PAIRS;
Auke Kok9d5c8242008-01-24 02:22:38 -0800669 adapter->num_rx_queues = 1;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -0700670 adapter->num_tx_queues = 1;
Alexander Duyck047e0032009-10-27 15:49:27 +0000671 adapter->num_q_vectors = 1;
Auke Kok9d5c8242008-01-24 02:22:38 -0800672 if (!pci_enable_msi(adapter->pdev))
Alexander Duyck7dfc16f2008-07-08 15:10:46 -0700673 adapter->flags |= IGB_FLAG_HAS_MSI;
Alexander Duyck34a20e82008-08-26 04:25:13 -0700674out:
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -0700675 /* Notify the stack of the (possibly) reduced Tx Queue count. */
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700676 adapter->netdev->real_num_tx_queues = adapter->num_tx_queues;
Auke Kok9d5c8242008-01-24 02:22:38 -0800677 return;
678}
679
680/**
Alexander Duyck047e0032009-10-27 15:49:27 +0000681 * igb_alloc_q_vectors - Allocate memory for interrupt vectors
682 * @adapter: board private structure to initialize
683 *
684 * We allocate one q_vector per queue interrupt. If allocation fails we
685 * return -ENOMEM.
686 **/
687static int igb_alloc_q_vectors(struct igb_adapter *adapter)
688{
689 struct igb_q_vector *q_vector;
690 struct e1000_hw *hw = &adapter->hw;
691 int v_idx;
692
693 for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) {
694 q_vector = kzalloc(sizeof(struct igb_q_vector), GFP_KERNEL);
695 if (!q_vector)
696 goto err_out;
697 q_vector->adapter = adapter;
698 q_vector->itr_shift = (hw->mac.type == e1000_82575) ? 16 : 0;
699 q_vector->itr_register = hw->hw_addr + E1000_EITR(0);
700 q_vector->itr_val = IGB_START_ITR;
701 q_vector->set_itr = 1;
702 netif_napi_add(adapter->netdev, &q_vector->napi, igb_poll, 64);
703 adapter->q_vector[v_idx] = q_vector;
704 }
705 return 0;
706
707err_out:
708 while (v_idx) {
709 v_idx--;
710 q_vector = adapter->q_vector[v_idx];
711 netif_napi_del(&q_vector->napi);
712 kfree(q_vector);
713 adapter->q_vector[v_idx] = NULL;
714 }
715 return -ENOMEM;
716}
717
718static void igb_map_rx_ring_to_vector(struct igb_adapter *adapter,
719 int ring_idx, int v_idx)
720{
721 struct igb_q_vector *q_vector;
722
723 q_vector = adapter->q_vector[v_idx];
724 q_vector->rx_ring = &adapter->rx_ring[ring_idx];
725 q_vector->rx_ring->q_vector = q_vector;
Alexander Duyck4fc82ad2009-10-27 23:45:42 +0000726 q_vector->itr_val = adapter->rx_itr_setting;
727 if (q_vector->itr_val && q_vector->itr_val <= 3)
728 q_vector->itr_val = IGB_START_ITR;
Alexander Duyck047e0032009-10-27 15:49:27 +0000729}
730
731static void igb_map_tx_ring_to_vector(struct igb_adapter *adapter,
732 int ring_idx, int v_idx)
733{
734 struct igb_q_vector *q_vector;
735
736 q_vector = adapter->q_vector[v_idx];
737 q_vector->tx_ring = &adapter->tx_ring[ring_idx];
738 q_vector->tx_ring->q_vector = q_vector;
Alexander Duyck4fc82ad2009-10-27 23:45:42 +0000739 q_vector->itr_val = adapter->tx_itr_setting;
740 if (q_vector->itr_val && q_vector->itr_val <= 3)
741 q_vector->itr_val = IGB_START_ITR;
Alexander Duyck047e0032009-10-27 15:49:27 +0000742}
743
744/**
745 * igb_map_ring_to_vector - maps allocated queues to vectors
746 *
747 * This function maps the recently allocated queues to vectors.
748 **/
749static int igb_map_ring_to_vector(struct igb_adapter *adapter)
750{
751 int i;
752 int v_idx = 0;
753
754 if ((adapter->num_q_vectors < adapter->num_rx_queues) ||
755 (adapter->num_q_vectors < adapter->num_tx_queues))
756 return -ENOMEM;
757
758 if (adapter->num_q_vectors >=
759 (adapter->num_rx_queues + adapter->num_tx_queues)) {
760 for (i = 0; i < adapter->num_rx_queues; i++)
761 igb_map_rx_ring_to_vector(adapter, i, v_idx++);
762 for (i = 0; i < adapter->num_tx_queues; i++)
763 igb_map_tx_ring_to_vector(adapter, i, v_idx++);
764 } else {
765 for (i = 0; i < adapter->num_rx_queues; i++) {
766 if (i < adapter->num_tx_queues)
767 igb_map_tx_ring_to_vector(adapter, i, v_idx);
768 igb_map_rx_ring_to_vector(adapter, i, v_idx++);
769 }
770 for (; i < adapter->num_tx_queues; i++)
771 igb_map_tx_ring_to_vector(adapter, i, v_idx++);
772 }
773 return 0;
774}
775
776/**
777 * igb_init_interrupt_scheme - initialize interrupts, allocate queues/vectors
778 *
779 * This function initializes the interrupts and allocates all of the queues.
780 **/
781static int igb_init_interrupt_scheme(struct igb_adapter *adapter)
782{
783 struct pci_dev *pdev = adapter->pdev;
784 int err;
785
786 igb_set_interrupt_capability(adapter);
787
788 err = igb_alloc_q_vectors(adapter);
789 if (err) {
790 dev_err(&pdev->dev, "Unable to allocate memory for vectors\n");
791 goto err_alloc_q_vectors;
792 }
793
794 err = igb_alloc_queues(adapter);
795 if (err) {
796 dev_err(&pdev->dev, "Unable to allocate memory for queues\n");
797 goto err_alloc_queues;
798 }
799
800 err = igb_map_ring_to_vector(adapter);
801 if (err) {
802 dev_err(&pdev->dev, "Invalid q_vector to ring mapping\n");
803 goto err_map_queues;
804 }
805
806
807 return 0;
808err_map_queues:
809 igb_free_queues(adapter);
810err_alloc_queues:
811 igb_free_q_vectors(adapter);
812err_alloc_q_vectors:
813 igb_reset_interrupt_capability(adapter);
814 return err;
815}
816
817/**
Auke Kok9d5c8242008-01-24 02:22:38 -0800818 * igb_request_irq - initialize interrupts
819 *
820 * Attempts to configure interrupts using the best available
821 * capabilities of the hardware and kernel.
822 **/
823static int igb_request_irq(struct igb_adapter *adapter)
824{
825 struct net_device *netdev = adapter->netdev;
Alexander Duyck047e0032009-10-27 15:49:27 +0000826 struct pci_dev *pdev = adapter->pdev;
Auke Kok9d5c8242008-01-24 02:22:38 -0800827 struct e1000_hw *hw = &adapter->hw;
828 int err = 0;
829
830 if (adapter->msix_entries) {
831 err = igb_request_msix(adapter);
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700832 if (!err)
Auke Kok9d5c8242008-01-24 02:22:38 -0800833 goto request_done;
Auke Kok9d5c8242008-01-24 02:22:38 -0800834 /* fall back to MSI */
Alexander Duyck047e0032009-10-27 15:49:27 +0000835 igb_clear_interrupt_scheme(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800836 if (!pci_enable_msi(adapter->pdev))
Alexander Duyck7dfc16f2008-07-08 15:10:46 -0700837 adapter->flags |= IGB_FLAG_HAS_MSI;
Auke Kok9d5c8242008-01-24 02:22:38 -0800838 igb_free_all_tx_resources(adapter);
839 igb_free_all_rx_resources(adapter);
Alexander Duyck047e0032009-10-27 15:49:27 +0000840 adapter->num_tx_queues = 1;
Auke Kok9d5c8242008-01-24 02:22:38 -0800841 adapter->num_rx_queues = 1;
Alexander Duyck047e0032009-10-27 15:49:27 +0000842 adapter->num_q_vectors = 1;
843 err = igb_alloc_q_vectors(adapter);
844 if (err) {
845 dev_err(&pdev->dev,
846 "Unable to allocate memory for vectors\n");
847 goto request_done;
848 }
849 err = igb_alloc_queues(adapter);
850 if (err) {
851 dev_err(&pdev->dev,
852 "Unable to allocate memory for queues\n");
853 igb_free_q_vectors(adapter);
854 goto request_done;
855 }
856 igb_setup_all_tx_resources(adapter);
857 igb_setup_all_rx_resources(adapter);
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700858 } else {
Alexander Duyck2d064c02008-07-08 15:10:12 -0700859 switch (hw->mac.type) {
860 case e1000_82575:
861 wr32(E1000_MSIXBM(0),
Alexander Duyck047e0032009-10-27 15:49:27 +0000862 (E1000_EICR_RX_QUEUE0 |
863 E1000_EICR_TX_QUEUE0 |
864 E1000_EIMS_OTHER));
Alexander Duyck2d064c02008-07-08 15:10:12 -0700865 break;
866 case e1000_82576:
867 wr32(E1000_IVAR0, E1000_IVAR_VALID);
868 break;
869 default:
870 break;
871 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800872 }
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700873
Alexander Duyck7dfc16f2008-07-08 15:10:46 -0700874 if (adapter->flags & IGB_FLAG_HAS_MSI) {
Auke Kok9d5c8242008-01-24 02:22:38 -0800875 err = request_irq(adapter->pdev->irq, &igb_intr_msi, 0,
Alexander Duyck047e0032009-10-27 15:49:27 +0000876 netdev->name, adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800877 if (!err)
878 goto request_done;
Alexander Duyck047e0032009-10-27 15:49:27 +0000879
Auke Kok9d5c8242008-01-24 02:22:38 -0800880 /* fall back to legacy interrupts */
881 igb_reset_interrupt_capability(adapter);
Alexander Duyck7dfc16f2008-07-08 15:10:46 -0700882 adapter->flags &= ~IGB_FLAG_HAS_MSI;
Auke Kok9d5c8242008-01-24 02:22:38 -0800883 }
884
885 err = request_irq(adapter->pdev->irq, &igb_intr, IRQF_SHARED,
Alexander Duyck047e0032009-10-27 15:49:27 +0000886 netdev->name, adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800887
Andy Gospodarek6cb5e572008-02-15 14:05:25 -0800888 if (err)
Auke Kok9d5c8242008-01-24 02:22:38 -0800889 dev_err(&adapter->pdev->dev, "Error %d getting interrupt\n",
890 err);
Auke Kok9d5c8242008-01-24 02:22:38 -0800891
892request_done:
893 return err;
894}
895
896static void igb_free_irq(struct igb_adapter *adapter)
897{
Auke Kok9d5c8242008-01-24 02:22:38 -0800898 if (adapter->msix_entries) {
899 int vector = 0, i;
900
Alexander Duyck047e0032009-10-27 15:49:27 +0000901 free_irq(adapter->msix_entries[vector++].vector, adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800902
Alexander Duyck047e0032009-10-27 15:49:27 +0000903 for (i = 0; i < adapter->num_q_vectors; i++) {
904 struct igb_q_vector *q_vector = adapter->q_vector[i];
905 free_irq(adapter->msix_entries[vector++].vector,
906 q_vector);
907 }
908 } else {
909 free_irq(adapter->pdev->irq, adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -0800910 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800911}
912
913/**
914 * igb_irq_disable - Mask off interrupt generation on the NIC
915 * @adapter: board private structure
916 **/
917static void igb_irq_disable(struct igb_adapter *adapter)
918{
919 struct e1000_hw *hw = &adapter->hw;
920
921 if (adapter->msix_entries) {
Alexander Duyck2dfd1212009-09-03 14:49:15 +0000922 u32 regval = rd32(E1000_EIAM);
923 wr32(E1000_EIAM, regval & ~adapter->eims_enable_mask);
924 wr32(E1000_EIMC, adapter->eims_enable_mask);
925 regval = rd32(E1000_EIAC);
926 wr32(E1000_EIAC, regval & ~adapter->eims_enable_mask);
Auke Kok9d5c8242008-01-24 02:22:38 -0800927 }
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700928
929 wr32(E1000_IAM, 0);
Auke Kok9d5c8242008-01-24 02:22:38 -0800930 wr32(E1000_IMC, ~0);
931 wrfl();
932 synchronize_irq(adapter->pdev->irq);
933}
934
935/**
936 * igb_irq_enable - Enable default interrupt generation settings
937 * @adapter: board private structure
938 **/
939static void igb_irq_enable(struct igb_adapter *adapter)
940{
941 struct e1000_hw *hw = &adapter->hw;
942
943 if (adapter->msix_entries) {
Alexander Duyck2dfd1212009-09-03 14:49:15 +0000944 u32 regval = rd32(E1000_EIAC);
945 wr32(E1000_EIAC, regval | adapter->eims_enable_mask);
946 regval = rd32(E1000_EIAM);
947 wr32(E1000_EIAM, regval | adapter->eims_enable_mask);
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700948 wr32(E1000_EIMS, adapter->eims_enable_mask);
Alexander Duyck4ae196d2009-02-19 20:40:07 -0800949 if (adapter->vfs_allocated_count)
950 wr32(E1000_MBVFIMR, 0xFF);
951 wr32(E1000_IMS, (E1000_IMS_LSC | E1000_IMS_VMMB |
952 E1000_IMS_DOUTSYNC));
PJ Waskiewicz844290e2008-06-27 11:00:39 -0700953 } else {
954 wr32(E1000_IMS, IMS_ENABLE_MASK);
955 wr32(E1000_IAM, IMS_ENABLE_MASK);
956 }
Auke Kok9d5c8242008-01-24 02:22:38 -0800957}
958
959static void igb_update_mng_vlan(struct igb_adapter *adapter)
960{
Alexander Duyck51466232009-10-27 23:47:35 +0000961 struct e1000_hw *hw = &adapter->hw;
Auke Kok9d5c8242008-01-24 02:22:38 -0800962 u16 vid = adapter->hw.mng_cookie.vlan_id;
963 u16 old_vid = adapter->mng_vlan_id;
Auke Kok9d5c8242008-01-24 02:22:38 -0800964
Alexander Duyck51466232009-10-27 23:47:35 +0000965 if (hw->mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN) {
966 /* add VID to filter table */
967 igb_vfta_set(hw, vid, true);
968 adapter->mng_vlan_id = vid;
969 } else {
970 adapter->mng_vlan_id = IGB_MNG_VLAN_NONE;
971 }
972
973 if ((old_vid != (u16)IGB_MNG_VLAN_NONE) &&
974 (vid != old_vid) &&
975 !vlan_group_get_device(adapter->vlgrp, old_vid)) {
976 /* remove VID from filter table */
977 igb_vfta_set(hw, old_vid, false);
Auke Kok9d5c8242008-01-24 02:22:38 -0800978 }
979}
980
981/**
982 * igb_release_hw_control - release control of the h/w to f/w
983 * @adapter: address of board private structure
984 *
985 * igb_release_hw_control resets CTRL_EXT:DRV_LOAD bit.
986 * For ASF and Pass Through versions of f/w this means that the
987 * driver is no longer loaded.
988 *
989 **/
990static void igb_release_hw_control(struct igb_adapter *adapter)
991{
992 struct e1000_hw *hw = &adapter->hw;
993 u32 ctrl_ext;
994
995 /* Let firmware take over control of h/w */
996 ctrl_ext = rd32(E1000_CTRL_EXT);
997 wr32(E1000_CTRL_EXT,
998 ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
999}
1000
1001
1002/**
1003 * igb_get_hw_control - get control of the h/w from f/w
1004 * @adapter: address of board private structure
1005 *
1006 * igb_get_hw_control sets CTRL_EXT:DRV_LOAD bit.
1007 * For ASF and Pass Through versions of f/w this means that
1008 * the driver is loaded.
1009 *
1010 **/
1011static void igb_get_hw_control(struct igb_adapter *adapter)
1012{
1013 struct e1000_hw *hw = &adapter->hw;
1014 u32 ctrl_ext;
1015
1016 /* Let firmware know the driver has taken over */
1017 ctrl_ext = rd32(E1000_CTRL_EXT);
1018 wr32(E1000_CTRL_EXT,
1019 ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
1020}
1021
Auke Kok9d5c8242008-01-24 02:22:38 -08001022/**
1023 * igb_configure - configure the hardware for RX and TX
1024 * @adapter: private board structure
1025 **/
1026static void igb_configure(struct igb_adapter *adapter)
1027{
1028 struct net_device *netdev = adapter->netdev;
1029 int i;
1030
1031 igb_get_hw_control(adapter);
Alexander Duyckff41f8d2009-09-03 14:48:56 +00001032 igb_set_rx_mode(netdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08001033
1034 igb_restore_vlan(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001035
Alexander Duyck85b430b2009-10-27 15:50:29 +00001036 igb_setup_tctl(adapter);
Alexander Duyck06cf2662009-10-27 15:53:25 +00001037 igb_setup_mrqc(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001038 igb_setup_rctl(adapter);
Alexander Duyck85b430b2009-10-27 15:50:29 +00001039
1040 igb_configure_tx(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001041 igb_configure_rx(adapter);
Alexander Duyck662d7202008-06-27 11:00:29 -07001042
1043 igb_rx_fifo_flush_82575(&adapter->hw);
1044
Alexander Duyckc493ea42009-03-20 00:16:50 +00001045 /* call igb_desc_unused which always leaves
Auke Kok9d5c8242008-01-24 02:22:38 -08001046 * at least 1 descriptor unused to make sure
1047 * next_to_use != next_to_clean */
1048 for (i = 0; i < adapter->num_rx_queues; i++) {
1049 struct igb_ring *ring = &adapter->rx_ring[i];
Alexander Duyckc493ea42009-03-20 00:16:50 +00001050 igb_alloc_rx_buffers_adv(ring, igb_desc_unused(ring));
Auke Kok9d5c8242008-01-24 02:22:38 -08001051 }
1052
1053
1054 adapter->tx_queue_len = netdev->tx_queue_len;
1055}
1056
1057
1058/**
1059 * igb_up - Open the interface and prepare it to handle traffic
1060 * @adapter: board private structure
1061 **/
1062
1063int igb_up(struct igb_adapter *adapter)
1064{
1065 struct e1000_hw *hw = &adapter->hw;
1066 int i;
1067
1068 /* hardware has been reset, we need to reload some things */
1069 igb_configure(adapter);
1070
1071 clear_bit(__IGB_DOWN, &adapter->state);
1072
Alexander Duyck047e0032009-10-27 15:49:27 +00001073 for (i = 0; i < adapter->num_q_vectors; i++) {
1074 struct igb_q_vector *q_vector = adapter->q_vector[i];
1075 napi_enable(&q_vector->napi);
1076 }
PJ Waskiewicz844290e2008-06-27 11:00:39 -07001077 if (adapter->msix_entries)
Auke Kok9d5c8242008-01-24 02:22:38 -08001078 igb_configure_msix(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001079
1080 /* Clear any pending interrupts. */
1081 rd32(E1000_ICR);
1082 igb_irq_enable(adapter);
1083
Alexander Duyckd4960302009-10-27 15:53:45 +00001084 /* notify VFs that reset has been completed */
1085 if (adapter->vfs_allocated_count) {
1086 u32 reg_data = rd32(E1000_CTRL_EXT);
1087 reg_data |= E1000_CTRL_EXT_PFRSTD;
1088 wr32(E1000_CTRL_EXT, reg_data);
1089 }
1090
Jesse Brandeburg4cb9be72009-04-21 18:42:05 +00001091 netif_tx_start_all_queues(adapter->netdev);
1092
Auke Kok9d5c8242008-01-24 02:22:38 -08001093 /* Fire a link change interrupt to start the watchdog. */
1094 wr32(E1000_ICS, E1000_ICS_LSC);
1095 return 0;
1096}
1097
1098void igb_down(struct igb_adapter *adapter)
1099{
1100 struct e1000_hw *hw = &adapter->hw;
1101 struct net_device *netdev = adapter->netdev;
1102 u32 tctl, rctl;
1103 int i;
1104
1105 /* signal that we're down so the interrupt handler does not
1106 * reschedule our watchdog timer */
1107 set_bit(__IGB_DOWN, &adapter->state);
1108
1109 /* disable receives in the hardware */
1110 rctl = rd32(E1000_RCTL);
1111 wr32(E1000_RCTL, rctl & ~E1000_RCTL_EN);
1112 /* flush and sleep below */
1113
David S. Millerfd2ea0a2008-07-17 01:56:23 -07001114 netif_tx_stop_all_queues(netdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08001115
1116 /* disable transmits in the hardware */
1117 tctl = rd32(E1000_TCTL);
1118 tctl &= ~E1000_TCTL_EN;
1119 wr32(E1000_TCTL, tctl);
1120 /* flush both disables and wait for them to finish */
1121 wrfl();
1122 msleep(10);
1123
Alexander Duyck047e0032009-10-27 15:49:27 +00001124 for (i = 0; i < adapter->num_q_vectors; i++) {
1125 struct igb_q_vector *q_vector = adapter->q_vector[i];
1126 napi_disable(&q_vector->napi);
1127 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001128
Auke Kok9d5c8242008-01-24 02:22:38 -08001129 igb_irq_disable(adapter);
1130
1131 del_timer_sync(&adapter->watchdog_timer);
1132 del_timer_sync(&adapter->phy_info_timer);
1133
1134 netdev->tx_queue_len = adapter->tx_queue_len;
1135 netif_carrier_off(netdev);
Alexander Duyck04fe6352009-02-06 23:22:32 +00001136
1137 /* record the stats before reset*/
1138 igb_update_stats(adapter);
1139
Auke Kok9d5c8242008-01-24 02:22:38 -08001140 adapter->link_speed = 0;
1141 adapter->link_duplex = 0;
1142
Jeff Kirsher30236822008-06-24 17:01:15 -07001143 if (!pci_channel_offline(adapter->pdev))
1144 igb_reset(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001145 igb_clean_all_tx_rings(adapter);
1146 igb_clean_all_rx_rings(adapter);
Alexander Duyck7e0e99e2009-05-21 13:06:56 +00001147#ifdef CONFIG_IGB_DCA
1148
1149 /* since we reset the hardware DCA settings were cleared */
1150 igb_setup_dca(adapter);
1151#endif
Auke Kok9d5c8242008-01-24 02:22:38 -08001152}
1153
1154void igb_reinit_locked(struct igb_adapter *adapter)
1155{
1156 WARN_ON(in_interrupt());
1157 while (test_and_set_bit(__IGB_RESETTING, &adapter->state))
1158 msleep(1);
1159 igb_down(adapter);
1160 igb_up(adapter);
1161 clear_bit(__IGB_RESETTING, &adapter->state);
1162}
1163
1164void igb_reset(struct igb_adapter *adapter)
1165{
1166 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck2d064c02008-07-08 15:10:12 -07001167 struct e1000_mac_info *mac = &hw->mac;
1168 struct e1000_fc_info *fc = &hw->fc;
Auke Kok9d5c8242008-01-24 02:22:38 -08001169 u32 pba = 0, tx_space, min_tx_space, min_rx_space;
1170 u16 hwm;
1171
1172 /* Repartition Pba for greater than 9k mtu
1173 * To take effect CTRL.RST is required.
1174 */
Alexander Duyckfa4dfae2009-02-06 23:21:31 +00001175 switch (mac->type) {
1176 case e1000_82576:
Alexander Duyckd249be52009-10-27 23:46:38 +00001177 pba = rd32(E1000_RXPBS);
1178 pba &= E1000_RXPBS_SIZE_MASK_82576;
Alexander Duyckfa4dfae2009-02-06 23:21:31 +00001179 break;
1180 case e1000_82575:
1181 default:
1182 pba = E1000_PBA_34K;
1183 break;
Alexander Duyck2d064c02008-07-08 15:10:12 -07001184 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001185
Alexander Duyck2d064c02008-07-08 15:10:12 -07001186 if ((adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) &&
1187 (mac->type < e1000_82576)) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001188 /* adjust PBA for jumbo frames */
1189 wr32(E1000_PBA, pba);
1190
1191 /* To maintain wire speed transmits, the Tx FIFO should be
1192 * large enough to accommodate two full transmit packets,
1193 * rounded up to the next 1KB and expressed in KB. Likewise,
1194 * the Rx FIFO should be large enough to accommodate at least
1195 * one full receive packet and is similarly rounded up and
1196 * expressed in KB. */
1197 pba = rd32(E1000_PBA);
1198 /* upper 16 bits has Tx packet buffer allocation size in KB */
1199 tx_space = pba >> 16;
1200 /* lower 16 bits has Rx packet buffer allocation size in KB */
1201 pba &= 0xffff;
1202 /* the tx fifo also stores 16 bytes of information about the tx
1203 * but don't include ethernet FCS because hardware appends it */
1204 min_tx_space = (adapter->max_frame_size +
Alexander Duyck85e8d002009-02-16 00:00:20 -08001205 sizeof(union e1000_adv_tx_desc) -
Auke Kok9d5c8242008-01-24 02:22:38 -08001206 ETH_FCS_LEN) * 2;
1207 min_tx_space = ALIGN(min_tx_space, 1024);
1208 min_tx_space >>= 10;
1209 /* software strips receive CRC, so leave room for it */
1210 min_rx_space = adapter->max_frame_size;
1211 min_rx_space = ALIGN(min_rx_space, 1024);
1212 min_rx_space >>= 10;
1213
1214 /* If current Tx allocation is less than the min Tx FIFO size,
1215 * and the min Tx FIFO size is less than the current Rx FIFO
1216 * allocation, take space away from current Rx allocation */
1217 if (tx_space < min_tx_space &&
1218 ((min_tx_space - tx_space) < pba)) {
1219 pba = pba - (min_tx_space - tx_space);
1220
1221 /* if short on rx space, rx wins and must trump tx
1222 * adjustment */
1223 if (pba < min_rx_space)
1224 pba = min_rx_space;
1225 }
Alexander Duyck2d064c02008-07-08 15:10:12 -07001226 wr32(E1000_PBA, pba);
Auke Kok9d5c8242008-01-24 02:22:38 -08001227 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001228
1229 /* flow control settings */
1230 /* The high water mark must be low enough to fit one full frame
1231 * (or the size used for early receive) above it in the Rx FIFO.
1232 * Set it to the lower of:
1233 * - 90% of the Rx FIFO size, or
1234 * - the full Rx FIFO size minus one full frame */
1235 hwm = min(((pba << 10) * 9 / 10),
Alexander Duyck2d064c02008-07-08 15:10:12 -07001236 ((pba << 10) - 2 * adapter->max_frame_size));
Auke Kok9d5c8242008-01-24 02:22:38 -08001237
Alexander Duyck2d064c02008-07-08 15:10:12 -07001238 if (mac->type < e1000_82576) {
1239 fc->high_water = hwm & 0xFFF8; /* 8-byte granularity */
1240 fc->low_water = fc->high_water - 8;
1241 } else {
1242 fc->high_water = hwm & 0xFFF0; /* 16-byte granularity */
1243 fc->low_water = fc->high_water - 16;
1244 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001245 fc->pause_time = 0xFFFF;
1246 fc->send_xon = 1;
Alexander Duyck0cce1192009-07-23 18:10:24 +00001247 fc->current_mode = fc->requested_mode;
Auke Kok9d5c8242008-01-24 02:22:38 -08001248
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001249 /* disable receive for all VFs and wait one second */
1250 if (adapter->vfs_allocated_count) {
1251 int i;
1252 for (i = 0 ; i < adapter->vfs_allocated_count; i++)
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00001253 adapter->vf_data[i].flags = 0;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001254
1255 /* ping all the active vfs to let them know we are going down */
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00001256 igb_ping_all_vfs(adapter);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08001257
1258 /* disable transmits and receives */
1259 wr32(E1000_VFRE, 0);
1260 wr32(E1000_VFTE, 0);
1261 }
1262
Auke Kok9d5c8242008-01-24 02:22:38 -08001263 /* Allow time for pending master requests to run */
1264 adapter->hw.mac.ops.reset_hw(&adapter->hw);
1265 wr32(E1000_WUC, 0);
1266
1267 if (adapter->hw.mac.ops.init_hw(&adapter->hw))
1268 dev_err(&adapter->pdev->dev, "Hardware Error\n");
1269
1270 igb_update_mng_vlan(adapter);
1271
1272 /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
1273 wr32(E1000_VET, ETHERNET_IEEE_VLAN_TYPE);
1274
1275 igb_reset_adaptive(&adapter->hw);
Alexander Duyckf5f4cf02008-11-21 21:30:24 -08001276 igb_get_phy_info(&adapter->hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001277}
1278
Stephen Hemminger2e5c6922008-11-19 22:20:44 -08001279static const struct net_device_ops igb_netdev_ops = {
1280 .ndo_open = igb_open,
1281 .ndo_stop = igb_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08001282 .ndo_start_xmit = igb_xmit_frame_adv,
Stephen Hemminger2e5c6922008-11-19 22:20:44 -08001283 .ndo_get_stats = igb_get_stats,
Alexander Duyckff41f8d2009-09-03 14:48:56 +00001284 .ndo_set_rx_mode = igb_set_rx_mode,
1285 .ndo_set_multicast_list = igb_set_rx_mode,
Stephen Hemminger2e5c6922008-11-19 22:20:44 -08001286 .ndo_set_mac_address = igb_set_mac,
1287 .ndo_change_mtu = igb_change_mtu,
1288 .ndo_do_ioctl = igb_ioctl,
1289 .ndo_tx_timeout = igb_tx_timeout,
1290 .ndo_validate_addr = eth_validate_addr,
1291 .ndo_vlan_rx_register = igb_vlan_rx_register,
1292 .ndo_vlan_rx_add_vid = igb_vlan_rx_add_vid,
1293 .ndo_vlan_rx_kill_vid = igb_vlan_rx_kill_vid,
1294#ifdef CONFIG_NET_POLL_CONTROLLER
1295 .ndo_poll_controller = igb_netpoll,
1296#endif
1297};
1298
Taku Izumi42bfd33a2008-06-20 12:10:30 +09001299/**
Auke Kok9d5c8242008-01-24 02:22:38 -08001300 * igb_probe - Device Initialization Routine
1301 * @pdev: PCI device information struct
1302 * @ent: entry in igb_pci_tbl
1303 *
1304 * Returns 0 on success, negative on failure
1305 *
1306 * igb_probe initializes an adapter identified by a pci_dev structure.
1307 * The OS initialization, configuring of the adapter private structure,
1308 * and a hardware reset occur.
1309 **/
1310static int __devinit igb_probe(struct pci_dev *pdev,
1311 const struct pci_device_id *ent)
1312{
1313 struct net_device *netdev;
1314 struct igb_adapter *adapter;
1315 struct e1000_hw *hw;
Alexander Duyck4337e992009-10-27 23:48:31 +00001316 u16 eeprom_data = 0;
1317 static int global_quad_port_a; /* global quad port a indication */
Auke Kok9d5c8242008-01-24 02:22:38 -08001318 const struct e1000_info *ei = igb_info_tbl[ent->driver_data];
1319 unsigned long mmio_start, mmio_len;
David S. Miller2d6a5e92009-03-17 15:01:30 -07001320 int err, pci_using_dac;
Auke Kok9d5c8242008-01-24 02:22:38 -08001321 u16 eeprom_apme_mask = IGB_EEPROM_APME;
1322 u32 part_num;
1323
Alexander Duyckaed5dec2009-02-06 23:16:04 +00001324 err = pci_enable_device_mem(pdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08001325 if (err)
1326 return err;
1327
1328 pci_using_dac = 0;
Yang Hongyang6a355282009-04-06 19:01:13 -07001329 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Auke Kok9d5c8242008-01-24 02:22:38 -08001330 if (!err) {
Yang Hongyang6a355282009-04-06 19:01:13 -07001331 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Auke Kok9d5c8242008-01-24 02:22:38 -08001332 if (!err)
1333 pci_using_dac = 1;
1334 } else {
Yang Hongyang284901a2009-04-06 19:01:15 -07001335 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Auke Kok9d5c8242008-01-24 02:22:38 -08001336 if (err) {
Yang Hongyang284901a2009-04-06 19:01:15 -07001337 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Auke Kok9d5c8242008-01-24 02:22:38 -08001338 if (err) {
1339 dev_err(&pdev->dev, "No usable DMA "
1340 "configuration, aborting\n");
1341 goto err_dma;
1342 }
1343 }
1344 }
1345
Alexander Duyckaed5dec2009-02-06 23:16:04 +00001346 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
1347 IORESOURCE_MEM),
1348 igb_driver_name);
Auke Kok9d5c8242008-01-24 02:22:38 -08001349 if (err)
1350 goto err_pci_reg;
1351
Frans Pop19d5afd2009-10-02 10:04:12 -07001352 pci_enable_pcie_error_reporting(pdev);
Alexander Duyck40a914f2008-11-27 00:24:37 -08001353
Auke Kok9d5c8242008-01-24 02:22:38 -08001354 pci_set_master(pdev);
Auke Kokc682fc22008-04-23 11:09:34 -07001355 pci_save_state(pdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08001356
1357 err = -ENOMEM;
Alexander Duyck1bfaf072009-02-19 20:39:23 -08001358 netdev = alloc_etherdev_mq(sizeof(struct igb_adapter),
1359 IGB_ABS_MAX_TX_QUEUES);
Auke Kok9d5c8242008-01-24 02:22:38 -08001360 if (!netdev)
1361 goto err_alloc_etherdev;
1362
1363 SET_NETDEV_DEV(netdev, &pdev->dev);
1364
1365 pci_set_drvdata(pdev, netdev);
1366 adapter = netdev_priv(netdev);
1367 adapter->netdev = netdev;
1368 adapter->pdev = pdev;
1369 hw = &adapter->hw;
1370 hw->back = adapter;
1371 adapter->msg_enable = NETIF_MSG_DRV | NETIF_MSG_PROBE;
1372
1373 mmio_start = pci_resource_start(pdev, 0);
1374 mmio_len = pci_resource_len(pdev, 0);
1375
1376 err = -EIO;
Alexander Duyck28b07592009-02-06 23:20:31 +00001377 hw->hw_addr = ioremap(mmio_start, mmio_len);
1378 if (!hw->hw_addr)
Auke Kok9d5c8242008-01-24 02:22:38 -08001379 goto err_ioremap;
1380
Stephen Hemminger2e5c6922008-11-19 22:20:44 -08001381 netdev->netdev_ops = &igb_netdev_ops;
Auke Kok9d5c8242008-01-24 02:22:38 -08001382 igb_set_ethtool_ops(netdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08001383 netdev->watchdog_timeo = 5 * HZ;
Auke Kok9d5c8242008-01-24 02:22:38 -08001384
1385 strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
1386
1387 netdev->mem_start = mmio_start;
1388 netdev->mem_end = mmio_start + mmio_len;
1389
Auke Kok9d5c8242008-01-24 02:22:38 -08001390 /* PCI config space info */
1391 hw->vendor_id = pdev->vendor;
1392 hw->device_id = pdev->device;
1393 hw->revision_id = pdev->revision;
1394 hw->subsystem_vendor_id = pdev->subsystem_vendor;
1395 hw->subsystem_device_id = pdev->subsystem_device;
1396
1397 /* setup the private structure */
1398 hw->back = adapter;
1399 /* Copy the default MAC, PHY and NVM function pointers */
1400 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops));
1401 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops));
1402 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops));
1403 /* Initialize skew-specific constants */
1404 err = ei->get_invariants(hw);
1405 if (err)
Alexander Duyck450c87c2009-02-06 23:22:11 +00001406 goto err_sw_init;
Auke Kok9d5c8242008-01-24 02:22:38 -08001407
Alexander Duyck450c87c2009-02-06 23:22:11 +00001408 /* setup the private structure */
Auke Kok9d5c8242008-01-24 02:22:38 -08001409 err = igb_sw_init(adapter);
1410 if (err)
1411 goto err_sw_init;
1412
1413 igb_get_bus_info_pcie(hw);
1414
1415 hw->phy.autoneg_wait_to_complete = false;
1416 hw->mac.adaptive_ifs = true;
1417
1418 /* Copper options */
1419 if (hw->phy.media_type == e1000_media_type_copper) {
1420 hw->phy.mdix = AUTO_ALL_MODES;
1421 hw->phy.disable_polarity_correction = false;
1422 hw->phy.ms_type = e1000_ms_hw_default;
1423 }
1424
1425 if (igb_check_reset_block(hw))
1426 dev_info(&pdev->dev,
1427 "PHY reset is blocked due to SOL/IDER session.\n");
1428
1429 netdev->features = NETIF_F_SG |
Alexander Duyck7d8eb292009-02-06 23:18:27 +00001430 NETIF_F_IP_CSUM |
Auke Kok9d5c8242008-01-24 02:22:38 -08001431 NETIF_F_HW_VLAN_TX |
1432 NETIF_F_HW_VLAN_RX |
1433 NETIF_F_HW_VLAN_FILTER;
1434
Alexander Duyck7d8eb292009-02-06 23:18:27 +00001435 netdev->features |= NETIF_F_IPV6_CSUM;
Auke Kok9d5c8242008-01-24 02:22:38 -08001436 netdev->features |= NETIF_F_TSO;
Auke Kok9d5c8242008-01-24 02:22:38 -08001437 netdev->features |= NETIF_F_TSO6;
Jeff Kirsher48f29ff2008-06-05 04:06:27 -07001438
Herbert Xu5c0999b2009-01-19 15:20:57 -08001439 netdev->features |= NETIF_F_GRO;
Alexander Duyckd3352522008-07-08 15:12:13 -07001440
Jeff Kirsher48f29ff2008-06-05 04:06:27 -07001441 netdev->vlan_features |= NETIF_F_TSO;
1442 netdev->vlan_features |= NETIF_F_TSO6;
Alexander Duyck7d8eb292009-02-06 23:18:27 +00001443 netdev->vlan_features |= NETIF_F_IP_CSUM;
Alexander Duyckcd1da502009-08-25 04:47:50 +00001444 netdev->vlan_features |= NETIF_F_IPV6_CSUM;
Jeff Kirsher48f29ff2008-06-05 04:06:27 -07001445 netdev->vlan_features |= NETIF_F_SG;
1446
Auke Kok9d5c8242008-01-24 02:22:38 -08001447 if (pci_using_dac)
1448 netdev->features |= NETIF_F_HIGHDMA;
1449
Jesse Brandeburgb9473562009-04-27 22:36:13 +00001450 if (adapter->hw.mac.type == e1000_82576)
1451 netdev->features |= NETIF_F_SCTP_CSUM;
1452
Auke Kok9d5c8242008-01-24 02:22:38 -08001453 adapter->en_mng_pt = igb_enable_mng_pass_thru(&adapter->hw);
1454
1455 /* before reading the NVM, reset the controller to put the device in a
1456 * known good starting state */
1457 hw->mac.ops.reset_hw(hw);
1458
1459 /* make sure the NVM is good */
1460 if (igb_validate_nvm_checksum(hw) < 0) {
1461 dev_err(&pdev->dev, "The NVM Checksum Is Not Valid\n");
1462 err = -EIO;
1463 goto err_eeprom;
1464 }
1465
1466 /* copy the MAC address out of the NVM */
1467 if (hw->mac.ops.read_mac_addr(hw))
1468 dev_err(&pdev->dev, "NVM Read Error\n");
1469
1470 memcpy(netdev->dev_addr, hw->mac.addr, netdev->addr_len);
1471 memcpy(netdev->perm_addr, hw->mac.addr, netdev->addr_len);
1472
1473 if (!is_valid_ether_addr(netdev->perm_addr)) {
1474 dev_err(&pdev->dev, "Invalid MAC Address\n");
1475 err = -EIO;
1476 goto err_eeprom;
1477 }
1478
Alexander Duyck0e340482009-03-20 00:17:08 +00001479 setup_timer(&adapter->watchdog_timer, &igb_watchdog,
1480 (unsigned long) adapter);
1481 setup_timer(&adapter->phy_info_timer, &igb_update_phy_info,
1482 (unsigned long) adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001483
1484 INIT_WORK(&adapter->reset_task, igb_reset_task);
1485 INIT_WORK(&adapter->watchdog_task, igb_watchdog_task);
1486
Alexander Duyck450c87c2009-02-06 23:22:11 +00001487 /* Initialize link properties that are user-changeable */
Auke Kok9d5c8242008-01-24 02:22:38 -08001488 adapter->fc_autoneg = true;
1489 hw->mac.autoneg = true;
1490 hw->phy.autoneg_advertised = 0x2f;
1491
Alexander Duyck0cce1192009-07-23 18:10:24 +00001492 hw->fc.requested_mode = e1000_fc_default;
1493 hw->fc.current_mode = e1000_fc_default;
Auke Kok9d5c8242008-01-24 02:22:38 -08001494
Auke Kok9d5c8242008-01-24 02:22:38 -08001495 igb_validate_mdi_setting(hw);
1496
Auke Kok9d5c8242008-01-24 02:22:38 -08001497 /* Initial Wake on LAN setting If APM wake is enabled in the EEPROM,
1498 * enable the ACPI Magic Packet filter
1499 */
1500
Alexander Duycka2cf8b62009-03-13 20:41:17 +00001501 if (hw->bus.func == 0)
Alexander Duyck312c75a2009-02-06 23:17:47 +00001502 hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
Alexander Duycka2cf8b62009-03-13 20:41:17 +00001503 else if (hw->bus.func == 1)
1504 hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
Auke Kok9d5c8242008-01-24 02:22:38 -08001505
1506 if (eeprom_data & eeprom_apme_mask)
1507 adapter->eeprom_wol |= E1000_WUFC_MAG;
1508
1509 /* now that we have the eeprom settings, apply the special cases where
1510 * the eeprom may be wrong or the board simply won't support wake on
1511 * lan on a particular port */
1512 switch (pdev->device) {
1513 case E1000_DEV_ID_82575GB_QUAD_COPPER:
1514 adapter->eeprom_wol = 0;
1515 break;
1516 case E1000_DEV_ID_82575EB_FIBER_SERDES:
Alexander Duyck2d064c02008-07-08 15:10:12 -07001517 case E1000_DEV_ID_82576_FIBER:
1518 case E1000_DEV_ID_82576_SERDES:
Auke Kok9d5c8242008-01-24 02:22:38 -08001519 /* Wake events only supported on port A for dual fiber
1520 * regardless of eeprom setting */
1521 if (rd32(E1000_STATUS) & E1000_STATUS_FUNC_1)
1522 adapter->eeprom_wol = 0;
1523 break;
Alexander Duyckc8ea5ea2009-03-13 20:42:35 +00001524 case E1000_DEV_ID_82576_QUAD_COPPER:
1525 /* if quad port adapter, disable WoL on all but port A */
1526 if (global_quad_port_a != 0)
1527 adapter->eeprom_wol = 0;
1528 else
1529 adapter->flags |= IGB_FLAG_QUAD_PORT_A;
1530 /* Reset for multiple quad port adapters */
1531 if (++global_quad_port_a == 4)
1532 global_quad_port_a = 0;
1533 break;
Auke Kok9d5c8242008-01-24 02:22:38 -08001534 }
1535
1536 /* initialize the wol settings based on the eeprom settings */
1537 adapter->wol = adapter->eeprom_wol;
\"Rafael J. Wysocki\e1b86d82008-11-07 20:30:37 +00001538 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
Auke Kok9d5c8242008-01-24 02:22:38 -08001539
1540 /* reset the hardware with the new settings */
1541 igb_reset(adapter);
1542
1543 /* let the f/w know that the h/w is now under the control of the
1544 * driver. */
1545 igb_get_hw_control(adapter);
1546
Auke Kok9d5c8242008-01-24 02:22:38 -08001547 strcpy(netdev->name, "eth%d");
1548 err = register_netdev(netdev);
1549 if (err)
1550 goto err_register;
1551
Jesse Brandeburgb168dfc2009-04-17 20:44:32 +00001552 /* carrier off reporting is important to ethtool even BEFORE open */
1553 netif_carrier_off(netdev);
1554
Jeff Kirsher421e02f2008-10-17 11:08:31 -07001555#ifdef CONFIG_IGB_DCA
Alexander Duyckbbd98fe2009-01-31 00:52:30 -08001556 if (dca_add_requester(&pdev->dev) == 0) {
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07001557 adapter->flags |= IGB_FLAG_DCA_ENABLED;
Jeb Cramerfe4506b2008-07-08 15:07:55 -07001558 dev_info(&pdev->dev, "DCA enabled\n");
Jeb Cramerfe4506b2008-07-08 15:07:55 -07001559 igb_setup_dca(adapter);
1560 }
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00001561
Jeb Cramerfe4506b2008-07-08 15:07:55 -07001562#endif
1563
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00001564 switch (hw->mac.type) {
1565 case e1000_82576:
1566 /*
1567 * Initialize hardware timer: we keep it running just in case
1568 * that some program needs it later on.
1569 */
1570 memset(&adapter->cycles, 0, sizeof(adapter->cycles));
1571 adapter->cycles.read = igb_read_clock;
1572 adapter->cycles.mask = CLOCKSOURCE_MASK(64);
1573 adapter->cycles.mult = 1;
1574 /**
1575 * Scale the NIC clock cycle by a large factor so that
1576 * relatively small clock corrections can be added or
1577 * substracted at each clock tick. The drawbacks of a large
1578 * factor are a) that the clock register overflows more quickly
1579 * (not such a big deal) and b) that the increment per tick has
1580 * to fit into 24 bits. As a result we need to use a shift of
1581 * 19 so we can fit a value of 16 into the TIMINCA register.
1582 */
1583 adapter->cycles.shift = IGB_82576_TSYNC_SHIFT;
1584 wr32(E1000_TIMINCA,
1585 (1 << E1000_TIMINCA_16NS_SHIFT) |
1586 (16 << IGB_82576_TSYNC_SHIFT));
Patrick Ohly38c845c2009-02-12 05:03:41 +00001587
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00001588 /* Set registers so that rollover occurs soon to test this. */
1589 wr32(E1000_SYSTIML, 0x00000000);
1590 wr32(E1000_SYSTIMH, 0xFF800000);
1591 wrfl();
Patrick Ohly33af6bc2009-02-12 05:03:43 +00001592
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00001593 timecounter_init(&adapter->clock,
1594 &adapter->cycles,
1595 ktime_to_ns(ktime_get_real()));
1596 /*
1597 * Synchronize our NIC clock against system wall clock. NIC
1598 * time stamp reading requires ~3us per sample, each sample
1599 * was pretty stable even under load => only require 10
1600 * samples for each offset comparison.
1601 */
1602 memset(&adapter->compare, 0, sizeof(adapter->compare));
1603 adapter->compare.source = &adapter->clock;
1604 adapter->compare.target = ktime_get_real;
1605 adapter->compare.num_samples = 10;
1606 timecompare_update(&adapter->compare, 0);
1607 break;
1608 case e1000_82575:
1609 /* 82575 does not support timesync */
1610 default:
1611 break;
Patrick Ohly38c845c2009-02-12 05:03:41 +00001612 }
Patrick Ohly38c845c2009-02-12 05:03:41 +00001613
Auke Kok9d5c8242008-01-24 02:22:38 -08001614 dev_info(&pdev->dev, "Intel(R) Gigabit Ethernet Network Connection\n");
1615 /* print bus type/speed/width info */
Johannes Berg7c510e42008-10-27 17:47:26 -07001616 dev_info(&pdev->dev, "%s: (PCIe:%s:%s) %pM\n",
Auke Kok9d5c8242008-01-24 02:22:38 -08001617 netdev->name,
1618 ((hw->bus.speed == e1000_bus_speed_2500)
1619 ? "2.5Gb/s" : "unknown"),
Alexander Duyck59c3de82009-03-31 20:38:00 +00001620 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" :
1621 (hw->bus.width == e1000_bus_width_pcie_x2) ? "Width x2" :
1622 (hw->bus.width == e1000_bus_width_pcie_x1) ? "Width x1" :
1623 "unknown"),
Johannes Berg7c510e42008-10-27 17:47:26 -07001624 netdev->dev_addr);
Auke Kok9d5c8242008-01-24 02:22:38 -08001625
1626 igb_read_part_num(hw, &part_num);
1627 dev_info(&pdev->dev, "%s: PBA No: %06x-%03x\n", netdev->name,
1628 (part_num >> 8), (part_num & 0xff));
1629
1630 dev_info(&pdev->dev,
1631 "Using %s interrupts. %d rx queue(s), %d tx queue(s)\n",
1632 adapter->msix_entries ? "MSI-X" :
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07001633 (adapter->flags & IGB_FLAG_HAS_MSI) ? "MSI" : "legacy",
Auke Kok9d5c8242008-01-24 02:22:38 -08001634 adapter->num_rx_queues, adapter->num_tx_queues);
1635
Auke Kok9d5c8242008-01-24 02:22:38 -08001636 return 0;
1637
1638err_register:
1639 igb_release_hw_control(adapter);
1640err_eeprom:
1641 if (!igb_check_reset_block(hw))
Alexander Duyckf5f4cf02008-11-21 21:30:24 -08001642 igb_reset_phy(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001643
1644 if (hw->flash_address)
1645 iounmap(hw->flash_address);
Auke Kok9d5c8242008-01-24 02:22:38 -08001646err_sw_init:
Alexander Duyck047e0032009-10-27 15:49:27 +00001647 igb_clear_interrupt_scheme(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001648 iounmap(hw->hw_addr);
1649err_ioremap:
1650 free_netdev(netdev);
1651err_alloc_etherdev:
Alexander Duyckaed5dec2009-02-06 23:16:04 +00001652 pci_release_selected_regions(pdev, pci_select_bars(pdev,
1653 IORESOURCE_MEM));
Auke Kok9d5c8242008-01-24 02:22:38 -08001654err_pci_reg:
1655err_dma:
1656 pci_disable_device(pdev);
1657 return err;
1658}
1659
1660/**
1661 * igb_remove - Device Removal Routine
1662 * @pdev: PCI device information struct
1663 *
1664 * igb_remove is called by the PCI subsystem to alert the driver
1665 * that it should release a PCI device. The could be caused by a
1666 * Hot-Plug event, or because the driver is going to be removed from
1667 * memory.
1668 **/
1669static void __devexit igb_remove(struct pci_dev *pdev)
1670{
1671 struct net_device *netdev = pci_get_drvdata(pdev);
1672 struct igb_adapter *adapter = netdev_priv(netdev);
Jeb Cramerfe4506b2008-07-08 15:07:55 -07001673 struct e1000_hw *hw = &adapter->hw;
Auke Kok9d5c8242008-01-24 02:22:38 -08001674
1675 /* flush_scheduled work may reschedule our watchdog task, so
1676 * explicitly disable watchdog tasks from being rescheduled */
1677 set_bit(__IGB_DOWN, &adapter->state);
1678 del_timer_sync(&adapter->watchdog_timer);
1679 del_timer_sync(&adapter->phy_info_timer);
1680
1681 flush_scheduled_work();
1682
Jeff Kirsher421e02f2008-10-17 11:08:31 -07001683#ifdef CONFIG_IGB_DCA
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07001684 if (adapter->flags & IGB_FLAG_DCA_ENABLED) {
Jeb Cramerfe4506b2008-07-08 15:07:55 -07001685 dev_info(&pdev->dev, "DCA disabled\n");
1686 dca_remove_requester(&pdev->dev);
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07001687 adapter->flags &= ~IGB_FLAG_DCA_ENABLED;
Alexander Duyckcbd347a2009-02-15 23:59:44 -08001688 wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_DISABLE);
Jeb Cramerfe4506b2008-07-08 15:07:55 -07001689 }
1690#endif
1691
Auke Kok9d5c8242008-01-24 02:22:38 -08001692 /* Release control of h/w to f/w. If f/w is AMT enabled, this
1693 * would have already happened in close and is redundant. */
1694 igb_release_hw_control(adapter);
1695
1696 unregister_netdev(netdev);
1697
Alexander Duyckf5f4cf02008-11-21 21:30:24 -08001698 if (!igb_check_reset_block(&adapter->hw))
1699 igb_reset_phy(&adapter->hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08001700
Alexander Duyck047e0032009-10-27 15:49:27 +00001701 igb_clear_interrupt_scheme(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08001702
Alexander Duyck37680112009-02-19 20:40:30 -08001703#ifdef CONFIG_PCI_IOV
1704 /* reclaim resources allocated to VFs */
1705 if (adapter->vf_data) {
1706 /* disable iov and allow time for transactions to clear */
1707 pci_disable_sriov(pdev);
1708 msleep(500);
1709
1710 kfree(adapter->vf_data);
1711 adapter->vf_data = NULL;
1712 wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ);
1713 msleep(100);
1714 dev_info(&pdev->dev, "IOV Disabled\n");
1715 }
1716#endif
Alexander Duyck28b07592009-02-06 23:20:31 +00001717 iounmap(hw->hw_addr);
1718 if (hw->flash_address)
1719 iounmap(hw->flash_address);
Alexander Duyckaed5dec2009-02-06 23:16:04 +00001720 pci_release_selected_regions(pdev, pci_select_bars(pdev,
1721 IORESOURCE_MEM));
Auke Kok9d5c8242008-01-24 02:22:38 -08001722
1723 free_netdev(netdev);
1724
Frans Pop19d5afd2009-10-02 10:04:12 -07001725 pci_disable_pcie_error_reporting(pdev);
Alexander Duyck40a914f2008-11-27 00:24:37 -08001726
Auke Kok9d5c8242008-01-24 02:22:38 -08001727 pci_disable_device(pdev);
1728}
1729
1730/**
Alexander Duycka6b623e2009-10-27 23:47:53 +00001731 * igb_probe_vfs - Initialize vf data storage and add VFs to pci config space
1732 * @adapter: board private structure to initialize
1733 *
1734 * This function initializes the vf specific data storage and then attempts to
1735 * allocate the VFs. The reason for ordering it this way is because it is much
1736 * mor expensive time wise to disable SR-IOV than it is to allocate and free
1737 * the memory for the VFs.
1738 **/
1739static void __devinit igb_probe_vfs(struct igb_adapter * adapter)
1740{
1741#ifdef CONFIG_PCI_IOV
1742 struct pci_dev *pdev = adapter->pdev;
1743
1744 if (adapter->vfs_allocated_count > 7)
1745 adapter->vfs_allocated_count = 7;
1746
1747 if (adapter->vfs_allocated_count) {
1748 adapter->vf_data = kcalloc(adapter->vfs_allocated_count,
1749 sizeof(struct vf_data_storage),
1750 GFP_KERNEL);
1751 /* if allocation failed then we do not support SR-IOV */
1752 if (!adapter->vf_data) {
1753 adapter->vfs_allocated_count = 0;
1754 dev_err(&pdev->dev, "Unable to allocate memory for VF "
1755 "Data Storage\n");
1756 }
1757 }
1758
1759 if (pci_enable_sriov(pdev, adapter->vfs_allocated_count)) {
1760 kfree(adapter->vf_data);
1761 adapter->vf_data = NULL;
1762#endif /* CONFIG_PCI_IOV */
1763 adapter->vfs_allocated_count = 0;
1764#ifdef CONFIG_PCI_IOV
1765 } else {
1766 unsigned char mac_addr[ETH_ALEN];
1767 int i;
1768 dev_info(&pdev->dev, "%d vfs allocated\n",
1769 adapter->vfs_allocated_count);
1770 for (i = 0; i < adapter->vfs_allocated_count; i++) {
1771 random_ether_addr(mac_addr);
1772 igb_set_vf_mac(adapter, i, mac_addr);
1773 }
1774 }
1775#endif /* CONFIG_PCI_IOV */
1776}
1777
1778/**
Auke Kok9d5c8242008-01-24 02:22:38 -08001779 * igb_sw_init - Initialize general software structures (struct igb_adapter)
1780 * @adapter: board private structure to initialize
1781 *
1782 * igb_sw_init initializes the Adapter private data structure.
1783 * Fields are initialized based on PCI device information and
1784 * OS network device settings (MTU size).
1785 **/
1786static int __devinit igb_sw_init(struct igb_adapter *adapter)
1787{
1788 struct e1000_hw *hw = &adapter->hw;
1789 struct net_device *netdev = adapter->netdev;
1790 struct pci_dev *pdev = adapter->pdev;
1791
1792 pci_read_config_word(pdev, PCI_COMMAND, &hw->bus.pci_cmd_word);
1793
Alexander Duyck68fd9912008-11-20 00:48:10 -08001794 adapter->tx_ring_count = IGB_DEFAULT_TXD;
1795 adapter->rx_ring_count = IGB_DEFAULT_RXD;
Alexander Duyck4fc82ad2009-10-27 23:45:42 +00001796 adapter->rx_itr_setting = IGB_DEFAULT_ITR;
1797 adapter->tx_itr_setting = IGB_DEFAULT_ITR;
1798
Auke Kok9d5c8242008-01-24 02:22:38 -08001799 adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;
1800 adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN;
1801
Alexander Duycka6b623e2009-10-27 23:47:53 +00001802#ifdef CONFIG_PCI_IOV
1803 if (hw->mac.type == e1000_82576)
1804 adapter->vfs_allocated_count = max_vfs;
1805
1806#endif /* CONFIG_PCI_IOV */
1807 /* This call may decrease the number of queues */
Alexander Duyck047e0032009-10-27 15:49:27 +00001808 if (igb_init_interrupt_scheme(adapter)) {
Auke Kok9d5c8242008-01-24 02:22:38 -08001809 dev_err(&pdev->dev, "Unable to allocate memory for queues\n");
1810 return -ENOMEM;
1811 }
1812
Alexander Duycka6b623e2009-10-27 23:47:53 +00001813 igb_probe_vfs(adapter);
1814
Auke Kok9d5c8242008-01-24 02:22:38 -08001815 /* Explicitly disable IRQ since the NIC can be in any state. */
1816 igb_irq_disable(adapter);
1817
1818 set_bit(__IGB_DOWN, &adapter->state);
1819 return 0;
1820}
1821
1822/**
1823 * igb_open - Called when a network interface is made active
1824 * @netdev: network interface device structure
1825 *
1826 * Returns 0 on success, negative value on failure
1827 *
1828 * The open entry point is called when a network interface is made
1829 * active by the system (IFF_UP). At this point all resources needed
1830 * for transmit and receive operations are allocated, the interrupt
1831 * handler is registered with the OS, the watchdog timer is started,
1832 * and the stack is notified that the interface is ready.
1833 **/
1834static int igb_open(struct net_device *netdev)
1835{
1836 struct igb_adapter *adapter = netdev_priv(netdev);
1837 struct e1000_hw *hw = &adapter->hw;
1838 int err;
1839 int i;
1840
1841 /* disallow open during test */
1842 if (test_bit(__IGB_TESTING, &adapter->state))
1843 return -EBUSY;
1844
Jesse Brandeburgb168dfc2009-04-17 20:44:32 +00001845 netif_carrier_off(netdev);
1846
Auke Kok9d5c8242008-01-24 02:22:38 -08001847 /* allocate transmit descriptors */
1848 err = igb_setup_all_tx_resources(adapter);
1849 if (err)
1850 goto err_setup_tx;
1851
1852 /* allocate receive descriptors */
1853 err = igb_setup_all_rx_resources(adapter);
1854 if (err)
1855 goto err_setup_rx;
1856
1857 /* e1000_power_up_phy(adapter); */
1858
Auke Kok9d5c8242008-01-24 02:22:38 -08001859 /* before we allocate an interrupt, we must be ready to handle it.
1860 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
1861 * as soon as we call pci_request_irq, so we have to setup our
1862 * clean_rx handler before we do so. */
1863 igb_configure(adapter);
1864
1865 err = igb_request_irq(adapter);
1866 if (err)
1867 goto err_req_irq;
1868
1869 /* From here on the code is the same as igb_up() */
1870 clear_bit(__IGB_DOWN, &adapter->state);
1871
Alexander Duyck047e0032009-10-27 15:49:27 +00001872 for (i = 0; i < adapter->num_q_vectors; i++) {
1873 struct igb_q_vector *q_vector = adapter->q_vector[i];
1874 napi_enable(&q_vector->napi);
1875 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001876
1877 /* Clear any pending interrupts. */
1878 rd32(E1000_ICR);
PJ Waskiewicz844290e2008-06-27 11:00:39 -07001879
1880 igb_irq_enable(adapter);
1881
Alexander Duyckd4960302009-10-27 15:53:45 +00001882 /* notify VFs that reset has been completed */
1883 if (adapter->vfs_allocated_count) {
1884 u32 reg_data = rd32(E1000_CTRL_EXT);
1885 reg_data |= E1000_CTRL_EXT_PFRSTD;
1886 wr32(E1000_CTRL_EXT, reg_data);
1887 }
1888
Jeff Kirsherd55b53f2008-07-18 04:33:03 -07001889 netif_tx_start_all_queues(netdev);
1890
Auke Kok9d5c8242008-01-24 02:22:38 -08001891 /* Fire a link status change interrupt to start the watchdog. */
1892 wr32(E1000_ICS, E1000_ICS_LSC);
1893
1894 return 0;
1895
1896err_req_irq:
1897 igb_release_hw_control(adapter);
1898 /* e1000_power_down_phy(adapter); */
1899 igb_free_all_rx_resources(adapter);
1900err_setup_rx:
1901 igb_free_all_tx_resources(adapter);
1902err_setup_tx:
1903 igb_reset(adapter);
1904
1905 return err;
1906}
1907
1908/**
1909 * igb_close - Disables a network interface
1910 * @netdev: network interface device structure
1911 *
1912 * Returns 0, this is not allowed to fail
1913 *
1914 * The close entry point is called when an interface is de-activated
1915 * by the OS. The hardware is still under the driver's control, but
1916 * needs to be disabled. A global MAC reset is issued to stop the
1917 * hardware, and all transmit and receive resources are freed.
1918 **/
1919static int igb_close(struct net_device *netdev)
1920{
1921 struct igb_adapter *adapter = netdev_priv(netdev);
1922
1923 WARN_ON(test_bit(__IGB_RESETTING, &adapter->state));
1924 igb_down(adapter);
1925
1926 igb_free_irq(adapter);
1927
1928 igb_free_all_tx_resources(adapter);
1929 igb_free_all_rx_resources(adapter);
1930
Auke Kok9d5c8242008-01-24 02:22:38 -08001931 return 0;
1932}
1933
1934/**
1935 * igb_setup_tx_resources - allocate Tx resources (Descriptors)
Auke Kok9d5c8242008-01-24 02:22:38 -08001936 * @tx_ring: tx descriptor ring (for a specific queue) to setup
1937 *
1938 * Return 0 on success, negative on failure
1939 **/
Alexander Duyck80785292009-10-27 15:51:47 +00001940int igb_setup_tx_resources(struct igb_ring *tx_ring)
Auke Kok9d5c8242008-01-24 02:22:38 -08001941{
Alexander Duyck80785292009-10-27 15:51:47 +00001942 struct pci_dev *pdev = tx_ring->pdev;
Auke Kok9d5c8242008-01-24 02:22:38 -08001943 int size;
1944
1945 size = sizeof(struct igb_buffer) * tx_ring->count;
1946 tx_ring->buffer_info = vmalloc(size);
1947 if (!tx_ring->buffer_info)
1948 goto err;
1949 memset(tx_ring->buffer_info, 0, size);
1950
1951 /* round up to nearest 4K */
Alexander Duyck85e8d002009-02-16 00:00:20 -08001952 tx_ring->size = tx_ring->count * sizeof(union e1000_adv_tx_desc);
Auke Kok9d5c8242008-01-24 02:22:38 -08001953 tx_ring->size = ALIGN(tx_ring->size, 4096);
1954
1955 tx_ring->desc = pci_alloc_consistent(pdev, tx_ring->size,
1956 &tx_ring->dma);
1957
1958 if (!tx_ring->desc)
1959 goto err;
1960
Auke Kok9d5c8242008-01-24 02:22:38 -08001961 tx_ring->next_to_use = 0;
1962 tx_ring->next_to_clean = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08001963 return 0;
1964
1965err:
1966 vfree(tx_ring->buffer_info);
Alexander Duyck047e0032009-10-27 15:49:27 +00001967 dev_err(&pdev->dev,
Auke Kok9d5c8242008-01-24 02:22:38 -08001968 "Unable to allocate memory for the transmit descriptor ring\n");
1969 return -ENOMEM;
1970}
1971
1972/**
1973 * igb_setup_all_tx_resources - wrapper to allocate Tx resources
1974 * (Descriptors) for all queues
1975 * @adapter: board private structure
1976 *
1977 * Return 0 on success, negative on failure
1978 **/
1979static int igb_setup_all_tx_resources(struct igb_adapter *adapter)
1980{
1981 int i, err = 0;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07001982 int r_idx;
Auke Kok9d5c8242008-01-24 02:22:38 -08001983
1984 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyck80785292009-10-27 15:51:47 +00001985 err = igb_setup_tx_resources(&adapter->tx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08001986 if (err) {
1987 dev_err(&adapter->pdev->dev,
1988 "Allocation for Tx Queue %u failed\n", i);
1989 for (i--; i >= 0; i--)
Mitch Williams3b644cf2008-06-27 10:59:48 -07001990 igb_free_tx_resources(&adapter->tx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08001991 break;
1992 }
1993 }
1994
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07001995 for (i = 0; i < IGB_MAX_TX_QUEUES; i++) {
1996 r_idx = i % adapter->num_tx_queues;
1997 adapter->multi_tx_table[i] = &adapter->tx_ring[r_idx];
Alexander Duyckeebbbdb2009-02-06 23:19:29 +00001998 }
Auke Kok9d5c8242008-01-24 02:22:38 -08001999 return err;
2000}
2001
2002/**
Alexander Duyck85b430b2009-10-27 15:50:29 +00002003 * igb_setup_tctl - configure the transmit control registers
2004 * @adapter: Board private structure
Auke Kok9d5c8242008-01-24 02:22:38 -08002005 **/
Alexander Duyckd7ee5b32009-10-27 15:54:23 +00002006void igb_setup_tctl(struct igb_adapter *adapter)
Auke Kok9d5c8242008-01-24 02:22:38 -08002007{
Auke Kok9d5c8242008-01-24 02:22:38 -08002008 struct e1000_hw *hw = &adapter->hw;
2009 u32 tctl;
Auke Kok9d5c8242008-01-24 02:22:38 -08002010
Alexander Duyck85b430b2009-10-27 15:50:29 +00002011 /* disable queue 0 which is enabled by default on 82575 and 82576 */
2012 wr32(E1000_TXDCTL(0), 0);
Auke Kok9d5c8242008-01-24 02:22:38 -08002013
2014 /* Program the Transmit Control Register */
Auke Kok9d5c8242008-01-24 02:22:38 -08002015 tctl = rd32(E1000_TCTL);
2016 tctl &= ~E1000_TCTL_CT;
2017 tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
2018 (E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
2019
2020 igb_config_collision_dist(hw);
2021
Auke Kok9d5c8242008-01-24 02:22:38 -08002022 /* Enable transmits */
2023 tctl |= E1000_TCTL_EN;
2024
2025 wr32(E1000_TCTL, tctl);
2026}
2027
2028/**
Alexander Duyck85b430b2009-10-27 15:50:29 +00002029 * igb_configure_tx_ring - Configure transmit ring after Reset
2030 * @adapter: board private structure
2031 * @ring: tx ring to configure
2032 *
2033 * Configure a transmit ring after a reset.
2034 **/
Alexander Duyckd7ee5b32009-10-27 15:54:23 +00002035void igb_configure_tx_ring(struct igb_adapter *adapter,
2036 struct igb_ring *ring)
Alexander Duyck85b430b2009-10-27 15:50:29 +00002037{
2038 struct e1000_hw *hw = &adapter->hw;
2039 u32 txdctl;
2040 u64 tdba = ring->dma;
2041 int reg_idx = ring->reg_idx;
2042
2043 /* disable the queue */
2044 txdctl = rd32(E1000_TXDCTL(reg_idx));
2045 wr32(E1000_TXDCTL(reg_idx),
2046 txdctl & ~E1000_TXDCTL_QUEUE_ENABLE);
2047 wrfl();
2048 mdelay(10);
2049
2050 wr32(E1000_TDLEN(reg_idx),
2051 ring->count * sizeof(union e1000_adv_tx_desc));
2052 wr32(E1000_TDBAL(reg_idx),
2053 tdba & 0x00000000ffffffffULL);
2054 wr32(E1000_TDBAH(reg_idx), tdba >> 32);
2055
Alexander Duyckfce99e32009-10-27 15:51:27 +00002056 ring->head = hw->hw_addr + E1000_TDH(reg_idx);
2057 ring->tail = hw->hw_addr + E1000_TDT(reg_idx);
2058 writel(0, ring->head);
2059 writel(0, ring->tail);
Alexander Duyck85b430b2009-10-27 15:50:29 +00002060
2061 txdctl |= IGB_TX_PTHRESH;
2062 txdctl |= IGB_TX_HTHRESH << 8;
2063 txdctl |= IGB_TX_WTHRESH << 16;
2064
2065 txdctl |= E1000_TXDCTL_QUEUE_ENABLE;
2066 wr32(E1000_TXDCTL(reg_idx), txdctl);
2067}
2068
2069/**
2070 * igb_configure_tx - Configure transmit Unit after Reset
2071 * @adapter: board private structure
2072 *
2073 * Configure the Tx unit of the MAC after a reset.
2074 **/
2075static void igb_configure_tx(struct igb_adapter *adapter)
2076{
2077 int i;
2078
2079 for (i = 0; i < adapter->num_tx_queues; i++)
2080 igb_configure_tx_ring(adapter, &adapter->tx_ring[i]);
Alexander Duyck85b430b2009-10-27 15:50:29 +00002081}
2082
2083/**
Auke Kok9d5c8242008-01-24 02:22:38 -08002084 * igb_setup_rx_resources - allocate Rx resources (Descriptors)
Auke Kok9d5c8242008-01-24 02:22:38 -08002085 * @rx_ring: rx descriptor ring (for a specific queue) to setup
2086 *
2087 * Returns 0 on success, negative on failure
2088 **/
Alexander Duyck80785292009-10-27 15:51:47 +00002089int igb_setup_rx_resources(struct igb_ring *rx_ring)
Auke Kok9d5c8242008-01-24 02:22:38 -08002090{
Alexander Duyck80785292009-10-27 15:51:47 +00002091 struct pci_dev *pdev = rx_ring->pdev;
Auke Kok9d5c8242008-01-24 02:22:38 -08002092 int size, desc_len;
2093
2094 size = sizeof(struct igb_buffer) * rx_ring->count;
2095 rx_ring->buffer_info = vmalloc(size);
2096 if (!rx_ring->buffer_info)
2097 goto err;
2098 memset(rx_ring->buffer_info, 0, size);
2099
2100 desc_len = sizeof(union e1000_adv_rx_desc);
2101
2102 /* Round up to nearest 4K */
2103 rx_ring->size = rx_ring->count * desc_len;
2104 rx_ring->size = ALIGN(rx_ring->size, 4096);
2105
2106 rx_ring->desc = pci_alloc_consistent(pdev, rx_ring->size,
2107 &rx_ring->dma);
2108
2109 if (!rx_ring->desc)
2110 goto err;
2111
2112 rx_ring->next_to_clean = 0;
2113 rx_ring->next_to_use = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08002114
Auke Kok9d5c8242008-01-24 02:22:38 -08002115 return 0;
2116
2117err:
2118 vfree(rx_ring->buffer_info);
Alexander Duyck80785292009-10-27 15:51:47 +00002119 dev_err(&pdev->dev, "Unable to allocate memory for "
Auke Kok9d5c8242008-01-24 02:22:38 -08002120 "the receive descriptor ring\n");
2121 return -ENOMEM;
2122}
2123
2124/**
2125 * igb_setup_all_rx_resources - wrapper to allocate Rx resources
2126 * (Descriptors) for all queues
2127 * @adapter: board private structure
2128 *
2129 * Return 0 on success, negative on failure
2130 **/
2131static int igb_setup_all_rx_resources(struct igb_adapter *adapter)
2132{
2133 int i, err = 0;
2134
2135 for (i = 0; i < adapter->num_rx_queues; i++) {
Alexander Duyck80785292009-10-27 15:51:47 +00002136 err = igb_setup_rx_resources(&adapter->rx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08002137 if (err) {
2138 dev_err(&adapter->pdev->dev,
2139 "Allocation for Rx Queue %u failed\n", i);
2140 for (i--; i >= 0; i--)
Mitch Williams3b644cf2008-06-27 10:59:48 -07002141 igb_free_rx_resources(&adapter->rx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08002142 break;
2143 }
2144 }
2145
2146 return err;
2147}
2148
2149/**
Alexander Duyck06cf2662009-10-27 15:53:25 +00002150 * igb_setup_mrqc - configure the multiple receive queue control registers
2151 * @adapter: Board private structure
2152 **/
2153static void igb_setup_mrqc(struct igb_adapter *adapter)
2154{
2155 struct e1000_hw *hw = &adapter->hw;
2156 u32 mrqc, rxcsum;
2157 u32 j, num_rx_queues, shift = 0, shift2 = 0;
2158 union e1000_reta {
2159 u32 dword;
2160 u8 bytes[4];
2161 } reta;
2162 static const u8 rsshash[40] = {
2163 0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2, 0x41, 0x67,
2164 0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0, 0xd0, 0xca, 0x2b, 0xcb,
2165 0xae, 0x7b, 0x30, 0xb4, 0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30,
2166 0xf2, 0x0c, 0x6a, 0x42, 0xb7, 0x3b, 0xbe, 0xac, 0x01, 0xfa };
2167
2168 /* Fill out hash function seeds */
2169 for (j = 0; j < 10; j++) {
2170 u32 rsskey = rsshash[(j * 4)];
2171 rsskey |= rsshash[(j * 4) + 1] << 8;
2172 rsskey |= rsshash[(j * 4) + 2] << 16;
2173 rsskey |= rsshash[(j * 4) + 3] << 24;
2174 array_wr32(E1000_RSSRK(0), j, rsskey);
2175 }
2176
2177 num_rx_queues = adapter->num_rx_queues;
2178
2179 if (adapter->vfs_allocated_count) {
2180 /* 82575 and 82576 supports 2 RSS queues for VMDq */
2181 switch (hw->mac.type) {
2182 case e1000_82576:
2183 shift = 3;
2184 num_rx_queues = 2;
2185 break;
2186 case e1000_82575:
2187 shift = 2;
2188 shift2 = 6;
2189 default:
2190 break;
2191 }
2192 } else {
2193 if (hw->mac.type == e1000_82575)
2194 shift = 6;
2195 }
2196
2197 for (j = 0; j < (32 * 4); j++) {
2198 reta.bytes[j & 3] = (j % num_rx_queues) << shift;
2199 if (shift2)
2200 reta.bytes[j & 3] |= num_rx_queues << shift2;
2201 if ((j & 3) == 3)
2202 wr32(E1000_RETA(j >> 2), reta.dword);
2203 }
2204
2205 /*
2206 * Disable raw packet checksumming so that RSS hash is placed in
2207 * descriptor on writeback. No need to enable TCP/UDP/IP checksum
2208 * offloads as they are enabled by default
2209 */
2210 rxcsum = rd32(E1000_RXCSUM);
2211 rxcsum |= E1000_RXCSUM_PCSD;
2212
2213 if (adapter->hw.mac.type >= e1000_82576)
2214 /* Enable Receive Checksum Offload for SCTP */
2215 rxcsum |= E1000_RXCSUM_CRCOFL;
2216
2217 /* Don't need to set TUOFL or IPOFL, they default to 1 */
2218 wr32(E1000_RXCSUM, rxcsum);
2219
2220 /* If VMDq is enabled then we set the appropriate mode for that, else
2221 * we default to RSS so that an RSS hash is calculated per packet even
2222 * if we are only using one queue */
2223 if (adapter->vfs_allocated_count) {
2224 if (hw->mac.type > e1000_82575) {
2225 /* Set the default pool for the PF's first queue */
2226 u32 vtctl = rd32(E1000_VT_CTL);
2227 vtctl &= ~(E1000_VT_CTL_DEFAULT_POOL_MASK |
2228 E1000_VT_CTL_DISABLE_DEF_POOL);
2229 vtctl |= adapter->vfs_allocated_count <<
2230 E1000_VT_CTL_DEFAULT_POOL_SHIFT;
2231 wr32(E1000_VT_CTL, vtctl);
2232 }
2233 if (adapter->num_rx_queues > 1)
2234 mrqc = E1000_MRQC_ENABLE_VMDQ_RSS_2Q;
2235 else
2236 mrqc = E1000_MRQC_ENABLE_VMDQ;
2237 } else {
2238 mrqc = E1000_MRQC_ENABLE_RSS_4Q;
2239 }
2240 igb_vmm_control(adapter);
2241
2242 mrqc |= (E1000_MRQC_RSS_FIELD_IPV4 |
2243 E1000_MRQC_RSS_FIELD_IPV4_TCP);
2244 mrqc |= (E1000_MRQC_RSS_FIELD_IPV6 |
2245 E1000_MRQC_RSS_FIELD_IPV6_TCP);
2246 mrqc |= (E1000_MRQC_RSS_FIELD_IPV4_UDP |
2247 E1000_MRQC_RSS_FIELD_IPV6_UDP);
2248 mrqc |= (E1000_MRQC_RSS_FIELD_IPV6_UDP_EX |
2249 E1000_MRQC_RSS_FIELD_IPV6_TCP_EX);
2250
2251 wr32(E1000_MRQC, mrqc);
2252}
2253
2254/**
Auke Kok9d5c8242008-01-24 02:22:38 -08002255 * igb_setup_rctl - configure the receive control registers
2256 * @adapter: Board private structure
2257 **/
Alexander Duyckd7ee5b32009-10-27 15:54:23 +00002258void igb_setup_rctl(struct igb_adapter *adapter)
Auke Kok9d5c8242008-01-24 02:22:38 -08002259{
2260 struct e1000_hw *hw = &adapter->hw;
2261 u32 rctl;
Auke Kok9d5c8242008-01-24 02:22:38 -08002262
2263 rctl = rd32(E1000_RCTL);
2264
2265 rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
Alexander Duyck69d728b2008-11-25 01:04:03 -08002266 rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC);
Auke Kok9d5c8242008-01-24 02:22:38 -08002267
Alexander Duyck69d728b2008-11-25 01:04:03 -08002268 rctl |= E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_RDMTS_HALF |
Alexander Duyck28b07592009-02-06 23:20:31 +00002269 (hw->mac.mc_filter_type << E1000_RCTL_MO_SHIFT);
Auke Kok9d5c8242008-01-24 02:22:38 -08002270
Auke Kok87cb7e82008-07-08 15:08:29 -07002271 /*
2272 * enable stripping of CRC. It's unlikely this will break BMC
2273 * redirection as it did with e1000. Newer features require
2274 * that the HW strips the CRC.
Alexander Duyck73cd78f2009-02-12 18:16:59 +00002275 */
Auke Kok87cb7e82008-07-08 15:08:29 -07002276 rctl |= E1000_RCTL_SECRC;
Auke Kok9d5c8242008-01-24 02:22:38 -08002277
Alexander Duyck9b07f3d32008-11-25 01:03:26 -08002278 /*
Alexander Duyckec54d7d2009-01-31 00:52:57 -08002279 * disable store bad packets and clear size bits.
Alexander Duyck9b07f3d32008-11-25 01:03:26 -08002280 */
Alexander Duyckec54d7d2009-01-31 00:52:57 -08002281 rctl &= ~(E1000_RCTL_SBP | E1000_RCTL_SZ_256);
Auke Kok9d5c8242008-01-24 02:22:38 -08002282
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00002283 /* enable LPE to prevent packets larger than max_frame_size */
2284 rctl |= E1000_RCTL_LPE;
Auke Kok9d5c8242008-01-24 02:22:38 -08002285
Alexander Duyck952f72a2009-10-27 15:51:07 +00002286 /* disable queue 0 to prevent tail write w/o re-config */
2287 wr32(E1000_RXDCTL(0), 0);
Auke Kok9d5c8242008-01-24 02:22:38 -08002288
Alexander Duycke1739522009-02-19 20:39:44 -08002289 /* Attention!!! For SR-IOV PF driver operations you must enable
2290 * queue drop for all VF and PF queues to prevent head of line blocking
2291 * if an un-trusted VF does not provide descriptors to hardware.
2292 */
2293 if (adapter->vfs_allocated_count) {
Alexander Duycke1739522009-02-19 20:39:44 -08002294 /* set all queue drop enable bits */
2295 wr32(E1000_QDE, ALL_QUEUES);
Alexander Duycke1739522009-02-19 20:39:44 -08002296 }
2297
Auke Kok9d5c8242008-01-24 02:22:38 -08002298 wr32(E1000_RCTL, rctl);
2299}
2300
Alexander Duyck7d5753f2009-10-27 23:47:16 +00002301static inline int igb_set_vf_rlpml(struct igb_adapter *adapter, int size,
2302 int vfn)
2303{
2304 struct e1000_hw *hw = &adapter->hw;
2305 u32 vmolr;
2306
2307 /* if it isn't the PF check to see if VFs are enabled and
2308 * increase the size to support vlan tags */
2309 if (vfn < adapter->vfs_allocated_count &&
2310 adapter->vf_data[vfn].vlans_enabled)
2311 size += VLAN_TAG_SIZE;
2312
2313 vmolr = rd32(E1000_VMOLR(vfn));
2314 vmolr &= ~E1000_VMOLR_RLPML_MASK;
2315 vmolr |= size | E1000_VMOLR_LPE;
2316 wr32(E1000_VMOLR(vfn), vmolr);
2317
2318 return 0;
2319}
2320
Auke Kok9d5c8242008-01-24 02:22:38 -08002321/**
Alexander Duycke1739522009-02-19 20:39:44 -08002322 * igb_rlpml_set - set maximum receive packet size
2323 * @adapter: board private structure
2324 *
2325 * Configure maximum receivable packet size.
2326 **/
2327static void igb_rlpml_set(struct igb_adapter *adapter)
2328{
2329 u32 max_frame_size = adapter->max_frame_size;
2330 struct e1000_hw *hw = &adapter->hw;
2331 u16 pf_id = adapter->vfs_allocated_count;
2332
2333 if (adapter->vlgrp)
2334 max_frame_size += VLAN_TAG_SIZE;
2335
2336 /* if vfs are enabled we set RLPML to the largest possible request
2337 * size and set the VMOLR RLPML to the size we need */
2338 if (pf_id) {
2339 igb_set_vf_rlpml(adapter, max_frame_size, pf_id);
Alexander Duyck7d5753f2009-10-27 23:47:16 +00002340 max_frame_size = MAX_JUMBO_FRAME_SIZE;
Alexander Duycke1739522009-02-19 20:39:44 -08002341 }
2342
2343 wr32(E1000_RLPML, max_frame_size);
2344}
2345
Alexander Duyck7d5753f2009-10-27 23:47:16 +00002346static inline void igb_set_vmolr(struct igb_adapter *adapter, int vfn)
2347{
2348 struct e1000_hw *hw = &adapter->hw;
2349 u32 vmolr;
2350
2351 /*
2352 * This register exists only on 82576 and newer so if we are older then
2353 * we should exit and do nothing
2354 */
2355 if (hw->mac.type < e1000_82576)
2356 return;
2357
2358 vmolr = rd32(E1000_VMOLR(vfn));
2359 vmolr |= E1000_VMOLR_AUPE | /* Accept untagged packets */
2360 E1000_VMOLR_STRVLAN; /* Strip vlan tags */
2361
2362 /* clear all bits that might not be set */
2363 vmolr &= ~(E1000_VMOLR_BAM | E1000_VMOLR_RSSE);
2364
2365 if (adapter->num_rx_queues > 1 && vfn == adapter->vfs_allocated_count)
2366 vmolr |= E1000_VMOLR_RSSE; /* enable RSS */
2367 /*
2368 * for VMDq only allow the VFs and pool 0 to accept broadcast and
2369 * multicast packets
2370 */
2371 if (vfn <= adapter->vfs_allocated_count)
2372 vmolr |= E1000_VMOLR_BAM; /* Accept broadcast */
2373
2374 wr32(E1000_VMOLR(vfn), vmolr);
2375}
2376
Alexander Duycke1739522009-02-19 20:39:44 -08002377/**
Alexander Duyck85b430b2009-10-27 15:50:29 +00002378 * igb_configure_rx_ring - Configure a receive ring after Reset
2379 * @adapter: board private structure
2380 * @ring: receive ring to be configured
2381 *
2382 * Configure the Rx unit of the MAC after a reset.
2383 **/
Alexander Duyckd7ee5b32009-10-27 15:54:23 +00002384void igb_configure_rx_ring(struct igb_adapter *adapter,
2385 struct igb_ring *ring)
Alexander Duyck85b430b2009-10-27 15:50:29 +00002386{
2387 struct e1000_hw *hw = &adapter->hw;
2388 u64 rdba = ring->dma;
2389 int reg_idx = ring->reg_idx;
Alexander Duyck952f72a2009-10-27 15:51:07 +00002390 u32 srrctl, rxdctl;
Alexander Duyck85b430b2009-10-27 15:50:29 +00002391
2392 /* disable the queue */
2393 rxdctl = rd32(E1000_RXDCTL(reg_idx));
2394 wr32(E1000_RXDCTL(reg_idx),
2395 rxdctl & ~E1000_RXDCTL_QUEUE_ENABLE);
2396
2397 /* Set DMA base address registers */
2398 wr32(E1000_RDBAL(reg_idx),
2399 rdba & 0x00000000ffffffffULL);
2400 wr32(E1000_RDBAH(reg_idx), rdba >> 32);
2401 wr32(E1000_RDLEN(reg_idx),
2402 ring->count * sizeof(union e1000_adv_rx_desc));
2403
2404 /* initialize head and tail */
Alexander Duyckfce99e32009-10-27 15:51:27 +00002405 ring->head = hw->hw_addr + E1000_RDH(reg_idx);
2406 ring->tail = hw->hw_addr + E1000_RDT(reg_idx);
2407 writel(0, ring->head);
2408 writel(0, ring->tail);
Alexander Duyck85b430b2009-10-27 15:50:29 +00002409
Alexander Duyck952f72a2009-10-27 15:51:07 +00002410 /* set descriptor configuration */
Alexander Duyck4c844852009-10-27 15:52:07 +00002411 if (ring->rx_buffer_len < IGB_RXBUFFER_1024) {
2412 srrctl = ALIGN(ring->rx_buffer_len, 64) <<
Alexander Duyck952f72a2009-10-27 15:51:07 +00002413 E1000_SRRCTL_BSIZEHDRSIZE_SHIFT;
2414#if (PAGE_SIZE / 2) > IGB_RXBUFFER_16384
2415 srrctl |= IGB_RXBUFFER_16384 >>
2416 E1000_SRRCTL_BSIZEPKT_SHIFT;
2417#else
2418 srrctl |= (PAGE_SIZE / 2) >>
2419 E1000_SRRCTL_BSIZEPKT_SHIFT;
2420#endif
2421 srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS;
2422 } else {
Alexander Duyck4c844852009-10-27 15:52:07 +00002423 srrctl = ALIGN(ring->rx_buffer_len, 1024) >>
Alexander Duyck952f72a2009-10-27 15:51:07 +00002424 E1000_SRRCTL_BSIZEPKT_SHIFT;
2425 srrctl |= E1000_SRRCTL_DESCTYPE_ADV_ONEBUF;
2426 }
2427
2428 wr32(E1000_SRRCTL(reg_idx), srrctl);
2429
Alexander Duyck7d5753f2009-10-27 23:47:16 +00002430 /* set filtering for VMDQ pools */
2431 igb_set_vmolr(adapter, reg_idx & 0x7);
2432
Alexander Duyck85b430b2009-10-27 15:50:29 +00002433 /* enable receive descriptor fetching */
2434 rxdctl = rd32(E1000_RXDCTL(reg_idx));
2435 rxdctl |= E1000_RXDCTL_QUEUE_ENABLE;
2436 rxdctl &= 0xFFF00000;
2437 rxdctl |= IGB_RX_PTHRESH;
2438 rxdctl |= IGB_RX_HTHRESH << 8;
2439 rxdctl |= IGB_RX_WTHRESH << 16;
2440 wr32(E1000_RXDCTL(reg_idx), rxdctl);
2441}
2442
2443/**
Auke Kok9d5c8242008-01-24 02:22:38 -08002444 * igb_configure_rx - Configure receive Unit after Reset
2445 * @adapter: board private structure
2446 *
2447 * Configure the Rx unit of the MAC after a reset.
2448 **/
2449static void igb_configure_rx(struct igb_adapter *adapter)
2450{
Hannes Eder91075842009-02-18 19:36:04 -08002451 int i;
Auke Kok9d5c8242008-01-24 02:22:38 -08002452
Alexander Duyck68d480c2009-10-05 06:33:08 +00002453 /* set UTA to appropriate mode */
2454 igb_set_uta(adapter);
2455
Alexander Duyck26ad9172009-10-05 06:32:49 +00002456 /* set the correct pool for the PF default MAC address in entry 0 */
2457 igb_rar_set_qsel(adapter, adapter->hw.mac.addr, 0,
2458 adapter->vfs_allocated_count);
2459
Alexander Duyck06cf2662009-10-27 15:53:25 +00002460 /* Setup the HW Rx Head and Tail Descriptor Pointers and
2461 * the Base and Length of the Rx Descriptor Ring */
2462 for (i = 0; i < adapter->num_rx_queues; i++)
2463 igb_configure_rx_ring(adapter, &adapter->rx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08002464}
2465
2466/**
2467 * igb_free_tx_resources - Free Tx Resources per Queue
Auke Kok9d5c8242008-01-24 02:22:38 -08002468 * @tx_ring: Tx descriptor ring for a specific queue
2469 *
2470 * Free all transmit software resources
2471 **/
Alexander Duyck68fd9912008-11-20 00:48:10 -08002472void igb_free_tx_resources(struct igb_ring *tx_ring)
Auke Kok9d5c8242008-01-24 02:22:38 -08002473{
Mitch Williams3b644cf2008-06-27 10:59:48 -07002474 igb_clean_tx_ring(tx_ring);
Auke Kok9d5c8242008-01-24 02:22:38 -08002475
2476 vfree(tx_ring->buffer_info);
2477 tx_ring->buffer_info = NULL;
2478
Alexander Duyck80785292009-10-27 15:51:47 +00002479 pci_free_consistent(tx_ring->pdev, tx_ring->size,
2480 tx_ring->desc, tx_ring->dma);
Auke Kok9d5c8242008-01-24 02:22:38 -08002481
2482 tx_ring->desc = NULL;
2483}
2484
2485/**
2486 * igb_free_all_tx_resources - Free Tx Resources for All Queues
2487 * @adapter: board private structure
2488 *
2489 * Free all transmit software resources
2490 **/
2491static void igb_free_all_tx_resources(struct igb_adapter *adapter)
2492{
2493 int i;
2494
2495 for (i = 0; i < adapter->num_tx_queues; i++)
Mitch Williams3b644cf2008-06-27 10:59:48 -07002496 igb_free_tx_resources(&adapter->tx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08002497}
2498
Alexander Duyckb1a436c2009-10-27 15:54:43 +00002499void igb_unmap_and_free_tx_resource(struct igb_ring *tx_ring,
2500 struct igb_buffer *buffer_info)
Auke Kok9d5c8242008-01-24 02:22:38 -08002501{
Alexander Duyck65689fe2009-03-20 00:17:43 +00002502 buffer_info->dma = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08002503 if (buffer_info->skb) {
Alexander Duyck80785292009-10-27 15:51:47 +00002504 skb_dma_unmap(&tx_ring->pdev->dev,
2505 buffer_info->skb,
Alexander Duyck65689fe2009-03-20 00:17:43 +00002506 DMA_TO_DEVICE);
Auke Kok9d5c8242008-01-24 02:22:38 -08002507 dev_kfree_skb_any(buffer_info->skb);
2508 buffer_info->skb = NULL;
2509 }
2510 buffer_info->time_stamp = 0;
2511 /* buffer_info must be completely set up in the transmit path */
2512}
2513
2514/**
2515 * igb_clean_tx_ring - Free Tx Buffers
Auke Kok9d5c8242008-01-24 02:22:38 -08002516 * @tx_ring: ring to be cleaned
2517 **/
Mitch Williams3b644cf2008-06-27 10:59:48 -07002518static void igb_clean_tx_ring(struct igb_ring *tx_ring)
Auke Kok9d5c8242008-01-24 02:22:38 -08002519{
2520 struct igb_buffer *buffer_info;
2521 unsigned long size;
2522 unsigned int i;
2523
2524 if (!tx_ring->buffer_info)
2525 return;
2526 /* Free all the Tx ring sk_buffs */
2527
2528 for (i = 0; i < tx_ring->count; i++) {
2529 buffer_info = &tx_ring->buffer_info[i];
Alexander Duyck80785292009-10-27 15:51:47 +00002530 igb_unmap_and_free_tx_resource(tx_ring, buffer_info);
Auke Kok9d5c8242008-01-24 02:22:38 -08002531 }
2532
2533 size = sizeof(struct igb_buffer) * tx_ring->count;
2534 memset(tx_ring->buffer_info, 0, size);
2535
2536 /* Zero out the descriptor ring */
2537
2538 memset(tx_ring->desc, 0, tx_ring->size);
2539
2540 tx_ring->next_to_use = 0;
2541 tx_ring->next_to_clean = 0;
2542
Alexander Duyckfce99e32009-10-27 15:51:27 +00002543 writel(0, tx_ring->head);
2544 writel(0, tx_ring->tail);
Auke Kok9d5c8242008-01-24 02:22:38 -08002545}
2546
2547/**
2548 * igb_clean_all_tx_rings - Free Tx Buffers for all queues
2549 * @adapter: board private structure
2550 **/
2551static void igb_clean_all_tx_rings(struct igb_adapter *adapter)
2552{
2553 int i;
2554
2555 for (i = 0; i < adapter->num_tx_queues; i++)
Mitch Williams3b644cf2008-06-27 10:59:48 -07002556 igb_clean_tx_ring(&adapter->tx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08002557}
2558
2559/**
2560 * igb_free_rx_resources - Free Rx Resources
Auke Kok9d5c8242008-01-24 02:22:38 -08002561 * @rx_ring: ring to clean the resources from
2562 *
2563 * Free all receive software resources
2564 **/
Alexander Duyck68fd9912008-11-20 00:48:10 -08002565void igb_free_rx_resources(struct igb_ring *rx_ring)
Auke Kok9d5c8242008-01-24 02:22:38 -08002566{
Mitch Williams3b644cf2008-06-27 10:59:48 -07002567 igb_clean_rx_ring(rx_ring);
Auke Kok9d5c8242008-01-24 02:22:38 -08002568
2569 vfree(rx_ring->buffer_info);
2570 rx_ring->buffer_info = NULL;
2571
Alexander Duyck80785292009-10-27 15:51:47 +00002572 pci_free_consistent(rx_ring->pdev, rx_ring->size,
2573 rx_ring->desc, rx_ring->dma);
Auke Kok9d5c8242008-01-24 02:22:38 -08002574
2575 rx_ring->desc = NULL;
2576}
2577
2578/**
2579 * igb_free_all_rx_resources - Free Rx Resources for All Queues
2580 * @adapter: board private structure
2581 *
2582 * Free all receive software resources
2583 **/
2584static void igb_free_all_rx_resources(struct igb_adapter *adapter)
2585{
2586 int i;
2587
2588 for (i = 0; i < adapter->num_rx_queues; i++)
Mitch Williams3b644cf2008-06-27 10:59:48 -07002589 igb_free_rx_resources(&adapter->rx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08002590}
2591
2592/**
2593 * igb_clean_rx_ring - Free Rx Buffers per Queue
Auke Kok9d5c8242008-01-24 02:22:38 -08002594 * @rx_ring: ring to free buffers from
2595 **/
Mitch Williams3b644cf2008-06-27 10:59:48 -07002596static void igb_clean_rx_ring(struct igb_ring *rx_ring)
Auke Kok9d5c8242008-01-24 02:22:38 -08002597{
2598 struct igb_buffer *buffer_info;
Auke Kok9d5c8242008-01-24 02:22:38 -08002599 unsigned long size;
2600 unsigned int i;
2601
2602 if (!rx_ring->buffer_info)
2603 return;
2604 /* Free all the Rx ring sk_buffs */
2605 for (i = 0; i < rx_ring->count; i++) {
2606 buffer_info = &rx_ring->buffer_info[i];
2607 if (buffer_info->dma) {
Alexander Duyck80785292009-10-27 15:51:47 +00002608 pci_unmap_single(rx_ring->pdev,
2609 buffer_info->dma,
Alexander Duyck4c844852009-10-27 15:52:07 +00002610 rx_ring->rx_buffer_len,
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00002611 PCI_DMA_FROMDEVICE);
Auke Kok9d5c8242008-01-24 02:22:38 -08002612 buffer_info->dma = 0;
2613 }
2614
2615 if (buffer_info->skb) {
2616 dev_kfree_skb(buffer_info->skb);
2617 buffer_info->skb = NULL;
2618 }
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00002619 if (buffer_info->page_dma) {
Alexander Duyck80785292009-10-27 15:51:47 +00002620 pci_unmap_page(rx_ring->pdev,
2621 buffer_info->page_dma,
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00002622 PAGE_SIZE / 2,
2623 PCI_DMA_FROMDEVICE);
2624 buffer_info->page_dma = 0;
2625 }
Auke Kok9d5c8242008-01-24 02:22:38 -08002626 if (buffer_info->page) {
Auke Kok9d5c8242008-01-24 02:22:38 -08002627 put_page(buffer_info->page);
2628 buffer_info->page = NULL;
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07002629 buffer_info->page_offset = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08002630 }
2631 }
2632
Auke Kok9d5c8242008-01-24 02:22:38 -08002633 size = sizeof(struct igb_buffer) * rx_ring->count;
2634 memset(rx_ring->buffer_info, 0, size);
2635
2636 /* Zero out the descriptor ring */
2637 memset(rx_ring->desc, 0, rx_ring->size);
2638
2639 rx_ring->next_to_clean = 0;
2640 rx_ring->next_to_use = 0;
2641
Alexander Duyckfce99e32009-10-27 15:51:27 +00002642 writel(0, rx_ring->head);
2643 writel(0, rx_ring->tail);
Auke Kok9d5c8242008-01-24 02:22:38 -08002644}
2645
2646/**
2647 * igb_clean_all_rx_rings - Free Rx Buffers for all queues
2648 * @adapter: board private structure
2649 **/
2650static void igb_clean_all_rx_rings(struct igb_adapter *adapter)
2651{
2652 int i;
2653
2654 for (i = 0; i < adapter->num_rx_queues; i++)
Mitch Williams3b644cf2008-06-27 10:59:48 -07002655 igb_clean_rx_ring(&adapter->rx_ring[i]);
Auke Kok9d5c8242008-01-24 02:22:38 -08002656}
2657
2658/**
2659 * igb_set_mac - Change the Ethernet Address of the NIC
2660 * @netdev: network interface device structure
2661 * @p: pointer to an address structure
2662 *
2663 * Returns 0 on success, negative on failure
2664 **/
2665static int igb_set_mac(struct net_device *netdev, void *p)
2666{
2667 struct igb_adapter *adapter = netdev_priv(netdev);
Alexander Duyck28b07592009-02-06 23:20:31 +00002668 struct e1000_hw *hw = &adapter->hw;
Auke Kok9d5c8242008-01-24 02:22:38 -08002669 struct sockaddr *addr = p;
2670
2671 if (!is_valid_ether_addr(addr->sa_data))
2672 return -EADDRNOTAVAIL;
2673
2674 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
Alexander Duyck28b07592009-02-06 23:20:31 +00002675 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
Auke Kok9d5c8242008-01-24 02:22:38 -08002676
Alexander Duyck26ad9172009-10-05 06:32:49 +00002677 /* set the correct pool for the new PF MAC address in entry 0 */
2678 igb_rar_set_qsel(adapter, hw->mac.addr, 0,
2679 adapter->vfs_allocated_count);
Alexander Duycke1739522009-02-19 20:39:44 -08002680
Auke Kok9d5c8242008-01-24 02:22:38 -08002681 return 0;
2682}
2683
2684/**
Alexander Duyck68d480c2009-10-05 06:33:08 +00002685 * igb_write_mc_addr_list - write multicast addresses to MTA
2686 * @netdev: network interface device structure
2687 *
2688 * Writes multicast address list to the MTA hash table.
2689 * Returns: -ENOMEM on failure
2690 * 0 on no addresses written
2691 * X on writing X addresses to MTA
2692 **/
2693static int igb_write_mc_addr_list(struct net_device *netdev)
2694{
2695 struct igb_adapter *adapter = netdev_priv(netdev);
2696 struct e1000_hw *hw = &adapter->hw;
2697 struct dev_mc_list *mc_ptr = netdev->mc_list;
2698 u8 *mta_list;
2699 u32 vmolr = 0;
2700 int i;
2701
2702 if (!netdev->mc_count) {
2703 /* nothing to program, so clear mc list */
2704 igb_update_mc_addr_list(hw, NULL, 0);
2705 igb_restore_vf_multicasts(adapter);
2706 return 0;
2707 }
2708
2709 mta_list = kzalloc(netdev->mc_count * 6, GFP_ATOMIC);
2710 if (!mta_list)
2711 return -ENOMEM;
2712
2713 /* set vmolr receive overflow multicast bit */
2714 vmolr |= E1000_VMOLR_ROMPE;
2715
2716 /* The shared function expects a packed array of only addresses. */
2717 mc_ptr = netdev->mc_list;
2718
2719 for (i = 0; i < netdev->mc_count; i++) {
2720 if (!mc_ptr)
2721 break;
2722 memcpy(mta_list + (i*ETH_ALEN), mc_ptr->dmi_addr, ETH_ALEN);
2723 mc_ptr = mc_ptr->next;
2724 }
2725 igb_update_mc_addr_list(hw, mta_list, i);
2726 kfree(mta_list);
2727
2728 return netdev->mc_count;
2729}
2730
2731/**
2732 * igb_write_uc_addr_list - write unicast addresses to RAR table
2733 * @netdev: network interface device structure
2734 *
2735 * Writes unicast address list to the RAR table.
2736 * Returns: -ENOMEM on failure/insufficient address space
2737 * 0 on no addresses written
2738 * X on writing X addresses to the RAR table
2739 **/
2740static int igb_write_uc_addr_list(struct net_device *netdev)
2741{
2742 struct igb_adapter *adapter = netdev_priv(netdev);
2743 struct e1000_hw *hw = &adapter->hw;
2744 unsigned int vfn = adapter->vfs_allocated_count;
2745 unsigned int rar_entries = hw->mac.rar_entry_count - (vfn + 1);
2746 int count = 0;
2747
2748 /* return ENOMEM indicating insufficient memory for addresses */
2749 if (netdev->uc.count > rar_entries)
2750 return -ENOMEM;
2751
2752 if (netdev->uc.count && rar_entries) {
2753 struct netdev_hw_addr *ha;
2754 list_for_each_entry(ha, &netdev->uc.list, list) {
2755 if (!rar_entries)
2756 break;
2757 igb_rar_set_qsel(adapter, ha->addr,
2758 rar_entries--,
2759 vfn);
2760 count++;
2761 }
2762 }
2763 /* write the addresses in reverse order to avoid write combining */
2764 for (; rar_entries > 0 ; rar_entries--) {
2765 wr32(E1000_RAH(rar_entries), 0);
2766 wr32(E1000_RAL(rar_entries), 0);
2767 }
2768 wrfl();
2769
2770 return count;
2771}
2772
2773/**
Alexander Duyckff41f8d2009-09-03 14:48:56 +00002774 * igb_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
Auke Kok9d5c8242008-01-24 02:22:38 -08002775 * @netdev: network interface device structure
2776 *
Alexander Duyckff41f8d2009-09-03 14:48:56 +00002777 * The set_rx_mode entry point is called whenever the unicast or multicast
2778 * address lists or the network interface flags are updated. This routine is
2779 * responsible for configuring the hardware for proper unicast, multicast,
Auke Kok9d5c8242008-01-24 02:22:38 -08002780 * promiscuous mode, and all-multi behavior.
2781 **/
Alexander Duyckff41f8d2009-09-03 14:48:56 +00002782static void igb_set_rx_mode(struct net_device *netdev)
Auke Kok9d5c8242008-01-24 02:22:38 -08002783{
2784 struct igb_adapter *adapter = netdev_priv(netdev);
2785 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck68d480c2009-10-05 06:33:08 +00002786 unsigned int vfn = adapter->vfs_allocated_count;
2787 u32 rctl, vmolr = 0;
2788 int count;
Auke Kok9d5c8242008-01-24 02:22:38 -08002789
2790 /* Check for Promiscuous and All Multicast modes */
Auke Kok9d5c8242008-01-24 02:22:38 -08002791 rctl = rd32(E1000_RCTL);
2792
Alexander Duyck68d480c2009-10-05 06:33:08 +00002793 /* clear the effected bits */
2794 rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE | E1000_RCTL_VFE);
2795
Patrick McHardy746b9f02008-07-16 20:15:45 -07002796 if (netdev->flags & IFF_PROMISC) {
Auke Kok9d5c8242008-01-24 02:22:38 -08002797 rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
Alexander Duyck68d480c2009-10-05 06:33:08 +00002798 vmolr |= (E1000_VMOLR_ROPE | E1000_VMOLR_MPME);
Patrick McHardy746b9f02008-07-16 20:15:45 -07002799 } else {
Alexander Duyck68d480c2009-10-05 06:33:08 +00002800 if (netdev->flags & IFF_ALLMULTI) {
Patrick McHardy746b9f02008-07-16 20:15:45 -07002801 rctl |= E1000_RCTL_MPE;
Alexander Duyck68d480c2009-10-05 06:33:08 +00002802 vmolr |= E1000_VMOLR_MPME;
2803 } else {
2804 /*
2805 * Write addresses to the MTA, if the attempt fails
2806 * then we should just turn on promiscous mode so
2807 * that we can at least receive multicast traffic
2808 */
2809 count = igb_write_mc_addr_list(netdev);
2810 if (count < 0) {
2811 rctl |= E1000_RCTL_MPE;
2812 vmolr |= E1000_VMOLR_MPME;
2813 } else if (count) {
2814 vmolr |= E1000_VMOLR_ROMPE;
2815 }
2816 }
2817 /*
2818 * Write addresses to available RAR registers, if there is not
2819 * sufficient space to store all the addresses then enable
2820 * unicast promiscous mode
2821 */
2822 count = igb_write_uc_addr_list(netdev);
2823 if (count < 0) {
Alexander Duyckff41f8d2009-09-03 14:48:56 +00002824 rctl |= E1000_RCTL_UPE;
Alexander Duyck68d480c2009-10-05 06:33:08 +00002825 vmolr |= E1000_VMOLR_ROPE;
2826 }
Patrick McHardy78ed11a2008-07-16 20:16:14 -07002827 rctl |= E1000_RCTL_VFE;
Patrick McHardy746b9f02008-07-16 20:15:45 -07002828 }
Auke Kok9d5c8242008-01-24 02:22:38 -08002829 wr32(E1000_RCTL, rctl);
2830
Alexander Duyck68d480c2009-10-05 06:33:08 +00002831 /*
2832 * In order to support SR-IOV and eventually VMDq it is necessary to set
2833 * the VMOLR to enable the appropriate modes. Without this workaround
2834 * we will have issues with VLAN tag stripping not being done for frames
2835 * that are only arriving because we are the default pool
2836 */
2837 if (hw->mac.type < e1000_82576)
Alexander Duyck28fc06f2009-07-23 18:08:54 +00002838 return;
Alexander Duyck28fc06f2009-07-23 18:08:54 +00002839
Alexander Duyck68d480c2009-10-05 06:33:08 +00002840 vmolr |= rd32(E1000_VMOLR(vfn)) &
2841 ~(E1000_VMOLR_ROPE | E1000_VMOLR_MPME | E1000_VMOLR_ROMPE);
2842 wr32(E1000_VMOLR(vfn), vmolr);
Alexander Duyck28fc06f2009-07-23 18:08:54 +00002843 igb_restore_vf_multicasts(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08002844}
2845
2846/* Need to wait a few seconds after link up to get diagnostic information from
2847 * the phy */
2848static void igb_update_phy_info(unsigned long data)
2849{
2850 struct igb_adapter *adapter = (struct igb_adapter *) data;
Alexander Duyckf5f4cf02008-11-21 21:30:24 -08002851 igb_get_phy_info(&adapter->hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08002852}
2853
2854/**
Alexander Duyck4d6b7252009-02-06 23:16:24 +00002855 * igb_has_link - check shared code for link and determine up/down
2856 * @adapter: pointer to driver private info
2857 **/
2858static bool igb_has_link(struct igb_adapter *adapter)
2859{
2860 struct e1000_hw *hw = &adapter->hw;
2861 bool link_active = false;
2862 s32 ret_val = 0;
2863
2864 /* get_link_status is set on LSC (link status) interrupt or
2865 * rx sequence error interrupt. get_link_status will stay
2866 * false until the e1000_check_for_link establishes link
2867 * for copper adapters ONLY
2868 */
2869 switch (hw->phy.media_type) {
2870 case e1000_media_type_copper:
2871 if (hw->mac.get_link_status) {
2872 ret_val = hw->mac.ops.check_for_link(hw);
2873 link_active = !hw->mac.get_link_status;
2874 } else {
2875 link_active = true;
2876 }
2877 break;
Alexander Duyck4d6b7252009-02-06 23:16:24 +00002878 case e1000_media_type_internal_serdes:
2879 ret_val = hw->mac.ops.check_for_link(hw);
2880 link_active = hw->mac.serdes_has_link;
2881 break;
2882 default:
2883 case e1000_media_type_unknown:
2884 break;
2885 }
2886
2887 return link_active;
2888}
2889
2890/**
Auke Kok9d5c8242008-01-24 02:22:38 -08002891 * igb_watchdog - Timer Call-back
2892 * @data: pointer to adapter cast into an unsigned long
2893 **/
2894static void igb_watchdog(unsigned long data)
2895{
2896 struct igb_adapter *adapter = (struct igb_adapter *)data;
2897 /* Do the rest outside of interrupt context */
2898 schedule_work(&adapter->watchdog_task);
2899}
2900
2901static void igb_watchdog_task(struct work_struct *work)
2902{
2903 struct igb_adapter *adapter = container_of(work,
2904 struct igb_adapter, watchdog_task);
2905 struct e1000_hw *hw = &adapter->hw;
Auke Kok9d5c8242008-01-24 02:22:38 -08002906 struct net_device *netdev = adapter->netdev;
2907 struct igb_ring *tx_ring = adapter->tx_ring;
Auke Kok9d5c8242008-01-24 02:22:38 -08002908 u32 link;
Alexander Duyck7a6ea552008-08-26 04:25:03 -07002909 int i;
Auke Kok9d5c8242008-01-24 02:22:38 -08002910
Alexander Duyck4d6b7252009-02-06 23:16:24 +00002911 link = igb_has_link(adapter);
2912 if ((netif_carrier_ok(netdev)) && link)
Auke Kok9d5c8242008-01-24 02:22:38 -08002913 goto link_up;
2914
Auke Kok9d5c8242008-01-24 02:22:38 -08002915 if (link) {
2916 if (!netif_carrier_ok(netdev)) {
2917 u32 ctrl;
2918 hw->mac.ops.get_speed_and_duplex(&adapter->hw,
2919 &adapter->link_speed,
2920 &adapter->link_duplex);
2921
2922 ctrl = rd32(E1000_CTRL);
Alexander Duyck527d47c2008-11-27 00:21:39 -08002923 /* Links status message must follow this format */
2924 printk(KERN_INFO "igb: %s NIC Link is Up %d Mbps %s, "
Auke Kok9d5c8242008-01-24 02:22:38 -08002925 "Flow Control: %s\n",
Alexander Duyck527d47c2008-11-27 00:21:39 -08002926 netdev->name,
Auke Kok9d5c8242008-01-24 02:22:38 -08002927 adapter->link_speed,
2928 adapter->link_duplex == FULL_DUPLEX ?
2929 "Full Duplex" : "Half Duplex",
2930 ((ctrl & E1000_CTRL_TFCE) && (ctrl &
2931 E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
2932 E1000_CTRL_RFCE) ? "RX" : ((ctrl &
2933 E1000_CTRL_TFCE) ? "TX" : "None")));
2934
2935 /* tweak tx_queue_len according to speed/duplex and
2936 * adjust the timeout factor */
2937 netdev->tx_queue_len = adapter->tx_queue_len;
2938 adapter->tx_timeout_factor = 1;
2939 switch (adapter->link_speed) {
2940 case SPEED_10:
2941 netdev->tx_queue_len = 10;
2942 adapter->tx_timeout_factor = 14;
2943 break;
2944 case SPEED_100:
2945 netdev->tx_queue_len = 100;
2946 /* maybe add some timeout factor ? */
2947 break;
2948 }
2949
2950 netif_carrier_on(netdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08002951
Alexander Duyck4ae196d2009-02-19 20:40:07 -08002952 igb_ping_all_vfs(adapter);
2953
Alexander Duyck4b1a9872009-02-06 23:19:50 +00002954 /* link state has changed, schedule phy info update */
Auke Kok9d5c8242008-01-24 02:22:38 -08002955 if (!test_bit(__IGB_DOWN, &adapter->state))
2956 mod_timer(&adapter->phy_info_timer,
2957 round_jiffies(jiffies + 2 * HZ));
2958 }
2959 } else {
2960 if (netif_carrier_ok(netdev)) {
2961 adapter->link_speed = 0;
2962 adapter->link_duplex = 0;
Alexander Duyck527d47c2008-11-27 00:21:39 -08002963 /* Links status message must follow this format */
2964 printk(KERN_INFO "igb: %s NIC Link is Down\n",
2965 netdev->name);
Auke Kok9d5c8242008-01-24 02:22:38 -08002966 netif_carrier_off(netdev);
Alexander Duyck4b1a9872009-02-06 23:19:50 +00002967
Alexander Duyck4ae196d2009-02-19 20:40:07 -08002968 igb_ping_all_vfs(adapter);
2969
Alexander Duyck4b1a9872009-02-06 23:19:50 +00002970 /* link state has changed, schedule phy info update */
Auke Kok9d5c8242008-01-24 02:22:38 -08002971 if (!test_bit(__IGB_DOWN, &adapter->state))
2972 mod_timer(&adapter->phy_info_timer,
2973 round_jiffies(jiffies + 2 * HZ));
2974 }
2975 }
2976
2977link_up:
2978 igb_update_stats(adapter);
2979
Alexander Duyck4b1a9872009-02-06 23:19:50 +00002980 hw->mac.tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
Auke Kok9d5c8242008-01-24 02:22:38 -08002981 adapter->tpt_old = adapter->stats.tpt;
Alexander Duyck4b1a9872009-02-06 23:19:50 +00002982 hw->mac.collision_delta = adapter->stats.colc - adapter->colc_old;
Auke Kok9d5c8242008-01-24 02:22:38 -08002983 adapter->colc_old = adapter->stats.colc;
2984
2985 adapter->gorc = adapter->stats.gorc - adapter->gorc_old;
2986 adapter->gorc_old = adapter->stats.gorc;
2987 adapter->gotc = adapter->stats.gotc - adapter->gotc_old;
2988 adapter->gotc_old = adapter->stats.gotc;
2989
2990 igb_update_adaptive(&adapter->hw);
2991
2992 if (!netif_carrier_ok(netdev)) {
Alexander Duyckc493ea42009-03-20 00:16:50 +00002993 if (igb_desc_unused(tx_ring) + 1 < tx_ring->count) {
Auke Kok9d5c8242008-01-24 02:22:38 -08002994 /* We've lost link, so the controller stops DMA,
2995 * but we've got queued Tx work that's never going
2996 * to get done, so reset controller to flush Tx.
2997 * (Do the reset outside of interrupt context). */
2998 adapter->tx_timeout_count++;
2999 schedule_work(&adapter->reset_task);
Jesse Brandeburgc2d5ab42009-05-07 11:07:35 +00003000 /* return immediately since reset is imminent */
3001 return;
Auke Kok9d5c8242008-01-24 02:22:38 -08003002 }
3003 }
3004
3005 /* Cause software interrupt to ensure rx ring is cleaned */
Alexander Duyck7a6ea552008-08-26 04:25:03 -07003006 if (adapter->msix_entries) {
Alexander Duyck047e0032009-10-27 15:49:27 +00003007 u32 eics = 0;
3008 for (i = 0; i < adapter->num_q_vectors; i++) {
3009 struct igb_q_vector *q_vector = adapter->q_vector[i];
3010 eics |= q_vector->eims_value;
3011 }
Alexander Duyck7a6ea552008-08-26 04:25:03 -07003012 wr32(E1000_EICS, eics);
3013 } else {
3014 wr32(E1000_ICS, E1000_ICS_RXDMT0);
3015 }
Auke Kok9d5c8242008-01-24 02:22:38 -08003016
3017 /* Force detection of hung controller every watchdog period */
3018 tx_ring->detect_tx_hung = true;
3019
3020 /* Reset the timer */
3021 if (!test_bit(__IGB_DOWN, &adapter->state))
3022 mod_timer(&adapter->watchdog_timer,
3023 round_jiffies(jiffies + 2 * HZ));
3024}
3025
3026enum latency_range {
3027 lowest_latency = 0,
3028 low_latency = 1,
3029 bulk_latency = 2,
3030 latency_invalid = 255
3031};
3032
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003033/**
3034 * igb_update_ring_itr - update the dynamic ITR value based on packet size
3035 *
3036 * Stores a new ITR value based on strictly on packet size. This
3037 * algorithm is less sophisticated than that used in igb_update_itr,
3038 * due to the difficulty of synchronizing statistics across multiple
3039 * receive rings. The divisors and thresholds used by this fuction
3040 * were determined based on theoretical maximum wire speed and testing
3041 * data, in order to minimize response time while increasing bulk
3042 * throughput.
3043 * This functionality is controlled by the InterruptThrottleRate module
3044 * parameter (see igb_param.c)
3045 * NOTE: This function is called only when operating in a multiqueue
3046 * receive environment.
Alexander Duyck047e0032009-10-27 15:49:27 +00003047 * @q_vector: pointer to q_vector
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003048 **/
Alexander Duyck047e0032009-10-27 15:49:27 +00003049static void igb_update_ring_itr(struct igb_q_vector *q_vector)
Auke Kok9d5c8242008-01-24 02:22:38 -08003050{
Alexander Duyck047e0032009-10-27 15:49:27 +00003051 int new_val = q_vector->itr_val;
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003052 int avg_wire_size = 0;
Alexander Duyck047e0032009-10-27 15:49:27 +00003053 struct igb_adapter *adapter = q_vector->adapter;
Auke Kok9d5c8242008-01-24 02:22:38 -08003054
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003055 /* For non-gigabit speeds, just fix the interrupt rate at 4000
3056 * ints/sec - ITR timer value of 120 ticks.
3057 */
3058 if (adapter->link_speed != SPEED_1000) {
Alexander Duyck047e0032009-10-27 15:49:27 +00003059 new_val = 976;
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003060 goto set_itr_val;
3061 }
Alexander Duyck047e0032009-10-27 15:49:27 +00003062
3063 if (q_vector->rx_ring && q_vector->rx_ring->total_packets) {
3064 struct igb_ring *ring = q_vector->rx_ring;
3065 avg_wire_size = ring->total_bytes / ring->total_packets;
3066 }
3067
3068 if (q_vector->tx_ring && q_vector->tx_ring->total_packets) {
3069 struct igb_ring *ring = q_vector->tx_ring;
3070 avg_wire_size = max_t(u32, avg_wire_size,
3071 (ring->total_bytes /
3072 ring->total_packets));
3073 }
3074
3075 /* if avg_wire_size isn't set no work was done */
3076 if (!avg_wire_size)
3077 goto clear_counts;
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003078
3079 /* Add 24 bytes to size to account for CRC, preamble, and gap */
3080 avg_wire_size += 24;
3081
3082 /* Don't starve jumbo frames */
3083 avg_wire_size = min(avg_wire_size, 3000);
3084
3085 /* Give a little boost to mid-size frames */
3086 if ((avg_wire_size > 300) && (avg_wire_size < 1200))
3087 new_val = avg_wire_size / 3;
3088 else
3089 new_val = avg_wire_size / 2;
3090
3091set_itr_val:
Alexander Duyck047e0032009-10-27 15:49:27 +00003092 if (new_val != q_vector->itr_val) {
3093 q_vector->itr_val = new_val;
3094 q_vector->set_itr = 1;
Auke Kok9d5c8242008-01-24 02:22:38 -08003095 }
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003096clear_counts:
Alexander Duyck047e0032009-10-27 15:49:27 +00003097 if (q_vector->rx_ring) {
3098 q_vector->rx_ring->total_bytes = 0;
3099 q_vector->rx_ring->total_packets = 0;
3100 }
3101 if (q_vector->tx_ring) {
3102 q_vector->tx_ring->total_bytes = 0;
3103 q_vector->tx_ring->total_packets = 0;
3104 }
Auke Kok9d5c8242008-01-24 02:22:38 -08003105}
3106
3107/**
3108 * igb_update_itr - update the dynamic ITR value based on statistics
3109 * Stores a new ITR value based on packets and byte
3110 * counts during the last interrupt. The advantage of per interrupt
3111 * computation is faster updates and more accurate ITR for the current
3112 * traffic pattern. Constants in this function were computed
3113 * based on theoretical maximum wire speed and thresholds were set based
3114 * on testing data as well as attempting to minimize response time
3115 * while increasing bulk throughput.
3116 * this functionality is controlled by the InterruptThrottleRate module
3117 * parameter (see igb_param.c)
3118 * NOTE: These calculations are only valid when operating in a single-
3119 * queue environment.
3120 * @adapter: pointer to adapter
Alexander Duyck047e0032009-10-27 15:49:27 +00003121 * @itr_setting: current q_vector->itr_val
Auke Kok9d5c8242008-01-24 02:22:38 -08003122 * @packets: the number of packets during this measurement interval
3123 * @bytes: the number of bytes during this measurement interval
3124 **/
3125static unsigned int igb_update_itr(struct igb_adapter *adapter, u16 itr_setting,
3126 int packets, int bytes)
3127{
3128 unsigned int retval = itr_setting;
3129
3130 if (packets == 0)
3131 goto update_itr_done;
3132
3133 switch (itr_setting) {
3134 case lowest_latency:
3135 /* handle TSO and jumbo frames */
3136 if (bytes/packets > 8000)
3137 retval = bulk_latency;
3138 else if ((packets < 5) && (bytes > 512))
3139 retval = low_latency;
3140 break;
3141 case low_latency: /* 50 usec aka 20000 ints/s */
3142 if (bytes > 10000) {
3143 /* this if handles the TSO accounting */
3144 if (bytes/packets > 8000) {
3145 retval = bulk_latency;
3146 } else if ((packets < 10) || ((bytes/packets) > 1200)) {
3147 retval = bulk_latency;
3148 } else if ((packets > 35)) {
3149 retval = lowest_latency;
3150 }
3151 } else if (bytes/packets > 2000) {
3152 retval = bulk_latency;
3153 } else if (packets <= 2 && bytes < 512) {
3154 retval = lowest_latency;
3155 }
3156 break;
3157 case bulk_latency: /* 250 usec aka 4000 ints/s */
3158 if (bytes > 25000) {
3159 if (packets > 35)
3160 retval = low_latency;
Alexander Duyck1e5c3d22009-02-12 18:17:21 +00003161 } else if (bytes < 1500) {
Auke Kok9d5c8242008-01-24 02:22:38 -08003162 retval = low_latency;
3163 }
3164 break;
3165 }
3166
3167update_itr_done:
3168 return retval;
3169}
3170
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003171static void igb_set_itr(struct igb_adapter *adapter)
Auke Kok9d5c8242008-01-24 02:22:38 -08003172{
Alexander Duyck047e0032009-10-27 15:49:27 +00003173 struct igb_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9d5c8242008-01-24 02:22:38 -08003174 u16 current_itr;
Alexander Duyck047e0032009-10-27 15:49:27 +00003175 u32 new_itr = q_vector->itr_val;
Auke Kok9d5c8242008-01-24 02:22:38 -08003176
3177 /* for non-gigabit speeds, just fix the interrupt rate at 4000 */
3178 if (adapter->link_speed != SPEED_1000) {
3179 current_itr = 0;
3180 new_itr = 4000;
3181 goto set_itr_now;
3182 }
3183
3184 adapter->rx_itr = igb_update_itr(adapter,
3185 adapter->rx_itr,
3186 adapter->rx_ring->total_packets,
3187 adapter->rx_ring->total_bytes);
Auke Kok9d5c8242008-01-24 02:22:38 -08003188
Alexander Duyck047e0032009-10-27 15:49:27 +00003189 adapter->tx_itr = igb_update_itr(adapter,
3190 adapter->tx_itr,
3191 adapter->tx_ring->total_packets,
3192 adapter->tx_ring->total_bytes);
3193 current_itr = max(adapter->rx_itr, adapter->tx_itr);
Auke Kok9d5c8242008-01-24 02:22:38 -08003194
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003195 /* conservative mode (itr 3) eliminates the lowest_latency setting */
Alexander Duyck4fc82ad2009-10-27 23:45:42 +00003196 if (adapter->rx_itr_setting == 3 && current_itr == lowest_latency)
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003197 current_itr = low_latency;
3198
Auke Kok9d5c8242008-01-24 02:22:38 -08003199 switch (current_itr) {
3200 /* counts and packets in update_itr are dependent on these numbers */
3201 case lowest_latency:
Alexander Duyck78b1f6072009-04-23 11:20:29 +00003202 new_itr = 56; /* aka 70,000 ints/sec */
Auke Kok9d5c8242008-01-24 02:22:38 -08003203 break;
3204 case low_latency:
Alexander Duyck78b1f6072009-04-23 11:20:29 +00003205 new_itr = 196; /* aka 20,000 ints/sec */
Auke Kok9d5c8242008-01-24 02:22:38 -08003206 break;
3207 case bulk_latency:
Alexander Duyck78b1f6072009-04-23 11:20:29 +00003208 new_itr = 980; /* aka 4,000 ints/sec */
Auke Kok9d5c8242008-01-24 02:22:38 -08003209 break;
3210 default:
3211 break;
3212 }
3213
3214set_itr_now:
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003215 adapter->rx_ring->total_bytes = 0;
3216 adapter->rx_ring->total_packets = 0;
Alexander Duyck047e0032009-10-27 15:49:27 +00003217 adapter->tx_ring->total_bytes = 0;
3218 adapter->tx_ring->total_packets = 0;
Alexander Duyck6eb5a7f2008-07-08 15:14:44 -07003219
Alexander Duyck047e0032009-10-27 15:49:27 +00003220 if (new_itr != q_vector->itr_val) {
Auke Kok9d5c8242008-01-24 02:22:38 -08003221 /* this attempts to bias the interrupt rate towards Bulk
3222 * by adding intermediate steps when interrupt rate is
3223 * increasing */
Alexander Duyck047e0032009-10-27 15:49:27 +00003224 new_itr = new_itr > q_vector->itr_val ?
3225 max((new_itr * q_vector->itr_val) /
3226 (new_itr + (q_vector->itr_val >> 2)),
3227 new_itr) :
Auke Kok9d5c8242008-01-24 02:22:38 -08003228 new_itr;
3229 /* Don't write the value here; it resets the adapter's
3230 * internal timer, and causes us to delay far longer than
3231 * we should between interrupts. Instead, we write the ITR
3232 * value at the beginning of the next interrupt so the timing
3233 * ends up being correct.
3234 */
Alexander Duyck047e0032009-10-27 15:49:27 +00003235 q_vector->itr_val = new_itr;
3236 q_vector->set_itr = 1;
Auke Kok9d5c8242008-01-24 02:22:38 -08003237 }
3238
3239 return;
3240}
3241
Auke Kok9d5c8242008-01-24 02:22:38 -08003242#define IGB_TX_FLAGS_CSUM 0x00000001
3243#define IGB_TX_FLAGS_VLAN 0x00000002
3244#define IGB_TX_FLAGS_TSO 0x00000004
3245#define IGB_TX_FLAGS_IPV4 0x00000008
Patrick Ohly33af6bc2009-02-12 05:03:43 +00003246#define IGB_TX_FLAGS_TSTAMP 0x00000010
Auke Kok9d5c8242008-01-24 02:22:38 -08003247#define IGB_TX_FLAGS_VLAN_MASK 0xffff0000
3248#define IGB_TX_FLAGS_VLAN_SHIFT 16
3249
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003250static inline int igb_tso_adv(struct igb_ring *tx_ring,
Auke Kok9d5c8242008-01-24 02:22:38 -08003251 struct sk_buff *skb, u32 tx_flags, u8 *hdr_len)
3252{
3253 struct e1000_adv_tx_context_desc *context_desc;
3254 unsigned int i;
3255 int err;
3256 struct igb_buffer *buffer_info;
3257 u32 info = 0, tu_cmd = 0;
3258 u32 mss_l4len_idx, l4len;
3259 *hdr_len = 0;
3260
3261 if (skb_header_cloned(skb)) {
3262 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
3263 if (err)
3264 return err;
3265 }
3266
3267 l4len = tcp_hdrlen(skb);
3268 *hdr_len += l4len;
3269
3270 if (skb->protocol == htons(ETH_P_IP)) {
3271 struct iphdr *iph = ip_hdr(skb);
3272 iph->tot_len = 0;
3273 iph->check = 0;
3274 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
3275 iph->daddr, 0,
3276 IPPROTO_TCP,
3277 0);
3278 } else if (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6) {
3279 ipv6_hdr(skb)->payload_len = 0;
3280 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
3281 &ipv6_hdr(skb)->daddr,
3282 0, IPPROTO_TCP, 0);
3283 }
3284
3285 i = tx_ring->next_to_use;
3286
3287 buffer_info = &tx_ring->buffer_info[i];
3288 context_desc = E1000_TX_CTXTDESC_ADV(*tx_ring, i);
3289 /* VLAN MACLEN IPLEN */
3290 if (tx_flags & IGB_TX_FLAGS_VLAN)
3291 info |= (tx_flags & IGB_TX_FLAGS_VLAN_MASK);
3292 info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT);
3293 *hdr_len += skb_network_offset(skb);
3294 info |= skb_network_header_len(skb);
3295 *hdr_len += skb_network_header_len(skb);
3296 context_desc->vlan_macip_lens = cpu_to_le32(info);
3297
3298 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
3299 tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT);
3300
3301 if (skb->protocol == htons(ETH_P_IP))
3302 tu_cmd |= E1000_ADVTXD_TUCMD_IPV4;
3303 tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
3304
3305 context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd);
3306
3307 /* MSS L4LEN IDX */
3308 mss_l4len_idx = (skb_shinfo(skb)->gso_size << E1000_ADVTXD_MSS_SHIFT);
3309 mss_l4len_idx |= (l4len << E1000_ADVTXD_L4LEN_SHIFT);
3310
Alexander Duyck73cd78f2009-02-12 18:16:59 +00003311 /* For 82575, context index must be unique per ring. */
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003312 if (tx_ring->flags & IGB_RING_FLAG_TX_CTX_IDX)
3313 mss_l4len_idx |= tx_ring->reg_idx << 4;
Auke Kok9d5c8242008-01-24 02:22:38 -08003314
3315 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
3316 context_desc->seqnum_seed = 0;
3317
3318 buffer_info->time_stamp = jiffies;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003319 buffer_info->next_to_watch = i;
Auke Kok9d5c8242008-01-24 02:22:38 -08003320 buffer_info->dma = 0;
3321 i++;
3322 if (i == tx_ring->count)
3323 i = 0;
3324
3325 tx_ring->next_to_use = i;
3326
3327 return true;
3328}
3329
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003330static inline bool igb_tx_csum_adv(struct igb_ring *tx_ring,
3331 struct sk_buff *skb, u32 tx_flags)
Auke Kok9d5c8242008-01-24 02:22:38 -08003332{
3333 struct e1000_adv_tx_context_desc *context_desc;
Alexander Duyck80785292009-10-27 15:51:47 +00003334 struct pci_dev *pdev = tx_ring->pdev;
Auke Kok9d5c8242008-01-24 02:22:38 -08003335 struct igb_buffer *buffer_info;
3336 u32 info = 0, tu_cmd = 0;
Alexander Duyck80785292009-10-27 15:51:47 +00003337 unsigned int i;
Auke Kok9d5c8242008-01-24 02:22:38 -08003338
3339 if ((skb->ip_summed == CHECKSUM_PARTIAL) ||
3340 (tx_flags & IGB_TX_FLAGS_VLAN)) {
3341 i = tx_ring->next_to_use;
3342 buffer_info = &tx_ring->buffer_info[i];
3343 context_desc = E1000_TX_CTXTDESC_ADV(*tx_ring, i);
3344
3345 if (tx_flags & IGB_TX_FLAGS_VLAN)
3346 info |= (tx_flags & IGB_TX_FLAGS_VLAN_MASK);
3347 info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT);
3348 if (skb->ip_summed == CHECKSUM_PARTIAL)
3349 info |= skb_network_header_len(skb);
3350
3351 context_desc->vlan_macip_lens = cpu_to_le32(info);
3352
3353 tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT);
3354
3355 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Arthur Jonesfa4a7ef2009-03-21 16:55:07 -07003356 __be16 protocol;
3357
3358 if (skb->protocol == cpu_to_be16(ETH_P_8021Q)) {
3359 const struct vlan_ethhdr *vhdr =
3360 (const struct vlan_ethhdr*)skb->data;
3361
3362 protocol = vhdr->h_vlan_encapsulated_proto;
3363 } else {
3364 protocol = skb->protocol;
3365 }
3366
3367 switch (protocol) {
Harvey Harrison09640e62009-02-01 00:45:17 -08003368 case cpu_to_be16(ETH_P_IP):
Auke Kok9d5c8242008-01-24 02:22:38 -08003369 tu_cmd |= E1000_ADVTXD_TUCMD_IPV4;
Mitch Williams44b0cda2008-03-07 10:32:13 -08003370 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
3371 tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
Jesse Brandeburgb9473562009-04-27 22:36:13 +00003372 else if (ip_hdr(skb)->protocol == IPPROTO_SCTP)
3373 tu_cmd |= E1000_ADVTXD_TUCMD_L4T_SCTP;
Mitch Williams44b0cda2008-03-07 10:32:13 -08003374 break;
Harvey Harrison09640e62009-02-01 00:45:17 -08003375 case cpu_to_be16(ETH_P_IPV6):
Mitch Williams44b0cda2008-03-07 10:32:13 -08003376 /* XXX what about other V6 headers?? */
3377 if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
3378 tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP;
Jesse Brandeburgb9473562009-04-27 22:36:13 +00003379 else if (ipv6_hdr(skb)->nexthdr == IPPROTO_SCTP)
3380 tu_cmd |= E1000_ADVTXD_TUCMD_L4T_SCTP;
Mitch Williams44b0cda2008-03-07 10:32:13 -08003381 break;
3382 default:
3383 if (unlikely(net_ratelimit()))
Alexander Duyck80785292009-10-27 15:51:47 +00003384 dev_warn(&pdev->dev,
Mitch Williams44b0cda2008-03-07 10:32:13 -08003385 "partial checksum but proto=%x!\n",
3386 skb->protocol);
3387 break;
3388 }
Auke Kok9d5c8242008-01-24 02:22:38 -08003389 }
3390
3391 context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd);
3392 context_desc->seqnum_seed = 0;
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003393 if (tx_ring->flags & IGB_RING_FLAG_TX_CTX_IDX)
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07003394 context_desc->mss_l4len_idx =
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003395 cpu_to_le32(tx_ring->reg_idx << 4);
Auke Kok9d5c8242008-01-24 02:22:38 -08003396
3397 buffer_info->time_stamp = jiffies;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003398 buffer_info->next_to_watch = i;
Auke Kok9d5c8242008-01-24 02:22:38 -08003399 buffer_info->dma = 0;
3400
3401 i++;
3402 if (i == tx_ring->count)
3403 i = 0;
3404 tx_ring->next_to_use = i;
3405
3406 return true;
3407 }
Auke Kok9d5c8242008-01-24 02:22:38 -08003408 return false;
3409}
3410
3411#define IGB_MAX_TXD_PWR 16
3412#define IGB_MAX_DATA_PER_TXD (1<<IGB_MAX_TXD_PWR)
3413
Alexander Duyck80785292009-10-27 15:51:47 +00003414static inline int igb_tx_map_adv(struct igb_ring *tx_ring, struct sk_buff *skb,
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003415 unsigned int first)
Auke Kok9d5c8242008-01-24 02:22:38 -08003416{
3417 struct igb_buffer *buffer_info;
Alexander Duyck80785292009-10-27 15:51:47 +00003418 struct pci_dev *pdev = tx_ring->pdev;
Auke Kok9d5c8242008-01-24 02:22:38 -08003419 unsigned int len = skb_headlen(skb);
3420 unsigned int count = 0, i;
3421 unsigned int f;
Alexander Duyck65689fe2009-03-20 00:17:43 +00003422 dma_addr_t *map;
Auke Kok9d5c8242008-01-24 02:22:38 -08003423
3424 i = tx_ring->next_to_use;
3425
Alexander Duyck80785292009-10-27 15:51:47 +00003426 if (skb_dma_map(&pdev->dev, skb, DMA_TO_DEVICE)) {
3427 dev_err(&pdev->dev, "TX DMA map failed\n");
Alexander Duyck65689fe2009-03-20 00:17:43 +00003428 return 0;
3429 }
3430
3431 map = skb_shinfo(skb)->dma_maps;
3432
Auke Kok9d5c8242008-01-24 02:22:38 -08003433 buffer_info = &tx_ring->buffer_info[i];
3434 BUG_ON(len >= IGB_MAX_DATA_PER_TXD);
3435 buffer_info->length = len;
3436 /* set time_stamp *before* dma to help avoid a possible race */
3437 buffer_info->time_stamp = jiffies;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003438 buffer_info->next_to_watch = i;
Eric Dumazet042a53a2009-06-05 04:04:16 +00003439 buffer_info->dma = skb_shinfo(skb)->dma_head;
Auke Kok9d5c8242008-01-24 02:22:38 -08003440
3441 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) {
3442 struct skb_frag_struct *frag;
3443
Alexander Duyck65689fe2009-03-20 00:17:43 +00003444 i++;
3445 if (i == tx_ring->count)
3446 i = 0;
3447
Auke Kok9d5c8242008-01-24 02:22:38 -08003448 frag = &skb_shinfo(skb)->frags[f];
3449 len = frag->size;
3450
3451 buffer_info = &tx_ring->buffer_info[i];
3452 BUG_ON(len >= IGB_MAX_DATA_PER_TXD);
3453 buffer_info->length = len;
3454 buffer_info->time_stamp = jiffies;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003455 buffer_info->next_to_watch = i;
Alexander Duyck65689fe2009-03-20 00:17:43 +00003456 buffer_info->dma = map[count];
Auke Kok9d5c8242008-01-24 02:22:38 -08003457 count++;
Auke Kok9d5c8242008-01-24 02:22:38 -08003458 }
3459
Auke Kok9d5c8242008-01-24 02:22:38 -08003460 tx_ring->buffer_info[i].skb = skb;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003461 tx_ring->buffer_info[first].next_to_watch = i;
Auke Kok9d5c8242008-01-24 02:22:38 -08003462
Eric Dumazet042a53a2009-06-05 04:04:16 +00003463 return count + 1;
Auke Kok9d5c8242008-01-24 02:22:38 -08003464}
3465
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003466static inline void igb_tx_queue_adv(struct igb_ring *tx_ring,
Auke Kok9d5c8242008-01-24 02:22:38 -08003467 int tx_flags, int count, u32 paylen,
3468 u8 hdr_len)
3469{
3470 union e1000_adv_tx_desc *tx_desc = NULL;
3471 struct igb_buffer *buffer_info;
3472 u32 olinfo_status = 0, cmd_type_len;
3473 unsigned int i;
3474
3475 cmd_type_len = (E1000_ADVTXD_DTYP_DATA | E1000_ADVTXD_DCMD_IFCS |
3476 E1000_ADVTXD_DCMD_DEXT);
3477
3478 if (tx_flags & IGB_TX_FLAGS_VLAN)
3479 cmd_type_len |= E1000_ADVTXD_DCMD_VLE;
3480
Patrick Ohly33af6bc2009-02-12 05:03:43 +00003481 if (tx_flags & IGB_TX_FLAGS_TSTAMP)
3482 cmd_type_len |= E1000_ADVTXD_MAC_TSTAMP;
3483
Auke Kok9d5c8242008-01-24 02:22:38 -08003484 if (tx_flags & IGB_TX_FLAGS_TSO) {
3485 cmd_type_len |= E1000_ADVTXD_DCMD_TSE;
3486
3487 /* insert tcp checksum */
3488 olinfo_status |= E1000_TXD_POPTS_TXSM << 8;
3489
3490 /* insert ip checksum */
3491 if (tx_flags & IGB_TX_FLAGS_IPV4)
3492 olinfo_status |= E1000_TXD_POPTS_IXSM << 8;
3493
3494 } else if (tx_flags & IGB_TX_FLAGS_CSUM) {
3495 olinfo_status |= E1000_TXD_POPTS_TXSM << 8;
3496 }
3497
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003498 if ((tx_ring->flags & IGB_RING_FLAG_TX_CTX_IDX) &&
3499 (tx_flags & (IGB_TX_FLAGS_CSUM |
3500 IGB_TX_FLAGS_TSO |
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07003501 IGB_TX_FLAGS_VLAN)))
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003502 olinfo_status |= tx_ring->reg_idx << 4;
Auke Kok9d5c8242008-01-24 02:22:38 -08003503
3504 olinfo_status |= ((paylen - hdr_len) << E1000_ADVTXD_PAYLEN_SHIFT);
3505
3506 i = tx_ring->next_to_use;
3507 while (count--) {
3508 buffer_info = &tx_ring->buffer_info[i];
3509 tx_desc = E1000_TX_DESC_ADV(*tx_ring, i);
3510 tx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma);
3511 tx_desc->read.cmd_type_len =
3512 cpu_to_le32(cmd_type_len | buffer_info->length);
3513 tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status);
3514 i++;
3515 if (i == tx_ring->count)
3516 i = 0;
3517 }
3518
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003519 tx_desc->read.cmd_type_len |= cpu_to_le32(IGB_ADVTXD_DCMD);
Auke Kok9d5c8242008-01-24 02:22:38 -08003520 /* Force memory writes to complete before letting h/w
3521 * know there are new descriptors to fetch. (Only
3522 * applicable for weak-ordered memory model archs,
3523 * such as IA-64). */
3524 wmb();
3525
3526 tx_ring->next_to_use = i;
Alexander Duyckfce99e32009-10-27 15:51:27 +00003527 writel(i, tx_ring->tail);
Auke Kok9d5c8242008-01-24 02:22:38 -08003528 /* we need this if more than one processor can write to our tail
3529 * at a time, it syncronizes IO on IA64/Altix systems */
3530 mmiowb();
3531}
3532
Alexander Duycke694e962009-10-27 15:53:06 +00003533static int __igb_maybe_stop_tx(struct igb_ring *tx_ring, int size)
Auke Kok9d5c8242008-01-24 02:22:38 -08003534{
Alexander Duycke694e962009-10-27 15:53:06 +00003535 struct net_device *netdev = tx_ring->netdev;
3536
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003537 netif_stop_subqueue(netdev, tx_ring->queue_index);
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003538
Auke Kok9d5c8242008-01-24 02:22:38 -08003539 /* Herbert's original patch had:
3540 * smp_mb__after_netif_stop_queue();
3541 * but since that doesn't exist yet, just open code it. */
3542 smp_mb();
3543
3544 /* We need to check again in a case another CPU has just
3545 * made room available. */
Alexander Duyckc493ea42009-03-20 00:16:50 +00003546 if (igb_desc_unused(tx_ring) < size)
Auke Kok9d5c8242008-01-24 02:22:38 -08003547 return -EBUSY;
3548
3549 /* A reprieve! */
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003550 netif_wake_subqueue(netdev, tx_ring->queue_index);
Alexander Duyck04a5fcaa2009-10-27 15:52:27 +00003551 tx_ring->tx_stats.restart_queue++;
Auke Kok9d5c8242008-01-24 02:22:38 -08003552 return 0;
3553}
3554
Alexander Duycke694e962009-10-27 15:53:06 +00003555static int igb_maybe_stop_tx(struct igb_ring *tx_ring, int size)
Auke Kok9d5c8242008-01-24 02:22:38 -08003556{
Alexander Duyckc493ea42009-03-20 00:16:50 +00003557 if (igb_desc_unused(tx_ring) >= size)
Auke Kok9d5c8242008-01-24 02:22:38 -08003558 return 0;
Alexander Duycke694e962009-10-27 15:53:06 +00003559 return __igb_maybe_stop_tx(tx_ring, size);
Auke Kok9d5c8242008-01-24 02:22:38 -08003560}
3561
Alexander Duyckb1a436c2009-10-27 15:54:43 +00003562netdev_tx_t igb_xmit_frame_ring_adv(struct sk_buff *skb,
3563 struct igb_ring *tx_ring)
Auke Kok9d5c8242008-01-24 02:22:38 -08003564{
Alexander Duycke694e962009-10-27 15:53:06 +00003565 struct igb_adapter *adapter = netdev_priv(tx_ring->netdev);
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003566 unsigned int first;
Auke Kok9d5c8242008-01-24 02:22:38 -08003567 unsigned int tx_flags = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08003568 u8 hdr_len = 0;
Alexander Duyck65689fe2009-03-20 00:17:43 +00003569 int count = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08003570 int tso = 0;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00003571 union skb_shared_tx *shtx = skb_tx(skb);
Auke Kok9d5c8242008-01-24 02:22:38 -08003572
Auke Kok9d5c8242008-01-24 02:22:38 -08003573 /* need: 1 descriptor per page,
3574 * + 2 desc gap to keep tail from touching head,
3575 * + 1 desc for skb->data,
3576 * + 1 desc for context descriptor,
3577 * otherwise try next time */
Alexander Duycke694e962009-10-27 15:53:06 +00003578 if (igb_maybe_stop_tx(tx_ring, skb_shinfo(skb)->nr_frags + 4)) {
Auke Kok9d5c8242008-01-24 02:22:38 -08003579 /* this is a hard error */
Auke Kok9d5c8242008-01-24 02:22:38 -08003580 return NETDEV_TX_BUSY;
3581 }
Patrick Ohly33af6bc2009-02-12 05:03:43 +00003582
Patrick Ohly33af6bc2009-02-12 05:03:43 +00003583 if (unlikely(shtx->hardware)) {
3584 shtx->in_progress = 1;
3585 tx_flags |= IGB_TX_FLAGS_TSTAMP;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00003586 }
Auke Kok9d5c8242008-01-24 02:22:38 -08003587
3588 if (adapter->vlgrp && vlan_tx_tag_present(skb)) {
3589 tx_flags |= IGB_TX_FLAGS_VLAN;
3590 tx_flags |= (vlan_tx_tag_get(skb) << IGB_TX_FLAGS_VLAN_SHIFT);
3591 }
3592
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003593 if (skb->protocol == htons(ETH_P_IP))
3594 tx_flags |= IGB_TX_FLAGS_IPV4;
3595
Alexander Duyck0e014cb2008-12-26 01:33:18 -08003596 first = tx_ring->next_to_use;
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003597 if (skb_is_gso(skb)) {
3598 tso = igb_tso_adv(tx_ring, skb, tx_flags, &hdr_len);
3599 if (tso < 0) {
3600 dev_kfree_skb_any(skb);
3601 return NETDEV_TX_OK;
3602 }
Auke Kok9d5c8242008-01-24 02:22:38 -08003603 }
3604
3605 if (tso)
3606 tx_flags |= IGB_TX_FLAGS_TSO;
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003607 else if (igb_tx_csum_adv(tx_ring, skb, tx_flags) &&
Alexander Duyckbc1cbd32009-02-13 14:45:17 +00003608 (skb->ip_summed == CHECKSUM_PARTIAL))
3609 tx_flags |= IGB_TX_FLAGS_CSUM;
Auke Kok9d5c8242008-01-24 02:22:38 -08003610
Alexander Duyck65689fe2009-03-20 00:17:43 +00003611 /*
3612 * count reflects descriptors mapped, if 0 then mapping error
3613 * has occured and we need to rewind the descriptor queue
3614 */
Alexander Duyck80785292009-10-27 15:51:47 +00003615 count = igb_tx_map_adv(tx_ring, skb, first);
Auke Kok9d5c8242008-01-24 02:22:38 -08003616
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003617 if (!count) {
Alexander Duyck65689fe2009-03-20 00:17:43 +00003618 dev_kfree_skb_any(skb);
3619 tx_ring->buffer_info[first].time_stamp = 0;
3620 tx_ring->next_to_use = first;
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003621 return NETDEV_TX_OK;
Alexander Duyck65689fe2009-03-20 00:17:43 +00003622 }
Auke Kok9d5c8242008-01-24 02:22:38 -08003623
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003624 igb_tx_queue_adv(tx_ring, tx_flags, count, skb->len, hdr_len);
3625
3626 /* Make sure there is space in the ring for the next send. */
Alexander Duycke694e962009-10-27 15:53:06 +00003627 igb_maybe_stop_tx(tx_ring, MAX_SKB_FRAGS + 4);
Alexander Duyck85ad76b2009-10-27 15:52:46 +00003628
Auke Kok9d5c8242008-01-24 02:22:38 -08003629 return NETDEV_TX_OK;
3630}
3631
Stephen Hemminger3b29a562009-08-31 19:50:55 +00003632static netdev_tx_t igb_xmit_frame_adv(struct sk_buff *skb,
3633 struct net_device *netdev)
Auke Kok9d5c8242008-01-24 02:22:38 -08003634{
3635 struct igb_adapter *adapter = netdev_priv(netdev);
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003636 struct igb_ring *tx_ring;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003637 int r_idx = 0;
Alexander Duyckb1a436c2009-10-27 15:54:43 +00003638
3639 if (test_bit(__IGB_DOWN, &adapter->state)) {
3640 dev_kfree_skb_any(skb);
3641 return NETDEV_TX_OK;
3642 }
3643
3644 if (skb->len <= 0) {
3645 dev_kfree_skb_any(skb);
3646 return NETDEV_TX_OK;
3647 }
3648
Alexander Duyck1bfaf072009-02-19 20:39:23 -08003649 r_idx = skb->queue_mapping & (IGB_ABS_MAX_TX_QUEUES - 1);
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003650 tx_ring = adapter->multi_tx_table[r_idx];
Auke Kok9d5c8242008-01-24 02:22:38 -08003651
3652 /* This goes back to the question of how to logically map a tx queue
3653 * to a flow. Right now, performance is impacted slightly negatively
3654 * if using multiple tx queues. If the stack breaks away from a
3655 * single qdisc implementation, we can look at this again. */
Alexander Duycke694e962009-10-27 15:53:06 +00003656 return igb_xmit_frame_ring_adv(skb, tx_ring);
Auke Kok9d5c8242008-01-24 02:22:38 -08003657}
3658
3659/**
3660 * igb_tx_timeout - Respond to a Tx Hang
3661 * @netdev: network interface device structure
3662 **/
3663static void igb_tx_timeout(struct net_device *netdev)
3664{
3665 struct igb_adapter *adapter = netdev_priv(netdev);
3666 struct e1000_hw *hw = &adapter->hw;
3667
3668 /* Do the reset outside of interrupt context */
3669 adapter->tx_timeout_count++;
3670 schedule_work(&adapter->reset_task);
Alexander Duyck265de402009-02-06 23:22:52 +00003671 wr32(E1000_EICS,
3672 (adapter->eims_enable_mask & ~adapter->eims_other));
Auke Kok9d5c8242008-01-24 02:22:38 -08003673}
3674
3675static void igb_reset_task(struct work_struct *work)
3676{
3677 struct igb_adapter *adapter;
3678 adapter = container_of(work, struct igb_adapter, reset_task);
3679
3680 igb_reinit_locked(adapter);
3681}
3682
3683/**
3684 * igb_get_stats - Get System Network Statistics
3685 * @netdev: network interface device structure
3686 *
3687 * Returns the address of the device statistics structure.
3688 * The statistics are actually updated from the timer callback.
3689 **/
Alexander Duyck73cd78f2009-02-12 18:16:59 +00003690static struct net_device_stats *igb_get_stats(struct net_device *netdev)
Auke Kok9d5c8242008-01-24 02:22:38 -08003691{
Auke Kok9d5c8242008-01-24 02:22:38 -08003692 /* only return the current stats */
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003693 return &netdev->stats;
Auke Kok9d5c8242008-01-24 02:22:38 -08003694}
3695
3696/**
3697 * igb_change_mtu - Change the Maximum Transfer Unit
3698 * @netdev: network interface device structure
3699 * @new_mtu: new value for maximum frame size
3700 *
3701 * Returns 0 on success, negative on failure
3702 **/
3703static int igb_change_mtu(struct net_device *netdev, int new_mtu)
3704{
3705 struct igb_adapter *adapter = netdev_priv(netdev);
3706 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
Alexander Duyck4c844852009-10-27 15:52:07 +00003707 u32 rx_buffer_len, i;
Auke Kok9d5c8242008-01-24 02:22:38 -08003708
3709 if ((max_frame < ETH_ZLEN + ETH_FCS_LEN) ||
3710 (max_frame > MAX_JUMBO_FRAME_SIZE)) {
3711 dev_err(&adapter->pdev->dev, "Invalid MTU setting\n");
3712 return -EINVAL;
3713 }
3714
Auke Kok9d5c8242008-01-24 02:22:38 -08003715 if (max_frame > MAX_STD_JUMBO_FRAME_SIZE) {
3716 dev_err(&adapter->pdev->dev, "MTU > 9216 not supported.\n");
3717 return -EINVAL;
3718 }
3719
3720 while (test_and_set_bit(__IGB_RESETTING, &adapter->state))
3721 msleep(1);
Alexander Duyck73cd78f2009-02-12 18:16:59 +00003722
Auke Kok9d5c8242008-01-24 02:22:38 -08003723 /* igb_down has a dependency on max_frame_size */
3724 adapter->max_frame_size = max_frame;
Auke Kok9d5c8242008-01-24 02:22:38 -08003725 /* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
3726 * means we reserve 2 more, this pushes us to allocate from the next
3727 * larger slab size.
3728 * i.e. RXBUFFER_2048 --> size-4096 slab
3729 */
3730
Alexander Duyck7d95b712009-10-27 15:50:08 +00003731 if (max_frame <= IGB_RXBUFFER_1024)
Alexander Duyck4c844852009-10-27 15:52:07 +00003732 rx_buffer_len = IGB_RXBUFFER_1024;
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00003733 else if (max_frame <= MAXIMUM_ETHERNET_VLAN_SIZE)
Alexander Duyck4c844852009-10-27 15:52:07 +00003734 rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00003735 else
Alexander Duyck4c844852009-10-27 15:52:07 +00003736 rx_buffer_len = IGB_RXBUFFER_128;
3737
3738 if (netif_running(netdev))
3739 igb_down(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08003740
3741 dev_info(&adapter->pdev->dev, "changing MTU from %d to %d\n",
3742 netdev->mtu, new_mtu);
3743 netdev->mtu = new_mtu;
3744
Alexander Duyck4c844852009-10-27 15:52:07 +00003745 for (i = 0; i < adapter->num_rx_queues; i++)
3746 adapter->rx_ring[i].rx_buffer_len = rx_buffer_len;
3747
Auke Kok9d5c8242008-01-24 02:22:38 -08003748 if (netif_running(netdev))
3749 igb_up(adapter);
3750 else
3751 igb_reset(adapter);
3752
3753 clear_bit(__IGB_RESETTING, &adapter->state);
3754
3755 return 0;
3756}
3757
3758/**
3759 * igb_update_stats - Update the board statistics counters
3760 * @adapter: board private structure
3761 **/
3762
3763void igb_update_stats(struct igb_adapter *adapter)
3764{
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003765 struct net_device *netdev = adapter->netdev;
Auke Kok9d5c8242008-01-24 02:22:38 -08003766 struct e1000_hw *hw = &adapter->hw;
3767 struct pci_dev *pdev = adapter->pdev;
Alexander Duyck3f9c0162009-10-27 23:48:12 +00003768 u32 rnbc;
Auke Kok9d5c8242008-01-24 02:22:38 -08003769 u16 phy_tmp;
Alexander Duyck3f9c0162009-10-27 23:48:12 +00003770 int i;
3771 u64 bytes, packets;
Auke Kok9d5c8242008-01-24 02:22:38 -08003772
3773#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
3774
3775 /*
3776 * Prevent stats update while adapter is being reset, or if the pci
3777 * connection is down.
3778 */
3779 if (adapter->link_speed == 0)
3780 return;
3781 if (pci_channel_offline(pdev))
3782 return;
3783
Alexander Duyck3f9c0162009-10-27 23:48:12 +00003784 bytes = 0;
3785 packets = 0;
3786 for (i = 0; i < adapter->num_rx_queues; i++) {
3787 u32 rqdpc_tmp = rd32(E1000_RQDPC(i)) & 0x0FFF;
3788 adapter->rx_ring[i].rx_stats.drops += rqdpc_tmp;
3789 netdev->stats.rx_fifo_errors += rqdpc_tmp;
3790 bytes += adapter->rx_ring[i].rx_stats.bytes;
3791 packets += adapter->rx_ring[i].rx_stats.packets;
3792 }
3793
3794 netdev->stats.rx_bytes = bytes;
3795 netdev->stats.rx_packets = packets;
3796
3797 bytes = 0;
3798 packets = 0;
3799 for (i = 0; i < adapter->num_tx_queues; i++) {
3800 bytes += adapter->tx_ring[i].tx_stats.bytes;
3801 packets += adapter->tx_ring[i].tx_stats.packets;
3802 }
3803 netdev->stats.tx_bytes = bytes;
3804 netdev->stats.tx_packets = packets;
3805
3806 /* read stats registers */
Auke Kok9d5c8242008-01-24 02:22:38 -08003807 adapter->stats.crcerrs += rd32(E1000_CRCERRS);
3808 adapter->stats.gprc += rd32(E1000_GPRC);
3809 adapter->stats.gorc += rd32(E1000_GORCL);
3810 rd32(E1000_GORCH); /* clear GORCL */
3811 adapter->stats.bprc += rd32(E1000_BPRC);
3812 adapter->stats.mprc += rd32(E1000_MPRC);
3813 adapter->stats.roc += rd32(E1000_ROC);
3814
3815 adapter->stats.prc64 += rd32(E1000_PRC64);
3816 adapter->stats.prc127 += rd32(E1000_PRC127);
3817 adapter->stats.prc255 += rd32(E1000_PRC255);
3818 adapter->stats.prc511 += rd32(E1000_PRC511);
3819 adapter->stats.prc1023 += rd32(E1000_PRC1023);
3820 adapter->stats.prc1522 += rd32(E1000_PRC1522);
3821 adapter->stats.symerrs += rd32(E1000_SYMERRS);
3822 adapter->stats.sec += rd32(E1000_SEC);
3823
3824 adapter->stats.mpc += rd32(E1000_MPC);
3825 adapter->stats.scc += rd32(E1000_SCC);
3826 adapter->stats.ecol += rd32(E1000_ECOL);
3827 adapter->stats.mcc += rd32(E1000_MCC);
3828 adapter->stats.latecol += rd32(E1000_LATECOL);
3829 adapter->stats.dc += rd32(E1000_DC);
3830 adapter->stats.rlec += rd32(E1000_RLEC);
3831 adapter->stats.xonrxc += rd32(E1000_XONRXC);
3832 adapter->stats.xontxc += rd32(E1000_XONTXC);
3833 adapter->stats.xoffrxc += rd32(E1000_XOFFRXC);
3834 adapter->stats.xofftxc += rd32(E1000_XOFFTXC);
3835 adapter->stats.fcruc += rd32(E1000_FCRUC);
3836 adapter->stats.gptc += rd32(E1000_GPTC);
3837 adapter->stats.gotc += rd32(E1000_GOTCL);
3838 rd32(E1000_GOTCH); /* clear GOTCL */
Alexander Duyck3f9c0162009-10-27 23:48:12 +00003839 rnbc = rd32(E1000_RNBC);
3840 adapter->stats.rnbc += rnbc;
3841 netdev->stats.rx_fifo_errors += rnbc;
Auke Kok9d5c8242008-01-24 02:22:38 -08003842 adapter->stats.ruc += rd32(E1000_RUC);
3843 adapter->stats.rfc += rd32(E1000_RFC);
3844 adapter->stats.rjc += rd32(E1000_RJC);
3845 adapter->stats.tor += rd32(E1000_TORH);
3846 adapter->stats.tot += rd32(E1000_TOTH);
3847 adapter->stats.tpr += rd32(E1000_TPR);
3848
3849 adapter->stats.ptc64 += rd32(E1000_PTC64);
3850 adapter->stats.ptc127 += rd32(E1000_PTC127);
3851 adapter->stats.ptc255 += rd32(E1000_PTC255);
3852 adapter->stats.ptc511 += rd32(E1000_PTC511);
3853 adapter->stats.ptc1023 += rd32(E1000_PTC1023);
3854 adapter->stats.ptc1522 += rd32(E1000_PTC1522);
3855
3856 adapter->stats.mptc += rd32(E1000_MPTC);
3857 adapter->stats.bptc += rd32(E1000_BPTC);
3858
3859 /* used for adaptive IFS */
3860
3861 hw->mac.tx_packet_delta = rd32(E1000_TPT);
3862 adapter->stats.tpt += hw->mac.tx_packet_delta;
3863 hw->mac.collision_delta = rd32(E1000_COLC);
3864 adapter->stats.colc += hw->mac.collision_delta;
3865
3866 adapter->stats.algnerrc += rd32(E1000_ALGNERRC);
3867 adapter->stats.rxerrc += rd32(E1000_RXERRC);
3868 adapter->stats.tncrs += rd32(E1000_TNCRS);
3869 adapter->stats.tsctc += rd32(E1000_TSCTC);
3870 adapter->stats.tsctfc += rd32(E1000_TSCTFC);
3871
3872 adapter->stats.iac += rd32(E1000_IAC);
3873 adapter->stats.icrxoc += rd32(E1000_ICRXOC);
3874 adapter->stats.icrxptc += rd32(E1000_ICRXPTC);
3875 adapter->stats.icrxatc += rd32(E1000_ICRXATC);
3876 adapter->stats.ictxptc += rd32(E1000_ICTXPTC);
3877 adapter->stats.ictxatc += rd32(E1000_ICTXATC);
3878 adapter->stats.ictxqec += rd32(E1000_ICTXQEC);
3879 adapter->stats.ictxqmtc += rd32(E1000_ICTXQMTC);
3880 adapter->stats.icrxdmtc += rd32(E1000_ICRXDMTC);
3881
3882 /* Fill out the OS statistics structure */
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003883 netdev->stats.multicast = adapter->stats.mprc;
3884 netdev->stats.collisions = adapter->stats.colc;
Auke Kok9d5c8242008-01-24 02:22:38 -08003885
3886 /* Rx Errors */
3887
3888 /* RLEC on some newer hardware can be incorrect so build
Jesper Dangaard Brouer8c0ab702009-05-26 13:50:31 +00003889 * our own version based on RUC and ROC */
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003890 netdev->stats.rx_errors = adapter->stats.rxerrc +
Auke Kok9d5c8242008-01-24 02:22:38 -08003891 adapter->stats.crcerrs + adapter->stats.algnerrc +
3892 adapter->stats.ruc + adapter->stats.roc +
3893 adapter->stats.cexterr;
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003894 netdev->stats.rx_length_errors = adapter->stats.ruc +
Auke Kok9d5c8242008-01-24 02:22:38 -08003895 adapter->stats.roc;
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003896 netdev->stats.rx_crc_errors = adapter->stats.crcerrs;
3897 netdev->stats.rx_frame_errors = adapter->stats.algnerrc;
3898 netdev->stats.rx_missed_errors = adapter->stats.mpc;
Auke Kok9d5c8242008-01-24 02:22:38 -08003899
3900 /* Tx Errors */
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003901 netdev->stats.tx_errors = adapter->stats.ecol +
Auke Kok9d5c8242008-01-24 02:22:38 -08003902 adapter->stats.latecol;
Ajit Khaparde8d24e932009-10-07 02:42:56 +00003903 netdev->stats.tx_aborted_errors = adapter->stats.ecol;
3904 netdev->stats.tx_window_errors = adapter->stats.latecol;
3905 netdev->stats.tx_carrier_errors = adapter->stats.tncrs;
Auke Kok9d5c8242008-01-24 02:22:38 -08003906
3907 /* Tx Dropped needs to be maintained elsewhere */
3908
3909 /* Phy Stats */
3910 if (hw->phy.media_type == e1000_media_type_copper) {
3911 if ((adapter->link_speed == SPEED_1000) &&
Alexander Duyck73cd78f2009-02-12 18:16:59 +00003912 (!igb_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
Auke Kok9d5c8242008-01-24 02:22:38 -08003913 phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
3914 adapter->phy_stats.idle_errors += phy_tmp;
3915 }
3916 }
3917
3918 /* Management Stats */
3919 adapter->stats.mgptc += rd32(E1000_MGTPTC);
3920 adapter->stats.mgprc += rd32(E1000_MGTPRC);
3921 adapter->stats.mgpdc += rd32(E1000_MGTPDC);
3922}
3923
Auke Kok9d5c8242008-01-24 02:22:38 -08003924static irqreturn_t igb_msix_other(int irq, void *data)
3925{
Alexander Duyck047e0032009-10-27 15:49:27 +00003926 struct igb_adapter *adapter = data;
Auke Kok9d5c8242008-01-24 02:22:38 -08003927 struct e1000_hw *hw = &adapter->hw;
PJ Waskiewicz844290e2008-06-27 11:00:39 -07003928 u32 icr = rd32(E1000_ICR);
PJ Waskiewicz844290e2008-06-27 11:00:39 -07003929 /* reading ICR causes bit 31 of EICR to be cleared */
Alexander Duyckdda0e082009-02-06 23:19:08 +00003930
Alexander Duyck047e0032009-10-27 15:49:27 +00003931 if (icr & E1000_ICR_DOUTSYNC) {
Alexander Duyckdda0e082009-02-06 23:19:08 +00003932 /* HW is reporting DMA is out of sync */
3933 adapter->stats.doosync++;
3934 }
Alexander Duyckeebbbdb2009-02-06 23:19:29 +00003935
Alexander Duyck4ae196d2009-02-19 20:40:07 -08003936 /* Check for a mailbox event */
3937 if (icr & E1000_ICR_VMMB)
3938 igb_msg_task(adapter);
3939
3940 if (icr & E1000_ICR_LSC) {
3941 hw->mac.get_link_status = 1;
3942 /* guard against interrupt when we're going down */
3943 if (!test_bit(__IGB_DOWN, &adapter->state))
3944 mod_timer(&adapter->watchdog_timer, jiffies + 1);
3945 }
3946
3947 wr32(E1000_IMS, E1000_IMS_LSC | E1000_IMS_DOUTSYNC | E1000_IMS_VMMB);
PJ Waskiewicz844290e2008-06-27 11:00:39 -07003948 wr32(E1000_EIMS, adapter->eims_other);
Auke Kok9d5c8242008-01-24 02:22:38 -08003949
3950 return IRQ_HANDLED;
3951}
3952
Alexander Duyck047e0032009-10-27 15:49:27 +00003953static void igb_write_itr(struct igb_q_vector *q_vector)
Auke Kok9d5c8242008-01-24 02:22:38 -08003954{
Alexander Duyck047e0032009-10-27 15:49:27 +00003955 u32 itr_val = q_vector->itr_val & 0x7FFC;
Auke Kok9d5c8242008-01-24 02:22:38 -08003956
Alexander Duyck047e0032009-10-27 15:49:27 +00003957 if (!q_vector->set_itr)
3958 return;
Alexander Duyck73cd78f2009-02-12 18:16:59 +00003959
Alexander Duyck047e0032009-10-27 15:49:27 +00003960 if (!itr_val)
3961 itr_val = 0x4;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003962
Alexander Duyck047e0032009-10-27 15:49:27 +00003963 if (q_vector->itr_shift)
3964 itr_val |= itr_val << q_vector->itr_shift;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003965 else
Alexander Duyck047e0032009-10-27 15:49:27 +00003966 itr_val |= 0x8000000;
3967
3968 writel(itr_val, q_vector->itr_register);
3969 q_vector->set_itr = 0;
3970}
3971
3972static irqreturn_t igb_msix_ring(int irq, void *data)
3973{
3974 struct igb_q_vector *q_vector = data;
3975
3976 /* Write the ITR value calculated from the previous interrupt. */
3977 igb_write_itr(q_vector);
3978
3979 napi_schedule(&q_vector->napi);
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07003980
Auke Kok9d5c8242008-01-24 02:22:38 -08003981 return IRQ_HANDLED;
3982}
3983
Jeff Kirsher421e02f2008-10-17 11:08:31 -07003984#ifdef CONFIG_IGB_DCA
Alexander Duyck047e0032009-10-27 15:49:27 +00003985static void igb_update_dca(struct igb_q_vector *q_vector)
Jeb Cramerfe4506b2008-07-08 15:07:55 -07003986{
Alexander Duyck047e0032009-10-27 15:49:27 +00003987 struct igb_adapter *adapter = q_vector->adapter;
Jeb Cramerfe4506b2008-07-08 15:07:55 -07003988 struct e1000_hw *hw = &adapter->hw;
3989 int cpu = get_cpu();
Jeb Cramerfe4506b2008-07-08 15:07:55 -07003990
Alexander Duyck047e0032009-10-27 15:49:27 +00003991 if (q_vector->cpu == cpu)
3992 goto out_no_update;
3993
3994 if (q_vector->tx_ring) {
3995 int q = q_vector->tx_ring->reg_idx;
3996 u32 dca_txctrl = rd32(E1000_DCA_TXCTRL(q));
3997 if (hw->mac.type == e1000_82575) {
3998 dca_txctrl &= ~E1000_DCA_TXCTRL_CPUID_MASK;
3999 dca_txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
4000 } else {
4001 dca_txctrl &= ~E1000_DCA_TXCTRL_CPUID_MASK_82576;
4002 dca_txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu) <<
4003 E1000_DCA_TXCTRL_CPUID_SHIFT;
4004 }
4005 dca_txctrl |= E1000_DCA_TXCTRL_DESC_DCA_EN;
4006 wr32(E1000_DCA_TXCTRL(q), dca_txctrl);
4007 }
4008 if (q_vector->rx_ring) {
4009 int q = q_vector->rx_ring->reg_idx;
4010 u32 dca_rxctrl = rd32(E1000_DCA_RXCTRL(q));
4011 if (hw->mac.type == e1000_82575) {
4012 dca_rxctrl &= ~E1000_DCA_RXCTRL_CPUID_MASK;
4013 dca_rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu);
4014 } else {
Alexander Duyck2d064c02008-07-08 15:10:12 -07004015 dca_rxctrl &= ~E1000_DCA_RXCTRL_CPUID_MASK_82576;
Maciej Sosnowski92be7912009-03-13 20:40:21 +00004016 dca_rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu) <<
Alexander Duyck2d064c02008-07-08 15:10:12 -07004017 E1000_DCA_RXCTRL_CPUID_SHIFT;
Alexander Duyck2d064c02008-07-08 15:10:12 -07004018 }
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004019 dca_rxctrl |= E1000_DCA_RXCTRL_DESC_DCA_EN;
4020 dca_rxctrl |= E1000_DCA_RXCTRL_HEAD_DCA_EN;
4021 dca_rxctrl |= E1000_DCA_RXCTRL_DATA_DCA_EN;
4022 wr32(E1000_DCA_RXCTRL(q), dca_rxctrl);
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004023 }
Alexander Duyck047e0032009-10-27 15:49:27 +00004024 q_vector->cpu = cpu;
4025out_no_update:
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004026 put_cpu();
4027}
4028
4029static void igb_setup_dca(struct igb_adapter *adapter)
4030{
Alexander Duyck7e0e99e2009-05-21 13:06:56 +00004031 struct e1000_hw *hw = &adapter->hw;
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004032 int i;
4033
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07004034 if (!(adapter->flags & IGB_FLAG_DCA_ENABLED))
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004035 return;
4036
Alexander Duyck7e0e99e2009-05-21 13:06:56 +00004037 /* Always use CB2 mode, difference is masked in the CB driver. */
4038 wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_CB2);
4039
Alexander Duyck047e0032009-10-27 15:49:27 +00004040 for (i = 0; i < adapter->num_q_vectors; i++) {
4041 struct igb_q_vector *q_vector = adapter->q_vector[i];
4042 q_vector->cpu = -1;
4043 igb_update_dca(q_vector);
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004044 }
4045}
4046
4047static int __igb_notify_dca(struct device *dev, void *data)
4048{
4049 struct net_device *netdev = dev_get_drvdata(dev);
4050 struct igb_adapter *adapter = netdev_priv(netdev);
4051 struct e1000_hw *hw = &adapter->hw;
4052 unsigned long event = *(unsigned long *)data;
4053
4054 switch (event) {
4055 case DCA_PROVIDER_ADD:
4056 /* if already enabled, don't do it again */
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07004057 if (adapter->flags & IGB_FLAG_DCA_ENABLED)
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004058 break;
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004059 /* Always use CB2 mode, difference is masked
4060 * in the CB driver. */
Alexander Duyckcbd347a2009-02-15 23:59:44 -08004061 wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_CB2);
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004062 if (dca_add_requester(dev) == 0) {
Alexander Duyckbbd98fe2009-01-31 00:52:30 -08004063 adapter->flags |= IGB_FLAG_DCA_ENABLED;
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004064 dev_info(&adapter->pdev->dev, "DCA enabled\n");
4065 igb_setup_dca(adapter);
4066 break;
4067 }
4068 /* Fall Through since DCA is disabled. */
4069 case DCA_PROVIDER_REMOVE:
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07004070 if (adapter->flags & IGB_FLAG_DCA_ENABLED) {
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004071 /* without this a class_device is left
Alexander Duyck047e0032009-10-27 15:49:27 +00004072 * hanging around in the sysfs model */
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004073 dca_remove_requester(dev);
4074 dev_info(&adapter->pdev->dev, "DCA disabled\n");
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07004075 adapter->flags &= ~IGB_FLAG_DCA_ENABLED;
Alexander Duyckcbd347a2009-02-15 23:59:44 -08004076 wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_DISABLE);
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004077 }
4078 break;
4079 }
Alexander Duyckbbd98fe2009-01-31 00:52:30 -08004080
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004081 return 0;
4082}
4083
4084static int igb_notify_dca(struct notifier_block *nb, unsigned long event,
4085 void *p)
4086{
4087 int ret_val;
4088
4089 ret_val = driver_for_each_device(&igb_driver.driver, NULL, &event,
4090 __igb_notify_dca);
4091
4092 return ret_val ? NOTIFY_BAD : NOTIFY_DONE;
4093}
Jeff Kirsher421e02f2008-10-17 11:08:31 -07004094#endif /* CONFIG_IGB_DCA */
Auke Kok9d5c8242008-01-24 02:22:38 -08004095
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004096static void igb_ping_all_vfs(struct igb_adapter *adapter)
4097{
4098 struct e1000_hw *hw = &adapter->hw;
4099 u32 ping;
4100 int i;
4101
4102 for (i = 0 ; i < adapter->vfs_allocated_count; i++) {
4103 ping = E1000_PF_CONTROL_MSG;
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004104 if (adapter->vf_data[i].flags & IGB_VF_FLAG_CTS)
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004105 ping |= E1000_VT_MSGTYPE_CTS;
4106 igb_write_mbx(hw, &ping, 1, i);
4107 }
4108}
4109
Alexander Duyck7d5753f2009-10-27 23:47:16 +00004110static int igb_set_vf_promisc(struct igb_adapter *adapter, u32 *msgbuf, u32 vf)
4111{
4112 struct e1000_hw *hw = &adapter->hw;
4113 u32 vmolr = rd32(E1000_VMOLR(vf));
4114 struct vf_data_storage *vf_data = &adapter->vf_data[vf];
4115
4116 vf_data->flags |= ~(IGB_VF_FLAG_UNI_PROMISC |
4117 IGB_VF_FLAG_MULTI_PROMISC);
4118 vmolr &= ~(E1000_VMOLR_ROPE | E1000_VMOLR_ROMPE | E1000_VMOLR_MPME);
4119
4120 if (*msgbuf & E1000_VF_SET_PROMISC_MULTICAST) {
4121 vmolr |= E1000_VMOLR_MPME;
4122 *msgbuf &= ~E1000_VF_SET_PROMISC_MULTICAST;
4123 } else {
4124 /*
4125 * if we have hashes and we are clearing a multicast promisc
4126 * flag we need to write the hashes to the MTA as this step
4127 * was previously skipped
4128 */
4129 if (vf_data->num_vf_mc_hashes > 30) {
4130 vmolr |= E1000_VMOLR_MPME;
4131 } else if (vf_data->num_vf_mc_hashes) {
4132 int j;
4133 vmolr |= E1000_VMOLR_ROMPE;
4134 for (j = 0; j < vf_data->num_vf_mc_hashes; j++)
4135 igb_mta_set(hw, vf_data->vf_mc_hashes[j]);
4136 }
4137 }
4138
4139 wr32(E1000_VMOLR(vf), vmolr);
4140
4141 /* there are flags left unprocessed, likely not supported */
4142 if (*msgbuf & E1000_VT_MSGINFO_MASK)
4143 return -EINVAL;
4144
4145 return 0;
4146
4147}
4148
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004149static int igb_set_vf_multicasts(struct igb_adapter *adapter,
4150 u32 *msgbuf, u32 vf)
4151{
4152 int n = (msgbuf[0] & E1000_VT_MSGINFO_MASK) >> E1000_VT_MSGINFO_SHIFT;
4153 u16 *hash_list = (u16 *)&msgbuf[1];
4154 struct vf_data_storage *vf_data = &adapter->vf_data[vf];
4155 int i;
4156
Alexander Duyck7d5753f2009-10-27 23:47:16 +00004157 /* salt away the number of multicast addresses assigned
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004158 * to this VF for later use to restore when the PF multi cast
4159 * list changes
4160 */
4161 vf_data->num_vf_mc_hashes = n;
4162
Alexander Duyck7d5753f2009-10-27 23:47:16 +00004163 /* only up to 30 hash values supported */
4164 if (n > 30)
4165 n = 30;
4166
4167 /* store the hashes for later use */
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004168 for (i = 0; i < n; i++)
Joe Perchesa419aef2009-08-18 11:18:35 -07004169 vf_data->vf_mc_hashes[i] = hash_list[i];
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004170
4171 /* Flush and reset the mta with the new values */
Alexander Duyckff41f8d2009-09-03 14:48:56 +00004172 igb_set_rx_mode(adapter->netdev);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004173
4174 return 0;
4175}
4176
4177static void igb_restore_vf_multicasts(struct igb_adapter *adapter)
4178{
4179 struct e1000_hw *hw = &adapter->hw;
4180 struct vf_data_storage *vf_data;
4181 int i, j;
4182
4183 for (i = 0; i < adapter->vfs_allocated_count; i++) {
Alexander Duyck7d5753f2009-10-27 23:47:16 +00004184 u32 vmolr = rd32(E1000_VMOLR(i));
4185 vmolr &= ~(E1000_VMOLR_ROMPE | E1000_VMOLR_MPME);
4186
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004187 vf_data = &adapter->vf_data[i];
Alexander Duyck7d5753f2009-10-27 23:47:16 +00004188
4189 if ((vf_data->num_vf_mc_hashes > 30) ||
4190 (vf_data->flags & IGB_VF_FLAG_MULTI_PROMISC)) {
4191 vmolr |= E1000_VMOLR_MPME;
4192 } else if (vf_data->num_vf_mc_hashes) {
4193 vmolr |= E1000_VMOLR_ROMPE;
4194 for (j = 0; j < vf_data->num_vf_mc_hashes; j++)
4195 igb_mta_set(hw, vf_data->vf_mc_hashes[j]);
4196 }
4197 wr32(E1000_VMOLR(i), vmolr);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004198 }
4199}
4200
4201static void igb_clear_vf_vfta(struct igb_adapter *adapter, u32 vf)
4202{
4203 struct e1000_hw *hw = &adapter->hw;
4204 u32 pool_mask, reg, vid;
4205 int i;
4206
4207 pool_mask = 1 << (E1000_VLVF_POOLSEL_SHIFT + vf);
4208
4209 /* Find the vlan filter for this id */
4210 for (i = 0; i < E1000_VLVF_ARRAY_SIZE; i++) {
4211 reg = rd32(E1000_VLVF(i));
4212
4213 /* remove the vf from the pool */
4214 reg &= ~pool_mask;
4215
4216 /* if pool is empty then remove entry from vfta */
4217 if (!(reg & E1000_VLVF_POOLSEL_MASK) &&
4218 (reg & E1000_VLVF_VLANID_ENABLE)) {
4219 reg = 0;
4220 vid = reg & E1000_VLVF_VLANID_MASK;
4221 igb_vfta_set(hw, vid, false);
4222 }
4223
4224 wr32(E1000_VLVF(i), reg);
4225 }
Alexander Duyckae641bd2009-09-03 14:49:33 +00004226
4227 adapter->vf_data[vf].vlans_enabled = 0;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004228}
4229
4230static s32 igb_vlvf_set(struct igb_adapter *adapter, u32 vid, bool add, u32 vf)
4231{
4232 struct e1000_hw *hw = &adapter->hw;
4233 u32 reg, i;
4234
Alexander Duyck51466232009-10-27 23:47:35 +00004235 /* The vlvf table only exists on 82576 hardware and newer */
4236 if (hw->mac.type < e1000_82576)
4237 return -1;
4238
4239 /* we only need to do this if VMDq is enabled */
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004240 if (!adapter->vfs_allocated_count)
4241 return -1;
4242
4243 /* Find the vlan filter for this id */
4244 for (i = 0; i < E1000_VLVF_ARRAY_SIZE; i++) {
4245 reg = rd32(E1000_VLVF(i));
4246 if ((reg & E1000_VLVF_VLANID_ENABLE) &&
4247 vid == (reg & E1000_VLVF_VLANID_MASK))
4248 break;
4249 }
4250
4251 if (add) {
4252 if (i == E1000_VLVF_ARRAY_SIZE) {
4253 /* Did not find a matching VLAN ID entry that was
4254 * enabled. Search for a free filter entry, i.e.
4255 * one without the enable bit set
4256 */
4257 for (i = 0; i < E1000_VLVF_ARRAY_SIZE; i++) {
4258 reg = rd32(E1000_VLVF(i));
4259 if (!(reg & E1000_VLVF_VLANID_ENABLE))
4260 break;
4261 }
4262 }
4263 if (i < E1000_VLVF_ARRAY_SIZE) {
4264 /* Found an enabled/available entry */
4265 reg |= 1 << (E1000_VLVF_POOLSEL_SHIFT + vf);
4266
4267 /* if !enabled we need to set this up in vfta */
4268 if (!(reg & E1000_VLVF_VLANID_ENABLE)) {
Alexander Duyck51466232009-10-27 23:47:35 +00004269 /* add VID to filter table */
4270 igb_vfta_set(hw, vid, true);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004271 reg |= E1000_VLVF_VLANID_ENABLE;
4272 }
Alexander Duyckcad6d052009-03-13 20:41:37 +00004273 reg &= ~E1000_VLVF_VLANID_MASK;
4274 reg |= vid;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004275 wr32(E1000_VLVF(i), reg);
Alexander Duyckae641bd2009-09-03 14:49:33 +00004276
4277 /* do not modify RLPML for PF devices */
4278 if (vf >= adapter->vfs_allocated_count)
4279 return 0;
4280
4281 if (!adapter->vf_data[vf].vlans_enabled) {
4282 u32 size;
4283 reg = rd32(E1000_VMOLR(vf));
4284 size = reg & E1000_VMOLR_RLPML_MASK;
4285 size += 4;
4286 reg &= ~E1000_VMOLR_RLPML_MASK;
4287 reg |= size;
4288 wr32(E1000_VMOLR(vf), reg);
4289 }
Alexander Duyckae641bd2009-09-03 14:49:33 +00004290
Alexander Duyck51466232009-10-27 23:47:35 +00004291 adapter->vf_data[vf].vlans_enabled++;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004292 return 0;
4293 }
4294 } else {
4295 if (i < E1000_VLVF_ARRAY_SIZE) {
4296 /* remove vf from the pool */
4297 reg &= ~(1 << (E1000_VLVF_POOLSEL_SHIFT + vf));
4298 /* if pool is empty then remove entry from vfta */
4299 if (!(reg & E1000_VLVF_POOLSEL_MASK)) {
4300 reg = 0;
4301 igb_vfta_set(hw, vid, false);
4302 }
4303 wr32(E1000_VLVF(i), reg);
Alexander Duyckae641bd2009-09-03 14:49:33 +00004304
4305 /* do not modify RLPML for PF devices */
4306 if (vf >= adapter->vfs_allocated_count)
4307 return 0;
4308
4309 adapter->vf_data[vf].vlans_enabled--;
4310 if (!adapter->vf_data[vf].vlans_enabled) {
4311 u32 size;
4312 reg = rd32(E1000_VMOLR(vf));
4313 size = reg & E1000_VMOLR_RLPML_MASK;
4314 size -= 4;
4315 reg &= ~E1000_VMOLR_RLPML_MASK;
4316 reg |= size;
4317 wr32(E1000_VMOLR(vf), reg);
4318 }
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004319 return 0;
4320 }
4321 }
4322 return -1;
4323}
4324
4325static int igb_set_vf_vlan(struct igb_adapter *adapter, u32 *msgbuf, u32 vf)
4326{
4327 int add = (msgbuf[0] & E1000_VT_MSGINFO_MASK) >> E1000_VT_MSGINFO_SHIFT;
4328 int vid = (msgbuf[1] & E1000_VLVF_VLANID_MASK);
4329
4330 return igb_vlvf_set(adapter, vid, add, vf);
4331}
4332
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004333static inline void igb_vf_reset(struct igb_adapter *adapter, u32 vf)
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004334{
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004335 /* clear all flags */
4336 adapter->vf_data[vf].flags = 0;
4337 adapter->vf_data[vf].last_nack = jiffies;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004338
4339 /* reset offloads to defaults */
Alexander Duyck7d5753f2009-10-27 23:47:16 +00004340 igb_set_vmolr(adapter, vf);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004341
4342 /* reset vlans for device */
4343 igb_clear_vf_vfta(adapter, vf);
4344
4345 /* reset multicast table array for vf */
4346 adapter->vf_data[vf].num_vf_mc_hashes = 0;
4347
4348 /* Flush and reset the mta with the new values */
Alexander Duyckff41f8d2009-09-03 14:48:56 +00004349 igb_set_rx_mode(adapter->netdev);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004350}
4351
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004352static void igb_vf_reset_event(struct igb_adapter *adapter, u32 vf)
4353{
4354 unsigned char *vf_mac = adapter->vf_data[vf].vf_mac_addresses;
4355
4356 /* generate a new mac address as we were hotplug removed/added */
4357 random_ether_addr(vf_mac);
4358
4359 /* process remaining reset events */
4360 igb_vf_reset(adapter, vf);
4361}
4362
4363static void igb_vf_reset_msg(struct igb_adapter *adapter, u32 vf)
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004364{
4365 struct e1000_hw *hw = &adapter->hw;
4366 unsigned char *vf_mac = adapter->vf_data[vf].vf_mac_addresses;
Alexander Duyckff41f8d2009-09-03 14:48:56 +00004367 int rar_entry = hw->mac.rar_entry_count - (vf + 1);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004368 u32 reg, msgbuf[3];
4369 u8 *addr = (u8 *)(&msgbuf[1]);
4370
4371 /* process all the same items cleared in a function level reset */
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004372 igb_vf_reset(adapter, vf);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004373
4374 /* set vf mac address */
Alexander Duyck26ad9172009-10-05 06:32:49 +00004375 igb_rar_set_qsel(adapter, vf_mac, rar_entry, vf);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004376
4377 /* enable transmit and receive for vf */
4378 reg = rd32(E1000_VFTE);
4379 wr32(E1000_VFTE, reg | (1 << vf));
4380 reg = rd32(E1000_VFRE);
4381 wr32(E1000_VFRE, reg | (1 << vf));
4382
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004383 adapter->vf_data[vf].flags = IGB_VF_FLAG_CTS;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004384
4385 /* reply to reset with ack and vf mac address */
4386 msgbuf[0] = E1000_VF_RESET | E1000_VT_MSGTYPE_ACK;
4387 memcpy(addr, vf_mac, 6);
4388 igb_write_mbx(hw, msgbuf, 3, vf);
4389}
4390
4391static int igb_set_vf_mac_addr(struct igb_adapter *adapter, u32 *msg, int vf)
4392{
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004393 unsigned char *addr = (char *)&msg[1];
4394 int err = -1;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004395
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004396 if (is_valid_ether_addr(addr))
4397 err = igb_set_vf_mac(adapter, vf, addr);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004398
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004399 return err;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004400}
4401
4402static void igb_rcv_ack_from_vf(struct igb_adapter *adapter, u32 vf)
4403{
4404 struct e1000_hw *hw = &adapter->hw;
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004405 struct vf_data_storage *vf_data = &adapter->vf_data[vf];
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004406 u32 msg = E1000_VT_MSGTYPE_NACK;
4407
4408 /* if device isn't clear to send it shouldn't be reading either */
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004409 if (!(vf_data->flags & IGB_VF_FLAG_CTS) &&
4410 time_after(jiffies, vf_data->last_nack + (2 * HZ))) {
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004411 igb_write_mbx(hw, &msg, 1, vf);
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004412 vf_data->last_nack = jiffies;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004413 }
4414}
4415
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004416static void igb_rcv_msg_from_vf(struct igb_adapter *adapter, u32 vf)
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004417{
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004418 struct pci_dev *pdev = adapter->pdev;
4419 u32 msgbuf[E1000_VFMAILBOX_SIZE];
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004420 struct e1000_hw *hw = &adapter->hw;
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004421 struct vf_data_storage *vf_data = &adapter->vf_data[vf];
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004422 s32 retval;
4423
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004424 retval = igb_read_mbx(hw, msgbuf, E1000_VFMAILBOX_SIZE, vf);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004425
4426 if (retval)
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004427 dev_err(&pdev->dev, "Error receiving message from VF\n");
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004428
4429 /* this is a message we already processed, do nothing */
4430 if (msgbuf[0] & (E1000_VT_MSGTYPE_ACK | E1000_VT_MSGTYPE_NACK))
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004431 return;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004432
4433 /*
4434 * until the vf completes a reset it should not be
4435 * allowed to start any configuration.
4436 */
4437
4438 if (msgbuf[0] == E1000_VF_RESET) {
4439 igb_vf_reset_msg(adapter, vf);
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004440 return;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004441 }
4442
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004443 if (!(vf_data->flags & IGB_VF_FLAG_CTS)) {
4444 msgbuf[0] = E1000_VT_MSGTYPE_NACK;
4445 if (time_after(jiffies, vf_data->last_nack + (2 * HZ))) {
4446 igb_write_mbx(hw, msgbuf, 1, vf);
4447 vf_data->last_nack = jiffies;
4448 }
4449 return;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004450 }
4451
4452 switch ((msgbuf[0] & 0xFFFF)) {
4453 case E1000_VF_SET_MAC_ADDR:
4454 retval = igb_set_vf_mac_addr(adapter, msgbuf, vf);
4455 break;
Alexander Duyck7d5753f2009-10-27 23:47:16 +00004456 case E1000_VF_SET_PROMISC:
4457 retval = igb_set_vf_promisc(adapter, msgbuf, vf);
4458 break;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004459 case E1000_VF_SET_MULTICAST:
4460 retval = igb_set_vf_multicasts(adapter, msgbuf, vf);
4461 break;
4462 case E1000_VF_SET_LPE:
4463 retval = igb_set_vf_rlpml(adapter, msgbuf[1], vf);
4464 break;
4465 case E1000_VF_SET_VLAN:
4466 retval = igb_set_vf_vlan(adapter, msgbuf, vf);
4467 break;
4468 default:
4469 dev_err(&adapter->pdev->dev, "Unhandled Msg %08x\n", msgbuf[0]);
4470 retval = -1;
4471 break;
4472 }
4473
4474 /* notify the VF of the results of what it sent us */
4475 if (retval)
4476 msgbuf[0] |= E1000_VT_MSGTYPE_NACK;
4477 else
4478 msgbuf[0] |= E1000_VT_MSGTYPE_ACK;
4479
4480 msgbuf[0] |= E1000_VT_MSGTYPE_CTS;
4481
4482 igb_write_mbx(hw, msgbuf, 1, vf);
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004483}
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004484
Alexander Duyckf2ca0db2009-10-27 23:46:57 +00004485static void igb_msg_task(struct igb_adapter *adapter)
4486{
4487 struct e1000_hw *hw = &adapter->hw;
4488 u32 vf;
4489
4490 for (vf = 0; vf < adapter->vfs_allocated_count; vf++) {
4491 /* process any reset requests */
4492 if (!igb_check_for_rst(hw, vf))
4493 igb_vf_reset_event(adapter, vf);
4494
4495 /* process any messages pending */
4496 if (!igb_check_for_msg(hw, vf))
4497 igb_rcv_msg_from_vf(adapter, vf);
4498
4499 /* process any acks */
4500 if (!igb_check_for_ack(hw, vf))
4501 igb_rcv_ack_from_vf(adapter, vf);
4502 }
Alexander Duyck4ae196d2009-02-19 20:40:07 -08004503}
4504
Auke Kok9d5c8242008-01-24 02:22:38 -08004505/**
Alexander Duyck68d480c2009-10-05 06:33:08 +00004506 * igb_set_uta - Set unicast filter table address
4507 * @adapter: board private structure
4508 *
4509 * The unicast table address is a register array of 32-bit registers.
4510 * The table is meant to be used in a way similar to how the MTA is used
4511 * however due to certain limitations in the hardware it is necessary to
4512 * set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscous
4513 * enable bit to allow vlan tag stripping when promiscous mode is enabled
4514 **/
4515static void igb_set_uta(struct igb_adapter *adapter)
4516{
4517 struct e1000_hw *hw = &adapter->hw;
4518 int i;
4519
4520 /* The UTA table only exists on 82576 hardware and newer */
4521 if (hw->mac.type < e1000_82576)
4522 return;
4523
4524 /* we only need to do this if VMDq is enabled */
4525 if (!adapter->vfs_allocated_count)
4526 return;
4527
4528 for (i = 0; i < hw->mac.uta_reg_count; i++)
4529 array_wr32(E1000_UTA, i, ~0);
4530}
4531
4532/**
Auke Kok9d5c8242008-01-24 02:22:38 -08004533 * igb_intr_msi - Interrupt Handler
4534 * @irq: interrupt number
4535 * @data: pointer to a network interface device structure
4536 **/
4537static irqreturn_t igb_intr_msi(int irq, void *data)
4538{
Alexander Duyck047e0032009-10-27 15:49:27 +00004539 struct igb_adapter *adapter = data;
4540 struct igb_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9d5c8242008-01-24 02:22:38 -08004541 struct e1000_hw *hw = &adapter->hw;
4542 /* read ICR disables interrupts using IAM */
4543 u32 icr = rd32(E1000_ICR);
4544
Alexander Duyck047e0032009-10-27 15:49:27 +00004545 igb_write_itr(q_vector);
Auke Kok9d5c8242008-01-24 02:22:38 -08004546
Alexander Duyck047e0032009-10-27 15:49:27 +00004547 if (icr & E1000_ICR_DOUTSYNC) {
Alexander Duyckdda0e082009-02-06 23:19:08 +00004548 /* HW is reporting DMA is out of sync */
4549 adapter->stats.doosync++;
4550 }
4551
Auke Kok9d5c8242008-01-24 02:22:38 -08004552 if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) {
4553 hw->mac.get_link_status = 1;
4554 if (!test_bit(__IGB_DOWN, &adapter->state))
4555 mod_timer(&adapter->watchdog_timer, jiffies + 1);
4556 }
4557
Alexander Duyck047e0032009-10-27 15:49:27 +00004558 napi_schedule(&q_vector->napi);
Auke Kok9d5c8242008-01-24 02:22:38 -08004559
4560 return IRQ_HANDLED;
4561}
4562
4563/**
Alexander Duyck4a3c6432009-02-06 23:20:49 +00004564 * igb_intr - Legacy Interrupt Handler
Auke Kok9d5c8242008-01-24 02:22:38 -08004565 * @irq: interrupt number
4566 * @data: pointer to a network interface device structure
4567 **/
4568static irqreturn_t igb_intr(int irq, void *data)
4569{
Alexander Duyck047e0032009-10-27 15:49:27 +00004570 struct igb_adapter *adapter = data;
4571 struct igb_q_vector *q_vector = adapter->q_vector[0];
Auke Kok9d5c8242008-01-24 02:22:38 -08004572 struct e1000_hw *hw = &adapter->hw;
4573 /* Interrupt Auto-Mask...upon reading ICR, interrupts are masked. No
4574 * need for the IMC write */
4575 u32 icr = rd32(E1000_ICR);
Auke Kok9d5c8242008-01-24 02:22:38 -08004576 if (!icr)
4577 return IRQ_NONE; /* Not our interrupt */
4578
Alexander Duyck047e0032009-10-27 15:49:27 +00004579 igb_write_itr(q_vector);
Auke Kok9d5c8242008-01-24 02:22:38 -08004580
4581 /* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
4582 * not set, then the adapter didn't send an interrupt */
4583 if (!(icr & E1000_ICR_INT_ASSERTED))
4584 return IRQ_NONE;
4585
Alexander Duyck047e0032009-10-27 15:49:27 +00004586 if (icr & E1000_ICR_DOUTSYNC) {
Alexander Duyckdda0e082009-02-06 23:19:08 +00004587 /* HW is reporting DMA is out of sync */
4588 adapter->stats.doosync++;
4589 }
4590
Auke Kok9d5c8242008-01-24 02:22:38 -08004591 if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) {
4592 hw->mac.get_link_status = 1;
4593 /* guard against interrupt when we're going down */
4594 if (!test_bit(__IGB_DOWN, &adapter->state))
4595 mod_timer(&adapter->watchdog_timer, jiffies + 1);
4596 }
4597
Alexander Duyck047e0032009-10-27 15:49:27 +00004598 napi_schedule(&q_vector->napi);
Auke Kok9d5c8242008-01-24 02:22:38 -08004599
4600 return IRQ_HANDLED;
4601}
4602
Alexander Duyck047e0032009-10-27 15:49:27 +00004603static inline void igb_ring_irq_enable(struct igb_q_vector *q_vector)
Alexander Duyck46544252009-02-19 20:39:04 -08004604{
Alexander Duyck047e0032009-10-27 15:49:27 +00004605 struct igb_adapter *adapter = q_vector->adapter;
Alexander Duyck46544252009-02-19 20:39:04 -08004606 struct e1000_hw *hw = &adapter->hw;
4607
Alexander Duyck4fc82ad2009-10-27 23:45:42 +00004608 if ((q_vector->rx_ring && (adapter->rx_itr_setting & 3)) ||
4609 (!q_vector->rx_ring && (adapter->tx_itr_setting & 3))) {
Alexander Duyck047e0032009-10-27 15:49:27 +00004610 if (!adapter->msix_entries)
Alexander Duyck46544252009-02-19 20:39:04 -08004611 igb_set_itr(adapter);
4612 else
Alexander Duyck047e0032009-10-27 15:49:27 +00004613 igb_update_ring_itr(q_vector);
Alexander Duyck46544252009-02-19 20:39:04 -08004614 }
4615
4616 if (!test_bit(__IGB_DOWN, &adapter->state)) {
4617 if (adapter->msix_entries)
Alexander Duyck047e0032009-10-27 15:49:27 +00004618 wr32(E1000_EIMS, q_vector->eims_value);
Alexander Duyck46544252009-02-19 20:39:04 -08004619 else
4620 igb_irq_enable(adapter);
4621 }
4622}
4623
Auke Kok9d5c8242008-01-24 02:22:38 -08004624/**
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07004625 * igb_poll - NAPI Rx polling callback
4626 * @napi: napi polling structure
4627 * @budget: count of how many packets we should handle
Auke Kok9d5c8242008-01-24 02:22:38 -08004628 **/
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07004629static int igb_poll(struct napi_struct *napi, int budget)
Auke Kok9d5c8242008-01-24 02:22:38 -08004630{
Alexander Duyck047e0032009-10-27 15:49:27 +00004631 struct igb_q_vector *q_vector = container_of(napi,
4632 struct igb_q_vector,
4633 napi);
4634 int tx_clean_complete = 1, work_done = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08004635
Jeff Kirsher421e02f2008-10-17 11:08:31 -07004636#ifdef CONFIG_IGB_DCA
Alexander Duyck047e0032009-10-27 15:49:27 +00004637 if (q_vector->adapter->flags & IGB_FLAG_DCA_ENABLED)
4638 igb_update_dca(q_vector);
Jeb Cramerfe4506b2008-07-08 15:07:55 -07004639#endif
Alexander Duyck047e0032009-10-27 15:49:27 +00004640 if (q_vector->tx_ring)
4641 tx_clean_complete = igb_clean_tx_irq(q_vector);
Auke Kok9d5c8242008-01-24 02:22:38 -08004642
Alexander Duyck047e0032009-10-27 15:49:27 +00004643 if (q_vector->rx_ring)
4644 igb_clean_rx_irq_adv(q_vector, &work_done, budget);
4645
4646 if (!tx_clean_complete)
4647 work_done = budget;
Auke Kok9d5c8242008-01-24 02:22:38 -08004648
Alexander Duyck46544252009-02-19 20:39:04 -08004649 /* If not enough Rx work done, exit the polling mode */
Alexander Duyck5e6d5b12009-03-13 20:40:38 +00004650 if (work_done < budget) {
Alexander Duyck46544252009-02-19 20:39:04 -08004651 napi_complete(napi);
Alexander Duyck047e0032009-10-27 15:49:27 +00004652 igb_ring_irq_enable(q_vector);
Alexander Duyck46544252009-02-19 20:39:04 -08004653 }
4654
4655 return work_done;
Auke Kok9d5c8242008-01-24 02:22:38 -08004656}
Al Viro6d8126f2008-03-16 22:23:24 +00004657
Auke Kok9d5c8242008-01-24 02:22:38 -08004658/**
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004659 * igb_systim_to_hwtstamp - convert system time value to hw timestamp
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004660 * @adapter: board private structure
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004661 * @shhwtstamps: timestamp structure to update
4662 * @regval: unsigned 64bit system time value.
4663 *
4664 * We need to convert the system time value stored in the RX/TXSTMP registers
4665 * into a hwtstamp which can be used by the upper level timestamping functions
4666 */
4667static void igb_systim_to_hwtstamp(struct igb_adapter *adapter,
4668 struct skb_shared_hwtstamps *shhwtstamps,
4669 u64 regval)
4670{
4671 u64 ns;
4672
4673 ns = timecounter_cyc2time(&adapter->clock, regval);
4674 timecompare_update(&adapter->compare, ns);
4675 memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps));
4676 shhwtstamps->hwtstamp = ns_to_ktime(ns);
4677 shhwtstamps->syststamp = timecompare_transform(&adapter->compare, ns);
4678}
4679
4680/**
4681 * igb_tx_hwtstamp - utility function which checks for TX time stamp
4682 * @q_vector: pointer to q_vector containing needed info
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004683 * @skb: packet that was just sent
4684 *
4685 * If we were asked to do hardware stamping and such a time stamp is
4686 * available, then it must have been for this skb here because we only
4687 * allow only one such packet into the queue.
4688 */
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004689static void igb_tx_hwtstamp(struct igb_q_vector *q_vector, struct sk_buff *skb)
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004690{
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004691 struct igb_adapter *adapter = q_vector->adapter;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004692 union skb_shared_tx *shtx = skb_tx(skb);
4693 struct e1000_hw *hw = &adapter->hw;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004694 struct skb_shared_hwtstamps shhwtstamps;
4695 u64 regval;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004696
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004697 /* if skb does not support hw timestamp or TX stamp not valid exit */
4698 if (likely(!shtx->hardware) ||
4699 !(rd32(E1000_TSYNCTXCTL) & E1000_TSYNCTXCTL_VALID))
4700 return;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004701
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004702 regval = rd32(E1000_TXSTMPL);
4703 regval |= (u64)rd32(E1000_TXSTMPH) << 32;
4704
4705 igb_systim_to_hwtstamp(adapter, &shhwtstamps, regval);
4706 skb_tstamp_tx(skb, &shhwtstamps);
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004707}
4708
4709/**
Auke Kok9d5c8242008-01-24 02:22:38 -08004710 * igb_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyck047e0032009-10-27 15:49:27 +00004711 * @q_vector: pointer to q_vector containing needed info
Auke Kok9d5c8242008-01-24 02:22:38 -08004712 * returns true if ring is completely cleaned
4713 **/
Alexander Duyck047e0032009-10-27 15:49:27 +00004714static bool igb_clean_tx_irq(struct igb_q_vector *q_vector)
Auke Kok9d5c8242008-01-24 02:22:38 -08004715{
Alexander Duyck047e0032009-10-27 15:49:27 +00004716 struct igb_adapter *adapter = q_vector->adapter;
4717 struct igb_ring *tx_ring = q_vector->tx_ring;
Alexander Duycke694e962009-10-27 15:53:06 +00004718 struct net_device *netdev = tx_ring->netdev;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004719 struct e1000_hw *hw = &adapter->hw;
Auke Kok9d5c8242008-01-24 02:22:38 -08004720 struct igb_buffer *buffer_info;
4721 struct sk_buff *skb;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004722 union e1000_adv_tx_desc *tx_desc, *eop_desc;
Auke Kok9d5c8242008-01-24 02:22:38 -08004723 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004724 unsigned int i, eop, count = 0;
4725 bool cleaned = false;
Auke Kok9d5c8242008-01-24 02:22:38 -08004726
Auke Kok9d5c8242008-01-24 02:22:38 -08004727 i = tx_ring->next_to_clean;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004728 eop = tx_ring->buffer_info[i].next_to_watch;
4729 eop_desc = E1000_TX_DESC_ADV(*tx_ring, eop);
4730
4731 while ((eop_desc->wb.status & cpu_to_le32(E1000_TXD_STAT_DD)) &&
4732 (count < tx_ring->count)) {
4733 for (cleaned = false; !cleaned; count++) {
4734 tx_desc = E1000_TX_DESC_ADV(*tx_ring, i);
Auke Kok9d5c8242008-01-24 02:22:38 -08004735 buffer_info = &tx_ring->buffer_info[i];
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004736 cleaned = (i == eop);
Auke Kok9d5c8242008-01-24 02:22:38 -08004737 skb = buffer_info->skb;
4738
4739 if (skb) {
4740 unsigned int segs, bytecount;
4741 /* gso_segs is currently only valid for tcp */
4742 segs = skb_shinfo(skb)->gso_segs ?: 1;
4743 /* multiply data chunks by size of headers */
4744 bytecount = ((segs - 1) * skb_headlen(skb)) +
4745 skb->len;
4746 total_packets += segs;
4747 total_bytes += bytecount;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00004748
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004749 igb_tx_hwtstamp(q_vector, skb);
Auke Kok9d5c8242008-01-24 02:22:38 -08004750 }
4751
Alexander Duyck80785292009-10-27 15:51:47 +00004752 igb_unmap_and_free_tx_resource(tx_ring, buffer_info);
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004753 tx_desc->wb.status = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08004754
4755 i++;
4756 if (i == tx_ring->count)
4757 i = 0;
Auke Kok9d5c8242008-01-24 02:22:38 -08004758 }
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004759 eop = tx_ring->buffer_info[i].next_to_watch;
4760 eop_desc = E1000_TX_DESC_ADV(*tx_ring, eop);
4761 }
4762
Auke Kok9d5c8242008-01-24 02:22:38 -08004763 tx_ring->next_to_clean = i;
4764
Alexander Duyckfc7d3452008-08-26 04:25:08 -07004765 if (unlikely(count &&
Auke Kok9d5c8242008-01-24 02:22:38 -08004766 netif_carrier_ok(netdev) &&
Alexander Duyckc493ea42009-03-20 00:16:50 +00004767 igb_desc_unused(tx_ring) >= IGB_TX_QUEUE_WAKE)) {
Auke Kok9d5c8242008-01-24 02:22:38 -08004768 /* Make sure that anybody stopping the queue after this
4769 * sees the new next_to_clean.
4770 */
4771 smp_mb();
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07004772 if (__netif_subqueue_stopped(netdev, tx_ring->queue_index) &&
4773 !(test_bit(__IGB_DOWN, &adapter->state))) {
4774 netif_wake_subqueue(netdev, tx_ring->queue_index);
Alexander Duyck04a5fcaa2009-10-27 15:52:27 +00004775 tx_ring->tx_stats.restart_queue++;
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07004776 }
Auke Kok9d5c8242008-01-24 02:22:38 -08004777 }
4778
4779 if (tx_ring->detect_tx_hung) {
4780 /* Detect a transmit hang in hardware, this serializes the
4781 * check with the clearing of time_stamp and movement of i */
4782 tx_ring->detect_tx_hung = false;
4783 if (tx_ring->buffer_info[i].time_stamp &&
4784 time_after(jiffies, tx_ring->buffer_info[i].time_stamp +
4785 (adapter->tx_timeout_factor * HZ))
4786 && !(rd32(E1000_STATUS) &
4787 E1000_STATUS_TXOFF)) {
4788
Auke Kok9d5c8242008-01-24 02:22:38 -08004789 /* detected Tx unit hang */
Alexander Duyck80785292009-10-27 15:51:47 +00004790 dev_err(&tx_ring->pdev->dev,
Auke Kok9d5c8242008-01-24 02:22:38 -08004791 "Detected Tx Unit Hang\n"
Alexander Duyck2d064c02008-07-08 15:10:12 -07004792 " Tx Queue <%d>\n"
Auke Kok9d5c8242008-01-24 02:22:38 -08004793 " TDH <%x>\n"
4794 " TDT <%x>\n"
4795 " next_to_use <%x>\n"
4796 " next_to_clean <%x>\n"
Auke Kok9d5c8242008-01-24 02:22:38 -08004797 "buffer_info[next_to_clean]\n"
4798 " time_stamp <%lx>\n"
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004799 " next_to_watch <%x>\n"
Auke Kok9d5c8242008-01-24 02:22:38 -08004800 " jiffies <%lx>\n"
4801 " desc.status <%x>\n",
Alexander Duyck2d064c02008-07-08 15:10:12 -07004802 tx_ring->queue_index,
Alexander Duyckfce99e32009-10-27 15:51:27 +00004803 readl(tx_ring->head),
4804 readl(tx_ring->tail),
Auke Kok9d5c8242008-01-24 02:22:38 -08004805 tx_ring->next_to_use,
4806 tx_ring->next_to_clean,
Auke Kok9d5c8242008-01-24 02:22:38 -08004807 tx_ring->buffer_info[i].time_stamp,
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004808 eop,
Auke Kok9d5c8242008-01-24 02:22:38 -08004809 jiffies,
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004810 eop_desc->wb.status);
Peter P Waskiewicz Jr661086d2008-07-08 15:06:51 -07004811 netif_stop_subqueue(netdev, tx_ring->queue_index);
Auke Kok9d5c8242008-01-24 02:22:38 -08004812 }
4813 }
4814 tx_ring->total_bytes += total_bytes;
4815 tx_ring->total_packets += total_packets;
Alexander Duycke21ed352008-07-08 15:07:24 -07004816 tx_ring->tx_stats.bytes += total_bytes;
4817 tx_ring->tx_stats.packets += total_packets;
Alexander Duyck0e014cb2008-12-26 01:33:18 -08004818 return (count < tx_ring->count);
Auke Kok9d5c8242008-01-24 02:22:38 -08004819}
4820
Auke Kok9d5c8242008-01-24 02:22:38 -08004821/**
4822 * igb_receive_skb - helper function to handle rx indications
Alexander Duyck047e0032009-10-27 15:49:27 +00004823 * @q_vector: structure containing interrupt and ring information
4824 * @skb: packet to send up
4825 * @vlan_tag: vlan tag for packet
Auke Kok9d5c8242008-01-24 02:22:38 -08004826 **/
Alexander Duyck047e0032009-10-27 15:49:27 +00004827static void igb_receive_skb(struct igb_q_vector *q_vector,
4828 struct sk_buff *skb,
4829 u16 vlan_tag)
Auke Kok9d5c8242008-01-24 02:22:38 -08004830{
Alexander Duyck047e0032009-10-27 15:49:27 +00004831 struct igb_adapter *adapter = q_vector->adapter;
Alexander Duyckd3352522008-07-08 15:12:13 -07004832
Alexander Duyck047e0032009-10-27 15:49:27 +00004833 if (vlan_tag)
4834 vlan_gro_receive(&q_vector->napi, adapter->vlgrp,
4835 vlan_tag, skb);
Alexander Duyck182ff8d2009-04-27 22:35:33 +00004836 else
Alexander Duyck047e0032009-10-27 15:49:27 +00004837 napi_gro_receive(&q_vector->napi, skb);
Auke Kok9d5c8242008-01-24 02:22:38 -08004838}
4839
Alexander Duyck04a5fcaa2009-10-27 15:52:27 +00004840static inline void igb_rx_checksum_adv(struct igb_ring *ring,
Auke Kok9d5c8242008-01-24 02:22:38 -08004841 u32 status_err, struct sk_buff *skb)
4842{
4843 skb->ip_summed = CHECKSUM_NONE;
4844
4845 /* Ignore Checksum bit is set or checksum is disabled through ethtool */
Alexander Duyck85ad76b2009-10-27 15:52:46 +00004846 if (!(ring->flags & IGB_RING_FLAG_RX_CSUM) ||
4847 (status_err & E1000_RXD_STAT_IXSM))
Auke Kok9d5c8242008-01-24 02:22:38 -08004848 return;
Alexander Duyck85ad76b2009-10-27 15:52:46 +00004849
Auke Kok9d5c8242008-01-24 02:22:38 -08004850 /* TCP/UDP checksum error bit is set */
4851 if (status_err &
4852 (E1000_RXDEXT_STATERR_TCPE | E1000_RXDEXT_STATERR_IPE)) {
Jesse Brandeburgb9473562009-04-27 22:36:13 +00004853 /*
4854 * work around errata with sctp packets where the TCPE aka
4855 * L4E bit is set incorrectly on 64 byte (60 byte w/o crc)
4856 * packets, (aka let the stack check the crc32c)
4857 */
Alexander Duyck85ad76b2009-10-27 15:52:46 +00004858 if ((skb->len == 60) &&
4859 (ring->flags & IGB_RING_FLAG_RX_SCTP_CSUM))
Alexander Duyck04a5fcaa2009-10-27 15:52:27 +00004860 ring->rx_stats.csum_err++;
Alexander Duyck85ad76b2009-10-27 15:52:46 +00004861
Auke Kok9d5c8242008-01-24 02:22:38 -08004862 /* let the stack verify checksum errors */
Auke Kok9d5c8242008-01-24 02:22:38 -08004863 return;
4864 }
4865 /* It must be a TCP or UDP packet with a valid checksum */
4866 if (status_err & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS))
4867 skb->ip_summed = CHECKSUM_UNNECESSARY;
4868
Alexander Duyck85ad76b2009-10-27 15:52:46 +00004869 dev_dbg(&ring->pdev->dev, "cksum success: bits %08X\n", status_err);
Auke Kok9d5c8242008-01-24 02:22:38 -08004870}
4871
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00004872static inline void igb_rx_hwtstamp(struct igb_q_vector *q_vector, u32 staterr,
4873 struct sk_buff *skb)
4874{
4875 struct igb_adapter *adapter = q_vector->adapter;
4876 struct e1000_hw *hw = &adapter->hw;
4877 u64 regval;
4878
4879 /*
4880 * If this bit is set, then the RX registers contain the time stamp. No
4881 * other packet will be time stamped until we read these registers, so
4882 * read the registers to make them available again. Because only one
4883 * packet can be time stamped at a time, we know that the register
4884 * values must belong to this one here and therefore we don't need to
4885 * compare any of the additional attributes stored for it.
4886 *
4887 * If nothing went wrong, then it should have a skb_shared_tx that we
4888 * can turn into a skb_shared_hwtstamps.
4889 */
4890 if (likely(!(staterr & E1000_RXDADV_STAT_TS)))
4891 return;
4892 if (!(rd32(E1000_TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID))
4893 return;
4894
4895 regval = rd32(E1000_RXSTMPL);
4896 regval |= (u64)rd32(E1000_RXSTMPH) << 32;
4897
4898 igb_systim_to_hwtstamp(adapter, skb_hwtstamps(skb), regval);
4899}
Alexander Duyck4c844852009-10-27 15:52:07 +00004900static inline u16 igb_get_hlen(struct igb_ring *rx_ring,
Alexander Duyck2d94d8a2009-07-23 18:10:06 +00004901 union e1000_adv_rx_desc *rx_desc)
4902{
4903 /* HW will not DMA in data larger than the given buffer, even if it
4904 * parses the (NFS, of course) header to be larger. In that case, it
4905 * fills the header buffer and spills the rest into the page.
4906 */
4907 u16 hlen = (le16_to_cpu(rx_desc->wb.lower.lo_dword.hdr_info) &
4908 E1000_RXDADV_HDRBUFLEN_MASK) >> E1000_RXDADV_HDRBUFLEN_SHIFT;
Alexander Duyck4c844852009-10-27 15:52:07 +00004909 if (hlen > rx_ring->rx_buffer_len)
4910 hlen = rx_ring->rx_buffer_len;
Alexander Duyck2d94d8a2009-07-23 18:10:06 +00004911 return hlen;
4912}
4913
Alexander Duyck047e0032009-10-27 15:49:27 +00004914static bool igb_clean_rx_irq_adv(struct igb_q_vector *q_vector,
4915 int *work_done, int budget)
Auke Kok9d5c8242008-01-24 02:22:38 -08004916{
Alexander Duyck047e0032009-10-27 15:49:27 +00004917 struct igb_ring *rx_ring = q_vector->rx_ring;
Alexander Duycke694e962009-10-27 15:53:06 +00004918 struct net_device *netdev = rx_ring->netdev;
Alexander Duyck80785292009-10-27 15:51:47 +00004919 struct pci_dev *pdev = rx_ring->pdev;
Auke Kok9d5c8242008-01-24 02:22:38 -08004920 union e1000_adv_rx_desc *rx_desc , *next_rxd;
4921 struct igb_buffer *buffer_info , *next_buffer;
4922 struct sk_buff *skb;
Auke Kok9d5c8242008-01-24 02:22:38 -08004923 bool cleaned = false;
4924 int cleaned_count = 0;
4925 unsigned int total_bytes = 0, total_packets = 0;
Alexander Duyck73cd78f2009-02-12 18:16:59 +00004926 unsigned int i;
Alexander Duyck2d94d8a2009-07-23 18:10:06 +00004927 u32 staterr;
4928 u16 length;
Alexander Duyck047e0032009-10-27 15:49:27 +00004929 u16 vlan_tag;
Auke Kok9d5c8242008-01-24 02:22:38 -08004930
4931 i = rx_ring->next_to_clean;
Alexander Duyck69d3ca52009-02-06 23:15:04 +00004932 buffer_info = &rx_ring->buffer_info[i];
Auke Kok9d5c8242008-01-24 02:22:38 -08004933 rx_desc = E1000_RX_DESC_ADV(*rx_ring, i);
4934 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
4935
4936 while (staterr & E1000_RXD_STAT_DD) {
4937 if (*work_done >= budget)
4938 break;
4939 (*work_done)++;
Alexander Duyck69d3ca52009-02-06 23:15:04 +00004940
4941 skb = buffer_info->skb;
4942 prefetch(skb->data - NET_IP_ALIGN);
4943 buffer_info->skb = NULL;
4944
4945 i++;
4946 if (i == rx_ring->count)
4947 i = 0;
4948 next_rxd = E1000_RX_DESC_ADV(*rx_ring, i);
4949 prefetch(next_rxd);
4950 next_buffer = &rx_ring->buffer_info[i];
4951
4952 length = le16_to_cpu(rx_desc->wb.upper.length);
4953 cleaned = true;
4954 cleaned_count++;
4955
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00004956 if (buffer_info->dma) {
Alexander Duyck69d3ca52009-02-06 23:15:04 +00004957 pci_unmap_single(pdev, buffer_info->dma,
Alexander Duyck4c844852009-10-27 15:52:07 +00004958 rx_ring->rx_buffer_len,
Alexander Duyck69d3ca52009-02-06 23:15:04 +00004959 PCI_DMA_FROMDEVICE);
Jesse Brandeburg91615f72009-06-30 12:45:15 +00004960 buffer_info->dma = 0;
Alexander Duyck4c844852009-10-27 15:52:07 +00004961 if (rx_ring->rx_buffer_len >= IGB_RXBUFFER_1024) {
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00004962 skb_put(skb, length);
4963 goto send_up;
4964 }
Alexander Duyck4c844852009-10-27 15:52:07 +00004965 skb_put(skb, igb_get_hlen(rx_ring, rx_desc));
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07004966 }
4967
4968 if (length) {
Auke Kok9d5c8242008-01-24 02:22:38 -08004969 pci_unmap_page(pdev, buffer_info->page_dma,
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07004970 PAGE_SIZE / 2, PCI_DMA_FROMDEVICE);
Auke Kok9d5c8242008-01-24 02:22:38 -08004971 buffer_info->page_dma = 0;
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07004972
4973 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags++,
4974 buffer_info->page,
4975 buffer_info->page_offset,
4976 length);
4977
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00004978 if (page_count(buffer_info->page) != 1)
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07004979 buffer_info->page = NULL;
4980 else
4981 get_page(buffer_info->page);
Auke Kok9d5c8242008-01-24 02:22:38 -08004982
4983 skb->len += length;
4984 skb->data_len += length;
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07004985
Auke Kok9d5c8242008-01-24 02:22:38 -08004986 skb->truesize += length;
Auke Kok9d5c8242008-01-24 02:22:38 -08004987 }
Auke Kok9d5c8242008-01-24 02:22:38 -08004988
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07004989 if (!(staterr & E1000_RXD_STAT_EOP)) {
Alexander Duyckb2d56532008-11-20 00:47:34 -08004990 buffer_info->skb = next_buffer->skb;
4991 buffer_info->dma = next_buffer->dma;
4992 next_buffer->skb = skb;
4993 next_buffer->dma = 0;
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07004994 goto next_desc;
4995 }
Alexander Duyck69d3ca52009-02-06 23:15:04 +00004996send_up:
Auke Kok9d5c8242008-01-24 02:22:38 -08004997 if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) {
4998 dev_kfree_skb_irq(skb);
4999 goto next_desc;
5000 }
Auke Kok9d5c8242008-01-24 02:22:38 -08005001
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005002 igb_rx_hwtstamp(q_vector, staterr, skb);
Auke Kok9d5c8242008-01-24 02:22:38 -08005003 total_bytes += skb->len;
5004 total_packets++;
5005
Alexander Duyck85ad76b2009-10-27 15:52:46 +00005006 igb_rx_checksum_adv(rx_ring, staterr, skb);
Auke Kok9d5c8242008-01-24 02:22:38 -08005007
5008 skb->protocol = eth_type_trans(skb, netdev);
Alexander Duyck047e0032009-10-27 15:49:27 +00005009 skb_record_rx_queue(skb, rx_ring->queue_index);
Auke Kok9d5c8242008-01-24 02:22:38 -08005010
Alexander Duyck047e0032009-10-27 15:49:27 +00005011 vlan_tag = ((staterr & E1000_RXD_STAT_VP) ?
5012 le16_to_cpu(rx_desc->wb.upper.vlan) : 0);
5013
5014 igb_receive_skb(q_vector, skb, vlan_tag);
Auke Kok9d5c8242008-01-24 02:22:38 -08005015
Auke Kok9d5c8242008-01-24 02:22:38 -08005016next_desc:
5017 rx_desc->wb.upper.status_error = 0;
5018
5019 /* return some buffers to hardware, one at a time is too slow */
5020 if (cleaned_count >= IGB_RX_BUFFER_WRITE) {
Mitch Williams3b644cf2008-06-27 10:59:48 -07005021 igb_alloc_rx_buffers_adv(rx_ring, cleaned_count);
Auke Kok9d5c8242008-01-24 02:22:38 -08005022 cleaned_count = 0;
5023 }
5024
5025 /* use prefetched values */
5026 rx_desc = next_rxd;
5027 buffer_info = next_buffer;
Auke Kok9d5c8242008-01-24 02:22:38 -08005028 staterr = le32_to_cpu(rx_desc->wb.upper.status_error);
5029 }
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07005030
Auke Kok9d5c8242008-01-24 02:22:38 -08005031 rx_ring->next_to_clean = i;
Alexander Duyckc493ea42009-03-20 00:16:50 +00005032 cleaned_count = igb_desc_unused(rx_ring);
Auke Kok9d5c8242008-01-24 02:22:38 -08005033
5034 if (cleaned_count)
Mitch Williams3b644cf2008-06-27 10:59:48 -07005035 igb_alloc_rx_buffers_adv(rx_ring, cleaned_count);
Auke Kok9d5c8242008-01-24 02:22:38 -08005036
5037 rx_ring->total_packets += total_packets;
5038 rx_ring->total_bytes += total_bytes;
5039 rx_ring->rx_stats.packets += total_packets;
5040 rx_ring->rx_stats.bytes += total_bytes;
Auke Kok9d5c8242008-01-24 02:22:38 -08005041 return cleaned;
5042}
5043
Auke Kok9d5c8242008-01-24 02:22:38 -08005044/**
5045 * igb_alloc_rx_buffers_adv - Replace used receive buffers; packet split
5046 * @adapter: address of board private structure
5047 **/
Alexander Duyckd7ee5b32009-10-27 15:54:23 +00005048void igb_alloc_rx_buffers_adv(struct igb_ring *rx_ring, int cleaned_count)
Auke Kok9d5c8242008-01-24 02:22:38 -08005049{
Alexander Duycke694e962009-10-27 15:53:06 +00005050 struct net_device *netdev = rx_ring->netdev;
Auke Kok9d5c8242008-01-24 02:22:38 -08005051 union e1000_adv_rx_desc *rx_desc;
5052 struct igb_buffer *buffer_info;
5053 struct sk_buff *skb;
5054 unsigned int i;
Alexander Duyckdb761762009-02-06 23:15:25 +00005055 int bufsz;
Auke Kok9d5c8242008-01-24 02:22:38 -08005056
5057 i = rx_ring->next_to_use;
5058 buffer_info = &rx_ring->buffer_info[i];
5059
Alexander Duyck4c844852009-10-27 15:52:07 +00005060 bufsz = rx_ring->rx_buffer_len;
Alexander Duyckdb761762009-02-06 23:15:25 +00005061
Auke Kok9d5c8242008-01-24 02:22:38 -08005062 while (cleaned_count--) {
5063 rx_desc = E1000_RX_DESC_ADV(*rx_ring, i);
5064
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00005065 if ((bufsz < IGB_RXBUFFER_1024) && !buffer_info->page_dma) {
Auke Kok9d5c8242008-01-24 02:22:38 -08005066 if (!buffer_info->page) {
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07005067 buffer_info->page = alloc_page(GFP_ATOMIC);
5068 if (!buffer_info->page) {
Alexander Duyck04a5fcaa2009-10-27 15:52:27 +00005069 rx_ring->rx_stats.alloc_failed++;
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07005070 goto no_buffers;
5071 }
5072 buffer_info->page_offset = 0;
5073 } else {
5074 buffer_info->page_offset ^= PAGE_SIZE / 2;
Auke Kok9d5c8242008-01-24 02:22:38 -08005075 }
5076 buffer_info->page_dma =
Alexander Duyck80785292009-10-27 15:51:47 +00005077 pci_map_page(rx_ring->pdev, buffer_info->page,
Alexander Duyckbf36c1a2008-07-08 15:11:40 -07005078 buffer_info->page_offset,
5079 PAGE_SIZE / 2,
Auke Kok9d5c8242008-01-24 02:22:38 -08005080 PCI_DMA_FROMDEVICE);
5081 }
5082
5083 if (!buffer_info->skb) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00005084 skb = netdev_alloc_skb_ip_align(netdev, bufsz);
Auke Kok9d5c8242008-01-24 02:22:38 -08005085 if (!skb) {
Alexander Duyck04a5fcaa2009-10-27 15:52:27 +00005086 rx_ring->rx_stats.alloc_failed++;
Auke Kok9d5c8242008-01-24 02:22:38 -08005087 goto no_buffers;
5088 }
5089
Auke Kok9d5c8242008-01-24 02:22:38 -08005090 buffer_info->skb = skb;
Alexander Duyck80785292009-10-27 15:51:47 +00005091 buffer_info->dma = pci_map_single(rx_ring->pdev,
5092 skb->data,
Auke Kok9d5c8242008-01-24 02:22:38 -08005093 bufsz,
5094 PCI_DMA_FROMDEVICE);
Auke Kok9d5c8242008-01-24 02:22:38 -08005095 }
5096 /* Refresh the desc even if buffer_addrs didn't change because
5097 * each write-back erases this info. */
Alexander Duyck6ec43fe2009-10-27 15:50:48 +00005098 if (bufsz < IGB_RXBUFFER_1024) {
Auke Kok9d5c8242008-01-24 02:22:38 -08005099 rx_desc->read.pkt_addr =
5100 cpu_to_le64(buffer_info->page_dma);
5101 rx_desc->read.hdr_addr = cpu_to_le64(buffer_info->dma);
5102 } else {
5103 rx_desc->read.pkt_addr =
5104 cpu_to_le64(buffer_info->dma);
5105 rx_desc->read.hdr_addr = 0;
5106 }
5107
5108 i++;
5109 if (i == rx_ring->count)
5110 i = 0;
5111 buffer_info = &rx_ring->buffer_info[i];
5112 }
5113
5114no_buffers:
5115 if (rx_ring->next_to_use != i) {
5116 rx_ring->next_to_use = i;
5117 if (i == 0)
5118 i = (rx_ring->count - 1);
5119 else
5120 i--;
5121
5122 /* Force memory writes to complete before letting h/w
5123 * know there are new descriptors to fetch. (Only
5124 * applicable for weak-ordered memory model archs,
5125 * such as IA-64). */
5126 wmb();
Alexander Duyckfce99e32009-10-27 15:51:27 +00005127 writel(i, rx_ring->tail);
Auke Kok9d5c8242008-01-24 02:22:38 -08005128 }
5129}
5130
5131/**
5132 * igb_mii_ioctl -
5133 * @netdev:
5134 * @ifreq:
5135 * @cmd:
5136 **/
5137static int igb_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
5138{
5139 struct igb_adapter *adapter = netdev_priv(netdev);
5140 struct mii_ioctl_data *data = if_mii(ifr);
5141
5142 if (adapter->hw.phy.media_type != e1000_media_type_copper)
5143 return -EOPNOTSUPP;
5144
5145 switch (cmd) {
5146 case SIOCGMIIPHY:
5147 data->phy_id = adapter->hw.phy.addr;
5148 break;
5149 case SIOCGMIIREG:
Alexander Duyckf5f4cf02008-11-21 21:30:24 -08005150 if (igb_read_phy_reg(&adapter->hw, data->reg_num & 0x1F,
5151 &data->val_out))
Auke Kok9d5c8242008-01-24 02:22:38 -08005152 return -EIO;
5153 break;
5154 case SIOCSMIIREG:
5155 default:
5156 return -EOPNOTSUPP;
5157 }
5158 return 0;
5159}
5160
5161/**
Patrick Ohlyc6cb0902009-02-12 05:03:42 +00005162 * igb_hwtstamp_ioctl - control hardware time stamping
5163 * @netdev:
5164 * @ifreq:
5165 * @cmd:
5166 *
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005167 * Outgoing time stamping can be enabled and disabled. Play nice and
5168 * disable it when requested, although it shouldn't case any overhead
5169 * when no packet needs it. At most one packet in the queue may be
5170 * marked for time stamping, otherwise it would be impossible to tell
5171 * for sure to which packet the hardware time stamp belongs.
5172 *
5173 * Incoming time stamping has to be configured via the hardware
5174 * filters. Not all combinations are supported, in particular event
5175 * type has to be specified. Matching the kind of event packet is
5176 * not supported, with the exception of "all V2 events regardless of
5177 * level 2 or 4".
5178 *
Patrick Ohlyc6cb0902009-02-12 05:03:42 +00005179 **/
5180static int igb_hwtstamp_ioctl(struct net_device *netdev,
5181 struct ifreq *ifr, int cmd)
5182{
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005183 struct igb_adapter *adapter = netdev_priv(netdev);
5184 struct e1000_hw *hw = &adapter->hw;
Patrick Ohlyc6cb0902009-02-12 05:03:42 +00005185 struct hwtstamp_config config;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005186 u32 tsync_tx_ctl = E1000_TSYNCTXCTL_ENABLED;
5187 u32 tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005188 u32 tsync_rx_cfg = 0;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005189 bool is_l4 = false;
5190 bool is_l2 = false;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005191 u32 regval;
Patrick Ohlyc6cb0902009-02-12 05:03:42 +00005192
5193 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
5194 return -EFAULT;
5195
5196 /* reserved for future extensions */
5197 if (config.flags)
5198 return -EINVAL;
5199
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005200 switch (config.tx_type) {
5201 case HWTSTAMP_TX_OFF:
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005202 tsync_tx_ctl = 0;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005203 case HWTSTAMP_TX_ON:
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005204 break;
5205 default:
5206 return -ERANGE;
5207 }
Patrick Ohlyc6cb0902009-02-12 05:03:42 +00005208
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005209 switch (config.rx_filter) {
5210 case HWTSTAMP_FILTER_NONE:
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005211 tsync_rx_ctl = 0;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005212 break;
5213 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
5214 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
5215 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
5216 case HWTSTAMP_FILTER_ALL:
5217 /*
5218 * register TSYNCRXCFG must be set, therefore it is not
5219 * possible to time stamp both Sync and Delay_Req messages
5220 * => fall back to time stamping all packets
5221 */
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005222 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005223 config.rx_filter = HWTSTAMP_FILTER_ALL;
5224 break;
5225 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005226 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005227 tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V1_SYNC_MESSAGE;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005228 is_l4 = true;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005229 break;
5230 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005231 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005232 tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V1_DELAY_REQ_MESSAGE;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005233 is_l4 = true;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005234 break;
5235 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
5236 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005237 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005238 tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V2_SYNC_MESSAGE;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005239 is_l2 = true;
5240 is_l4 = true;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005241 config.rx_filter = HWTSTAMP_FILTER_SOME;
5242 break;
5243 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
5244 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005245 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005246 tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V2_DELAY_REQ_MESSAGE;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005247 is_l2 = true;
5248 is_l4 = true;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005249 config.rx_filter = HWTSTAMP_FILTER_SOME;
5250 break;
5251 case HWTSTAMP_FILTER_PTP_V2_EVENT:
5252 case HWTSTAMP_FILTER_PTP_V2_SYNC:
5253 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005254 tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_EVENT_V2;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005255 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005256 is_l2 = true;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005257 break;
5258 default:
5259 return -ERANGE;
5260 }
5261
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005262 if (hw->mac.type == e1000_82575) {
5263 if (tsync_rx_ctl | tsync_tx_ctl)
5264 return -EINVAL;
5265 return 0;
5266 }
5267
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005268 /* enable/disable TX */
5269 regval = rd32(E1000_TSYNCTXCTL);
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005270 regval &= ~E1000_TSYNCTXCTL_ENABLED;
5271 regval |= tsync_tx_ctl;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005272 wr32(E1000_TSYNCTXCTL, regval);
5273
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005274 /* enable/disable RX */
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005275 regval = rd32(E1000_TSYNCRXCTL);
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005276 regval &= ~(E1000_TSYNCRXCTL_ENABLED | E1000_TSYNCRXCTL_TYPE_MASK);
5277 regval |= tsync_rx_ctl;
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005278 wr32(E1000_TSYNCRXCTL, regval);
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005279
5280 /* define which PTP packets are time stamped */
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005281 wr32(E1000_TSYNCRXCFG, tsync_rx_cfg);
5282
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005283 /* define ethertype filter for timestamped packets */
5284 if (is_l2)
5285 wr32(E1000_ETQF(3),
5286 (E1000_ETQF_FILTER_ENABLE | /* enable filter */
5287 E1000_ETQF_1588 | /* enable timestamping */
5288 ETH_P_1588)); /* 1588 eth protocol type */
5289 else
5290 wr32(E1000_ETQF(3), 0);
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005291
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005292#define PTP_PORT 319
5293 /* L4 Queue Filter[3]: filter by destination port and protocol */
5294 if (is_l4) {
5295 u32 ftqf = (IPPROTO_UDP /* UDP */
5296 | E1000_FTQF_VF_BP /* VF not compared */
5297 | E1000_FTQF_1588_TIME_STAMP /* Enable Timestamping */
5298 | E1000_FTQF_MASK); /* mask all inputs */
5299 ftqf &= ~E1000_FTQF_MASK_PROTO_BP; /* enable protocol check */
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005300
Alexander Duyckc5b9bd52009-10-27 23:46:01 +00005301 wr32(E1000_IMIR(3), htons(PTP_PORT));
5302 wr32(E1000_IMIREXT(3),
5303 (E1000_IMIREXT_SIZE_BP | E1000_IMIREXT_CTRL_BP));
5304 if (hw->mac.type == e1000_82576) {
5305 /* enable source port check */
5306 wr32(E1000_SPQF(3), htons(PTP_PORT));
5307 ftqf &= ~E1000_FTQF_MASK_SOURCE_PORT_BP;
5308 }
5309 wr32(E1000_FTQF(3), ftqf);
5310 } else {
5311 wr32(E1000_FTQF(3), E1000_FTQF_MASK);
5312 }
Patrick Ohly33af6bc2009-02-12 05:03:43 +00005313 wrfl();
5314
5315 adapter->hwtstamp_config = config;
5316
5317 /* clear TX/RX time stamp registers, just to be sure */
5318 regval = rd32(E1000_TXSTMPH);
5319 regval = rd32(E1000_RXSTMPH);
5320
5321 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
5322 -EFAULT : 0;
Patrick Ohlyc6cb0902009-02-12 05:03:42 +00005323}
5324
5325/**
Auke Kok9d5c8242008-01-24 02:22:38 -08005326 * igb_ioctl -
5327 * @netdev:
5328 * @ifreq:
5329 * @cmd:
5330 **/
5331static int igb_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
5332{
5333 switch (cmd) {
5334 case SIOCGMIIPHY:
5335 case SIOCGMIIREG:
5336 case SIOCSMIIREG:
5337 return igb_mii_ioctl(netdev, ifr, cmd);
Patrick Ohlyc6cb0902009-02-12 05:03:42 +00005338 case SIOCSHWTSTAMP:
5339 return igb_hwtstamp_ioctl(netdev, ifr, cmd);
Auke Kok9d5c8242008-01-24 02:22:38 -08005340 default:
5341 return -EOPNOTSUPP;
5342 }
5343}
5344
Alexander Duyck009bc062009-07-23 18:08:35 +00005345s32 igb_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
5346{
5347 struct igb_adapter *adapter = hw->back;
5348 u16 cap_offset;
5349
5350 cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP);
5351 if (!cap_offset)
5352 return -E1000_ERR_CONFIG;
5353
5354 pci_read_config_word(adapter->pdev, cap_offset + reg, value);
5355
5356 return 0;
5357}
5358
5359s32 igb_write_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
5360{
5361 struct igb_adapter *adapter = hw->back;
5362 u16 cap_offset;
5363
5364 cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP);
5365 if (!cap_offset)
5366 return -E1000_ERR_CONFIG;
5367
5368 pci_write_config_word(adapter->pdev, cap_offset + reg, *value);
5369
5370 return 0;
5371}
5372
Auke Kok9d5c8242008-01-24 02:22:38 -08005373static void igb_vlan_rx_register(struct net_device *netdev,
5374 struct vlan_group *grp)
5375{
5376 struct igb_adapter *adapter = netdev_priv(netdev);
5377 struct e1000_hw *hw = &adapter->hw;
5378 u32 ctrl, rctl;
5379
5380 igb_irq_disable(adapter);
5381 adapter->vlgrp = grp;
5382
5383 if (grp) {
5384 /* enable VLAN tag insert/strip */
5385 ctrl = rd32(E1000_CTRL);
5386 ctrl |= E1000_CTRL_VME;
5387 wr32(E1000_CTRL, ctrl);
5388
Alexander Duyck51466232009-10-27 23:47:35 +00005389 /* Disable CFI check */
Auke Kok9d5c8242008-01-24 02:22:38 -08005390 rctl = rd32(E1000_RCTL);
Auke Kok9d5c8242008-01-24 02:22:38 -08005391 rctl &= ~E1000_RCTL_CFIEN;
5392 wr32(E1000_RCTL, rctl);
Auke Kok9d5c8242008-01-24 02:22:38 -08005393 } else {
5394 /* disable VLAN tag insert/strip */
5395 ctrl = rd32(E1000_CTRL);
5396 ctrl &= ~E1000_CTRL_VME;
5397 wr32(E1000_CTRL, ctrl);
Auke Kok9d5c8242008-01-24 02:22:38 -08005398 }
5399
Alexander Duycke1739522009-02-19 20:39:44 -08005400 igb_rlpml_set(adapter);
5401
Auke Kok9d5c8242008-01-24 02:22:38 -08005402 if (!test_bit(__IGB_DOWN, &adapter->state))
5403 igb_irq_enable(adapter);
5404}
5405
5406static void igb_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
5407{
5408 struct igb_adapter *adapter = netdev_priv(netdev);
5409 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005410 int pf_id = adapter->vfs_allocated_count;
Auke Kok9d5c8242008-01-24 02:22:38 -08005411
Alexander Duyck51466232009-10-27 23:47:35 +00005412 /* attempt to add filter to vlvf array */
5413 igb_vlvf_set(adapter, vid, true, pf_id);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005414
Alexander Duyck51466232009-10-27 23:47:35 +00005415 /* add the filter since PF can receive vlans w/o entry in vlvf */
5416 igb_vfta_set(hw, vid, true);
Auke Kok9d5c8242008-01-24 02:22:38 -08005417}
5418
5419static void igb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
5420{
5421 struct igb_adapter *adapter = netdev_priv(netdev);
5422 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005423 int pf_id = adapter->vfs_allocated_count;
Alexander Duyck51466232009-10-27 23:47:35 +00005424 s32 err;
Auke Kok9d5c8242008-01-24 02:22:38 -08005425
5426 igb_irq_disable(adapter);
5427 vlan_group_set_device(adapter->vlgrp, vid, NULL);
5428
5429 if (!test_bit(__IGB_DOWN, &adapter->state))
5430 igb_irq_enable(adapter);
5431
Alexander Duyck51466232009-10-27 23:47:35 +00005432 /* remove vlan from VLVF table array */
5433 err = igb_vlvf_set(adapter, vid, false, pf_id);
Auke Kok9d5c8242008-01-24 02:22:38 -08005434
Alexander Duyck51466232009-10-27 23:47:35 +00005435 /* if vid was not present in VLVF just remove it from table */
5436 if (err)
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005437 igb_vfta_set(hw, vid, false);
Auke Kok9d5c8242008-01-24 02:22:38 -08005438}
5439
5440static void igb_restore_vlan(struct igb_adapter *adapter)
5441{
5442 igb_vlan_rx_register(adapter->netdev, adapter->vlgrp);
5443
5444 if (adapter->vlgrp) {
5445 u16 vid;
5446 for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
5447 if (!vlan_group_get_device(adapter->vlgrp, vid))
5448 continue;
5449 igb_vlan_rx_add_vid(adapter->netdev, vid);
5450 }
5451 }
5452}
5453
5454int igb_set_spd_dplx(struct igb_adapter *adapter, u16 spddplx)
5455{
5456 struct e1000_mac_info *mac = &adapter->hw.mac;
5457
5458 mac->autoneg = 0;
5459
Auke Kok9d5c8242008-01-24 02:22:38 -08005460 switch (spddplx) {
5461 case SPEED_10 + DUPLEX_HALF:
5462 mac->forced_speed_duplex = ADVERTISE_10_HALF;
5463 break;
5464 case SPEED_10 + DUPLEX_FULL:
5465 mac->forced_speed_duplex = ADVERTISE_10_FULL;
5466 break;
5467 case SPEED_100 + DUPLEX_HALF:
5468 mac->forced_speed_duplex = ADVERTISE_100_HALF;
5469 break;
5470 case SPEED_100 + DUPLEX_FULL:
5471 mac->forced_speed_duplex = ADVERTISE_100_FULL;
5472 break;
5473 case SPEED_1000 + DUPLEX_FULL:
5474 mac->autoneg = 1;
5475 adapter->hw.phy.autoneg_advertised = ADVERTISE_1000_FULL;
5476 break;
5477 case SPEED_1000 + DUPLEX_HALF: /* not supported */
5478 default:
5479 dev_err(&adapter->pdev->dev,
5480 "Unsupported Speed/Duplex configuration\n");
5481 return -EINVAL;
5482 }
5483 return 0;
5484}
5485
Rafael J. Wysocki3fe7c4c2009-03-31 21:23:50 +00005486static int __igb_shutdown(struct pci_dev *pdev, bool *enable_wake)
Auke Kok9d5c8242008-01-24 02:22:38 -08005487{
5488 struct net_device *netdev = pci_get_drvdata(pdev);
5489 struct igb_adapter *adapter = netdev_priv(netdev);
5490 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck2d064c02008-07-08 15:10:12 -07005491 u32 ctrl, rctl, status;
Auke Kok9d5c8242008-01-24 02:22:38 -08005492 u32 wufc = adapter->wol;
5493#ifdef CONFIG_PM
5494 int retval = 0;
5495#endif
5496
5497 netif_device_detach(netdev);
5498
Alexander Duycka88f10e2008-07-08 15:13:38 -07005499 if (netif_running(netdev))
5500 igb_close(netdev);
5501
Alexander Duyck047e0032009-10-27 15:49:27 +00005502 igb_clear_interrupt_scheme(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08005503
5504#ifdef CONFIG_PM
5505 retval = pci_save_state(pdev);
5506 if (retval)
5507 return retval;
5508#endif
5509
5510 status = rd32(E1000_STATUS);
5511 if (status & E1000_STATUS_LU)
5512 wufc &= ~E1000_WUFC_LNKC;
5513
5514 if (wufc) {
5515 igb_setup_rctl(adapter);
Alexander Duyckff41f8d2009-09-03 14:48:56 +00005516 igb_set_rx_mode(netdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08005517
5518 /* turn on all-multi mode if wake on multicast is enabled */
5519 if (wufc & E1000_WUFC_MC) {
5520 rctl = rd32(E1000_RCTL);
5521 rctl |= E1000_RCTL_MPE;
5522 wr32(E1000_RCTL, rctl);
5523 }
5524
5525 ctrl = rd32(E1000_CTRL);
5526 /* advertise wake from D3Cold */
5527 #define E1000_CTRL_ADVD3WUC 0x00100000
5528 /* phy power management enable */
5529 #define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
5530 ctrl |= E1000_CTRL_ADVD3WUC;
5531 wr32(E1000_CTRL, ctrl);
5532
Auke Kok9d5c8242008-01-24 02:22:38 -08005533 /* Allow time for pending master requests to run */
5534 igb_disable_pcie_master(&adapter->hw);
5535
5536 wr32(E1000_WUC, E1000_WUC_PME_EN);
5537 wr32(E1000_WUFC, wufc);
Auke Kok9d5c8242008-01-24 02:22:38 -08005538 } else {
5539 wr32(E1000_WUC, 0);
5540 wr32(E1000_WUFC, 0);
Auke Kok9d5c8242008-01-24 02:22:38 -08005541 }
5542
Rafael J. Wysocki3fe7c4c2009-03-31 21:23:50 +00005543 *enable_wake = wufc || adapter->en_mng_pt;
5544 if (!*enable_wake)
Alexander Duyck2fb02a22009-09-14 08:22:54 +00005545 igb_shutdown_serdes_link_82575(hw);
Auke Kok9d5c8242008-01-24 02:22:38 -08005546
5547 /* Release control of h/w to f/w. If f/w is AMT enabled, this
5548 * would have already happened in close and is redundant. */
5549 igb_release_hw_control(adapter);
5550
5551 pci_disable_device(pdev);
5552
Auke Kok9d5c8242008-01-24 02:22:38 -08005553 return 0;
5554}
5555
5556#ifdef CONFIG_PM
Rafael J. Wysocki3fe7c4c2009-03-31 21:23:50 +00005557static int igb_suspend(struct pci_dev *pdev, pm_message_t state)
5558{
5559 int retval;
5560 bool wake;
5561
5562 retval = __igb_shutdown(pdev, &wake);
5563 if (retval)
5564 return retval;
5565
5566 if (wake) {
5567 pci_prepare_to_sleep(pdev);
5568 } else {
5569 pci_wake_from_d3(pdev, false);
5570 pci_set_power_state(pdev, PCI_D3hot);
5571 }
5572
5573 return 0;
5574}
5575
Auke Kok9d5c8242008-01-24 02:22:38 -08005576static int igb_resume(struct pci_dev *pdev)
5577{
5578 struct net_device *netdev = pci_get_drvdata(pdev);
5579 struct igb_adapter *adapter = netdev_priv(netdev);
5580 struct e1000_hw *hw = &adapter->hw;
5581 u32 err;
5582
5583 pci_set_power_state(pdev, PCI_D0);
5584 pci_restore_state(pdev);
Taku Izumi42bfd33a2008-06-20 12:10:30 +09005585
Alexander Duyckaed5dec2009-02-06 23:16:04 +00005586 err = pci_enable_device_mem(pdev);
Auke Kok9d5c8242008-01-24 02:22:38 -08005587 if (err) {
5588 dev_err(&pdev->dev,
5589 "igb: Cannot enable PCI device from suspend\n");
5590 return err;
5591 }
5592 pci_set_master(pdev);
5593
5594 pci_enable_wake(pdev, PCI_D3hot, 0);
5595 pci_enable_wake(pdev, PCI_D3cold, 0);
5596
Alexander Duyck047e0032009-10-27 15:49:27 +00005597 if (igb_init_interrupt_scheme(adapter)) {
Alexander Duycka88f10e2008-07-08 15:13:38 -07005598 dev_err(&pdev->dev, "Unable to allocate memory for queues\n");
5599 return -ENOMEM;
Auke Kok9d5c8242008-01-24 02:22:38 -08005600 }
5601
5602 /* e1000_power_up_phy(adapter); */
5603
5604 igb_reset(adapter);
Alexander Duycka8564f02009-02-06 23:21:10 +00005605
5606 /* let the f/w know that the h/w is now under the control of the
5607 * driver. */
5608 igb_get_hw_control(adapter);
5609
Auke Kok9d5c8242008-01-24 02:22:38 -08005610 wr32(E1000_WUS, ~0);
5611
Alexander Duycka88f10e2008-07-08 15:13:38 -07005612 if (netif_running(netdev)) {
5613 err = igb_open(netdev);
5614 if (err)
5615 return err;
5616 }
Auke Kok9d5c8242008-01-24 02:22:38 -08005617
5618 netif_device_attach(netdev);
5619
Auke Kok9d5c8242008-01-24 02:22:38 -08005620 return 0;
5621}
5622#endif
5623
5624static void igb_shutdown(struct pci_dev *pdev)
5625{
Rafael J. Wysocki3fe7c4c2009-03-31 21:23:50 +00005626 bool wake;
5627
5628 __igb_shutdown(pdev, &wake);
5629
5630 if (system_state == SYSTEM_POWER_OFF) {
5631 pci_wake_from_d3(pdev, wake);
5632 pci_set_power_state(pdev, PCI_D3hot);
5633 }
Auke Kok9d5c8242008-01-24 02:22:38 -08005634}
5635
5636#ifdef CONFIG_NET_POLL_CONTROLLER
5637/*
5638 * Polling 'interrupt' - used by things like netconsole to send skbs
5639 * without having to re-enable interrupts. It's not called while
5640 * the interrupt routine is executing.
5641 */
5642static void igb_netpoll(struct net_device *netdev)
5643{
5644 struct igb_adapter *adapter = netdev_priv(netdev);
Alexander Duyckeebbbdb2009-02-06 23:19:29 +00005645 struct e1000_hw *hw = &adapter->hw;
Auke Kok9d5c8242008-01-24 02:22:38 -08005646 int i;
Auke Kok9d5c8242008-01-24 02:22:38 -08005647
Alexander Duyckeebbbdb2009-02-06 23:19:29 +00005648 if (!adapter->msix_entries) {
Alexander Duyck047e0032009-10-27 15:49:27 +00005649 struct igb_q_vector *q_vector = adapter->q_vector[0];
Alexander Duyckeebbbdb2009-02-06 23:19:29 +00005650 igb_irq_disable(adapter);
Alexander Duyck047e0032009-10-27 15:49:27 +00005651 napi_schedule(&q_vector->napi);
Alexander Duyckeebbbdb2009-02-06 23:19:29 +00005652 return;
5653 }
Alexander Duyck7dfc16f2008-07-08 15:10:46 -07005654
Alexander Duyck047e0032009-10-27 15:49:27 +00005655 for (i = 0; i < adapter->num_q_vectors; i++) {
5656 struct igb_q_vector *q_vector = adapter->q_vector[i];
5657 wr32(E1000_EIMC, q_vector->eims_value);
5658 napi_schedule(&q_vector->napi);
Alexander Duyckeebbbdb2009-02-06 23:19:29 +00005659 }
Auke Kok9d5c8242008-01-24 02:22:38 -08005660}
5661#endif /* CONFIG_NET_POLL_CONTROLLER */
5662
5663/**
5664 * igb_io_error_detected - called when PCI error is detected
5665 * @pdev: Pointer to PCI device
5666 * @state: The current pci connection state
5667 *
5668 * This function is called after a PCI bus error affecting
5669 * this device has been detected.
5670 */
5671static pci_ers_result_t igb_io_error_detected(struct pci_dev *pdev,
5672 pci_channel_state_t state)
5673{
5674 struct net_device *netdev = pci_get_drvdata(pdev);
5675 struct igb_adapter *adapter = netdev_priv(netdev);
5676
5677 netif_device_detach(netdev);
5678
Alexander Duyck59ed6ee2009-06-30 12:46:34 +00005679 if (state == pci_channel_io_perm_failure)
5680 return PCI_ERS_RESULT_DISCONNECT;
5681
Auke Kok9d5c8242008-01-24 02:22:38 -08005682 if (netif_running(netdev))
5683 igb_down(adapter);
5684 pci_disable_device(pdev);
5685
5686 /* Request a slot slot reset. */
5687 return PCI_ERS_RESULT_NEED_RESET;
5688}
5689
5690/**
5691 * igb_io_slot_reset - called after the pci bus has been reset.
5692 * @pdev: Pointer to PCI device
5693 *
5694 * Restart the card from scratch, as if from a cold-boot. Implementation
5695 * resembles the first-half of the igb_resume routine.
5696 */
5697static pci_ers_result_t igb_io_slot_reset(struct pci_dev *pdev)
5698{
5699 struct net_device *netdev = pci_get_drvdata(pdev);
5700 struct igb_adapter *adapter = netdev_priv(netdev);
5701 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck40a914f2008-11-27 00:24:37 -08005702 pci_ers_result_t result;
Taku Izumi42bfd33a2008-06-20 12:10:30 +09005703 int err;
Auke Kok9d5c8242008-01-24 02:22:38 -08005704
Alexander Duyckaed5dec2009-02-06 23:16:04 +00005705 if (pci_enable_device_mem(pdev)) {
Auke Kok9d5c8242008-01-24 02:22:38 -08005706 dev_err(&pdev->dev,
5707 "Cannot re-enable PCI device after reset.\n");
Alexander Duyck40a914f2008-11-27 00:24:37 -08005708 result = PCI_ERS_RESULT_DISCONNECT;
5709 } else {
5710 pci_set_master(pdev);
5711 pci_restore_state(pdev);
5712
5713 pci_enable_wake(pdev, PCI_D3hot, 0);
5714 pci_enable_wake(pdev, PCI_D3cold, 0);
5715
5716 igb_reset(adapter);
5717 wr32(E1000_WUS, ~0);
5718 result = PCI_ERS_RESULT_RECOVERED;
Auke Kok9d5c8242008-01-24 02:22:38 -08005719 }
Auke Kok9d5c8242008-01-24 02:22:38 -08005720
Jeff Kirsherea943d42008-12-11 20:34:19 -08005721 err = pci_cleanup_aer_uncorrect_error_status(pdev);
5722 if (err) {
5723 dev_err(&pdev->dev, "pci_cleanup_aer_uncorrect_error_status "
5724 "failed 0x%0x\n", err);
5725 /* non-fatal, continue */
5726 }
Auke Kok9d5c8242008-01-24 02:22:38 -08005727
Alexander Duyck40a914f2008-11-27 00:24:37 -08005728 return result;
Auke Kok9d5c8242008-01-24 02:22:38 -08005729}
5730
5731/**
5732 * igb_io_resume - called when traffic can start flowing again.
5733 * @pdev: Pointer to PCI device
5734 *
5735 * This callback is called when the error recovery driver tells us that
5736 * its OK to resume normal operation. Implementation resembles the
5737 * second-half of the igb_resume routine.
5738 */
5739static void igb_io_resume(struct pci_dev *pdev)
5740{
5741 struct net_device *netdev = pci_get_drvdata(pdev);
5742 struct igb_adapter *adapter = netdev_priv(netdev);
5743
Auke Kok9d5c8242008-01-24 02:22:38 -08005744 if (netif_running(netdev)) {
5745 if (igb_up(adapter)) {
5746 dev_err(&pdev->dev, "igb_up failed after reset\n");
5747 return;
5748 }
5749 }
5750
5751 netif_device_attach(netdev);
5752
5753 /* let the f/w know that the h/w is now under the control of the
5754 * driver. */
5755 igb_get_hw_control(adapter);
Auke Kok9d5c8242008-01-24 02:22:38 -08005756}
5757
Alexander Duyck26ad9172009-10-05 06:32:49 +00005758static void igb_rar_set_qsel(struct igb_adapter *adapter, u8 *addr, u32 index,
5759 u8 qsel)
5760{
5761 u32 rar_low, rar_high;
5762 struct e1000_hw *hw = &adapter->hw;
5763
5764 /* HW expects these in little endian so we reverse the byte order
5765 * from network order (big endian) to little endian
5766 */
5767 rar_low = ((u32) addr[0] | ((u32) addr[1] << 8) |
5768 ((u32) addr[2] << 16) | ((u32) addr[3] << 24));
5769 rar_high = ((u32) addr[4] | ((u32) addr[5] << 8));
5770
5771 /* Indicate to hardware the Address is Valid. */
5772 rar_high |= E1000_RAH_AV;
5773
5774 if (hw->mac.type == e1000_82575)
5775 rar_high |= E1000_RAH_POOL_1 * qsel;
5776 else
5777 rar_high |= E1000_RAH_POOL_1 << qsel;
5778
5779 wr32(E1000_RAL(index), rar_low);
5780 wrfl();
5781 wr32(E1000_RAH(index), rar_high);
5782 wrfl();
5783}
5784
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005785static int igb_set_vf_mac(struct igb_adapter *adapter,
5786 int vf, unsigned char *mac_addr)
5787{
5788 struct e1000_hw *hw = &adapter->hw;
Alexander Duyckff41f8d2009-09-03 14:48:56 +00005789 /* VF MAC addresses start at end of receive addresses and moves
5790 * torwards the first, as a result a collision should not be possible */
5791 int rar_entry = hw->mac.rar_entry_count - (vf + 1);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005792
Alexander Duyck37680112009-02-19 20:40:30 -08005793 memcpy(adapter->vf_data[vf].vf_mac_addresses, mac_addr, ETH_ALEN);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005794
Alexander Duyck26ad9172009-10-05 06:32:49 +00005795 igb_rar_set_qsel(adapter, mac_addr, rar_entry, vf);
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005796
5797 return 0;
5798}
5799
5800static void igb_vmm_control(struct igb_adapter *adapter)
5801{
5802 struct e1000_hw *hw = &adapter->hw;
Alexander Duyck10d8e902009-10-27 15:54:04 +00005803 u32 reg;
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005804
Alexander Duyckd4960302009-10-27 15:53:45 +00005805 /* replication is not supported for 82575 */
5806 if (hw->mac.type == e1000_82575)
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005807 return;
5808
Alexander Duyck10d8e902009-10-27 15:54:04 +00005809 /* enable replication vlan tag stripping */
5810 reg = rd32(E1000_RPLOLR);
5811 reg |= E1000_RPLOLR_STRVLAN;
5812 wr32(E1000_RPLOLR, reg);
5813
5814 /* notify HW that the MAC is adding vlan tags */
5815 reg = rd32(E1000_DTXCTL);
5816 reg |= E1000_DTXCTL_VLAN_ADDED;
5817 wr32(E1000_DTXCTL, reg);
5818
Alexander Duyckd4960302009-10-27 15:53:45 +00005819 if (adapter->vfs_allocated_count) {
5820 igb_vmdq_set_loopback_pf(hw, true);
5821 igb_vmdq_set_replication_pf(hw, true);
5822 } else {
5823 igb_vmdq_set_loopback_pf(hw, false);
5824 igb_vmdq_set_replication_pf(hw, false);
5825 }
Alexander Duyck4ae196d2009-02-19 20:40:07 -08005826}
5827
Auke Kok9d5c8242008-01-24 02:22:38 -08005828/* igb_main.c */