blob: acfa05154436cc75dac90887c813b4053419d1d9 [file] [log] [blame]
Greg Rose92915f72010-01-09 02:24:10 +00001/*******************************************************************************
2
3 Intel 82599 Virtual Function driver
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004 Copyright(c) 1999 - 2015 Intel Corporation.
Greg Rose92915f72010-01-09 02:24:10 +00005
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
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +000016 this program; if not, see <http://www.gnu.org/licenses/>.
Greg Rose92915f72010-01-09 02:24:10 +000017
18 The full GNU General Public License is included in this distribution in
19 the file called "COPYING".
20
21 Contact Information:
22 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25*******************************************************************************/
26
Greg Rose92915f72010-01-09 02:24:10 +000027/******************************************************************************
28 Copyright (c)2006 - 2007 Myricom, Inc. for some LRO specific code
29******************************************************************************/
Jeff Kirsherdbd96362011-10-21 19:38:18 +000030
31#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
Greg Rose92915f72010-01-09 02:24:10 +000033#include <linux/types.h>
Jiri Pirkodadcd652011-07-21 03:25:09 +000034#include <linux/bitops.h>
Greg Rose92915f72010-01-09 02:24:10 +000035#include <linux/module.h>
36#include <linux/pci.h>
37#include <linux/netdevice.h>
38#include <linux/vmalloc.h>
39#include <linux/string.h>
40#include <linux/in.h>
41#include <linux/ip.h>
42#include <linux/tcp.h>
Alexander Duyck70a10e22012-05-11 08:33:21 +000043#include <linux/sctp.h>
Greg Rose92915f72010-01-09 02:24:10 +000044#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Greg Rose92915f72010-01-09 02:24:10 +000046#include <net/checksum.h>
47#include <net/ip6_checksum.h>
48#include <linux/ethtool.h>
Jiri Pirko01789342011-08-16 06:29:00 +000049#include <linux/if.h>
Greg Rose92915f72010-01-09 02:24:10 +000050#include <linux/if_vlan.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040051#include <linux/prefetch.h>
Greg Rose92915f72010-01-09 02:24:10 +000052
53#include "ixgbevf.h"
54
Stephen Hemminger3d8fe982012-01-18 22:13:34 +000055const char ixgbevf_driver_name[] = "ixgbevf";
Greg Rose92915f72010-01-09 02:24:10 +000056static const char ixgbevf_driver_string[] =
Greg Rose422e05d2011-03-12 02:01:29 +000057 "Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver";
Greg Rose92915f72010-01-09 02:24:10 +000058
Don Skidmore86f359f2014-01-17 01:21:38 -080059#define DRV_VERSION "2.12.1-k"
Greg Rose92915f72010-01-09 02:24:10 +000060const char ixgbevf_driver_version[] = DRV_VERSION;
Greg Rose66c87bd2010-11-16 19:26:43 -080061static char ixgbevf_copyright[] =
Greg Rose5c47a2b2012-01-06 02:53:30 +000062 "Copyright (c) 2009 - 2012 Intel Corporation.";
Greg Rose92915f72010-01-09 02:24:10 +000063
64static const struct ixgbevf_info *ixgbevf_info_tbl[] = {
Greg Rose2316aa22010-12-02 07:12:26 +000065 [board_82599_vf] = &ixgbevf_82599_vf_info,
66 [board_X540_vf] = &ixgbevf_X540_vf_info,
Emil Tantilov47068b02014-11-22 07:59:56 +000067 [board_X550_vf] = &ixgbevf_X550_vf_info,
68 [board_X550EM_x_vf] = &ixgbevf_X550EM_x_vf_info,
Greg Rose92915f72010-01-09 02:24:10 +000069};
70
71/* ixgbevf_pci_tbl - PCI Device ID Table
72 *
73 * Wildcard entries (PCI_ANY_ID) should come last
74 * Last entry must be all 0s
75 *
76 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
77 * Class, Class Mask, private data (not used) }
78 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020079static const struct pci_device_id ixgbevf_pci_tbl[] = {
Stephen Hemminger39ba22b2013-02-06 02:37:04 +000080 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_VF), board_82599_vf },
81 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540_VF), board_X540_vf },
Emil Tantilov47068b02014-11-22 07:59:56 +000082 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550_VF), board_X550_vf },
83 {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_VF), board_X550EM_x_vf },
Greg Rose92915f72010-01-09 02:24:10 +000084 /* required last entry */
85 {0, }
86};
87MODULE_DEVICE_TABLE(pci, ixgbevf_pci_tbl);
88
89MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
Emil Tantilovb8ce18c2014-04-05 05:39:42 +000090MODULE_DESCRIPTION("Intel(R) 10 Gigabit Virtual Function Network Driver");
Greg Rose92915f72010-01-09 02:24:10 +000091MODULE_LICENSE("GPL");
92MODULE_VERSION(DRV_VERSION);
93
stephen hemmingerb3f4d592012-03-13 06:04:20 +000094#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
95static int debug = -1;
96module_param(debug, int, 0);
97MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
Greg Rose92915f72010-01-09 02:24:10 +000098
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +000099static void ixgbevf_service_event_schedule(struct ixgbevf_adapter *adapter)
100{
101 if (!test_bit(__IXGBEVF_DOWN, &adapter->state) &&
102 !test_bit(__IXGBEVF_REMOVING, &adapter->state) &&
103 !test_and_set_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state))
104 schedule_work(&adapter->service_task);
105}
106
107static void ixgbevf_service_event_complete(struct ixgbevf_adapter *adapter)
108{
109 BUG_ON(!test_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state));
110
111 /* flush memory to make sure state is correct before next watchdog */
112 smp_mb__before_atomic();
113 clear_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state);
114}
115
Greg Rose92915f72010-01-09 02:24:10 +0000116/* forward decls */
Don Skidmore220fe052013-09-21 01:40:49 +0000117static void ixgbevf_queue_reset_subtask(struct ixgbevf_adapter *adapter);
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000118static void ixgbevf_set_itr(struct ixgbevf_q_vector *q_vector);
Alexander Duyck56e94092012-07-20 08:10:03 +0000119static void ixgbevf_free_all_rx_resources(struct ixgbevf_adapter *adapter);
Greg Rose92915f72010-01-09 02:24:10 +0000120
Mark Rustaddbf8b0d2014-03-04 03:02:34 +0000121static void ixgbevf_remove_adapter(struct ixgbe_hw *hw)
122{
123 struct ixgbevf_adapter *adapter = hw->back;
124
125 if (!hw->hw_addr)
126 return;
127 hw->hw_addr = NULL;
128 dev_err(&adapter->pdev->dev, "Adapter removed\n");
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +0000129 if (test_bit(__IXGBEVF_SERVICE_INITED, &adapter->state))
130 ixgbevf_service_event_schedule(adapter);
Mark Rustaddbf8b0d2014-03-04 03:02:34 +0000131}
132
133static void ixgbevf_check_remove(struct ixgbe_hw *hw, u32 reg)
134{
135 u32 value;
136
137 /* The following check not only optimizes a bit by not
138 * performing a read on the status register when the
139 * register just read was a status register read that
140 * returned IXGBE_FAILED_READ_REG. It also blocks any
141 * potential recursion.
142 */
143 if (reg == IXGBE_VFSTATUS) {
144 ixgbevf_remove_adapter(hw);
145 return;
146 }
Mark Rustad32c74942014-03-18 07:03:35 +0000147 value = ixgbevf_read_reg(hw, IXGBE_VFSTATUS);
Mark Rustaddbf8b0d2014-03-04 03:02:34 +0000148 if (value == IXGBE_FAILED_READ_REG)
149 ixgbevf_remove_adapter(hw);
150}
151
Mark Rustad32c74942014-03-18 07:03:35 +0000152u32 ixgbevf_read_reg(struct ixgbe_hw *hw, u32 reg)
Mark Rustaddbf8b0d2014-03-04 03:02:34 +0000153{
154 u8 __iomem *reg_addr = ACCESS_ONCE(hw->hw_addr);
155 u32 value;
156
157 if (IXGBE_REMOVED(reg_addr))
158 return IXGBE_FAILED_READ_REG;
159 value = readl(reg_addr + reg);
160 if (unlikely(value == IXGBE_FAILED_READ_REG))
161 ixgbevf_check_remove(hw, reg);
162 return value;
163}
164
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000165/**
Greg Rose65d676c2011-02-03 06:54:13 +0000166 * ixgbevf_set_ivar - set IVAR registers - maps interrupt causes to vectors
Greg Rose92915f72010-01-09 02:24:10 +0000167 * @adapter: pointer to adapter struct
168 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
169 * @queue: queue to map the corresponding interrupt to
170 * @msix_vector: the vector to map to the corresponding queue
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000171 **/
Greg Rose92915f72010-01-09 02:24:10 +0000172static void ixgbevf_set_ivar(struct ixgbevf_adapter *adapter, s8 direction,
173 u8 queue, u8 msix_vector)
174{
175 u32 ivar, index;
176 struct ixgbe_hw *hw = &adapter->hw;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000177
Greg Rose92915f72010-01-09 02:24:10 +0000178 if (direction == -1) {
179 /* other causes */
180 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
181 ivar = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
182 ivar &= ~0xFF;
183 ivar |= msix_vector;
184 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, ivar);
185 } else {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000186 /* Tx or Rx causes */
Greg Rose92915f72010-01-09 02:24:10 +0000187 msix_vector |= IXGBE_IVAR_ALLOC_VAL;
188 index = ((16 * (queue & 1)) + (8 * direction));
189 ivar = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
190 ivar &= ~(0xFF << index);
191 ivar |= (msix_vector << index);
192 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), ivar);
193 }
194}
195
Alexander Duyck70a10e22012-05-11 08:33:21 +0000196static void ixgbevf_unmap_and_free_tx_resource(struct ixgbevf_ring *tx_ring,
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800197 struct ixgbevf_tx_buffer *tx_buffer)
Greg Rose92915f72010-01-09 02:24:10 +0000198{
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800199 if (tx_buffer->skb) {
200 dev_kfree_skb_any(tx_buffer->skb);
201 if (dma_unmap_len(tx_buffer, len))
Alexander Duyck70a10e22012-05-11 08:33:21 +0000202 dma_unmap_single(tx_ring->dev,
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800203 dma_unmap_addr(tx_buffer, dma),
204 dma_unmap_len(tx_buffer, len),
Nick Nunley2a1f8792010-04-27 13:10:50 +0000205 DMA_TO_DEVICE);
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800206 } else if (dma_unmap_len(tx_buffer, len)) {
207 dma_unmap_page(tx_ring->dev,
208 dma_unmap_addr(tx_buffer, dma),
209 dma_unmap_len(tx_buffer, len),
210 DMA_TO_DEVICE);
Greg Rose92915f72010-01-09 02:24:10 +0000211 }
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800212 tx_buffer->next_to_watch = NULL;
213 tx_buffer->skb = NULL;
214 dma_unmap_len_set(tx_buffer, len, 0);
215 /* tx_buffer must be completely set up in the transmit path */
Greg Rose92915f72010-01-09 02:24:10 +0000216}
217
Emil Tantilove08400b2015-01-28 03:21:24 +0000218static u64 ixgbevf_get_tx_completed(struct ixgbevf_ring *ring)
219{
220 return ring->stats.packets;
221}
Greg Rose92915f72010-01-09 02:24:10 +0000222
Emil Tantilove08400b2015-01-28 03:21:24 +0000223static u32 ixgbevf_get_tx_pending(struct ixgbevf_ring *ring)
224{
225 struct ixgbevf_adapter *adapter = netdev_priv(ring->netdev);
226 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose92915f72010-01-09 02:24:10 +0000227
Emil Tantilove08400b2015-01-28 03:21:24 +0000228 u32 head = IXGBE_READ_REG(hw, IXGBE_VFTDH(ring->reg_idx));
229 u32 tail = IXGBE_READ_REG(hw, IXGBE_VFTDT(ring->reg_idx));
230
231 if (head != tail)
232 return (head < tail) ?
233 tail - head : (tail + ring->count - head);
234
235 return 0;
236}
237
238static inline bool ixgbevf_check_tx_hang(struct ixgbevf_ring *tx_ring)
239{
240 u32 tx_done = ixgbevf_get_tx_completed(tx_ring);
241 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
242 u32 tx_pending = ixgbevf_get_tx_pending(tx_ring);
243
244 clear_check_for_tx_hang(tx_ring);
245
246 /* Check for a hung queue, but be thorough. This verifies
247 * that a transmit has been completed since the previous
248 * check AND there is at least one packet pending. The
249 * ARMED bit is set to indicate a potential hang.
250 */
251 if ((tx_done_old == tx_done) && tx_pending) {
252 /* make sure it is true for two checks in a row */
253 return test_and_set_bit(__IXGBEVF_HANG_CHECK_ARMED,
254 &tx_ring->state);
255 }
256 /* reset the countdown */
257 clear_bit(__IXGBEVF_HANG_CHECK_ARMED, &tx_ring->state);
258
259 /* update completed stats and continue */
260 tx_ring->tx_stats.tx_done_old = tx_done;
261
262 return false;
263}
264
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +0000265static void ixgbevf_tx_timeout_reset(struct ixgbevf_adapter *adapter)
266{
267 /* Do the reset outside of interrupt context */
268 if (!test_bit(__IXGBEVF_DOWN, &adapter->state)) {
269 adapter->flags |= IXGBEVF_FLAG_RESET_REQUESTED;
270 ixgbevf_service_event_schedule(adapter);
271 }
272}
273
Emil Tantilove08400b2015-01-28 03:21:24 +0000274/**
275 * ixgbevf_tx_timeout - Respond to a Tx Hang
276 * @netdev: network interface device structure
277 **/
278static void ixgbevf_tx_timeout(struct net_device *netdev)
279{
280 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
281
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +0000282 ixgbevf_tx_timeout_reset(adapter);
Emil Tantilove08400b2015-01-28 03:21:24 +0000283}
Greg Rose92915f72010-01-09 02:24:10 +0000284
285/**
286 * ixgbevf_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000287 * @q_vector: board private structure
Greg Rose92915f72010-01-09 02:24:10 +0000288 * @tx_ring: tx ring to clean
289 **/
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000290static bool ixgbevf_clean_tx_irq(struct ixgbevf_q_vector *q_vector,
Greg Rose92915f72010-01-09 02:24:10 +0000291 struct ixgbevf_ring *tx_ring)
292{
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000293 struct ixgbevf_adapter *adapter = q_vector->adapter;
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800294 struct ixgbevf_tx_buffer *tx_buffer;
295 union ixgbe_adv_tx_desc *tx_desc;
Greg Rose92915f72010-01-09 02:24:10 +0000296 unsigned int total_bytes = 0, total_packets = 0;
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800297 unsigned int budget = tx_ring->count / 2;
298 unsigned int i = tx_ring->next_to_clean;
Greg Rose92915f72010-01-09 02:24:10 +0000299
Alexander Duyck10cc1bd2012-07-16 23:44:48 +0000300 if (test_bit(__IXGBEVF_DOWN, &adapter->state))
301 return true;
302
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800303 tx_buffer = &tx_ring->tx_buffer_info[i];
304 tx_desc = IXGBEVF_TX_DESC(tx_ring, i);
305 i -= tx_ring->count;
Greg Rose92915f72010-01-09 02:24:10 +0000306
Alexander Duycke757e3e2013-01-31 07:43:22 +0000307 do {
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800308 union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
Alexander Duycke757e3e2013-01-31 07:43:22 +0000309
310 /* if next_to_watch is not set then there is no work pending */
311 if (!eop_desc)
312 break;
313
314 /* prevent any other reads prior to eop_desc */
315 read_barrier_depends();
316
317 /* if DD is not set pending work has not been completed */
318 if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
319 break;
320
321 /* clear next_to_watch to prevent false hangs */
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800322 tx_buffer->next_to_watch = NULL;
Alexander Duycke757e3e2013-01-31 07:43:22 +0000323
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800324 /* update the statistics for this packet */
325 total_bytes += tx_buffer->bytecount;
326 total_packets += tx_buffer->gso_segs;
Greg Rose92915f72010-01-09 02:24:10 +0000327
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800328 /* free the skb */
329 dev_kfree_skb_any(tx_buffer->skb);
330
331 /* unmap skb header data */
332 dma_unmap_single(tx_ring->dev,
333 dma_unmap_addr(tx_buffer, dma),
334 dma_unmap_len(tx_buffer, len),
335 DMA_TO_DEVICE);
336
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800337 /* clear tx_buffer data */
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800338 tx_buffer->skb = NULL;
339 dma_unmap_len_set(tx_buffer, len, 0);
Greg Rose92915f72010-01-09 02:24:10 +0000340
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800341 /* unmap remaining buffers */
342 while (tx_desc != eop_desc) {
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800343 tx_buffer++;
344 tx_desc++;
Greg Rose92915f72010-01-09 02:24:10 +0000345 i++;
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800346 if (unlikely(!i)) {
347 i -= tx_ring->count;
348 tx_buffer = tx_ring->tx_buffer_info;
349 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
350 }
Alexander Duycke757e3e2013-01-31 07:43:22 +0000351
Emil Tantilov9bdfefd2014-01-17 18:30:04 -0800352 /* unmap any remaining paged data */
353 if (dma_unmap_len(tx_buffer, len)) {
354 dma_unmap_page(tx_ring->dev,
355 dma_unmap_addr(tx_buffer, dma),
356 dma_unmap_len(tx_buffer, len),
357 DMA_TO_DEVICE);
358 dma_unmap_len_set(tx_buffer, len, 0);
359 }
Greg Rose92915f72010-01-09 02:24:10 +0000360 }
361
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800362 /* move us one more past the eop_desc for start of next pkt */
363 tx_buffer++;
364 tx_desc++;
365 i++;
366 if (unlikely(!i)) {
367 i -= tx_ring->count;
368 tx_buffer = tx_ring->tx_buffer_info;
369 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
370 }
371
372 /* issue prefetch for next Tx descriptor */
373 prefetch(tx_desc);
374
375 /* update budget accounting */
376 budget--;
377 } while (likely(budget));
378
379 i += tx_ring->count;
Greg Rose92915f72010-01-09 02:24:10 +0000380 tx_ring->next_to_clean = i;
Eric Dumazet4197aa72011-06-22 05:01:35 +0000381 u64_stats_update_begin(&tx_ring->syncp);
Emil Tantilov095e2612014-01-17 18:30:00 -0800382 tx_ring->stats.bytes += total_bytes;
383 tx_ring->stats.packets += total_packets;
Eric Dumazet4197aa72011-06-22 05:01:35 +0000384 u64_stats_update_end(&tx_ring->syncp);
Greg Roseac6ed8f2012-08-31 05:59:28 +0000385 q_vector->tx.total_bytes += total_bytes;
386 q_vector->tx.total_packets += total_packets;
Greg Rose92915f72010-01-09 02:24:10 +0000387
Emil Tantilove08400b2015-01-28 03:21:24 +0000388 if (check_for_tx_hang(tx_ring) && ixgbevf_check_tx_hang(tx_ring)) {
389 struct ixgbe_hw *hw = &adapter->hw;
390 union ixgbe_adv_tx_desc *eop_desc;
391
392 eop_desc = tx_ring->tx_buffer_info[i].next_to_watch;
393
394 pr_err("Detected Tx Unit Hang\n"
395 " Tx Queue <%d>\n"
396 " TDH, TDT <%x>, <%x>\n"
397 " next_to_use <%x>\n"
398 " next_to_clean <%x>\n"
399 "tx_buffer_info[next_to_clean]\n"
400 " next_to_watch <%p>\n"
401 " eop_desc->wb.status <%x>\n"
402 " time_stamp <%lx>\n"
403 " jiffies <%lx>\n",
404 tx_ring->queue_index,
405 IXGBE_READ_REG(hw, IXGBE_VFTDH(tx_ring->reg_idx)),
406 IXGBE_READ_REG(hw, IXGBE_VFTDT(tx_ring->reg_idx)),
407 tx_ring->next_to_use, i,
408 eop_desc, (eop_desc ? eop_desc->wb.status : 0),
409 tx_ring->tx_buffer_info[i].time_stamp, jiffies);
410
411 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
412
413 /* schedule immediate reset if we believe we hung */
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +0000414 ixgbevf_tx_timeout_reset(adapter);
Emil Tantilove08400b2015-01-28 03:21:24 +0000415
416 return true;
417 }
418
Emil Tantilov7ad1a092014-01-17 18:30:03 -0800419#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
420 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
421 (ixgbevf_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
422 /* Make sure that anybody stopping the queue after this
423 * sees the new next_to_clean.
424 */
425 smp_mb();
426
427 if (__netif_subqueue_stopped(tx_ring->netdev,
428 tx_ring->queue_index) &&
429 !test_bit(__IXGBEVF_DOWN, &adapter->state)) {
430 netif_wake_subqueue(tx_ring->netdev,
431 tx_ring->queue_index);
432 ++tx_ring->tx_stats.restart_queue;
433 }
434 }
435
436 return !!budget;
Greg Rose92915f72010-01-09 02:24:10 +0000437}
438
439/**
Jacob Keller08681612013-09-21 06:24:09 +0000440 * ixgbevf_rx_skb - Helper function to determine proper Rx method
441 * @q_vector: structure containing interrupt and ring information
442 * @skb: packet to send up
Jacob Keller08681612013-09-21 06:24:09 +0000443 **/
444static void ixgbevf_rx_skb(struct ixgbevf_q_vector *q_vector,
Emil Tantilovdff80522014-11-08 01:39:25 +0000445 struct sk_buff *skb)
Jacob Keller08681612013-09-21 06:24:09 +0000446{
Jacob Kellerc777cdf2013-09-21 06:24:20 +0000447#ifdef CONFIG_NET_RX_BUSY_POLL
448 skb_mark_napi_id(skb, &q_vector->napi);
449
450 if (ixgbevf_qv_busy_polling(q_vector)) {
451 netif_receive_skb(skb);
452 /* exit early if we busy polled */
453 return;
454 }
455#endif /* CONFIG_NET_RX_BUSY_POLL */
Emil Tantilov688ff322014-11-08 01:39:56 +0000456
457 napi_gro_receive(&q_vector->napi, skb);
Jacob Keller08681612013-09-21 06:24:09 +0000458}
459
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000460/**
461 * ixgbevf_rx_checksum - indicate in skb if hw indicated a good cksum
Emil Tantilovec62fe22014-11-08 01:39:20 +0000462 * @ring: structure containig ring specific data
463 * @rx_desc: current Rx descriptor being processed
Greg Rose92915f72010-01-09 02:24:10 +0000464 * @skb: skb currently being received and modified
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000465 **/
Greg Rose55fb2772012-11-06 05:53:32 +0000466static inline void ixgbevf_rx_checksum(struct ixgbevf_ring *ring,
Emil Tantilovec62fe22014-11-08 01:39:20 +0000467 union ixgbe_adv_rx_desc *rx_desc,
468 struct sk_buff *skb)
Greg Rose92915f72010-01-09 02:24:10 +0000469{
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700470 skb_checksum_none_assert(skb);
Greg Rose92915f72010-01-09 02:24:10 +0000471
472 /* Rx csum disabled */
Alexander Duyckfb401952012-05-11 08:33:16 +0000473 if (!(ring->netdev->features & NETIF_F_RXCSUM))
Greg Rose92915f72010-01-09 02:24:10 +0000474 return;
475
476 /* if IP and error */
Emil Tantilovec62fe22014-11-08 01:39:20 +0000477 if (ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
478 ixgbevf_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
Emil Tantilov095e2612014-01-17 18:30:00 -0800479 ring->rx_stats.csum_err++;
Greg Rose92915f72010-01-09 02:24:10 +0000480 return;
481 }
482
Emil Tantilovec62fe22014-11-08 01:39:20 +0000483 if (!ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
Greg Rose92915f72010-01-09 02:24:10 +0000484 return;
485
Emil Tantilovec62fe22014-11-08 01:39:20 +0000486 if (ixgbevf_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
Emil Tantilov095e2612014-01-17 18:30:00 -0800487 ring->rx_stats.csum_err++;
Greg Rose92915f72010-01-09 02:24:10 +0000488 return;
489 }
490
491 /* It must be a TCP or UDP packet with a valid checksum */
492 skb->ip_summed = CHECKSUM_UNNECESSARY;
Greg Rose92915f72010-01-09 02:24:10 +0000493}
494
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000495/**
496 * ixgbevf_process_skb_fields - Populate skb header fields from Rx descriptor
Emil Tantilovdff80522014-11-08 01:39:25 +0000497 * @rx_ring: rx descriptor ring packet is being transacted on
498 * @rx_desc: pointer to the EOP Rx descriptor
499 * @skb: pointer to current skb being populated
500 *
501 * This function checks the ring, descriptor, and packet information in
502 * order to populate the checksum, VLAN, protocol, and other fields within
503 * the skb.
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000504 **/
Emil Tantilovdff80522014-11-08 01:39:25 +0000505static void ixgbevf_process_skb_fields(struct ixgbevf_ring *rx_ring,
506 union ixgbe_adv_rx_desc *rx_desc,
507 struct sk_buff *skb)
508{
509 ixgbevf_rx_checksum(rx_ring, rx_desc, skb);
510
511 if (ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
512 u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
513 unsigned long *active_vlans = netdev_priv(rx_ring->netdev);
514
515 if (test_bit(vid & VLAN_VID_MASK, active_vlans))
516 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
517 }
518
519 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
520}
521
Emil Tantilov4b95fe32014-11-08 01:39:41 +0000522/**
523 * ixgbevf_is_non_eop - process handling of non-EOP buffers
524 * @rx_ring: Rx ring being processed
525 * @rx_desc: Rx descriptor for current buffer
526 * @skb: current socket buffer containing buffer in progress
527 *
528 * This function updates next to clean. If the buffer is an EOP buffer
529 * this function exits returning false, otherwise it will place the
530 * sk_buff in the next buffer to be chained and return true indicating
531 * that this is in fact a non-EOP buffer.
532 **/
533static bool ixgbevf_is_non_eop(struct ixgbevf_ring *rx_ring,
Emil Tantilovbad17232014-11-21 02:57:15 +0000534 union ixgbe_adv_rx_desc *rx_desc)
Emil Tantilov4b95fe32014-11-08 01:39:41 +0000535{
536 u32 ntc = rx_ring->next_to_clean + 1;
537
538 /* fetch, update, and store next to clean */
539 ntc = (ntc < rx_ring->count) ? ntc : 0;
540 rx_ring->next_to_clean = ntc;
541
542 prefetch(IXGBEVF_RX_DESC(rx_ring, ntc));
543
544 if (likely(ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
545 return false;
546
547 return true;
548}
549
Emil Tantilovbad17232014-11-21 02:57:15 +0000550static bool ixgbevf_alloc_mapped_page(struct ixgbevf_ring *rx_ring,
551 struct ixgbevf_rx_buffer *bi)
Emil Tantilovbafa5782014-11-08 01:39:15 +0000552{
Emil Tantilovbad17232014-11-21 02:57:15 +0000553 struct page *page = bi->page;
Emil Tantilovbafa5782014-11-08 01:39:15 +0000554 dma_addr_t dma = bi->dma;
555
Emil Tantilovbad17232014-11-21 02:57:15 +0000556 /* since we are recycling buffers we should seldom need to alloc */
557 if (likely(page))
Emil Tantilovbafa5782014-11-08 01:39:15 +0000558 return true;
559
Emil Tantilovbad17232014-11-21 02:57:15 +0000560 /* alloc new page for storage */
561 page = dev_alloc_page();
562 if (unlikely(!page)) {
563 rx_ring->rx_stats.alloc_rx_page_failed++;
Emil Tantilovbafa5782014-11-08 01:39:15 +0000564 return false;
565 }
566
Emil Tantilovbad17232014-11-21 02:57:15 +0000567 /* map page for use */
568 dma = dma_map_page(rx_ring->dev, page, 0,
569 PAGE_SIZE, DMA_FROM_DEVICE);
Emil Tantilovbafa5782014-11-08 01:39:15 +0000570
571 /* if mapping failed free memory back to system since
572 * there isn't much point in holding memory we can't use
573 */
574 if (dma_mapping_error(rx_ring->dev, dma)) {
Emil Tantilovbad17232014-11-21 02:57:15 +0000575 __free_page(page);
Emil Tantilovbafa5782014-11-08 01:39:15 +0000576
577 rx_ring->rx_stats.alloc_rx_buff_failed++;
578 return false;
579 }
580
Emil Tantilovbafa5782014-11-08 01:39:15 +0000581 bi->dma = dma;
Emil Tantilovbad17232014-11-21 02:57:15 +0000582 bi->page = page;
583 bi->page_offset = 0;
Emil Tantilovbafa5782014-11-08 01:39:15 +0000584
585 return true;
586}
587
Greg Rose92915f72010-01-09 02:24:10 +0000588/**
589 * ixgbevf_alloc_rx_buffers - Replace used receive buffers; packet split
Emil Tantilov095e2612014-01-17 18:30:00 -0800590 * @rx_ring: rx descriptor ring (for a specific queue) to setup buffers on
Emil Tantilovbafa5782014-11-08 01:39:15 +0000591 * @cleaned_count: number of buffers to replace
Greg Rose92915f72010-01-09 02:24:10 +0000592 **/
Emil Tantilov095e2612014-01-17 18:30:00 -0800593static void ixgbevf_alloc_rx_buffers(struct ixgbevf_ring *rx_ring,
Emil Tantilovbafa5782014-11-08 01:39:15 +0000594 u16 cleaned_count)
Greg Rose92915f72010-01-09 02:24:10 +0000595{
Greg Rose92915f72010-01-09 02:24:10 +0000596 union ixgbe_adv_rx_desc *rx_desc;
597 struct ixgbevf_rx_buffer *bi;
Alexander Duyckfb401952012-05-11 08:33:16 +0000598 unsigned int i = rx_ring->next_to_use;
Greg Rose92915f72010-01-09 02:24:10 +0000599
Emil Tantilovbafa5782014-11-08 01:39:15 +0000600 /* nothing to do or no valid netdev defined */
601 if (!cleaned_count || !rx_ring->netdev)
602 return;
Greg Roseb9dd2452012-11-02 05:50:21 +0000603
Emil Tantilovbafa5782014-11-08 01:39:15 +0000604 rx_desc = IXGBEVF_RX_DESC(rx_ring, i);
605 bi = &rx_ring->rx_buffer_info[i];
606 i -= rx_ring->count;
Greg Roseb9dd2452012-11-02 05:50:21 +0000607
Emil Tantilovbafa5782014-11-08 01:39:15 +0000608 do {
Emil Tantilovbad17232014-11-21 02:57:15 +0000609 if (!ixgbevf_alloc_mapped_page(rx_ring, bi))
Emil Tantilovbafa5782014-11-08 01:39:15 +0000610 break;
Emil Tantilov05d063a2014-01-17 18:29:59 -0800611
Emil Tantilovbafa5782014-11-08 01:39:15 +0000612 /* Refresh the desc even if pkt_addr didn't change
613 * because each write-back erases this info.
614 */
Emil Tantilovbad17232014-11-21 02:57:15 +0000615 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Greg Rose92915f72010-01-09 02:24:10 +0000616
Emil Tantilovbafa5782014-11-08 01:39:15 +0000617 rx_desc++;
618 bi++;
Greg Rose92915f72010-01-09 02:24:10 +0000619 i++;
Emil Tantilovbafa5782014-11-08 01:39:15 +0000620 if (unlikely(!i)) {
621 rx_desc = IXGBEVF_RX_DESC(rx_ring, 0);
622 bi = rx_ring->rx_buffer_info;
623 i -= rx_ring->count;
624 }
Greg Rose92915f72010-01-09 02:24:10 +0000625
Emil Tantilovbafa5782014-11-08 01:39:15 +0000626 /* clear the hdr_addr for the next_to_use descriptor */
627 rx_desc->read.hdr_addr = 0;
628
629 cleaned_count--;
630 } while (cleaned_count);
631
632 i += rx_ring->count;
633
634 if (rx_ring->next_to_use != i) {
635 /* record the next descriptor to use */
636 rx_ring->next_to_use = i;
637
Emil Tantilovbad17232014-11-21 02:57:15 +0000638 /* update next to alloc since we have filled the ring */
639 rx_ring->next_to_alloc = i;
640
Emil Tantilovbafa5782014-11-08 01:39:15 +0000641 /* Force memory writes to complete before letting h/w
642 * know there are new descriptors to fetch. (Only
643 * applicable for weak-ordered memory model archs,
644 * such as IA-64).
645 */
646 wmb();
647 ixgbevf_write_tail(rx_ring, i);
648 }
Greg Rose92915f72010-01-09 02:24:10 +0000649}
650
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000651/**
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000652 * ixgbevf_cleanup_headers - Correct corrupted or empty headers
Emil Tantilovbad17232014-11-21 02:57:15 +0000653 * @rx_ring: rx descriptor ring packet is being transacted on
654 * @rx_desc: pointer to the EOP Rx descriptor
655 * @skb: pointer to current skb being fixed
656 *
657 * Check for corrupted packet headers caused by senders on the local L2
658 * embedded NIC switch not setting up their Tx Descriptors right. These
659 * should be very rare.
660 *
661 * Also address the case where we are pulling data in on pages only
662 * and as such no data is present in the skb header.
663 *
664 * In addition if skb is not at least 60 bytes we need to pad it so that
665 * it is large enough to qualify as a valid Ethernet frame.
666 *
667 * Returns true if an error was encountered and skb was freed.
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000668 **/
Emil Tantilovbad17232014-11-21 02:57:15 +0000669static bool ixgbevf_cleanup_headers(struct ixgbevf_ring *rx_ring,
670 union ixgbe_adv_rx_desc *rx_desc,
671 struct sk_buff *skb)
672{
673 /* verify that the packet does not have any known errors */
674 if (unlikely(ixgbevf_test_staterr(rx_desc,
675 IXGBE_RXDADV_ERR_FRAME_ERR_MASK))) {
676 struct net_device *netdev = rx_ring->netdev;
677
678 if (!(netdev->features & NETIF_F_RXALL)) {
679 dev_kfree_skb_any(skb);
680 return true;
681 }
682 }
683
Alexander Duycka94d9e22014-12-03 08:17:39 -0800684 /* if eth_skb_pad returns an error the skb was freed */
685 if (eth_skb_pad(skb))
686 return true;
Emil Tantilovbad17232014-11-21 02:57:15 +0000687
688 return false;
689}
690
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000691/**
692 * ixgbevf_reuse_rx_page - page flip buffer and store it back on the ring
Emil Tantilovbad17232014-11-21 02:57:15 +0000693 * @rx_ring: rx descriptor ring to store buffers on
694 * @old_buff: donor buffer to have page reused
695 *
696 * Synchronizes page for reuse by the adapter
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000697 **/
Emil Tantilovbad17232014-11-21 02:57:15 +0000698static void ixgbevf_reuse_rx_page(struct ixgbevf_ring *rx_ring,
699 struct ixgbevf_rx_buffer *old_buff)
700{
701 struct ixgbevf_rx_buffer *new_buff;
702 u16 nta = rx_ring->next_to_alloc;
703
704 new_buff = &rx_ring->rx_buffer_info[nta];
705
706 /* update, and store next to alloc */
707 nta++;
708 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
709
710 /* transfer page from old buffer to new buffer */
711 new_buff->page = old_buff->page;
712 new_buff->dma = old_buff->dma;
713 new_buff->page_offset = old_buff->page_offset;
714
715 /* sync the buffer for use by the device */
716 dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma,
717 new_buff->page_offset,
718 IXGBEVF_RX_BUFSZ,
719 DMA_FROM_DEVICE);
720}
721
722static inline bool ixgbevf_page_is_reserved(struct page *page)
723{
724 return (page_to_nid(page) != numa_mem_id()) || page->pfmemalloc;
725}
726
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000727/**
728 * ixgbevf_add_rx_frag - Add contents of Rx buffer to sk_buff
Emil Tantilovbad17232014-11-21 02:57:15 +0000729 * @rx_ring: rx descriptor ring to transact packets on
730 * @rx_buffer: buffer containing page to add
731 * @rx_desc: descriptor containing length of buffer written by hardware
732 * @skb: sk_buff to place the data into
733 *
734 * This function will add the data contained in rx_buffer->page to the skb.
735 * This is done either through a direct copy if the data in the buffer is
736 * less than the skb header size, otherwise it will just attach the page as
737 * a frag to the skb.
738 *
739 * The function will then update the page offset if necessary and return
740 * true if the buffer can be reused by the adapter.
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000741 **/
Emil Tantilovbad17232014-11-21 02:57:15 +0000742static bool ixgbevf_add_rx_frag(struct ixgbevf_ring *rx_ring,
743 struct ixgbevf_rx_buffer *rx_buffer,
744 union ixgbe_adv_rx_desc *rx_desc,
745 struct sk_buff *skb)
746{
747 struct page *page = rx_buffer->page;
Alexander Duyck5505bdb2015-04-22 21:49:32 -0700748 unsigned char *va = page_address(page) + rx_buffer->page_offset;
Emil Tantilovbad17232014-11-21 02:57:15 +0000749 unsigned int size = le16_to_cpu(rx_desc->wb.upper.length);
750#if (PAGE_SIZE < 8192)
751 unsigned int truesize = IXGBEVF_RX_BUFSZ;
752#else
753 unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
754#endif
Alexander Duyck5505bdb2015-04-22 21:49:32 -0700755 unsigned int pull_len;
Emil Tantilovbad17232014-11-21 02:57:15 +0000756
Alexander Duyck5505bdb2015-04-22 21:49:32 -0700757 if (unlikely(skb_is_nonlinear(skb)))
758 goto add_tail_frag;
Emil Tantilovbad17232014-11-21 02:57:15 +0000759
Alexander Duyck5505bdb2015-04-22 21:49:32 -0700760 if (likely(size <= IXGBEVF_RX_HDR_SIZE)) {
Emil Tantilovbad17232014-11-21 02:57:15 +0000761 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
762
763 /* page is not reserved, we can reuse buffer as is */
764 if (likely(!ixgbevf_page_is_reserved(page)))
765 return true;
766
767 /* this page cannot be reused so discard it */
768 put_page(page);
769 return false;
770 }
771
Alexander Duyck5505bdb2015-04-22 21:49:32 -0700772 /* we need the header to contain the greater of either ETH_HLEN or
773 * 60 bytes if the skb->len is less than 60 for skb_pad.
774 */
775 pull_len = eth_get_headlen(va, IXGBEVF_RX_HDR_SIZE);
776
777 /* align pull length to size of long to optimize memcpy performance */
778 memcpy(__skb_put(skb, pull_len), va, ALIGN(pull_len, sizeof(long)));
779
780 /* update all of the pointers */
781 va += pull_len;
782 size -= pull_len;
783
784add_tail_frag:
Emil Tantilovbad17232014-11-21 02:57:15 +0000785 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
Alexander Duyck5505bdb2015-04-22 21:49:32 -0700786 (unsigned long)va & ~PAGE_MASK, size, truesize);
Emil Tantilovbad17232014-11-21 02:57:15 +0000787
788 /* avoid re-using remote pages */
789 if (unlikely(ixgbevf_page_is_reserved(page)))
790 return false;
791
792#if (PAGE_SIZE < 8192)
793 /* if we are only owner of page we can reuse it */
794 if (unlikely(page_count(page) != 1))
795 return false;
796
797 /* flip page offset to other buffer */
798 rx_buffer->page_offset ^= IXGBEVF_RX_BUFSZ;
799
800#else
801 /* move offset up to the next cache line */
802 rx_buffer->page_offset += truesize;
803
804 if (rx_buffer->page_offset > (PAGE_SIZE - IXGBEVF_RX_BUFSZ))
805 return false;
806
807#endif
808 /* Even if we own the page, we are not allowed to use atomic_set()
809 * This would break get_page_unless_zero() users.
810 */
811 atomic_inc(&page->_count);
812
813 return true;
814}
815
816static struct sk_buff *ixgbevf_fetch_rx_buffer(struct ixgbevf_ring *rx_ring,
817 union ixgbe_adv_rx_desc *rx_desc,
818 struct sk_buff *skb)
819{
820 struct ixgbevf_rx_buffer *rx_buffer;
821 struct page *page;
822
823 rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
824 page = rx_buffer->page;
825 prefetchw(page);
826
827 if (likely(!skb)) {
828 void *page_addr = page_address(page) +
829 rx_buffer->page_offset;
830
831 /* prefetch first cache line of first page */
832 prefetch(page_addr);
833#if L1_CACHE_BYTES < 128
834 prefetch(page_addr + L1_CACHE_BYTES);
835#endif
836
837 /* allocate a skb to store the frags */
838 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
839 IXGBEVF_RX_HDR_SIZE);
840 if (unlikely(!skb)) {
841 rx_ring->rx_stats.alloc_rx_buff_failed++;
842 return NULL;
843 }
844
845 /* we will be copying header into skb->data in
846 * pskb_may_pull so it is in our interest to prefetch
847 * it now to avoid a possible cache miss
848 */
849 prefetchw(skb->data);
850 }
851
852 /* we are reusing so sync this buffer for CPU use */
853 dma_sync_single_range_for_cpu(rx_ring->dev,
854 rx_buffer->dma,
855 rx_buffer->page_offset,
856 IXGBEVF_RX_BUFSZ,
857 DMA_FROM_DEVICE);
858
859 /* pull page into skb */
860 if (ixgbevf_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
861 /* hand second half of page back to the ring */
862 ixgbevf_reuse_rx_page(rx_ring, rx_buffer);
863 } else {
864 /* we are not reusing the buffer so unmap it */
865 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
866 PAGE_SIZE, DMA_FROM_DEVICE);
867 }
868
869 /* clear contents of buffer_info */
870 rx_buffer->dma = 0;
871 rx_buffer->page = NULL;
872
873 return skb;
874}
875
Greg Rose92915f72010-01-09 02:24:10 +0000876static inline void ixgbevf_irq_enable_queues(struct ixgbevf_adapter *adapter,
Alexander Duyck5f3600e2012-05-11 08:32:55 +0000877 u32 qmask)
Greg Rose92915f72010-01-09 02:24:10 +0000878{
Greg Rose92915f72010-01-09 02:24:10 +0000879 struct ixgbe_hw *hw = &adapter->hw;
880
Alexander Duyck5f3600e2012-05-11 08:32:55 +0000881 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, qmask);
Greg Rose92915f72010-01-09 02:24:10 +0000882}
883
Jacob Keller08e50a22013-09-21 06:24:14 +0000884static int ixgbevf_clean_rx_irq(struct ixgbevf_q_vector *q_vector,
885 struct ixgbevf_ring *rx_ring,
886 int budget)
Greg Rose92915f72010-01-09 02:24:10 +0000887{
Greg Rose92915f72010-01-09 02:24:10 +0000888 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Emil Tantilovbafa5782014-11-08 01:39:15 +0000889 u16 cleaned_count = ixgbevf_desc_unused(rx_ring);
Emil Tantilovbad17232014-11-21 02:57:15 +0000890 struct sk_buff *skb = rx_ring->skb;
Greg Rose92915f72010-01-09 02:24:10 +0000891
Emil Tantilov66224022014-11-08 01:39:51 +0000892 while (likely(total_rx_packets < budget)) {
Emil Tantilov4b95fe32014-11-08 01:39:41 +0000893 union ixgbe_adv_rx_desc *rx_desc;
Emil Tantilovb97fe3b2014-11-08 01:39:30 +0000894
Emil Tantilov0579eef2014-11-08 01:39:35 +0000895 /* return some buffers to hardware, one at a time is too slow */
896 if (cleaned_count >= IXGBEVF_RX_BUFFER_WRITE) {
897 ixgbevf_alloc_rx_buffers(rx_ring, cleaned_count);
898 cleaned_count = 0;
899 }
900
Emil Tantilovbad17232014-11-21 02:57:15 +0000901 rx_desc = IXGBEVF_RX_DESC(rx_ring, rx_ring->next_to_clean);
Emil Tantilov0579eef2014-11-08 01:39:35 +0000902
903 if (!ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_DD))
Greg Rose92915f72010-01-09 02:24:10 +0000904 break;
Greg Rose92915f72010-01-09 02:24:10 +0000905
Emil Tantilov0579eef2014-11-08 01:39:35 +0000906 /* This memory barrier is needed to keep us from reading
907 * any other fields out of the rx_desc until we know the
908 * RXD_STAT_DD bit is set
909 */
910 rmb();
Emil Tantilovec62fe22014-11-08 01:39:20 +0000911
Emil Tantilovbad17232014-11-21 02:57:15 +0000912 /* retrieve a buffer from the ring */
913 skb = ixgbevf_fetch_rx_buffer(rx_ring, rx_desc, skb);
Greg Rose92915f72010-01-09 02:24:10 +0000914
Emil Tantilovbad17232014-11-21 02:57:15 +0000915 /* exit if we failed to retrieve a buffer */
916 if (!skb)
917 break;
Greg Rose92915f72010-01-09 02:24:10 +0000918
Emil Tantilovb97fe3b2014-11-08 01:39:30 +0000919 cleaned_count++;
920
Emil Tantilovbad17232014-11-21 02:57:15 +0000921 /* fetch next buffer in frame if non-eop */
922 if (ixgbevf_is_non_eop(rx_ring, rx_desc))
Emil Tantilov0579eef2014-11-08 01:39:35 +0000923 continue;
Greg Rose92915f72010-01-09 02:24:10 +0000924
Emil Tantilovbad17232014-11-21 02:57:15 +0000925 /* verify the packet layout is correct */
926 if (ixgbevf_cleanup_headers(rx_ring, rx_desc, skb)) {
927 skb = NULL;
Emil Tantilov0579eef2014-11-08 01:39:35 +0000928 continue;
Greg Rose92915f72010-01-09 02:24:10 +0000929 }
930
Greg Rose92915f72010-01-09 02:24:10 +0000931 /* probably a little skewed due to removing CRC */
932 total_rx_bytes += skb->len;
Greg Rose92915f72010-01-09 02:24:10 +0000933
John Fastabend815cccb2012-10-24 08:13:09 +0000934 /* Workaround hardware that can't do proper VEPA multicast
935 * source pruning.
936 */
Florian Fainellibd9d5592014-02-28 15:46:49 -0800937 if ((skb->pkt_type == PACKET_BROADCAST ||
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000938 skb->pkt_type == PACKET_MULTICAST) &&
Emil Tantilov095e2612014-01-17 18:30:00 -0800939 ether_addr_equal(rx_ring->netdev->dev_addr,
Joe Perches7367d0b2013-09-01 11:51:23 -0700940 eth_hdr(skb)->h_source)) {
John Fastabend815cccb2012-10-24 08:13:09 +0000941 dev_kfree_skb_irq(skb);
Emil Tantilov0579eef2014-11-08 01:39:35 +0000942 continue;
John Fastabend815cccb2012-10-24 08:13:09 +0000943 }
944
Emil Tantilovdff80522014-11-08 01:39:25 +0000945 /* populate checksum, VLAN, and protocol */
946 ixgbevf_process_skb_fields(rx_ring, rx_desc, skb);
947
948 ixgbevf_rx_skb(q_vector, skb);
Greg Rose92915f72010-01-09 02:24:10 +0000949
Emil Tantilovbad17232014-11-21 02:57:15 +0000950 /* reset skb pointer */
951 skb = NULL;
952
Emil Tantilov0579eef2014-11-08 01:39:35 +0000953 /* update budget accounting */
Emil Tantilov66224022014-11-08 01:39:51 +0000954 total_rx_packets++;
955 }
Greg Rose92915f72010-01-09 02:24:10 +0000956
Emil Tantilovbad17232014-11-21 02:57:15 +0000957 /* place incomplete frames back on ring for completion */
958 rx_ring->skb = skb;
959
Eric Dumazet4197aa72011-06-22 05:01:35 +0000960 u64_stats_update_begin(&rx_ring->syncp);
Emil Tantilov095e2612014-01-17 18:30:00 -0800961 rx_ring->stats.packets += total_rx_packets;
962 rx_ring->stats.bytes += total_rx_bytes;
Eric Dumazet4197aa72011-06-22 05:01:35 +0000963 u64_stats_update_end(&rx_ring->syncp);
Greg Roseac6ed8f2012-08-31 05:59:28 +0000964 q_vector->rx.total_packets += total_rx_packets;
965 q_vector->rx.total_bytes += total_rx_bytes;
Greg Rose92915f72010-01-09 02:24:10 +0000966
Jacob Keller08e50a22013-09-21 06:24:14 +0000967 return total_rx_packets;
Greg Rose92915f72010-01-09 02:24:10 +0000968}
969
970/**
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000971 * ixgbevf_poll - NAPI polling calback
Greg Rose92915f72010-01-09 02:24:10 +0000972 * @napi: napi struct with our devices info in it
973 * @budget: amount of work driver is allowed to do this pass, in packets
974 *
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000975 * This function will clean more than one or more rings associated with a
Greg Rose92915f72010-01-09 02:24:10 +0000976 * q_vector.
977 **/
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000978static int ixgbevf_poll(struct napi_struct *napi, int budget)
Greg Rose92915f72010-01-09 02:24:10 +0000979{
980 struct ixgbevf_q_vector *q_vector =
981 container_of(napi, struct ixgbevf_q_vector, napi);
982 struct ixgbevf_adapter *adapter = q_vector->adapter;
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000983 struct ixgbevf_ring *ring;
984 int per_ring_budget;
985 bool clean_complete = true;
986
987 ixgbevf_for_each_ring(ring, q_vector->tx)
988 clean_complete &= ixgbevf_clean_tx_irq(q_vector, ring);
Greg Rose92915f72010-01-09 02:24:10 +0000989
Jacob Kellerc777cdf2013-09-21 06:24:20 +0000990#ifdef CONFIG_NET_RX_BUSY_POLL
991 if (!ixgbevf_qv_lock_napi(q_vector))
992 return budget;
993#endif
994
Greg Rose92915f72010-01-09 02:24:10 +0000995 /* attempt to distribute budget to each queue fairly, but don't allow
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +0000996 * the budget to go below 1 because we'll exit polling
997 */
Alexander Duyckfa71ae22012-05-11 08:32:50 +0000998 if (q_vector->rx.count > 1)
999 per_ring_budget = max(budget/q_vector->rx.count, 1);
1000 else
1001 per_ring_budget = budget;
Greg Rose92915f72010-01-09 02:24:10 +00001002
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001003 ixgbevf_for_each_ring(ring, q_vector->rx)
Jacob Keller08e50a22013-09-21 06:24:14 +00001004 clean_complete &= (ixgbevf_clean_rx_irq(q_vector, ring,
1005 per_ring_budget)
1006 < per_ring_budget);
Greg Rose92915f72010-01-09 02:24:10 +00001007
Jacob Kellerc777cdf2013-09-21 06:24:20 +00001008#ifdef CONFIG_NET_RX_BUSY_POLL
1009 ixgbevf_qv_unlock_napi(q_vector);
1010#endif
1011
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001012 /* If all work not completed, return budget and keep polling */
1013 if (!clean_complete)
1014 return budget;
1015 /* all work done, exit the polling mode */
1016 napi_complete(napi);
1017 if (adapter->rx_itr_setting & 1)
1018 ixgbevf_set_itr(q_vector);
Mark Rustad2e7cfbd2014-03-04 03:02:13 +00001019 if (!test_bit(__IXGBEVF_DOWN, &adapter->state) &&
1020 !test_bit(__IXGBEVF_REMOVING, &adapter->state))
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001021 ixgbevf_irq_enable_queues(adapter,
1022 1 << q_vector->v_idx);
Greg Rose92915f72010-01-09 02:24:10 +00001023
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001024 return 0;
Greg Rose92915f72010-01-09 02:24:10 +00001025}
1026
Greg Rosece422602012-05-22 02:17:49 +00001027/**
1028 * ixgbevf_write_eitr - write VTEITR register in hardware specific way
1029 * @q_vector: structure containing interrupt and ring information
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001030 **/
Jacob Keller38496232013-10-22 06:19:18 +00001031void ixgbevf_write_eitr(struct ixgbevf_q_vector *q_vector)
Greg Rosece422602012-05-22 02:17:49 +00001032{
1033 struct ixgbevf_adapter *adapter = q_vector->adapter;
1034 struct ixgbe_hw *hw = &adapter->hw;
1035 int v_idx = q_vector->v_idx;
1036 u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;
1037
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001038 /* set the WDIS bit to not clear the timer bits and cause an
Greg Rosece422602012-05-22 02:17:49 +00001039 * immediate assertion of the interrupt
1040 */
1041 itr_reg |= IXGBE_EITR_CNT_WDIS;
1042
1043 IXGBE_WRITE_REG(hw, IXGBE_VTEITR(v_idx), itr_reg);
1044}
Greg Rose92915f72010-01-09 02:24:10 +00001045
Jacob Kellerc777cdf2013-09-21 06:24:20 +00001046#ifdef CONFIG_NET_RX_BUSY_POLL
1047/* must be called with local_bh_disable()d */
1048static int ixgbevf_busy_poll_recv(struct napi_struct *napi)
1049{
1050 struct ixgbevf_q_vector *q_vector =
1051 container_of(napi, struct ixgbevf_q_vector, napi);
1052 struct ixgbevf_adapter *adapter = q_vector->adapter;
1053 struct ixgbevf_ring *ring;
1054 int found = 0;
1055
1056 if (test_bit(__IXGBEVF_DOWN, &adapter->state))
1057 return LL_FLUSH_FAILED;
1058
1059 if (!ixgbevf_qv_lock_poll(q_vector))
1060 return LL_FLUSH_BUSY;
1061
1062 ixgbevf_for_each_ring(ring, q_vector->rx) {
1063 found = ixgbevf_clean_rx_irq(q_vector, ring, 4);
Jacob Keller3b5dca22013-09-21 06:24:25 +00001064#ifdef BP_EXTENDED_STATS
1065 if (found)
Emil Tantilov095e2612014-01-17 18:30:00 -08001066 ring->stats.cleaned += found;
Jacob Keller3b5dca22013-09-21 06:24:25 +00001067 else
Emil Tantilov095e2612014-01-17 18:30:00 -08001068 ring->stats.misses++;
Jacob Keller3b5dca22013-09-21 06:24:25 +00001069#endif
Jacob Kellerc777cdf2013-09-21 06:24:20 +00001070 if (found)
1071 break;
1072 }
1073
1074 ixgbevf_qv_unlock_poll(q_vector);
1075
1076 return found;
1077}
1078#endif /* CONFIG_NET_RX_BUSY_POLL */
1079
Greg Rose92915f72010-01-09 02:24:10 +00001080/**
1081 * ixgbevf_configure_msix - Configure MSI-X hardware
1082 * @adapter: board private structure
1083 *
1084 * ixgbevf_configure_msix sets up the hardware to properly generate MSI-X
1085 * interrupts.
1086 **/
1087static void ixgbevf_configure_msix(struct ixgbevf_adapter *adapter)
1088{
1089 struct ixgbevf_q_vector *q_vector;
Alexander Duyck6b43c442012-05-11 08:32:45 +00001090 int q_vectors, v_idx;
Greg Rose92915f72010-01-09 02:24:10 +00001091
1092 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001093 adapter->eims_enable_mask = 0;
Greg Rose92915f72010-01-09 02:24:10 +00001094
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001095 /* Populate the IVAR table and set the ITR values to the
Greg Rose92915f72010-01-09 02:24:10 +00001096 * corresponding register.
1097 */
1098 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
Alexander Duyck6b43c442012-05-11 08:32:45 +00001099 struct ixgbevf_ring *ring;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001100
Greg Rose92915f72010-01-09 02:24:10 +00001101 q_vector = adapter->q_vector[v_idx];
Greg Rose92915f72010-01-09 02:24:10 +00001102
Alexander Duyck6b43c442012-05-11 08:32:45 +00001103 ixgbevf_for_each_ring(ring, q_vector->rx)
1104 ixgbevf_set_ivar(adapter, 0, ring->reg_idx, v_idx);
Greg Rose92915f72010-01-09 02:24:10 +00001105
Alexander Duyck6b43c442012-05-11 08:32:45 +00001106 ixgbevf_for_each_ring(ring, q_vector->tx)
1107 ixgbevf_set_ivar(adapter, 1, ring->reg_idx, v_idx);
Greg Rose92915f72010-01-09 02:24:10 +00001108
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001109 if (q_vector->tx.ring && !q_vector->rx.ring) {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001110 /* Tx only vector */
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001111 if (adapter->tx_itr_setting == 1)
1112 q_vector->itr = IXGBE_10K_ITR;
1113 else
1114 q_vector->itr = adapter->tx_itr_setting;
1115 } else {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001116 /* Rx or Rx/Tx vector */
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001117 if (adapter->rx_itr_setting == 1)
1118 q_vector->itr = IXGBE_20K_ITR;
1119 else
1120 q_vector->itr = adapter->rx_itr_setting;
1121 }
Greg Rose92915f72010-01-09 02:24:10 +00001122
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001123 /* add q_vector eims value to global eims_enable_mask */
1124 adapter->eims_enable_mask |= 1 << v_idx;
1125
1126 ixgbevf_write_eitr(q_vector);
Greg Rose92915f72010-01-09 02:24:10 +00001127 }
1128
1129 ixgbevf_set_ivar(adapter, -1, 1, v_idx);
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001130 /* setup eims_other and add value to global eims_enable_mask */
1131 adapter->eims_other = 1 << v_idx;
1132 adapter->eims_enable_mask |= adapter->eims_other;
Greg Rose92915f72010-01-09 02:24:10 +00001133}
1134
1135enum latency_range {
1136 lowest_latency = 0,
1137 low_latency = 1,
1138 bulk_latency = 2,
1139 latency_invalid = 255
1140};
1141
1142/**
1143 * ixgbevf_update_itr - update the dynamic ITR value based on statistics
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001144 * @q_vector: structure containing interrupt and ring information
1145 * @ring_container: structure containing ring performance data
Greg Rose92915f72010-01-09 02:24:10 +00001146 *
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001147 * Stores a new ITR value based on packets and byte
1148 * counts during the last interrupt. The advantage of per interrupt
1149 * computation is faster updates and more accurate ITR for the current
1150 * traffic pattern. Constants in this function were computed
1151 * based on theoretical maximum wire speed and thresholds were set based
1152 * on testing data as well as attempting to minimize response time
1153 * while increasing bulk throughput.
Greg Rose92915f72010-01-09 02:24:10 +00001154 **/
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001155static void ixgbevf_update_itr(struct ixgbevf_q_vector *q_vector,
1156 struct ixgbevf_ring_container *ring_container)
Greg Rose92915f72010-01-09 02:24:10 +00001157{
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001158 int bytes = ring_container->total_bytes;
1159 int packets = ring_container->total_packets;
Greg Rose92915f72010-01-09 02:24:10 +00001160 u32 timepassed_us;
1161 u64 bytes_perint;
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001162 u8 itr_setting = ring_container->itr;
Greg Rose92915f72010-01-09 02:24:10 +00001163
1164 if (packets == 0)
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001165 return;
Greg Rose92915f72010-01-09 02:24:10 +00001166
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001167 /* simple throttle rate management
Greg Rose92915f72010-01-09 02:24:10 +00001168 * 0-20MB/s lowest (100000 ints/s)
1169 * 20-100MB/s low (20000 ints/s)
1170 * 100-1249MB/s bulk (8000 ints/s)
1171 */
1172 /* what was last interrupt timeslice? */
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001173 timepassed_us = q_vector->itr >> 2;
Greg Rose92915f72010-01-09 02:24:10 +00001174 bytes_perint = bytes / timepassed_us; /* bytes/usec */
1175
1176 switch (itr_setting) {
1177 case lowest_latency:
Alexander Duycke2c28ce2012-05-11 08:32:34 +00001178 if (bytes_perint > 10)
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001179 itr_setting = low_latency;
Greg Rose92915f72010-01-09 02:24:10 +00001180 break;
1181 case low_latency:
Alexander Duycke2c28ce2012-05-11 08:32:34 +00001182 if (bytes_perint > 20)
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001183 itr_setting = bulk_latency;
Alexander Duycke2c28ce2012-05-11 08:32:34 +00001184 else if (bytes_perint <= 10)
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001185 itr_setting = lowest_latency;
Greg Rose92915f72010-01-09 02:24:10 +00001186 break;
1187 case bulk_latency:
Alexander Duycke2c28ce2012-05-11 08:32:34 +00001188 if (bytes_perint <= 20)
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001189 itr_setting = low_latency;
Greg Rose92915f72010-01-09 02:24:10 +00001190 break;
1191 }
1192
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001193 /* clear work counters since we have the values we need */
1194 ring_container->total_bytes = 0;
1195 ring_container->total_packets = 0;
1196
1197 /* write updated itr to ring container */
1198 ring_container->itr = itr_setting;
Greg Rose92915f72010-01-09 02:24:10 +00001199}
1200
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001201static void ixgbevf_set_itr(struct ixgbevf_q_vector *q_vector)
Greg Rose92915f72010-01-09 02:24:10 +00001202{
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001203 u32 new_itr = q_vector->itr;
1204 u8 current_itr;
Greg Rose92915f72010-01-09 02:24:10 +00001205
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001206 ixgbevf_update_itr(q_vector, &q_vector->tx);
1207 ixgbevf_update_itr(q_vector, &q_vector->rx);
Greg Rose92915f72010-01-09 02:24:10 +00001208
Alexander Duyck6b43c442012-05-11 08:32:45 +00001209 current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
Greg Rose92915f72010-01-09 02:24:10 +00001210
1211 switch (current_itr) {
1212 /* counts and packets in update_itr are dependent on these numbers */
1213 case lowest_latency:
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001214 new_itr = IXGBE_100K_ITR;
Greg Rose92915f72010-01-09 02:24:10 +00001215 break;
1216 case low_latency:
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001217 new_itr = IXGBE_20K_ITR;
Greg Rose92915f72010-01-09 02:24:10 +00001218 break;
1219 case bulk_latency:
1220 default:
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001221 new_itr = IXGBE_8K_ITR;
Greg Rose92915f72010-01-09 02:24:10 +00001222 break;
1223 }
1224
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001225 if (new_itr != q_vector->itr) {
Greg Rose92915f72010-01-09 02:24:10 +00001226 /* do an exponential smoothing */
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001227 new_itr = (10 * new_itr * q_vector->itr) /
1228 ((9 * new_itr) + q_vector->itr);
1229
1230 /* save the algorithm value here */
1231 q_vector->itr = new_itr;
1232
1233 ixgbevf_write_eitr(q_vector);
Greg Rose92915f72010-01-09 02:24:10 +00001234 }
Greg Rose92915f72010-01-09 02:24:10 +00001235}
1236
Alexander Duyck4b2cd272012-08-02 01:16:59 +00001237static irqreturn_t ixgbevf_msix_other(int irq, void *data)
Greg Rose92915f72010-01-09 02:24:10 +00001238{
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001239 struct ixgbevf_adapter *adapter = data;
Greg Rose92915f72010-01-09 02:24:10 +00001240 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose92915f72010-01-09 02:24:10 +00001241
Alexander Duyck4b2cd272012-08-02 01:16:59 +00001242 hw->mac.get_link_status = 1;
Greg Rose375b27c2012-01-18 22:13:31 +00001243
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00001244 ixgbevf_service_event_schedule(adapter);
Greg Rose3a2c4032012-02-01 01:28:15 +00001245
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001246 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, adapter->eims_other);
1247
Greg Rose92915f72010-01-09 02:24:10 +00001248 return IRQ_HANDLED;
1249}
1250
Greg Rose92915f72010-01-09 02:24:10 +00001251/**
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001252 * ixgbevf_msix_clean_rings - single unshared vector rx clean (all queues)
Greg Rose92915f72010-01-09 02:24:10 +00001253 * @irq: unused
1254 * @data: pointer to our q_vector struct for this interrupt vector
1255 **/
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001256static irqreturn_t ixgbevf_msix_clean_rings(int irq, void *data)
Greg Rose92915f72010-01-09 02:24:10 +00001257{
1258 struct ixgbevf_q_vector *q_vector = data;
Greg Rose92915f72010-01-09 02:24:10 +00001259
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001260 /* EIAM disabled interrupts (on this vector) for us */
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001261 if (q_vector->rx.ring || q_vector->tx.ring)
1262 napi_schedule(&q_vector->napi);
Greg Rose92915f72010-01-09 02:24:10 +00001263
1264 return IRQ_HANDLED;
1265}
1266
1267static inline void map_vector_to_rxq(struct ixgbevf_adapter *a, int v_idx,
1268 int r_idx)
1269{
1270 struct ixgbevf_q_vector *q_vector = a->q_vector[v_idx];
1271
Don Skidmore87e70ab2014-01-16 02:30:08 -08001272 a->rx_ring[r_idx]->next = q_vector->rx.ring;
1273 q_vector->rx.ring = a->rx_ring[r_idx];
Alexander Duyck6b43c442012-05-11 08:32:45 +00001274 q_vector->rx.count++;
Greg Rose92915f72010-01-09 02:24:10 +00001275}
1276
1277static inline void map_vector_to_txq(struct ixgbevf_adapter *a, int v_idx,
1278 int t_idx)
1279{
1280 struct ixgbevf_q_vector *q_vector = a->q_vector[v_idx];
1281
Don Skidmore87e70ab2014-01-16 02:30:08 -08001282 a->tx_ring[t_idx]->next = q_vector->tx.ring;
1283 q_vector->tx.ring = a->tx_ring[t_idx];
Alexander Duyck6b43c442012-05-11 08:32:45 +00001284 q_vector->tx.count++;
Greg Rose92915f72010-01-09 02:24:10 +00001285}
1286
1287/**
1288 * ixgbevf_map_rings_to_vectors - Maps descriptor rings to vectors
1289 * @adapter: board private structure to initialize
1290 *
1291 * This function maps descriptor rings to the queue-specific vectors
1292 * we were allotted through the MSI-X enabling code. Ideally, we'd have
1293 * one vector per ring/queue, but on a constrained vector budget, we
1294 * group the rings as "efficiently" as possible. You would add new
1295 * mapping configurations in here.
1296 **/
1297static int ixgbevf_map_rings_to_vectors(struct ixgbevf_adapter *adapter)
1298{
1299 int q_vectors;
1300 int v_start = 0;
1301 int rxr_idx = 0, txr_idx = 0;
1302 int rxr_remaining = adapter->num_rx_queues;
1303 int txr_remaining = adapter->num_tx_queues;
1304 int i, j;
1305 int rqpv, tqpv;
1306 int err = 0;
1307
1308 q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1309
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001310 /* The ideal configuration...
Greg Rose92915f72010-01-09 02:24:10 +00001311 * We have enough vectors to map one per queue.
1312 */
1313 if (q_vectors == adapter->num_rx_queues + adapter->num_tx_queues) {
1314 for (; rxr_idx < rxr_remaining; v_start++, rxr_idx++)
1315 map_vector_to_rxq(adapter, v_start, rxr_idx);
1316
1317 for (; txr_idx < txr_remaining; v_start++, txr_idx++)
1318 map_vector_to_txq(adapter, v_start, txr_idx);
1319 goto out;
1320 }
1321
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001322 /* If we don't have enough vectors for a 1-to-1
Greg Rose92915f72010-01-09 02:24:10 +00001323 * mapping, we'll have to group them so there are
1324 * multiple queues per vector.
1325 */
1326 /* Re-adjusting *qpv takes care of the remainder. */
1327 for (i = v_start; i < q_vectors; i++) {
1328 rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - i);
1329 for (j = 0; j < rqpv; j++) {
1330 map_vector_to_rxq(adapter, i, rxr_idx);
1331 rxr_idx++;
1332 rxr_remaining--;
1333 }
1334 }
1335 for (i = v_start; i < q_vectors; i++) {
1336 tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - i);
1337 for (j = 0; j < tqpv; j++) {
1338 map_vector_to_txq(adapter, i, txr_idx);
1339 txr_idx++;
1340 txr_remaining--;
1341 }
1342 }
1343
1344out:
1345 return err;
1346}
1347
1348/**
1349 * ixgbevf_request_msix_irqs - Initialize MSI-X interrupts
1350 * @adapter: board private structure
1351 *
1352 * ixgbevf_request_msix_irqs allocates MSI-X vectors and requests
1353 * interrupts from the kernel.
1354 **/
1355static int ixgbevf_request_msix_irqs(struct ixgbevf_adapter *adapter)
1356{
1357 struct net_device *netdev = adapter->netdev;
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001358 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1359 int vector, err;
Greg Rose92915f72010-01-09 02:24:10 +00001360 int ri = 0, ti = 0;
1361
Greg Rose92915f72010-01-09 02:24:10 +00001362 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001363 struct ixgbevf_q_vector *q_vector = adapter->q_vector[vector];
1364 struct msix_entry *entry = &adapter->msix_entries[vector];
Greg Rose92915f72010-01-09 02:24:10 +00001365
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001366 if (q_vector->tx.ring && q_vector->rx.ring) {
1367 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
1368 "%s-%s-%d", netdev->name, "TxRx", ri++);
1369 ti++;
1370 } else if (q_vector->rx.ring) {
1371 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
1372 "%s-%s-%d", netdev->name, "rx", ri++);
1373 } else if (q_vector->tx.ring) {
1374 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
1375 "%s-%s-%d", netdev->name, "tx", ti++);
Greg Rose92915f72010-01-09 02:24:10 +00001376 } else {
1377 /* skip this unused q_vector */
1378 continue;
1379 }
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001380 err = request_irq(entry->vector, &ixgbevf_msix_clean_rings, 0,
1381 q_vector->name, q_vector);
Greg Rose92915f72010-01-09 02:24:10 +00001382 if (err) {
1383 hw_dbg(&adapter->hw,
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001384 "request_irq failed for MSIX interrupt Error: %d\n",
1385 err);
Greg Rose92915f72010-01-09 02:24:10 +00001386 goto free_queue_irqs;
1387 }
1388 }
1389
Greg Rose92915f72010-01-09 02:24:10 +00001390 err = request_irq(adapter->msix_entries[vector].vector,
Alexander Duyck4b2cd272012-08-02 01:16:59 +00001391 &ixgbevf_msix_other, 0, netdev->name, adapter);
Greg Rose92915f72010-01-09 02:24:10 +00001392 if (err) {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001393 hw_dbg(&adapter->hw, "request_irq for msix_other failed: %d\n",
1394 err);
Greg Rose92915f72010-01-09 02:24:10 +00001395 goto free_queue_irqs;
1396 }
1397
1398 return 0;
1399
1400free_queue_irqs:
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001401 while (vector) {
1402 vector--;
1403 free_irq(adapter->msix_entries[vector].vector,
1404 adapter->q_vector[vector]);
1405 }
xunleera1f6c6b2013-03-05 07:44:20 +00001406 /* This failure is non-recoverable - it indicates the system is
1407 * out of MSIX vector resources and the VF driver cannot run
1408 * without them. Set the number of msix vectors to zero
1409 * indicating that not enough can be allocated. The error
1410 * will be returned to the user indicating device open failed.
1411 * Any further attempts to force the driver to open will also
1412 * fail. The only way to recover is to unload the driver and
1413 * reload it again. If the system has recovered some MSIX
1414 * vectors then it may succeed.
1415 */
1416 adapter->num_msix_vectors = 0;
Greg Rose92915f72010-01-09 02:24:10 +00001417 return err;
1418}
1419
1420static inline void ixgbevf_reset_q_vectors(struct ixgbevf_adapter *adapter)
1421{
1422 int i, q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1423
1424 for (i = 0; i < q_vectors; i++) {
1425 struct ixgbevf_q_vector *q_vector = adapter->q_vector[i];
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001426
Alexander Duyck6b43c442012-05-11 08:32:45 +00001427 q_vector->rx.ring = NULL;
1428 q_vector->tx.ring = NULL;
1429 q_vector->rx.count = 0;
1430 q_vector->tx.count = 0;
Greg Rose92915f72010-01-09 02:24:10 +00001431 }
1432}
1433
1434/**
1435 * ixgbevf_request_irq - initialize interrupts
1436 * @adapter: board private structure
1437 *
1438 * Attempts to configure interrupts using the best available
1439 * capabilities of the hardware and kernel.
1440 **/
1441static int ixgbevf_request_irq(struct ixgbevf_adapter *adapter)
1442{
1443 int err = 0;
1444
1445 err = ixgbevf_request_msix_irqs(adapter);
1446
1447 if (err)
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001448 hw_dbg(&adapter->hw, "request_irq failed, Error %d\n", err);
Greg Rose92915f72010-01-09 02:24:10 +00001449
1450 return err;
1451}
1452
1453static void ixgbevf_free_irq(struct ixgbevf_adapter *adapter)
1454{
Greg Rose92915f72010-01-09 02:24:10 +00001455 int i, q_vectors;
1456
1457 q_vectors = adapter->num_msix_vectors;
Greg Rose92915f72010-01-09 02:24:10 +00001458 i = q_vectors - 1;
1459
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001460 free_irq(adapter->msix_entries[i].vector, adapter);
Greg Rose92915f72010-01-09 02:24:10 +00001461 i--;
1462
1463 for (; i >= 0; i--) {
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001464 /* free only the irqs that were actually requested */
1465 if (!adapter->q_vector[i]->rx.ring &&
1466 !adapter->q_vector[i]->tx.ring)
1467 continue;
1468
Greg Rose92915f72010-01-09 02:24:10 +00001469 free_irq(adapter->msix_entries[i].vector,
1470 adapter->q_vector[i]);
1471 }
1472
1473 ixgbevf_reset_q_vectors(adapter);
1474}
1475
1476/**
1477 * ixgbevf_irq_disable - Mask off interrupt generation on the NIC
1478 * @adapter: board private structure
1479 **/
1480static inline void ixgbevf_irq_disable(struct ixgbevf_adapter *adapter)
1481{
Greg Rose92915f72010-01-09 02:24:10 +00001482 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001483 int i;
Greg Rose92915f72010-01-09 02:24:10 +00001484
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001485 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, 0);
Greg Rose92915f72010-01-09 02:24:10 +00001486 IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, ~0);
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001487 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, 0);
Greg Rose92915f72010-01-09 02:24:10 +00001488
1489 IXGBE_WRITE_FLUSH(hw);
1490
1491 for (i = 0; i < adapter->num_msix_vectors; i++)
1492 synchronize_irq(adapter->msix_entries[i].vector);
1493}
1494
1495/**
1496 * ixgbevf_irq_enable - Enable default interrupt generation settings
1497 * @adapter: board private structure
1498 **/
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001499static inline void ixgbevf_irq_enable(struct ixgbevf_adapter *adapter)
Greg Rose92915f72010-01-09 02:24:10 +00001500{
1501 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose92915f72010-01-09 02:24:10 +00001502
Alexander Duyck5f3600e2012-05-11 08:32:55 +00001503 IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, adapter->eims_enable_mask);
1504 IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, adapter->eims_enable_mask);
1505 IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, adapter->eims_enable_mask);
Greg Rose92915f72010-01-09 02:24:10 +00001506}
1507
1508/**
Don Skidmorede02dec2014-01-16 02:30:09 -08001509 * ixgbevf_configure_tx_ring - Configure 82599 VF Tx ring after Reset
1510 * @adapter: board private structure
1511 * @ring: structure containing ring specific data
1512 *
1513 * Configure the Tx descriptor ring after a reset.
1514 **/
1515static void ixgbevf_configure_tx_ring(struct ixgbevf_adapter *adapter,
1516 struct ixgbevf_ring *ring)
1517{
1518 struct ixgbe_hw *hw = &adapter->hw;
1519 u64 tdba = ring->dma;
1520 int wait_loop = 10;
1521 u32 txdctl = IXGBE_TXDCTL_ENABLE;
1522 u8 reg_idx = ring->reg_idx;
1523
1524 /* disable queue to avoid issues while updating state */
1525 IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
1526 IXGBE_WRITE_FLUSH(hw);
1527
1528 IXGBE_WRITE_REG(hw, IXGBE_VFTDBAL(reg_idx), tdba & DMA_BIT_MASK(32));
1529 IXGBE_WRITE_REG(hw, IXGBE_VFTDBAH(reg_idx), tdba >> 32);
1530 IXGBE_WRITE_REG(hw, IXGBE_VFTDLEN(reg_idx),
1531 ring->count * sizeof(union ixgbe_adv_tx_desc));
1532
1533 /* disable head writeback */
1534 IXGBE_WRITE_REG(hw, IXGBE_VFTDWBAH(reg_idx), 0);
1535 IXGBE_WRITE_REG(hw, IXGBE_VFTDWBAL(reg_idx), 0);
1536
1537 /* enable relaxed ordering */
1538 IXGBE_WRITE_REG(hw, IXGBE_VFDCA_TXCTRL(reg_idx),
1539 (IXGBE_DCA_TXCTRL_DESC_RRO_EN |
1540 IXGBE_DCA_TXCTRL_DATA_RRO_EN));
1541
1542 /* reset head and tail pointers */
1543 IXGBE_WRITE_REG(hw, IXGBE_VFTDH(reg_idx), 0);
1544 IXGBE_WRITE_REG(hw, IXGBE_VFTDT(reg_idx), 0);
Mark Rustaddbf8b0d2014-03-04 03:02:34 +00001545 ring->tail = adapter->io_addr + IXGBE_VFTDT(reg_idx);
Don Skidmorede02dec2014-01-16 02:30:09 -08001546
1547 /* reset ntu and ntc to place SW in sync with hardwdare */
1548 ring->next_to_clean = 0;
1549 ring->next_to_use = 0;
1550
1551 /* In order to avoid issues WTHRESH + PTHRESH should always be equal
1552 * to or less than the number of on chip descriptors, which is
1553 * currently 40.
1554 */
1555 txdctl |= (8 << 16); /* WTHRESH = 8 */
1556
1557 /* Setting PTHRESH to 32 both improves performance */
1558 txdctl |= (1 << 8) | /* HTHRESH = 1 */
1559 32; /* PTHRESH = 32 */
1560
Emil Tantilove08400b2015-01-28 03:21:24 +00001561 clear_bit(__IXGBEVF_HANG_CHECK_ARMED, &ring->state);
1562
Don Skidmorede02dec2014-01-16 02:30:09 -08001563 IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(reg_idx), txdctl);
1564
1565 /* poll to verify queue is enabled */
1566 do {
1567 usleep_range(1000, 2000);
1568 txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(reg_idx));
1569 } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
1570 if (!wait_loop)
1571 pr_err("Could not enable Tx Queue %d\n", reg_idx);
1572}
1573
1574/**
Greg Rose92915f72010-01-09 02:24:10 +00001575 * ixgbevf_configure_tx - Configure 82599 VF Transmit Unit after Reset
1576 * @adapter: board private structure
1577 *
1578 * Configure the Tx unit of the MAC after a reset.
1579 **/
1580static void ixgbevf_configure_tx(struct ixgbevf_adapter *adapter)
1581{
Don Skidmorede02dec2014-01-16 02:30:09 -08001582 u32 i;
Greg Rose92915f72010-01-09 02:24:10 +00001583
1584 /* Setup the HW Tx Head and Tail descriptor pointers */
Don Skidmorede02dec2014-01-16 02:30:09 -08001585 for (i = 0; i < adapter->num_tx_queues; i++)
1586 ixgbevf_configure_tx_ring(adapter, adapter->tx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00001587}
1588
1589#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
1590
1591static void ixgbevf_configure_srrctl(struct ixgbevf_adapter *adapter, int index)
1592{
Greg Rose92915f72010-01-09 02:24:10 +00001593 struct ixgbe_hw *hw = &adapter->hw;
1594 u32 srrctl;
1595
Greg Rose92915f72010-01-09 02:24:10 +00001596 srrctl = IXGBE_SRRCTL_DROP_EN;
1597
Emil Tantilovbad17232014-11-21 02:57:15 +00001598 srrctl |= IXGBEVF_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
1599 srrctl |= IXGBEVF_RX_BUFSZ >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
Alexander Duyck77d5dfc2012-05-11 08:32:19 +00001600 srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
Greg Rose92915f72010-01-09 02:24:10 +00001601
Greg Rose92915f72010-01-09 02:24:10 +00001602 IXGBE_WRITE_REG(hw, IXGBE_VFSRRCTL(index), srrctl);
1603}
1604
Don Skidmore1bb9c632013-09-21 01:57:33 +00001605static void ixgbevf_setup_psrtype(struct ixgbevf_adapter *adapter)
1606{
1607 struct ixgbe_hw *hw = &adapter->hw;
1608
1609 /* PSRTYPE must be initialized in 82599 */
1610 u32 psrtype = IXGBE_PSRTYPE_TCPHDR | IXGBE_PSRTYPE_UDPHDR |
1611 IXGBE_PSRTYPE_IPV4HDR | IXGBE_PSRTYPE_IPV6HDR |
1612 IXGBE_PSRTYPE_L2HDR;
1613
1614 if (adapter->num_rx_queues > 1)
1615 psrtype |= 1 << 29;
1616
1617 IXGBE_WRITE_REG(hw, IXGBE_VFPSRTYPE, psrtype);
1618}
1619
Don Skidmorede02dec2014-01-16 02:30:09 -08001620#define IXGBEVF_MAX_RX_DESC_POLL 10
1621static void ixgbevf_disable_rx_queue(struct ixgbevf_adapter *adapter,
1622 struct ixgbevf_ring *ring)
1623{
1624 struct ixgbe_hw *hw = &adapter->hw;
1625 int wait_loop = IXGBEVF_MAX_RX_DESC_POLL;
1626 u32 rxdctl;
1627 u8 reg_idx = ring->reg_idx;
1628
Mark Rustad26597802014-03-04 03:02:45 +00001629 if (IXGBE_REMOVED(hw->hw_addr))
1630 return;
Don Skidmorede02dec2014-01-16 02:30:09 -08001631 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
1632 rxdctl &= ~IXGBE_RXDCTL_ENABLE;
1633
1634 /* write value back with RXDCTL.ENABLE bit cleared */
1635 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl);
1636
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001637 /* the hardware may take up to 100us to really disable the Rx queue */
Don Skidmorede02dec2014-01-16 02:30:09 -08001638 do {
1639 udelay(10);
1640 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
1641 } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));
1642
1643 if (!wait_loop)
1644 pr_err("RXDCTL.ENABLE queue %d not cleared while polling\n",
1645 reg_idx);
1646}
1647
1648static void ixgbevf_rx_desc_queue_enable(struct ixgbevf_adapter *adapter,
1649 struct ixgbevf_ring *ring)
1650{
1651 struct ixgbe_hw *hw = &adapter->hw;
1652 int wait_loop = IXGBEVF_MAX_RX_DESC_POLL;
1653 u32 rxdctl;
1654 u8 reg_idx = ring->reg_idx;
1655
Mark Rustad26597802014-03-04 03:02:45 +00001656 if (IXGBE_REMOVED(hw->hw_addr))
1657 return;
Don Skidmorede02dec2014-01-16 02:30:09 -08001658 do {
1659 usleep_range(1000, 2000);
1660 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
1661 } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));
1662
1663 if (!wait_loop)
1664 pr_err("RXDCTL.ENABLE queue %d not set while polling\n",
1665 reg_idx);
1666}
1667
Emil Tantilov9295edb2014-12-06 09:19:09 +00001668static void ixgbevf_setup_vfmrqc(struct ixgbevf_adapter *adapter)
1669{
1670 struct ixgbe_hw *hw = &adapter->hw;
1671 u32 vfmrqc = 0, vfreta = 0;
1672 u32 rss_key[10];
1673 u16 rss_i = adapter->num_rx_queues;
1674 int i, j;
1675
1676 /* Fill out hash function seeds */
1677 netdev_rss_key_fill(rss_key, sizeof(rss_key));
1678 for (i = 0; i < 10; i++)
1679 IXGBE_WRITE_REG(hw, IXGBE_VFRSSRK(i), rss_key[i]);
1680
1681 /* Fill out redirection table */
1682 for (i = 0, j = 0; i < 64; i++, j++) {
1683 if (j == rss_i)
1684 j = 0;
1685 vfreta = (vfreta << 8) | (j * 0x1);
1686 if ((i & 3) == 3)
1687 IXGBE_WRITE_REG(hw, IXGBE_VFRETA(i >> 2), vfreta);
1688 }
1689
1690 /* Perform hash on these packet types */
1691 vfmrqc |= IXGBE_VFMRQC_RSS_FIELD_IPV4 |
1692 IXGBE_VFMRQC_RSS_FIELD_IPV4_TCP |
1693 IXGBE_VFMRQC_RSS_FIELD_IPV6 |
1694 IXGBE_VFMRQC_RSS_FIELD_IPV6_TCP;
1695
1696 vfmrqc |= IXGBE_VFMRQC_RSSEN;
1697
1698 IXGBE_WRITE_REG(hw, IXGBE_VFMRQC, vfmrqc);
1699}
1700
Don Skidmorede02dec2014-01-16 02:30:09 -08001701static void ixgbevf_configure_rx_ring(struct ixgbevf_adapter *adapter,
1702 struct ixgbevf_ring *ring)
1703{
1704 struct ixgbe_hw *hw = &adapter->hw;
1705 u64 rdba = ring->dma;
1706 u32 rxdctl;
1707 u8 reg_idx = ring->reg_idx;
1708
1709 /* disable queue to avoid issues while updating state */
1710 rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
1711 ixgbevf_disable_rx_queue(adapter, ring);
1712
1713 IXGBE_WRITE_REG(hw, IXGBE_VFRDBAL(reg_idx), rdba & DMA_BIT_MASK(32));
1714 IXGBE_WRITE_REG(hw, IXGBE_VFRDBAH(reg_idx), rdba >> 32);
1715 IXGBE_WRITE_REG(hw, IXGBE_VFRDLEN(reg_idx),
1716 ring->count * sizeof(union ixgbe_adv_rx_desc));
1717
1718 /* enable relaxed ordering */
1719 IXGBE_WRITE_REG(hw, IXGBE_VFDCA_RXCTRL(reg_idx),
1720 IXGBE_DCA_RXCTRL_DESC_RRO_EN);
1721
1722 /* reset head and tail pointers */
1723 IXGBE_WRITE_REG(hw, IXGBE_VFRDH(reg_idx), 0);
1724 IXGBE_WRITE_REG(hw, IXGBE_VFRDT(reg_idx), 0);
Mark Rustaddbf8b0d2014-03-04 03:02:34 +00001725 ring->tail = adapter->io_addr + IXGBE_VFRDT(reg_idx);
Don Skidmorede02dec2014-01-16 02:30:09 -08001726
1727 /* reset ntu and ntc to place SW in sync with hardwdare */
1728 ring->next_to_clean = 0;
1729 ring->next_to_use = 0;
Emil Tantilovbad17232014-11-21 02:57:15 +00001730 ring->next_to_alloc = 0;
Don Skidmorede02dec2014-01-16 02:30:09 -08001731
1732 ixgbevf_configure_srrctl(adapter, reg_idx);
1733
Emil Tantilovbad17232014-11-21 02:57:15 +00001734 /* allow any size packet since we can handle overflow */
1735 rxdctl &= ~IXGBE_RXDCTL_RLPML_EN;
1736
Don Skidmorede02dec2014-01-16 02:30:09 -08001737 rxdctl |= IXGBE_RXDCTL_ENABLE | IXGBE_RXDCTL_VME;
1738 IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl);
1739
1740 ixgbevf_rx_desc_queue_enable(adapter, ring);
Emil Tantilov095e2612014-01-17 18:30:00 -08001741 ixgbevf_alloc_rx_buffers(ring, ixgbevf_desc_unused(ring));
Don Skidmorede02dec2014-01-16 02:30:09 -08001742}
1743
Greg Rose92915f72010-01-09 02:24:10 +00001744/**
1745 * ixgbevf_configure_rx - Configure 82599 VF Receive Unit after Reset
1746 * @adapter: board private structure
1747 *
1748 * Configure the Rx unit of the MAC after a reset.
1749 **/
1750static void ixgbevf_configure_rx(struct ixgbevf_adapter *adapter)
1751{
Don Skidmorede02dec2014-01-16 02:30:09 -08001752 int i;
Emil Tantilovbad17232014-11-21 02:57:15 +00001753 struct ixgbe_hw *hw = &adapter->hw;
1754 struct net_device *netdev = adapter->netdev;
Greg Rose92915f72010-01-09 02:24:10 +00001755
Don Skidmore1bb9c632013-09-21 01:57:33 +00001756 ixgbevf_setup_psrtype(adapter);
Emil Tantilov9295edb2014-12-06 09:19:09 +00001757 if (hw->mac.type >= ixgbe_mac_X550_vf)
1758 ixgbevf_setup_vfmrqc(adapter);
Alexander Duyckdd1fe112012-07-20 08:09:48 +00001759
Emil Tantilovbad17232014-11-21 02:57:15 +00001760 /* notify the PF of our intent to use this size of frame */
1761 ixgbevf_rlpml_set_vf(hw, netdev->mtu + ETH_HLEN + ETH_FCS_LEN);
Greg Rose92915f72010-01-09 02:24:10 +00001762
Greg Rose92915f72010-01-09 02:24:10 +00001763 /* Setup the HW Rx Head and Tail Descriptor Pointers and
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001764 * the Base and Length of the Rx Descriptor Ring
1765 */
Don Skidmorede02dec2014-01-16 02:30:09 -08001766 for (i = 0; i < adapter->num_rx_queues; i++)
1767 ixgbevf_configure_rx_ring(adapter, adapter->rx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00001768}
1769
Patrick McHardy80d5c362013-04-19 02:04:28 +00001770static int ixgbevf_vlan_rx_add_vid(struct net_device *netdev,
1771 __be16 proto, u16 vid)
Greg Rose92915f72010-01-09 02:24:10 +00001772{
1773 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
1774 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck2ddc7fe2012-08-21 00:15:13 +00001775 int err;
1776
John Fastabend55fdd45b2012-10-01 14:52:20 +00001777 spin_lock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001778
Greg Rose92915f72010-01-09 02:24:10 +00001779 /* add VID to filter table */
Alexander Duyck2ddc7fe2012-08-21 00:15:13 +00001780 err = hw->mac.ops.set_vfta(hw, vid, 0, true);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001781
John Fastabend55fdd45b2012-10-01 14:52:20 +00001782 spin_unlock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001783
Alexander Duyck2ddc7fe2012-08-21 00:15:13 +00001784 /* translate error return types so error makes sense */
1785 if (err == IXGBE_ERR_MBX)
1786 return -EIO;
1787
1788 if (err == IXGBE_ERR_INVALID_ARGUMENT)
1789 return -EACCES;
1790
Jiri Pirkodadcd652011-07-21 03:25:09 +00001791 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05001792
Alexander Duyck2ddc7fe2012-08-21 00:15:13 +00001793 return err;
Greg Rose92915f72010-01-09 02:24:10 +00001794}
1795
Patrick McHardy80d5c362013-04-19 02:04:28 +00001796static int ixgbevf_vlan_rx_kill_vid(struct net_device *netdev,
1797 __be16 proto, u16 vid)
Greg Rose92915f72010-01-09 02:24:10 +00001798{
1799 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
1800 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck2ddc7fe2012-08-21 00:15:13 +00001801 int err = -EOPNOTSUPP;
Greg Rose92915f72010-01-09 02:24:10 +00001802
John Fastabend55fdd45b2012-10-01 14:52:20 +00001803 spin_lock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001804
Greg Rose92915f72010-01-09 02:24:10 +00001805 /* remove VID from filter table */
Greg Rose92fe0bf2012-11-02 05:50:47 +00001806 err = hw->mac.ops.set_vfta(hw, vid, 0, false);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001807
John Fastabend55fdd45b2012-10-01 14:52:20 +00001808 spin_unlock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001809
Jiri Pirkodadcd652011-07-21 03:25:09 +00001810 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05001811
Alexander Duyck2ddc7fe2012-08-21 00:15:13 +00001812 return err;
Greg Rose92915f72010-01-09 02:24:10 +00001813}
1814
1815static void ixgbevf_restore_vlan(struct ixgbevf_adapter *adapter)
1816{
Jiri Pirkodadcd652011-07-21 03:25:09 +00001817 u16 vid;
Greg Rose92915f72010-01-09 02:24:10 +00001818
Jiri Pirkodadcd652011-07-21 03:25:09 +00001819 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
Patrick McHardy80d5c362013-04-19 02:04:28 +00001820 ixgbevf_vlan_rx_add_vid(adapter->netdev,
1821 htons(ETH_P_8021Q), vid);
Greg Rose92915f72010-01-09 02:24:10 +00001822}
1823
Greg Rose46ec20f2011-05-13 01:33:42 +00001824static int ixgbevf_write_uc_addr_list(struct net_device *netdev)
1825{
1826 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
1827 struct ixgbe_hw *hw = &adapter->hw;
1828 int count = 0;
1829
1830 if ((netdev_uc_count(netdev)) > 10) {
Jeff Kirsherdbd96362011-10-21 19:38:18 +00001831 pr_err("Too many unicast filters - No Space\n");
Greg Rose46ec20f2011-05-13 01:33:42 +00001832 return -ENOSPC;
1833 }
1834
1835 if (!netdev_uc_empty(netdev)) {
1836 struct netdev_hw_addr *ha;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001837
Greg Rose46ec20f2011-05-13 01:33:42 +00001838 netdev_for_each_uc_addr(ha, netdev) {
1839 hw->mac.ops.set_uc_addr(hw, ++count, ha->addr);
1840 udelay(200);
1841 }
1842 } else {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00001843 /* If the list is empty then send message to PF driver to
1844 * clear all MAC VLANs on this VF.
Greg Rose46ec20f2011-05-13 01:33:42 +00001845 */
1846 hw->mac.ops.set_uc_addr(hw, 0, NULL);
1847 }
1848
1849 return count;
1850}
1851
Greg Rose92915f72010-01-09 02:24:10 +00001852/**
Greg Rosedee847f2012-11-02 05:50:57 +00001853 * ixgbevf_set_rx_mode - Multicast and unicast set
Greg Rose92915f72010-01-09 02:24:10 +00001854 * @netdev: network interface device structure
1855 *
1856 * The set_rx_method entry point is called whenever the multicast address
Greg Rosedee847f2012-11-02 05:50:57 +00001857 * list, unicast address list or the network interface flags are updated.
1858 * This routine is responsible for configuring the hardware for proper
1859 * multicast mode and configuring requested unicast filters.
Greg Rose92915f72010-01-09 02:24:10 +00001860 **/
1861static void ixgbevf_set_rx_mode(struct net_device *netdev)
1862{
1863 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
1864 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose92915f72010-01-09 02:24:10 +00001865
John Fastabend55fdd45b2012-10-01 14:52:20 +00001866 spin_lock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001867
Greg Rose92915f72010-01-09 02:24:10 +00001868 /* reprogram multicast list */
Greg Rose92fe0bf2012-11-02 05:50:47 +00001869 hw->mac.ops.update_mc_addr_list(hw, netdev);
Greg Rose46ec20f2011-05-13 01:33:42 +00001870
1871 ixgbevf_write_uc_addr_list(netdev);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00001872
John Fastabend55fdd45b2012-10-01 14:52:20 +00001873 spin_unlock_bh(&adapter->mbx_lock);
Greg Rose92915f72010-01-09 02:24:10 +00001874}
1875
1876static void ixgbevf_napi_enable_all(struct ixgbevf_adapter *adapter)
1877{
1878 int q_idx;
1879 struct ixgbevf_q_vector *q_vector;
1880 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1881
1882 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
Greg Rose92915f72010-01-09 02:24:10 +00001883 q_vector = adapter->q_vector[q_idx];
Jacob Kellerc777cdf2013-09-21 06:24:20 +00001884#ifdef CONFIG_NET_RX_BUSY_POLL
1885 ixgbevf_qv_init_lock(adapter->q_vector[q_idx]);
1886#endif
Alexander Duyckfa71ae22012-05-11 08:32:50 +00001887 napi_enable(&q_vector->napi);
Greg Rose92915f72010-01-09 02:24:10 +00001888 }
1889}
1890
1891static void ixgbevf_napi_disable_all(struct ixgbevf_adapter *adapter)
1892{
1893 int q_idx;
1894 struct ixgbevf_q_vector *q_vector;
1895 int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1896
1897 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
1898 q_vector = adapter->q_vector[q_idx];
Greg Rose92915f72010-01-09 02:24:10 +00001899 napi_disable(&q_vector->napi);
Jacob Kellerc777cdf2013-09-21 06:24:20 +00001900#ifdef CONFIG_NET_RX_BUSY_POLL
1901 while (!ixgbevf_qv_disable(adapter->q_vector[q_idx])) {
1902 pr_info("QV %d locked\n", q_idx);
1903 usleep_range(1000, 20000);
1904 }
1905#endif /* CONFIG_NET_RX_BUSY_POLL */
Greg Rose92915f72010-01-09 02:24:10 +00001906 }
1907}
1908
Don Skidmore220fe052013-09-21 01:40:49 +00001909static int ixgbevf_configure_dcb(struct ixgbevf_adapter *adapter)
1910{
1911 struct ixgbe_hw *hw = &adapter->hw;
1912 unsigned int def_q = 0;
1913 unsigned int num_tcs = 0;
Emil Tantilov2dc571a2014-12-06 09:19:02 +00001914 unsigned int num_rx_queues = adapter->num_rx_queues;
1915 unsigned int num_tx_queues = adapter->num_tx_queues;
Don Skidmore220fe052013-09-21 01:40:49 +00001916 int err;
1917
1918 spin_lock_bh(&adapter->mbx_lock);
1919
1920 /* fetch queue configuration from the PF */
1921 err = ixgbevf_get_queues(hw, &num_tcs, &def_q);
1922
1923 spin_unlock_bh(&adapter->mbx_lock);
1924
1925 if (err)
1926 return err;
1927
1928 if (num_tcs > 1) {
Emil Tantilov2dc571a2014-12-06 09:19:02 +00001929 /* we need only one Tx queue */
1930 num_tx_queues = 1;
1931
Don Skidmore220fe052013-09-21 01:40:49 +00001932 /* update default Tx ring register index */
Don Skidmore87e70ab2014-01-16 02:30:08 -08001933 adapter->tx_ring[0]->reg_idx = def_q;
Don Skidmore220fe052013-09-21 01:40:49 +00001934
1935 /* we need as many queues as traffic classes */
1936 num_rx_queues = num_tcs;
1937 }
1938
1939 /* if we have a bad config abort request queue reset */
Emil Tantilov2dc571a2014-12-06 09:19:02 +00001940 if ((adapter->num_rx_queues != num_rx_queues) ||
1941 (adapter->num_tx_queues != num_tx_queues)) {
Don Skidmore220fe052013-09-21 01:40:49 +00001942 /* force mailbox timeout to prevent further messages */
1943 hw->mbx.timeout = 0;
1944
1945 /* wait for watchdog to come around and bail us out */
1946 adapter->flags |= IXGBEVF_FLAG_QUEUE_RESET_REQUESTED;
1947 }
1948
1949 return 0;
1950}
1951
Greg Rose92915f72010-01-09 02:24:10 +00001952static void ixgbevf_configure(struct ixgbevf_adapter *adapter)
1953{
Don Skidmore220fe052013-09-21 01:40:49 +00001954 ixgbevf_configure_dcb(adapter);
1955
Don Skidmorede02dec2014-01-16 02:30:09 -08001956 ixgbevf_set_rx_mode(adapter->netdev);
Greg Rose92915f72010-01-09 02:24:10 +00001957
1958 ixgbevf_restore_vlan(adapter);
1959
1960 ixgbevf_configure_tx(adapter);
1961 ixgbevf_configure_rx(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00001962}
1963
Greg Rose33bd9f62010-03-19 02:59:52 +00001964static void ixgbevf_save_reset_stats(struct ixgbevf_adapter *adapter)
1965{
1966 /* Only save pre-reset stats if there are some */
1967 if (adapter->stats.vfgprc || adapter->stats.vfgptc) {
1968 adapter->stats.saved_reset_vfgprc += adapter->stats.vfgprc -
1969 adapter->stats.base_vfgprc;
1970 adapter->stats.saved_reset_vfgptc += adapter->stats.vfgptc -
1971 adapter->stats.base_vfgptc;
1972 adapter->stats.saved_reset_vfgorc += adapter->stats.vfgorc -
1973 adapter->stats.base_vfgorc;
1974 adapter->stats.saved_reset_vfgotc += adapter->stats.vfgotc -
1975 adapter->stats.base_vfgotc;
1976 adapter->stats.saved_reset_vfmprc += adapter->stats.vfmprc -
1977 adapter->stats.base_vfmprc;
1978 }
1979}
1980
1981static void ixgbevf_init_last_counter_stats(struct ixgbevf_adapter *adapter)
1982{
1983 struct ixgbe_hw *hw = &adapter->hw;
1984
1985 adapter->stats.last_vfgprc = IXGBE_READ_REG(hw, IXGBE_VFGPRC);
1986 adapter->stats.last_vfgorc = IXGBE_READ_REG(hw, IXGBE_VFGORC_LSB);
1987 adapter->stats.last_vfgorc |=
1988 (((u64)(IXGBE_READ_REG(hw, IXGBE_VFGORC_MSB))) << 32);
1989 adapter->stats.last_vfgptc = IXGBE_READ_REG(hw, IXGBE_VFGPTC);
1990 adapter->stats.last_vfgotc = IXGBE_READ_REG(hw, IXGBE_VFGOTC_LSB);
1991 adapter->stats.last_vfgotc |=
1992 (((u64)(IXGBE_READ_REG(hw, IXGBE_VFGOTC_MSB))) << 32);
1993 adapter->stats.last_vfmprc = IXGBE_READ_REG(hw, IXGBE_VFMPRC);
1994
1995 adapter->stats.base_vfgprc = adapter->stats.last_vfgprc;
1996 adapter->stats.base_vfgorc = adapter->stats.last_vfgorc;
1997 adapter->stats.base_vfgptc = adapter->stats.last_vfgptc;
1998 adapter->stats.base_vfgotc = adapter->stats.last_vfgotc;
1999 adapter->stats.base_vfmprc = adapter->stats.last_vfmprc;
2000}
2001
Alexander Duyck31186782012-07-20 08:09:58 +00002002static void ixgbevf_negotiate_api(struct ixgbevf_adapter *adapter)
2003{
2004 struct ixgbe_hw *hw = &adapter->hw;
Vlad Zolotarov94cf66f2015-03-30 21:35:26 +03002005 int api[] = { ixgbe_mbox_api_12,
2006 ixgbe_mbox_api_11,
Alexander Duyck56e94092012-07-20 08:10:03 +00002007 ixgbe_mbox_api_10,
Alexander Duyck31186782012-07-20 08:09:58 +00002008 ixgbe_mbox_api_unknown };
2009 int err = 0, idx = 0;
2010
John Fastabend55fdd45b2012-10-01 14:52:20 +00002011 spin_lock_bh(&adapter->mbx_lock);
Alexander Duyck31186782012-07-20 08:09:58 +00002012
2013 while (api[idx] != ixgbe_mbox_api_unknown) {
2014 err = ixgbevf_negotiate_api_version(hw, api[idx]);
2015 if (!err)
2016 break;
2017 idx++;
2018 }
2019
John Fastabend55fdd45b2012-10-01 14:52:20 +00002020 spin_unlock_bh(&adapter->mbx_lock);
Alexander Duyck31186782012-07-20 08:09:58 +00002021}
2022
Greg Rose795180d2012-04-17 04:29:34 +00002023static void ixgbevf_up_complete(struct ixgbevf_adapter *adapter)
Greg Rose92915f72010-01-09 02:24:10 +00002024{
2025 struct net_device *netdev = adapter->netdev;
2026 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose92915f72010-01-09 02:24:10 +00002027
2028 ixgbevf_configure_msix(adapter);
2029
John Fastabend55fdd45b2012-10-01 14:52:20 +00002030 spin_lock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00002031
Greg Rose92fe0bf2012-11-02 05:50:47 +00002032 if (is_valid_ether_addr(hw->mac.addr))
2033 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0);
2034 else
2035 hw->mac.ops.set_rar(hw, 0, hw->mac.perm_addr, 0);
Greg Rose92915f72010-01-09 02:24:10 +00002036
John Fastabend55fdd45b2012-10-01 14:52:20 +00002037 spin_unlock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00002038
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002039 smp_mb__before_atomic();
Greg Rose92915f72010-01-09 02:24:10 +00002040 clear_bit(__IXGBEVF_DOWN, &adapter->state);
2041 ixgbevf_napi_enable_all(adapter);
2042
Emil Tantilovd9bdb572015-01-28 03:21:18 +00002043 /* clear any pending interrupts, may auto mask */
2044 IXGBE_READ_REG(hw, IXGBE_VTEICR);
2045 ixgbevf_irq_enable(adapter);
2046
Greg Rose92915f72010-01-09 02:24:10 +00002047 /* enable transmits */
2048 netif_tx_start_all_queues(netdev);
2049
Greg Rose33bd9f62010-03-19 02:59:52 +00002050 ixgbevf_save_reset_stats(adapter);
2051 ixgbevf_init_last_counter_stats(adapter);
2052
Alexander Duyck4b2cd272012-08-02 01:16:59 +00002053 hw->mac.get_link_status = 1;
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002054 mod_timer(&adapter->service_timer, jiffies);
Greg Rose92915f72010-01-09 02:24:10 +00002055}
2056
Greg Rose795180d2012-04-17 04:29:34 +00002057void ixgbevf_up(struct ixgbevf_adapter *adapter)
Greg Rose92915f72010-01-09 02:24:10 +00002058{
Greg Rose92915f72010-01-09 02:24:10 +00002059 ixgbevf_configure(adapter);
2060
Greg Rose795180d2012-04-17 04:29:34 +00002061 ixgbevf_up_complete(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00002062}
2063
2064/**
2065 * ixgbevf_clean_rx_ring - Free Rx Buffers per Queue
Greg Rose92915f72010-01-09 02:24:10 +00002066 * @rx_ring: ring to free buffers from
2067 **/
Emil Tantilov05d063a2014-01-17 18:29:59 -08002068static void ixgbevf_clean_rx_ring(struct ixgbevf_ring *rx_ring)
Greg Rose92915f72010-01-09 02:24:10 +00002069{
Emil Tantilovbad17232014-11-21 02:57:15 +00002070 struct device *dev = rx_ring->dev;
Greg Rose92915f72010-01-09 02:24:10 +00002071 unsigned long size;
2072 unsigned int i;
2073
Emil Tantilovbad17232014-11-21 02:57:15 +00002074 /* Free Rx ring sk_buff */
2075 if (rx_ring->skb) {
2076 dev_kfree_skb(rx_ring->skb);
2077 rx_ring->skb = NULL;
2078 }
2079
2080 /* ring already cleared, nothing to do */
Greg Rosec0456c22010-01-22 22:47:18 +00002081 if (!rx_ring->rx_buffer_info)
2082 return;
Greg Rose92915f72010-01-09 02:24:10 +00002083
Emil Tantilovbad17232014-11-21 02:57:15 +00002084 /* Free all the Rx ring pages */
Greg Rose92915f72010-01-09 02:24:10 +00002085 for (i = 0; i < rx_ring->count; i++) {
Emil Tantilovbad17232014-11-21 02:57:15 +00002086 struct ixgbevf_rx_buffer *rx_buffer;
Greg Rose92915f72010-01-09 02:24:10 +00002087
Emil Tantilovbad17232014-11-21 02:57:15 +00002088 rx_buffer = &rx_ring->rx_buffer_info[i];
2089 if (rx_buffer->dma)
2090 dma_unmap_page(dev, rx_buffer->dma,
2091 PAGE_SIZE, DMA_FROM_DEVICE);
2092 rx_buffer->dma = 0;
2093 if (rx_buffer->page)
2094 __free_page(rx_buffer->page);
2095 rx_buffer->page = NULL;
Greg Rose92915f72010-01-09 02:24:10 +00002096 }
2097
2098 size = sizeof(struct ixgbevf_rx_buffer) * rx_ring->count;
2099 memset(rx_ring->rx_buffer_info, 0, size);
2100
2101 /* Zero out the descriptor ring */
2102 memset(rx_ring->desc, 0, rx_ring->size);
Greg Rose92915f72010-01-09 02:24:10 +00002103}
2104
2105/**
2106 * ixgbevf_clean_tx_ring - Free Tx Buffers
Greg Rose92915f72010-01-09 02:24:10 +00002107 * @tx_ring: ring to be cleaned
2108 **/
Emil Tantilov05d063a2014-01-17 18:29:59 -08002109static void ixgbevf_clean_tx_ring(struct ixgbevf_ring *tx_ring)
Greg Rose92915f72010-01-09 02:24:10 +00002110{
2111 struct ixgbevf_tx_buffer *tx_buffer_info;
2112 unsigned long size;
2113 unsigned int i;
2114
Greg Rosec0456c22010-01-22 22:47:18 +00002115 if (!tx_ring->tx_buffer_info)
2116 return;
2117
Greg Rose92915f72010-01-09 02:24:10 +00002118 /* Free all the Tx ring sk_buffs */
Greg Rose92915f72010-01-09 02:24:10 +00002119 for (i = 0; i < tx_ring->count; i++) {
2120 tx_buffer_info = &tx_ring->tx_buffer_info[i];
Alexander Duyck70a10e22012-05-11 08:33:21 +00002121 ixgbevf_unmap_and_free_tx_resource(tx_ring, tx_buffer_info);
Greg Rose92915f72010-01-09 02:24:10 +00002122 }
2123
2124 size = sizeof(struct ixgbevf_tx_buffer) * tx_ring->count;
2125 memset(tx_ring->tx_buffer_info, 0, size);
2126
2127 memset(tx_ring->desc, 0, tx_ring->size);
Greg Rose92915f72010-01-09 02:24:10 +00002128}
2129
2130/**
2131 * ixgbevf_clean_all_rx_rings - Free Rx Buffers for all queues
2132 * @adapter: board private structure
2133 **/
2134static void ixgbevf_clean_all_rx_rings(struct ixgbevf_adapter *adapter)
2135{
2136 int i;
2137
2138 for (i = 0; i < adapter->num_rx_queues; i++)
Emil Tantilov05d063a2014-01-17 18:29:59 -08002139 ixgbevf_clean_rx_ring(adapter->rx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00002140}
2141
2142/**
2143 * ixgbevf_clean_all_tx_rings - Free Tx Buffers for all queues
2144 * @adapter: board private structure
2145 **/
2146static void ixgbevf_clean_all_tx_rings(struct ixgbevf_adapter *adapter)
2147{
2148 int i;
2149
2150 for (i = 0; i < adapter->num_tx_queues; i++)
Emil Tantilov05d063a2014-01-17 18:29:59 -08002151 ixgbevf_clean_tx_ring(adapter->tx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00002152}
2153
2154void ixgbevf_down(struct ixgbevf_adapter *adapter)
2155{
2156 struct net_device *netdev = adapter->netdev;
2157 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmorede02dec2014-01-16 02:30:09 -08002158 int i;
Greg Rose92915f72010-01-09 02:24:10 +00002159
2160 /* signal that we are down to the interrupt handler */
Mark Rustad5b346dc2014-03-04 03:02:18 +00002161 if (test_and_set_bit(__IXGBEVF_DOWN, &adapter->state))
2162 return; /* do nothing if already down */
Don Skidmore858c3dd2013-10-01 04:33:50 -07002163
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002164 /* disable all enabled Rx queues */
Don Skidmore858c3dd2013-10-01 04:33:50 -07002165 for (i = 0; i < adapter->num_rx_queues; i++)
Don Skidmore87e70ab2014-01-16 02:30:08 -08002166 ixgbevf_disable_rx_queue(adapter, adapter->rx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00002167
Emil Tantilovd9bdb572015-01-28 03:21:18 +00002168 usleep_range(10000, 20000);
Greg Rose92915f72010-01-09 02:24:10 +00002169
2170 netif_tx_stop_all_queues(netdev);
2171
Emil Tantilovd9bdb572015-01-28 03:21:18 +00002172 /* call carrier off first to avoid false dev_watchdog timeouts */
2173 netif_carrier_off(netdev);
2174 netif_tx_disable(netdev);
2175
Greg Rose92915f72010-01-09 02:24:10 +00002176 ixgbevf_irq_disable(adapter);
2177
2178 ixgbevf_napi_disable_all(adapter);
2179
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002180 del_timer_sync(&adapter->service_timer);
Greg Rose92915f72010-01-09 02:24:10 +00002181
2182 /* disable transmits in the hardware now that interrupts are off */
2183 for (i = 0; i < adapter->num_tx_queues; i++) {
Don Skidmorede02dec2014-01-16 02:30:09 -08002184 u8 reg_idx = adapter->tx_ring[i]->reg_idx;
2185
2186 IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(reg_idx),
2187 IXGBE_TXDCTL_SWFLSH);
Greg Rose92915f72010-01-09 02:24:10 +00002188 }
2189
Greg Rose92915f72010-01-09 02:24:10 +00002190 if (!pci_channel_offline(adapter->pdev))
2191 ixgbevf_reset(adapter);
2192
2193 ixgbevf_clean_all_tx_rings(adapter);
2194 ixgbevf_clean_all_rx_rings(adapter);
2195}
2196
2197void ixgbevf_reinit_locked(struct ixgbevf_adapter *adapter)
2198{
2199 WARN_ON(in_interrupt());
Greg Rosec0456c22010-01-22 22:47:18 +00002200
Greg Rose92915f72010-01-09 02:24:10 +00002201 while (test_and_set_bit(__IXGBEVF_RESETTING, &adapter->state))
2202 msleep(1);
2203
Alexander Duyck4b2cd272012-08-02 01:16:59 +00002204 ixgbevf_down(adapter);
2205 ixgbevf_up(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00002206
2207 clear_bit(__IXGBEVF_RESETTING, &adapter->state);
2208}
2209
2210void ixgbevf_reset(struct ixgbevf_adapter *adapter)
2211{
2212 struct ixgbe_hw *hw = &adapter->hw;
2213 struct net_device *netdev = adapter->netdev;
2214
Don Skidmore798e3812013-10-01 04:33:51 -07002215 if (hw->mac.ops.reset_hw(hw)) {
Greg Rose92915f72010-01-09 02:24:10 +00002216 hw_dbg(hw, "PF still resetting\n");
Don Skidmore798e3812013-10-01 04:33:51 -07002217 } else {
Greg Rose92915f72010-01-09 02:24:10 +00002218 hw->mac.ops.init_hw(hw);
Don Skidmore798e3812013-10-01 04:33:51 -07002219 ixgbevf_negotiate_api(adapter);
2220 }
Greg Rose92915f72010-01-09 02:24:10 +00002221
2222 if (is_valid_ether_addr(adapter->hw.mac.addr)) {
2223 memcpy(netdev->dev_addr, adapter->hw.mac.addr,
2224 netdev->addr_len);
2225 memcpy(netdev->perm_addr, adapter->hw.mac.addr,
2226 netdev->addr_len);
2227 }
Emil Tantilove66c92a2015-01-28 03:21:29 +00002228
2229 adapter->last_reset = jiffies;
Greg Rose92915f72010-01-09 02:24:10 +00002230}
2231
Jakub Kicinskie45dd5f2012-11-13 04:03:16 +00002232static int ixgbevf_acquire_msix_vectors(struct ixgbevf_adapter *adapter,
2233 int vectors)
Greg Rose92915f72010-01-09 02:24:10 +00002234{
Emil Tantilova5f93372012-11-13 04:03:17 +00002235 int vector_threshold;
Greg Rose92915f72010-01-09 02:24:10 +00002236
Alexander Duyckfa71ae22012-05-11 08:32:50 +00002237 /* We'll want at least 2 (vector_threshold):
2238 * 1) TxQ[0] + RxQ[0] handler
2239 * 2) Other (Link Status Change, etc.)
Greg Rose92915f72010-01-09 02:24:10 +00002240 */
2241 vector_threshold = MIN_MSIX_COUNT;
2242
2243 /* The more we get, the more we will assign to Tx/Rx Cleanup
2244 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
2245 * Right now, we simply care about how many we'll get; we'll
2246 * set them up later while requesting irq's.
2247 */
Alexander Gordeev5c1e35882014-02-18 11:11:46 +01002248 vectors = pci_enable_msix_range(adapter->pdev, adapter->msix_entries,
2249 vector_threshold, vectors);
Greg Rose92915f72010-01-09 02:24:10 +00002250
Alexander Gordeev5c1e35882014-02-18 11:11:46 +01002251 if (vectors < 0) {
Jakub Kicinskie45dd5f2012-11-13 04:03:16 +00002252 dev_err(&adapter->pdev->dev,
2253 "Unable to allocate MSI-X interrupts\n");
Greg Rose92915f72010-01-09 02:24:10 +00002254 kfree(adapter->msix_entries);
2255 adapter->msix_entries = NULL;
Alexander Gordeev5c1e35882014-02-18 11:11:46 +01002256 return vectors;
Greg Rose92915f72010-01-09 02:24:10 +00002257 }
Greg Rosedee847f2012-11-02 05:50:57 +00002258
Alexander Gordeev5c1e35882014-02-18 11:11:46 +01002259 /* Adjust for only the vectors we'll use, which is minimum
2260 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
2261 * vectors we were allocated.
2262 */
2263 adapter->num_msix_vectors = vectors;
2264
2265 return 0;
Greg Rose92915f72010-01-09 02:24:10 +00002266}
2267
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002268/**
2269 * ixgbevf_set_num_queues - Allocate queues for device, feature dependent
Greg Rose92915f72010-01-09 02:24:10 +00002270 * @adapter: board private structure to initialize
2271 *
2272 * This is the top level queue allocation routine. The order here is very
2273 * important, starting with the "most" number of features turned on at once,
2274 * and ending with the smallest set of features. This way large combinations
2275 * can be allocated if they're turned on, and smaller combinations are the
2276 * fallthrough conditions.
2277 *
2278 **/
2279static void ixgbevf_set_num_queues(struct ixgbevf_adapter *adapter)
2280{
Don Skidmore220fe052013-09-21 01:40:49 +00002281 struct ixgbe_hw *hw = &adapter->hw;
2282 unsigned int def_q = 0;
2283 unsigned int num_tcs = 0;
2284 int err;
2285
Greg Rose92915f72010-01-09 02:24:10 +00002286 /* Start with base case */
2287 adapter->num_rx_queues = 1;
2288 adapter->num_tx_queues = 1;
Don Skidmore220fe052013-09-21 01:40:49 +00002289
2290 spin_lock_bh(&adapter->mbx_lock);
2291
2292 /* fetch queue configuration from the PF */
2293 err = ixgbevf_get_queues(hw, &num_tcs, &def_q);
2294
2295 spin_unlock_bh(&adapter->mbx_lock);
2296
2297 if (err)
2298 return;
2299
2300 /* we need as many queues as traffic classes */
Emil Tantilov2dc571a2014-12-06 09:19:02 +00002301 if (num_tcs > 1) {
Don Skidmore220fe052013-09-21 01:40:49 +00002302 adapter->num_rx_queues = num_tcs;
Emil Tantilov2dc571a2014-12-06 09:19:02 +00002303 } else {
2304 u16 rss = min_t(u16, num_online_cpus(), IXGBEVF_MAX_RSS_QUEUES);
2305
2306 switch (hw->api_version) {
2307 case ixgbe_mbox_api_11:
Vlad Zolotarov94cf66f2015-03-30 21:35:26 +03002308 case ixgbe_mbox_api_12:
Emil Tantilov2dc571a2014-12-06 09:19:02 +00002309 adapter->num_rx_queues = rss;
2310 adapter->num_tx_queues = rss;
2311 default:
2312 break;
2313 }
2314 }
Greg Rose92915f72010-01-09 02:24:10 +00002315}
2316
2317/**
2318 * ixgbevf_alloc_queues - Allocate memory for all rings
2319 * @adapter: board private structure to initialize
2320 *
2321 * We allocate one ring per queue at run-time since we don't know the
2322 * number of queues at compile-time. The polling_netdev array is
2323 * intended for Multiqueue, but should work fine with a single queue.
2324 **/
2325static int ixgbevf_alloc_queues(struct ixgbevf_adapter *adapter)
2326{
Don Skidmore87e70ab2014-01-16 02:30:08 -08002327 struct ixgbevf_ring *ring;
2328 int rx = 0, tx = 0;
Greg Rose92915f72010-01-09 02:24:10 +00002329
Don Skidmore87e70ab2014-01-16 02:30:08 -08002330 for (; tx < adapter->num_tx_queues; tx++) {
2331 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
2332 if (!ring)
2333 goto err_allocation;
Greg Rose92915f72010-01-09 02:24:10 +00002334
Don Skidmore87e70ab2014-01-16 02:30:08 -08002335 ring->dev = &adapter->pdev->dev;
2336 ring->netdev = adapter->netdev;
2337 ring->count = adapter->tx_ring_count;
2338 ring->queue_index = tx;
2339 ring->reg_idx = tx;
Greg Rose92915f72010-01-09 02:24:10 +00002340
Don Skidmore87e70ab2014-01-16 02:30:08 -08002341 adapter->tx_ring[tx] = ring;
Greg Rose92915f72010-01-09 02:24:10 +00002342 }
2343
Don Skidmore87e70ab2014-01-16 02:30:08 -08002344 for (; rx < adapter->num_rx_queues; rx++) {
2345 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
2346 if (!ring)
2347 goto err_allocation;
2348
2349 ring->dev = &adapter->pdev->dev;
2350 ring->netdev = adapter->netdev;
2351
2352 ring->count = adapter->rx_ring_count;
2353 ring->queue_index = rx;
2354 ring->reg_idx = rx;
2355
2356 adapter->rx_ring[rx] = ring;
Greg Rose92915f72010-01-09 02:24:10 +00002357 }
2358
2359 return 0;
2360
Don Skidmore87e70ab2014-01-16 02:30:08 -08002361err_allocation:
2362 while (tx) {
2363 kfree(adapter->tx_ring[--tx]);
2364 adapter->tx_ring[tx] = NULL;
2365 }
2366
2367 while (rx) {
2368 kfree(adapter->rx_ring[--rx]);
2369 adapter->rx_ring[rx] = NULL;
2370 }
Greg Rose92915f72010-01-09 02:24:10 +00002371 return -ENOMEM;
2372}
2373
2374/**
2375 * ixgbevf_set_interrupt_capability - set MSI-X or FAIL if not supported
2376 * @adapter: board private structure to initialize
2377 *
2378 * Attempt to configure the interrupts using the best available
2379 * capabilities of the hardware and the kernel.
2380 **/
2381static int ixgbevf_set_interrupt_capability(struct ixgbevf_adapter *adapter)
2382{
Greg Rose91e2b892012-10-03 00:57:23 +00002383 struct net_device *netdev = adapter->netdev;
Greg Rose92915f72010-01-09 02:24:10 +00002384 int err = 0;
2385 int vector, v_budget;
2386
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002387 /* It's easy to be greedy for MSI-X vectors, but it really
Greg Rose92915f72010-01-09 02:24:10 +00002388 * doesn't do us much good if we have a lot more vectors
2389 * than CPU's. So let's be conservative and only ask for
Alexander Duyckfa71ae22012-05-11 08:32:50 +00002390 * (roughly) the same number of vectors as there are CPU's.
2391 * The default is to use pairs of vectors.
Greg Rose92915f72010-01-09 02:24:10 +00002392 */
Alexander Duyckfa71ae22012-05-11 08:32:50 +00002393 v_budget = max(adapter->num_rx_queues, adapter->num_tx_queues);
2394 v_budget = min_t(int, v_budget, num_online_cpus());
2395 v_budget += NON_Q_VECTORS;
Greg Rose92915f72010-01-09 02:24:10 +00002396
2397 /* A failure in MSI-X entry allocation isn't fatal, but it does
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002398 * mean we disable MSI-X capabilities of the adapter.
2399 */
Greg Rose92915f72010-01-09 02:24:10 +00002400 adapter->msix_entries = kcalloc(v_budget,
2401 sizeof(struct msix_entry), GFP_KERNEL);
2402 if (!adapter->msix_entries) {
2403 err = -ENOMEM;
2404 goto out;
2405 }
2406
2407 for (vector = 0; vector < v_budget; vector++)
2408 adapter->msix_entries[vector].entry = vector;
2409
Jakub Kicinskie45dd5f2012-11-13 04:03:16 +00002410 err = ixgbevf_acquire_msix_vectors(adapter, v_budget);
2411 if (err)
2412 goto out;
Greg Rose92915f72010-01-09 02:24:10 +00002413
Greg Rose91e2b892012-10-03 00:57:23 +00002414 err = netif_set_real_num_tx_queues(netdev, adapter->num_tx_queues);
2415 if (err)
2416 goto out;
2417
2418 err = netif_set_real_num_rx_queues(netdev, adapter->num_rx_queues);
2419
Greg Rose92915f72010-01-09 02:24:10 +00002420out:
2421 return err;
2422}
2423
2424/**
2425 * ixgbevf_alloc_q_vectors - Allocate memory for interrupt vectors
2426 * @adapter: board private structure to initialize
2427 *
2428 * We allocate one q_vector per queue interrupt. If allocation fails we
2429 * return -ENOMEM.
2430 **/
2431static int ixgbevf_alloc_q_vectors(struct ixgbevf_adapter *adapter)
2432{
2433 int q_idx, num_q_vectors;
2434 struct ixgbevf_q_vector *q_vector;
Greg Rose92915f72010-01-09 02:24:10 +00002435
2436 num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Greg Rose92915f72010-01-09 02:24:10 +00002437
2438 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
2439 q_vector = kzalloc(sizeof(struct ixgbevf_q_vector), GFP_KERNEL);
2440 if (!q_vector)
2441 goto err_out;
2442 q_vector->adapter = adapter;
2443 q_vector->v_idx = q_idx;
Alexander Duyckfa71ae22012-05-11 08:32:50 +00002444 netif_napi_add(adapter->netdev, &q_vector->napi,
2445 ixgbevf_poll, 64);
Jacob Kellerc777cdf2013-09-21 06:24:20 +00002446#ifdef CONFIG_NET_RX_BUSY_POLL
2447 napi_hash_add(&q_vector->napi);
2448#endif
Greg Rose92915f72010-01-09 02:24:10 +00002449 adapter->q_vector[q_idx] = q_vector;
2450 }
2451
2452 return 0;
2453
2454err_out:
2455 while (q_idx) {
2456 q_idx--;
2457 q_vector = adapter->q_vector[q_idx];
Jacob Kellerc777cdf2013-09-21 06:24:20 +00002458#ifdef CONFIG_NET_RX_BUSY_POLL
2459 napi_hash_del(&q_vector->napi);
2460#endif
Greg Rose92915f72010-01-09 02:24:10 +00002461 netif_napi_del(&q_vector->napi);
2462 kfree(q_vector);
2463 adapter->q_vector[q_idx] = NULL;
2464 }
2465 return -ENOMEM;
2466}
2467
2468/**
2469 * ixgbevf_free_q_vectors - Free memory allocated for interrupt vectors
2470 * @adapter: board private structure to initialize
2471 *
2472 * This function frees the memory allocated to the q_vectors. In addition if
2473 * NAPI is enabled it will delete any references to the NAPI struct prior
2474 * to freeing the q_vector.
2475 **/
2476static void ixgbevf_free_q_vectors(struct ixgbevf_adapter *adapter)
2477{
John Fastabendf4477702012-09-16 08:19:46 +00002478 int q_idx, num_q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
Greg Rose92915f72010-01-09 02:24:10 +00002479
2480 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
2481 struct ixgbevf_q_vector *q_vector = adapter->q_vector[q_idx];
2482
2483 adapter->q_vector[q_idx] = NULL;
Jacob Kellerc777cdf2013-09-21 06:24:20 +00002484#ifdef CONFIG_NET_RX_BUSY_POLL
2485 napi_hash_del(&q_vector->napi);
2486#endif
John Fastabendf4477702012-09-16 08:19:46 +00002487 netif_napi_del(&q_vector->napi);
Greg Rose92915f72010-01-09 02:24:10 +00002488 kfree(q_vector);
2489 }
2490}
2491
2492/**
2493 * ixgbevf_reset_interrupt_capability - Reset MSIX setup
2494 * @adapter: board private structure
2495 *
2496 **/
2497static void ixgbevf_reset_interrupt_capability(struct ixgbevf_adapter *adapter)
2498{
2499 pci_disable_msix(adapter->pdev);
2500 kfree(adapter->msix_entries);
2501 adapter->msix_entries = NULL;
Greg Rose92915f72010-01-09 02:24:10 +00002502}
2503
2504/**
2505 * ixgbevf_init_interrupt_scheme - Determine if MSIX is supported and init
2506 * @adapter: board private structure to initialize
2507 *
2508 **/
2509static int ixgbevf_init_interrupt_scheme(struct ixgbevf_adapter *adapter)
2510{
2511 int err;
2512
2513 /* Number of supported queues */
2514 ixgbevf_set_num_queues(adapter);
2515
2516 err = ixgbevf_set_interrupt_capability(adapter);
2517 if (err) {
2518 hw_dbg(&adapter->hw,
2519 "Unable to setup interrupt capabilities\n");
2520 goto err_set_interrupt;
2521 }
2522
2523 err = ixgbevf_alloc_q_vectors(adapter);
2524 if (err) {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002525 hw_dbg(&adapter->hw, "Unable to allocate memory for queue vectors\n");
Greg Rose92915f72010-01-09 02:24:10 +00002526 goto err_alloc_q_vectors;
2527 }
2528
2529 err = ixgbevf_alloc_queues(adapter);
2530 if (err) {
Jeff Kirsherdbd96362011-10-21 19:38:18 +00002531 pr_err("Unable to allocate memory for queues\n");
Greg Rose92915f72010-01-09 02:24:10 +00002532 goto err_alloc_queues;
2533 }
2534
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002535 hw_dbg(&adapter->hw, "Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
Greg Rose92915f72010-01-09 02:24:10 +00002536 (adapter->num_rx_queues > 1) ? "Enabled" :
2537 "Disabled", adapter->num_rx_queues, adapter->num_tx_queues);
2538
2539 set_bit(__IXGBEVF_DOWN, &adapter->state);
2540
2541 return 0;
2542err_alloc_queues:
2543 ixgbevf_free_q_vectors(adapter);
2544err_alloc_q_vectors:
2545 ixgbevf_reset_interrupt_capability(adapter);
2546err_set_interrupt:
2547 return err;
2548}
2549
2550/**
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00002551 * ixgbevf_clear_interrupt_scheme - Clear the current interrupt scheme settings
2552 * @adapter: board private structure to clear interrupt scheme on
2553 *
2554 * We go through and clear interrupt specific resources and reset the structure
2555 * to pre-load conditions
2556 **/
2557static void ixgbevf_clear_interrupt_scheme(struct ixgbevf_adapter *adapter)
2558{
Don Skidmore87e70ab2014-01-16 02:30:08 -08002559 int i;
2560
2561 for (i = 0; i < adapter->num_tx_queues; i++) {
2562 kfree(adapter->tx_ring[i]);
2563 adapter->tx_ring[i] = NULL;
2564 }
2565 for (i = 0; i < adapter->num_rx_queues; i++) {
2566 kfree(adapter->rx_ring[i]);
2567 adapter->rx_ring[i] = NULL;
2568 }
2569
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00002570 adapter->num_tx_queues = 0;
2571 adapter->num_rx_queues = 0;
2572
2573 ixgbevf_free_q_vectors(adapter);
2574 ixgbevf_reset_interrupt_capability(adapter);
2575}
2576
2577/**
Greg Rose92915f72010-01-09 02:24:10 +00002578 * ixgbevf_sw_init - Initialize general software structures
Greg Rose92915f72010-01-09 02:24:10 +00002579 * @adapter: board private structure to initialize
2580 *
2581 * ixgbevf_sw_init initializes the Adapter private data structure.
2582 * Fields are initialized based on PCI device information and
2583 * OS network device settings (MTU size).
2584 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05002585static int ixgbevf_sw_init(struct ixgbevf_adapter *adapter)
Greg Rose92915f72010-01-09 02:24:10 +00002586{
2587 struct ixgbe_hw *hw = &adapter->hw;
2588 struct pci_dev *pdev = adapter->pdev;
Greg Rosee1941a72013-02-13 03:02:05 +00002589 struct net_device *netdev = adapter->netdev;
Greg Rose92915f72010-01-09 02:24:10 +00002590 int err;
2591
2592 /* PCI config space info */
Greg Rose92915f72010-01-09 02:24:10 +00002593 hw->vendor_id = pdev->vendor;
2594 hw->device_id = pdev->device;
Sergei Shtylyovff938e42011-02-28 11:57:33 -08002595 hw->revision_id = pdev->revision;
Greg Rose92915f72010-01-09 02:24:10 +00002596 hw->subsystem_vendor_id = pdev->subsystem_vendor;
2597 hw->subsystem_device_id = pdev->subsystem_device;
2598
2599 hw->mbx.ops.init_params(hw);
Alexander Duyck56e94092012-07-20 08:10:03 +00002600
2601 /* assume legacy case in which PF would only give VF 2 queues */
2602 hw->mac.max_tx_queues = 2;
2603 hw->mac.max_rx_queues = 2;
2604
Don Skidmore798e3812013-10-01 04:33:51 -07002605 /* lock to protect mailbox accesses */
2606 spin_lock_init(&adapter->mbx_lock);
2607
Greg Rose92915f72010-01-09 02:24:10 +00002608 err = hw->mac.ops.reset_hw(hw);
2609 if (err) {
2610 dev_info(&pdev->dev,
Greg Rosee1941a72013-02-13 03:02:05 +00002611 "PF still in reset state. Is the PF interface up?\n");
Greg Rose92915f72010-01-09 02:24:10 +00002612 } else {
2613 err = hw->mac.ops.init_hw(hw);
2614 if (err) {
Jeff Kirsherdbd96362011-10-21 19:38:18 +00002615 pr_err("init_shared_code failed: %d\n", err);
Greg Rose92915f72010-01-09 02:24:10 +00002616 goto out;
2617 }
Don Skidmore798e3812013-10-01 04:33:51 -07002618 ixgbevf_negotiate_api(adapter);
Greg Rosee1941a72013-02-13 03:02:05 +00002619 err = hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
2620 if (err)
2621 dev_info(&pdev->dev, "Error reading MAC address\n");
2622 else if (is_zero_ether_addr(adapter->hw.mac.addr))
2623 dev_info(&pdev->dev,
2624 "MAC address not assigned by administrator.\n");
2625 memcpy(netdev->dev_addr, hw->mac.addr, netdev->addr_len);
2626 }
2627
2628 if (!is_valid_ether_addr(netdev->dev_addr)) {
2629 dev_info(&pdev->dev, "Assigning random MAC address\n");
2630 eth_hw_addr_random(netdev);
2631 memcpy(hw->mac.addr, netdev->dev_addr, netdev->addr_len);
Greg Rose92915f72010-01-09 02:24:10 +00002632 }
2633
2634 /* Enable dynamic interrupt throttling rates */
Alexander Duyck5f3600e2012-05-11 08:32:55 +00002635 adapter->rx_itr_setting = 1;
2636 adapter->tx_itr_setting = 1;
Greg Rose92915f72010-01-09 02:24:10 +00002637
Greg Rose92915f72010-01-09 02:24:10 +00002638 /* set default ring sizes */
2639 adapter->tx_ring_count = IXGBEVF_DEFAULT_TXD;
2640 adapter->rx_ring_count = IXGBEVF_DEFAULT_RXD;
2641
Greg Rose92915f72010-01-09 02:24:10 +00002642 set_bit(__IXGBEVF_DOWN, &adapter->state);
Danny Kukawka1a0d6ae2012-02-09 09:48:54 +00002643 return 0;
Greg Rose92915f72010-01-09 02:24:10 +00002644
2645out:
2646 return err;
2647}
2648
Greg Rose92915f72010-01-09 02:24:10 +00002649#define UPDATE_VF_COUNTER_32bit(reg, last_counter, counter) \
2650 { \
2651 u32 current_counter = IXGBE_READ_REG(hw, reg); \
2652 if (current_counter < last_counter) \
2653 counter += 0x100000000LL; \
2654 last_counter = current_counter; \
2655 counter &= 0xFFFFFFFF00000000LL; \
2656 counter |= current_counter; \
2657 }
2658
2659#define UPDATE_VF_COUNTER_36bit(reg_lsb, reg_msb, last_counter, counter) \
2660 { \
2661 u64 current_counter_lsb = IXGBE_READ_REG(hw, reg_lsb); \
2662 u64 current_counter_msb = IXGBE_READ_REG(hw, reg_msb); \
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002663 u64 current_counter = (current_counter_msb << 32) | \
2664 current_counter_lsb; \
Greg Rose92915f72010-01-09 02:24:10 +00002665 if (current_counter < last_counter) \
2666 counter += 0x1000000000LL; \
2667 last_counter = current_counter; \
2668 counter &= 0xFFFFFFF000000000LL; \
2669 counter |= current_counter; \
2670 }
2671/**
2672 * ixgbevf_update_stats - Update the board statistics counters.
2673 * @adapter: board private structure
2674 **/
2675void ixgbevf_update_stats(struct ixgbevf_adapter *adapter)
2676{
2677 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose55fb2772012-11-06 05:53:32 +00002678 int i;
Greg Rose92915f72010-01-09 02:24:10 +00002679
Emil Tantilove66c92a2015-01-28 03:21:29 +00002680 if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
2681 test_bit(__IXGBEVF_RESETTING, &adapter->state))
Greg Rose088245a2013-01-04 07:37:31 +00002682 return;
2683
Greg Rose92915f72010-01-09 02:24:10 +00002684 UPDATE_VF_COUNTER_32bit(IXGBE_VFGPRC, adapter->stats.last_vfgprc,
2685 adapter->stats.vfgprc);
2686 UPDATE_VF_COUNTER_32bit(IXGBE_VFGPTC, adapter->stats.last_vfgptc,
2687 adapter->stats.vfgptc);
2688 UPDATE_VF_COUNTER_36bit(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
2689 adapter->stats.last_vfgorc,
2690 adapter->stats.vfgorc);
2691 UPDATE_VF_COUNTER_36bit(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
2692 adapter->stats.last_vfgotc,
2693 adapter->stats.vfgotc);
2694 UPDATE_VF_COUNTER_32bit(IXGBE_VFMPRC, adapter->stats.last_vfmprc,
2695 adapter->stats.vfmprc);
Greg Rose55fb2772012-11-06 05:53:32 +00002696
2697 for (i = 0; i < adapter->num_rx_queues; i++) {
2698 adapter->hw_csum_rx_error +=
Don Skidmore87e70ab2014-01-16 02:30:08 -08002699 adapter->rx_ring[i]->hw_csum_rx_error;
Don Skidmore87e70ab2014-01-16 02:30:08 -08002700 adapter->rx_ring[i]->hw_csum_rx_error = 0;
Greg Rose55fb2772012-11-06 05:53:32 +00002701 }
Greg Rose92915f72010-01-09 02:24:10 +00002702}
2703
2704/**
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002705 * ixgbevf_service_timer - Timer Call-back
Greg Rose92915f72010-01-09 02:24:10 +00002706 * @data: pointer to adapter cast into an unsigned long
2707 **/
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002708static void ixgbevf_service_timer(unsigned long data)
Greg Rose92915f72010-01-09 02:24:10 +00002709{
2710 struct ixgbevf_adapter *adapter = (struct ixgbevf_adapter *)data;
Emil Tantilove66c92a2015-01-28 03:21:29 +00002711
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002712 /* Reset the timer */
2713 mod_timer(&adapter->service_timer, (HZ * 2) + jiffies);
2714
2715 ixgbevf_service_event_schedule(adapter);
Emil Tantilove66c92a2015-01-28 03:21:29 +00002716}
2717
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002718static void ixgbevf_reset_subtask(struct ixgbevf_adapter *adapter)
Emil Tantilove66c92a2015-01-28 03:21:29 +00002719{
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002720 if (!(adapter->flags & IXGBEVF_FLAG_RESET_REQUESTED))
2721 return;
Emil Tantilove66c92a2015-01-28 03:21:29 +00002722
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002723 adapter->flags &= ~IXGBEVF_FLAG_RESET_REQUESTED;
Emil Tantilove66c92a2015-01-28 03:21:29 +00002724
2725 /* If we're already down or resetting, just bail */
2726 if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
2727 test_bit(__IXGBEVF_RESETTING, &adapter->state))
2728 return;
2729
2730 adapter->tx_timeout_count++;
2731
2732 ixgbevf_reinit_locked(adapter);
2733}
2734
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002735/**
2736 * ixgbevf_check_hang_subtask - check for hung queues and dropped interrupts
2737 * @adapter: pointer to the device adapter structure
Emil Tantilove66c92a2015-01-28 03:21:29 +00002738 *
2739 * This function serves two purposes. First it strobes the interrupt lines
2740 * in order to make certain interrupts are occurring. Secondly it sets the
2741 * bits needed to check for TX hangs. As a result we should immediately
2742 * determine if a hang has occurred.
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002743 **/
Emil Tantilove66c92a2015-01-28 03:21:29 +00002744static void ixgbevf_check_hang_subtask(struct ixgbevf_adapter *adapter)
2745{
Greg Rose92915f72010-01-09 02:24:10 +00002746 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck5f3600e2012-05-11 08:32:55 +00002747 u32 eics = 0;
Greg Rose92915f72010-01-09 02:24:10 +00002748 int i;
2749
Emil Tantilove66c92a2015-01-28 03:21:29 +00002750 /* If we're down or resetting, just bail */
2751 if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
2752 test_bit(__IXGBEVF_RESETTING, &adapter->state))
2753 return;
Greg Rose92915f72010-01-09 02:24:10 +00002754
Emil Tantilove08400b2015-01-28 03:21:24 +00002755 /* Force detection of hung controller */
2756 if (netif_carrier_ok(adapter->netdev)) {
2757 for (i = 0; i < adapter->num_tx_queues; i++)
2758 set_check_for_tx_hang(adapter->tx_ring[i]);
2759 }
2760
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002761 /* get one bit for every active Tx/Rx interrupt vector */
Greg Rose92915f72010-01-09 02:24:10 +00002762 for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
2763 struct ixgbevf_q_vector *qv = adapter->q_vector[i];
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002764
Alexander Duyck6b43c442012-05-11 08:32:45 +00002765 if (qv->rx.ring || qv->tx.ring)
Alexander Duyck5f3600e2012-05-11 08:32:55 +00002766 eics |= 1 << i;
Greg Rose92915f72010-01-09 02:24:10 +00002767 }
2768
Emil Tantilove66c92a2015-01-28 03:21:29 +00002769 /* Cause software interrupt to ensure rings are cleaned */
Alexander Duyck5f3600e2012-05-11 08:32:55 +00002770 IXGBE_WRITE_REG(hw, IXGBE_VTEICS, eics);
Greg Rose92915f72010-01-09 02:24:10 +00002771}
2772
Emil Tantilove66c92a2015-01-28 03:21:29 +00002773/**
2774 * ixgbevf_watchdog_update_link - update the link status
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002775 * @adapter: pointer to the device adapter structure
Emil Tantilove66c92a2015-01-28 03:21:29 +00002776 **/
2777static void ixgbevf_watchdog_update_link(struct ixgbevf_adapter *adapter)
Greg Rose92915f72010-01-09 02:24:10 +00002778{
Emil Tantilove66c92a2015-01-28 03:21:29 +00002779 struct ixgbe_hw *hw = &adapter->hw;
2780 u32 link_speed = adapter->link_speed;
2781 bool link_up = adapter->link_up;
2782 s32 err;
Greg Rose92915f72010-01-09 02:24:10 +00002783
Emil Tantilove66c92a2015-01-28 03:21:29 +00002784 spin_lock_bh(&adapter->mbx_lock);
2785
2786 err = hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
2787
2788 spin_unlock_bh(&adapter->mbx_lock);
2789
2790 /* if check for link returns error we will need to reset */
2791 if (err && time_after(jiffies, adapter->last_reset + (10 * HZ))) {
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002792 adapter->flags |= IXGBEVF_FLAG_RESET_REQUESTED;
Emil Tantilove66c92a2015-01-28 03:21:29 +00002793 link_up = false;
2794 }
2795
2796 adapter->link_up = link_up;
2797 adapter->link_speed = link_speed;
2798}
2799
2800/**
2801 * ixgbevf_watchdog_link_is_up - update netif_carrier status and
2802 * print link up message
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002803 * @adapter: pointer to the device adapter structure
Emil Tantilove66c92a2015-01-28 03:21:29 +00002804 **/
2805static void ixgbevf_watchdog_link_is_up(struct ixgbevf_adapter *adapter)
2806{
2807 struct net_device *netdev = adapter->netdev;
2808
2809 /* only continue if link was previously down */
2810 if (netif_carrier_ok(netdev))
Greg Rose92915f72010-01-09 02:24:10 +00002811 return;
2812
Emil Tantilove66c92a2015-01-28 03:21:29 +00002813 dev_info(&adapter->pdev->dev, "NIC Link is Up %s\n",
2814 (adapter->link_speed == IXGBE_LINK_SPEED_10GB_FULL) ?
2815 "10 Gbps" :
2816 (adapter->link_speed == IXGBE_LINK_SPEED_1GB_FULL) ?
2817 "1 Gbps" :
2818 (adapter->link_speed == IXGBE_LINK_SPEED_100_FULL) ?
2819 "100 Mbps" :
2820 "unknown speed");
Greg Rose92915f72010-01-09 02:24:10 +00002821
Emil Tantilove66c92a2015-01-28 03:21:29 +00002822 netif_carrier_on(netdev);
2823}
2824
2825/**
2826 * ixgbevf_watchdog_link_is_down - update netif_carrier status and
2827 * print link down message
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002828 * @adapter: pointer to the adapter structure
Emil Tantilove66c92a2015-01-28 03:21:29 +00002829 **/
2830static void ixgbevf_watchdog_link_is_down(struct ixgbevf_adapter *adapter)
2831{
2832 struct net_device *netdev = adapter->netdev;
2833
2834 adapter->link_speed = 0;
2835
2836 /* only continue if link was up previously */
2837 if (!netif_carrier_ok(netdev))
2838 return;
2839
2840 dev_info(&adapter->pdev->dev, "NIC Link is Down\n");
2841
2842 netif_carrier_off(netdev);
Greg Rose92915f72010-01-09 02:24:10 +00002843}
2844
2845/**
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002846 * ixgbevf_watchdog_subtask - worker thread to bring link up
Greg Rose92915f72010-01-09 02:24:10 +00002847 * @work: pointer to work_struct containing our data
2848 **/
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002849static void ixgbevf_watchdog_subtask(struct ixgbevf_adapter *adapter)
2850{
2851 /* if interface is down do nothing */
2852 if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
2853 test_bit(__IXGBEVF_RESETTING, &adapter->state))
2854 return;
2855
2856 ixgbevf_watchdog_update_link(adapter);
2857
2858 if (adapter->link_up)
2859 ixgbevf_watchdog_link_is_up(adapter);
2860 else
2861 ixgbevf_watchdog_link_is_down(adapter);
2862
2863 ixgbevf_update_stats(adapter);
2864}
2865
2866/**
2867 * ixgbevf_service_task - manages and runs subtasks
2868 * @work: pointer to work_struct containing our data
2869 **/
2870static void ixgbevf_service_task(struct work_struct *work)
Greg Rose92915f72010-01-09 02:24:10 +00002871{
2872 struct ixgbevf_adapter *adapter = container_of(work,
2873 struct ixgbevf_adapter,
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002874 service_task);
Greg Rose92915f72010-01-09 02:24:10 +00002875 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose92915f72010-01-09 02:24:10 +00002876
Mark Rustad26597802014-03-04 03:02:45 +00002877 if (IXGBE_REMOVED(hw->hw_addr)) {
2878 if (!test_bit(__IXGBEVF_DOWN, &adapter->state)) {
2879 rtnl_lock();
2880 ixgbevf_down(adapter);
2881 rtnl_unlock();
2882 }
2883 return;
2884 }
Emil Tantilove66c92a2015-01-28 03:21:29 +00002885
Don Skidmore220fe052013-09-21 01:40:49 +00002886 ixgbevf_queue_reset_subtask(adapter);
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002887 ixgbevf_reset_subtask(adapter);
2888 ixgbevf_watchdog_subtask(adapter);
Emil Tantilove66c92a2015-01-28 03:21:29 +00002889 ixgbevf_check_hang_subtask(adapter);
2890
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00002891 ixgbevf_service_event_complete(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00002892}
2893
2894/**
2895 * ixgbevf_free_tx_resources - Free Tx Resources per Queue
Greg Rose92915f72010-01-09 02:24:10 +00002896 * @tx_ring: Tx descriptor ring for a specific queue
2897 *
2898 * Free all transmit software resources
2899 **/
Emil Tantilov05d063a2014-01-17 18:29:59 -08002900void ixgbevf_free_tx_resources(struct ixgbevf_ring *tx_ring)
Greg Rose92915f72010-01-09 02:24:10 +00002901{
Emil Tantilov05d063a2014-01-17 18:29:59 -08002902 ixgbevf_clean_tx_ring(tx_ring);
Greg Rose92915f72010-01-09 02:24:10 +00002903
2904 vfree(tx_ring->tx_buffer_info);
2905 tx_ring->tx_buffer_info = NULL;
2906
Don Skidmorede02dec2014-01-16 02:30:09 -08002907 /* if not set, then don't free */
2908 if (!tx_ring->desc)
2909 return;
2910
Emil Tantilov05d063a2014-01-17 18:29:59 -08002911 dma_free_coherent(tx_ring->dev, tx_ring->size, tx_ring->desc,
Nick Nunley2a1f8792010-04-27 13:10:50 +00002912 tx_ring->dma);
Greg Rose92915f72010-01-09 02:24:10 +00002913
2914 tx_ring->desc = NULL;
2915}
2916
2917/**
2918 * ixgbevf_free_all_tx_resources - Free Tx Resources for All Queues
2919 * @adapter: board private structure
2920 *
2921 * Free all transmit software resources
2922 **/
2923static void ixgbevf_free_all_tx_resources(struct ixgbevf_adapter *adapter)
2924{
2925 int i;
2926
2927 for (i = 0; i < adapter->num_tx_queues; i++)
Don Skidmore87e70ab2014-01-16 02:30:08 -08002928 if (adapter->tx_ring[i]->desc)
Emil Tantilov05d063a2014-01-17 18:29:59 -08002929 ixgbevf_free_tx_resources(adapter->tx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00002930}
2931
2932/**
2933 * ixgbevf_setup_tx_resources - allocate Tx resources (Descriptors)
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002934 * @tx_ring: Tx descriptor ring (for a specific queue) to setup
Greg Rose92915f72010-01-09 02:24:10 +00002935 *
2936 * Return 0 on success, negative on failure
2937 **/
Emil Tantilov05d063a2014-01-17 18:29:59 -08002938int ixgbevf_setup_tx_resources(struct ixgbevf_ring *tx_ring)
Greg Rose92915f72010-01-09 02:24:10 +00002939{
Greg Rose92915f72010-01-09 02:24:10 +00002940 int size;
2941
2942 size = sizeof(struct ixgbevf_tx_buffer) * tx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00002943 tx_ring->tx_buffer_info = vzalloc(size);
Greg Rose92915f72010-01-09 02:24:10 +00002944 if (!tx_ring->tx_buffer_info)
2945 goto err;
Greg Rose92915f72010-01-09 02:24:10 +00002946
2947 /* round up to nearest 4K */
2948 tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
2949 tx_ring->size = ALIGN(tx_ring->size, 4096);
2950
Emil Tantilov05d063a2014-01-17 18:29:59 -08002951 tx_ring->desc = dma_alloc_coherent(tx_ring->dev, tx_ring->size,
Nick Nunley2a1f8792010-04-27 13:10:50 +00002952 &tx_ring->dma, GFP_KERNEL);
Greg Rose92915f72010-01-09 02:24:10 +00002953 if (!tx_ring->desc)
2954 goto err;
2955
Greg Rose92915f72010-01-09 02:24:10 +00002956 return 0;
2957
2958err:
2959 vfree(tx_ring->tx_buffer_info);
2960 tx_ring->tx_buffer_info = NULL;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002961 hw_dbg(&adapter->hw, "Unable to allocate memory for the transmit descriptor ring\n");
Greg Rose92915f72010-01-09 02:24:10 +00002962 return -ENOMEM;
2963}
2964
2965/**
2966 * ixgbevf_setup_all_tx_resources - allocate all queues Tx resources
2967 * @adapter: board private structure
2968 *
2969 * If this function returns with an error, then it's possible one or
2970 * more of the rings is populated (while the rest are not). It is the
2971 * callers duty to clean those orphaned rings.
2972 *
2973 * Return 0 on success, negative on failure
2974 **/
2975static int ixgbevf_setup_all_tx_resources(struct ixgbevf_adapter *adapter)
2976{
2977 int i, err = 0;
2978
2979 for (i = 0; i < adapter->num_tx_queues; i++) {
Emil Tantilov05d063a2014-01-17 18:29:59 -08002980 err = ixgbevf_setup_tx_resources(adapter->tx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00002981 if (!err)
2982 continue;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002983 hw_dbg(&adapter->hw, "Allocation for Tx Queue %u failed\n", i);
Greg Rose92915f72010-01-09 02:24:10 +00002984 break;
2985 }
2986
2987 return err;
2988}
2989
2990/**
2991 * ixgbevf_setup_rx_resources - allocate Rx resources (Descriptors)
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00002992 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
Greg Rose92915f72010-01-09 02:24:10 +00002993 *
2994 * Returns 0 on success, negative on failure
2995 **/
Emil Tantilov05d063a2014-01-17 18:29:59 -08002996int ixgbevf_setup_rx_resources(struct ixgbevf_ring *rx_ring)
Greg Rose92915f72010-01-09 02:24:10 +00002997{
Greg Rose92915f72010-01-09 02:24:10 +00002998 int size;
2999
3000 size = sizeof(struct ixgbevf_rx_buffer) * rx_ring->count;
Eric Dumazet89bf67f2010-11-22 00:15:06 +00003001 rx_ring->rx_buffer_info = vzalloc(size);
Joe Perchese404dec2012-01-29 12:56:23 +00003002 if (!rx_ring->rx_buffer_info)
Emil Tantilov05d063a2014-01-17 18:29:59 -08003003 goto err;
Greg Rose92915f72010-01-09 02:24:10 +00003004
3005 /* Round up to nearest 4K */
3006 rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
3007 rx_ring->size = ALIGN(rx_ring->size, 4096);
3008
Emil Tantilov05d063a2014-01-17 18:29:59 -08003009 rx_ring->desc = dma_alloc_coherent(rx_ring->dev, rx_ring->size,
Nick Nunley2a1f8792010-04-27 13:10:50 +00003010 &rx_ring->dma, GFP_KERNEL);
Greg Rose92915f72010-01-09 02:24:10 +00003011
Emil Tantilov05d063a2014-01-17 18:29:59 -08003012 if (!rx_ring->desc)
3013 goto err;
Greg Rose92915f72010-01-09 02:24:10 +00003014
Greg Rose92915f72010-01-09 02:24:10 +00003015 return 0;
Emil Tantilov05d063a2014-01-17 18:29:59 -08003016err:
3017 vfree(rx_ring->rx_buffer_info);
3018 rx_ring->rx_buffer_info = NULL;
3019 dev_err(rx_ring->dev, "Unable to allocate memory for the Rx descriptor ring\n");
Greg Rose92915f72010-01-09 02:24:10 +00003020 return -ENOMEM;
3021}
3022
3023/**
3024 * ixgbevf_setup_all_rx_resources - allocate all queues Rx resources
3025 * @adapter: board private structure
3026 *
3027 * If this function returns with an error, then it's possible one or
3028 * more of the rings is populated (while the rest are not). It is the
3029 * callers duty to clean those orphaned rings.
3030 *
3031 * Return 0 on success, negative on failure
3032 **/
3033static int ixgbevf_setup_all_rx_resources(struct ixgbevf_adapter *adapter)
3034{
3035 int i, err = 0;
3036
3037 for (i = 0; i < adapter->num_rx_queues; i++) {
Emil Tantilov05d063a2014-01-17 18:29:59 -08003038 err = ixgbevf_setup_rx_resources(adapter->rx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00003039 if (!err)
3040 continue;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003041 hw_dbg(&adapter->hw, "Allocation for Rx Queue %u failed\n", i);
Greg Rose92915f72010-01-09 02:24:10 +00003042 break;
3043 }
3044 return err;
3045}
3046
3047/**
3048 * ixgbevf_free_rx_resources - Free Rx Resources
Greg Rose92915f72010-01-09 02:24:10 +00003049 * @rx_ring: ring to clean the resources from
3050 *
3051 * Free all receive software resources
3052 **/
Emil Tantilov05d063a2014-01-17 18:29:59 -08003053void ixgbevf_free_rx_resources(struct ixgbevf_ring *rx_ring)
Greg Rose92915f72010-01-09 02:24:10 +00003054{
Emil Tantilov05d063a2014-01-17 18:29:59 -08003055 ixgbevf_clean_rx_ring(rx_ring);
Greg Rose92915f72010-01-09 02:24:10 +00003056
3057 vfree(rx_ring->rx_buffer_info);
3058 rx_ring->rx_buffer_info = NULL;
3059
Emil Tantilov05d063a2014-01-17 18:29:59 -08003060 dma_free_coherent(rx_ring->dev, rx_ring->size, rx_ring->desc,
Nick Nunley2a1f8792010-04-27 13:10:50 +00003061 rx_ring->dma);
Greg Rose92915f72010-01-09 02:24:10 +00003062
3063 rx_ring->desc = NULL;
3064}
3065
3066/**
3067 * ixgbevf_free_all_rx_resources - Free Rx Resources for All Queues
3068 * @adapter: board private structure
3069 *
3070 * Free all receive software resources
3071 **/
3072static void ixgbevf_free_all_rx_resources(struct ixgbevf_adapter *adapter)
3073{
3074 int i;
3075
3076 for (i = 0; i < adapter->num_rx_queues; i++)
Don Skidmore87e70ab2014-01-16 02:30:08 -08003077 if (adapter->rx_ring[i]->desc)
Emil Tantilov05d063a2014-01-17 18:29:59 -08003078 ixgbevf_free_rx_resources(adapter->rx_ring[i]);
Greg Rose92915f72010-01-09 02:24:10 +00003079}
3080
3081/**
3082 * ixgbevf_open - Called when a network interface is made active
3083 * @netdev: network interface device structure
3084 *
3085 * Returns 0 on success, negative value on failure
3086 *
3087 * The open entry point is called when a network interface is made
3088 * active by the system (IFF_UP). At this point all resources needed
3089 * for transmit and receive operations are allocated, the interrupt
3090 * handler is registered with the OS, the watchdog timer is started,
3091 * and the stack is notified that the interface is ready.
3092 **/
3093static int ixgbevf_open(struct net_device *netdev)
3094{
3095 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3096 struct ixgbe_hw *hw = &adapter->hw;
3097 int err;
3098
xunleera1f6c6b2013-03-05 07:44:20 +00003099 /* A previous failure to open the device because of a lack of
3100 * available MSIX vector resources may have reset the number
3101 * of msix vectors variable to zero. The only way to recover
3102 * is to unload/reload the driver and hope that the system has
3103 * been able to recover some MSIX vector resources.
3104 */
3105 if (!adapter->num_msix_vectors)
3106 return -ENOMEM;
3107
Greg Rose92915f72010-01-09 02:24:10 +00003108 if (hw->adapter_stopped) {
3109 ixgbevf_reset(adapter);
3110 /* if adapter is still stopped then PF isn't up and
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003111 * the VF can't start.
3112 */
Greg Rose92915f72010-01-09 02:24:10 +00003113 if (hw->adapter_stopped) {
3114 err = IXGBE_ERR_MBX;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003115 pr_err("Unable to start - perhaps the PF Driver isn't up yet\n");
Greg Rose92915f72010-01-09 02:24:10 +00003116 goto err_setup_reset;
3117 }
3118 }
3119
Emil Tantilovd9bdb572015-01-28 03:21:18 +00003120 /* disallow open during test */
3121 if (test_bit(__IXGBEVF_TESTING, &adapter->state))
3122 return -EBUSY;
3123
3124 netif_carrier_off(netdev);
3125
Greg Rose92915f72010-01-09 02:24:10 +00003126 /* allocate transmit descriptors */
3127 err = ixgbevf_setup_all_tx_resources(adapter);
3128 if (err)
3129 goto err_setup_tx;
3130
3131 /* allocate receive descriptors */
3132 err = ixgbevf_setup_all_rx_resources(adapter);
3133 if (err)
3134 goto err_setup_rx;
3135
3136 ixgbevf_configure(adapter);
3137
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003138 /* Map the Tx/Rx rings to the vectors we were allotted.
Greg Rose92915f72010-01-09 02:24:10 +00003139 * if request_irq will be called in this function map_rings
3140 * must be called *before* up_complete
3141 */
3142 ixgbevf_map_rings_to_vectors(adapter);
3143
Greg Rose92915f72010-01-09 02:24:10 +00003144 err = ixgbevf_request_irq(adapter);
3145 if (err)
3146 goto err_req_irq;
3147
Emil Tantilovd9bdb572015-01-28 03:21:18 +00003148 ixgbevf_up_complete(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00003149
3150 return 0;
3151
3152err_req_irq:
3153 ixgbevf_down(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00003154err_setup_rx:
3155 ixgbevf_free_all_rx_resources(adapter);
3156err_setup_tx:
3157 ixgbevf_free_all_tx_resources(adapter);
3158 ixgbevf_reset(adapter);
3159
3160err_setup_reset:
3161
3162 return err;
3163}
3164
3165/**
3166 * ixgbevf_close - Disables a network interface
3167 * @netdev: network interface device structure
3168 *
3169 * Returns 0, this is not allowed to fail
3170 *
3171 * The close entry point is called when an interface is de-activated
3172 * by the OS. The hardware is still under the drivers control, but
3173 * needs to be disabled. A global MAC reset is issued to stop the
3174 * hardware, and all transmit and receive resources are freed.
3175 **/
3176static int ixgbevf_close(struct net_device *netdev)
3177{
3178 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3179
3180 ixgbevf_down(adapter);
3181 ixgbevf_free_irq(adapter);
3182
3183 ixgbevf_free_all_tx_resources(adapter);
3184 ixgbevf_free_all_rx_resources(adapter);
3185
3186 return 0;
3187}
3188
Don Skidmore220fe052013-09-21 01:40:49 +00003189static void ixgbevf_queue_reset_subtask(struct ixgbevf_adapter *adapter)
3190{
3191 struct net_device *dev = adapter->netdev;
3192
3193 if (!(adapter->flags & IXGBEVF_FLAG_QUEUE_RESET_REQUESTED))
3194 return;
3195
3196 adapter->flags &= ~IXGBEVF_FLAG_QUEUE_RESET_REQUESTED;
3197
3198 /* if interface is down do nothing */
3199 if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
3200 test_bit(__IXGBEVF_RESETTING, &adapter->state))
3201 return;
3202
3203 /* Hardware has to reinitialize queues and interrupts to
3204 * match packet buffer alignment. Unfortunately, the
3205 * hardware is not flexible enough to do this dynamically.
3206 */
3207 if (netif_running(dev))
3208 ixgbevf_close(dev);
3209
3210 ixgbevf_clear_interrupt_scheme(adapter);
3211 ixgbevf_init_interrupt_scheme(adapter);
3212
3213 if (netif_running(dev))
3214 ixgbevf_open(dev);
3215}
3216
Alexander Duyck70a10e22012-05-11 08:33:21 +00003217static void ixgbevf_tx_ctxtdesc(struct ixgbevf_ring *tx_ring,
3218 u32 vlan_macip_lens, u32 type_tucmd,
3219 u32 mss_l4len_idx)
3220{
3221 struct ixgbe_adv_tx_context_desc *context_desc;
3222 u16 i = tx_ring->next_to_use;
3223
3224 context_desc = IXGBEVF_TX_CTXTDESC(tx_ring, i);
3225
3226 i++;
3227 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
3228
3229 /* set bits to identify this as an advanced context descriptor */
3230 type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
3231
3232 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens);
3233 context_desc->seqnum_seed = 0;
3234 context_desc->type_tucmd_mlhl = cpu_to_le32(type_tucmd);
3235 context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx);
3236}
3237
3238static int ixgbevf_tso(struct ixgbevf_ring *tx_ring,
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003239 struct ixgbevf_tx_buffer *first,
3240 u8 *hdr_len)
Greg Rose92915f72010-01-09 02:24:10 +00003241{
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003242 struct sk_buff *skb = first->skb;
Alexander Duyck70a10e22012-05-11 08:33:21 +00003243 u32 vlan_macip_lens, type_tucmd;
Greg Rose92915f72010-01-09 02:24:10 +00003244 u32 mss_l4len_idx, l4len;
Francois Romieu8f12c032014-03-30 03:14:32 +00003245 int err;
Greg Rose92915f72010-01-09 02:24:10 +00003246
Emil Tantilov01a545c2014-02-27 20:32:45 -08003247 if (skb->ip_summed != CHECKSUM_PARTIAL)
3248 return 0;
3249
Alexander Duyck70a10e22012-05-11 08:33:21 +00003250 if (!skb_is_gso(skb))
3251 return 0;
Greg Rose92915f72010-01-09 02:24:10 +00003252
Francois Romieu8f12c032014-03-30 03:14:32 +00003253 err = skb_cow_head(skb, 0);
3254 if (err < 0)
3255 return err;
Greg Rose92915f72010-01-09 02:24:10 +00003256
Alexander Duyck70a10e22012-05-11 08:33:21 +00003257 /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
3258 type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
3259
Toshiaki Makita10e4fb32015-01-29 20:37:10 +09003260 if (first->protocol == htons(ETH_P_IP)) {
Alexander Duyck70a10e22012-05-11 08:33:21 +00003261 struct iphdr *iph = ip_hdr(skb);
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003262
Alexander Duyck70a10e22012-05-11 08:33:21 +00003263 iph->tot_len = 0;
3264 iph->check = 0;
3265 tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
3266 iph->daddr, 0,
3267 IPPROTO_TCP,
3268 0);
3269 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003270 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
3271 IXGBE_TX_FLAGS_CSUM |
3272 IXGBE_TX_FLAGS_IPV4;
Alexander Duyck70a10e22012-05-11 08:33:21 +00003273 } else if (skb_is_gso_v6(skb)) {
3274 ipv6_hdr(skb)->payload_len = 0;
3275 tcp_hdr(skb)->check =
3276 ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
3277 &ipv6_hdr(skb)->daddr,
3278 0, IPPROTO_TCP, 0);
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003279 first->tx_flags |= IXGBE_TX_FLAGS_TSO |
3280 IXGBE_TX_FLAGS_CSUM;
Alexander Duyck70a10e22012-05-11 08:33:21 +00003281 }
3282
3283 /* compute header lengths */
3284 l4len = tcp_hdrlen(skb);
3285 *hdr_len += l4len;
3286 *hdr_len = skb_transport_offset(skb) + l4len;
3287
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003288 /* update GSO size and bytecount with header size */
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003289 first->gso_segs = skb_shinfo(skb)->gso_segs;
3290 first->bytecount += (first->gso_segs - 1) * *hdr_len;
3291
Alexander Duyck70a10e22012-05-11 08:33:21 +00003292 /* mss_l4len_id: use 1 as index for TSO */
3293 mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT;
3294 mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
3295 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
3296
3297 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
3298 vlan_macip_lens = skb_network_header_len(skb);
3299 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003300 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck70a10e22012-05-11 08:33:21 +00003301
3302 ixgbevf_tx_ctxtdesc(tx_ring, vlan_macip_lens,
3303 type_tucmd, mss_l4len_idx);
3304
3305 return 1;
Greg Rose92915f72010-01-09 02:24:10 +00003306}
3307
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003308static void ixgbevf_tx_csum(struct ixgbevf_ring *tx_ring,
3309 struct ixgbevf_tx_buffer *first)
Greg Rose92915f72010-01-09 02:24:10 +00003310{
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003311 struct sk_buff *skb = first->skb;
Alexander Duyck70a10e22012-05-11 08:33:21 +00003312 u32 vlan_macip_lens = 0;
3313 u32 mss_l4len_idx = 0;
3314 u32 type_tucmd = 0;
Greg Rose92915f72010-01-09 02:24:10 +00003315
Alexander Duyck70a10e22012-05-11 08:33:21 +00003316 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3317 u8 l4_hdr = 0;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003318
Toshiaki Makita10e4fb32015-01-29 20:37:10 +09003319 switch (first->protocol) {
Joe Perches0933ce42014-03-13 05:19:30 +00003320 case htons(ETH_P_IP):
Alexander Duyck70a10e22012-05-11 08:33:21 +00003321 vlan_macip_lens |= skb_network_header_len(skb);
3322 type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
3323 l4_hdr = ip_hdr(skb)->protocol;
3324 break;
Joe Perches0933ce42014-03-13 05:19:30 +00003325 case htons(ETH_P_IPV6):
Alexander Duyck70a10e22012-05-11 08:33:21 +00003326 vlan_macip_lens |= skb_network_header_len(skb);
3327 l4_hdr = ipv6_hdr(skb)->nexthdr;
3328 break;
3329 default:
3330 if (unlikely(net_ratelimit())) {
3331 dev_warn(tx_ring->dev,
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003332 "partial checksum but proto=%x!\n",
3333 first->protocol);
Greg Rose92915f72010-01-09 02:24:10 +00003334 }
Alexander Duyck70a10e22012-05-11 08:33:21 +00003335 break;
Greg Rose92915f72010-01-09 02:24:10 +00003336 }
3337
Alexander Duyck70a10e22012-05-11 08:33:21 +00003338 switch (l4_hdr) {
3339 case IPPROTO_TCP:
3340 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP;
3341 mss_l4len_idx = tcp_hdrlen(skb) <<
3342 IXGBE_ADVTXD_L4LEN_SHIFT;
3343 break;
3344 case IPPROTO_SCTP:
3345 type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP;
3346 mss_l4len_idx = sizeof(struct sctphdr) <<
3347 IXGBE_ADVTXD_L4LEN_SHIFT;
3348 break;
3349 case IPPROTO_UDP:
3350 mss_l4len_idx = sizeof(struct udphdr) <<
3351 IXGBE_ADVTXD_L4LEN_SHIFT;
3352 break;
3353 default:
3354 if (unlikely(net_ratelimit())) {
3355 dev_warn(tx_ring->dev,
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003356 "partial checksum but l4 proto=%x!\n",
3357 l4_hdr);
Alexander Duyck70a10e22012-05-11 08:33:21 +00003358 }
3359 break;
3360 }
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003361
3362 /* update TX checksum flag */
3363 first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
Greg Rose92915f72010-01-09 02:24:10 +00003364 }
3365
Alexander Duyck70a10e22012-05-11 08:33:21 +00003366 /* vlan_macip_lens: MACLEN, VLAN tag */
3367 vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003368 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Alexander Duyck70a10e22012-05-11 08:33:21 +00003369
3370 ixgbevf_tx_ctxtdesc(tx_ring, vlan_macip_lens,
3371 type_tucmd, mss_l4len_idx);
Greg Rose92915f72010-01-09 02:24:10 +00003372}
3373
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003374static __le32 ixgbevf_tx_cmd_type(u32 tx_flags)
3375{
3376 /* set type for advanced descriptor with frame checksum insertion */
3377 __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
3378 IXGBE_ADVTXD_DCMD_IFCS |
3379 IXGBE_ADVTXD_DCMD_DEXT);
3380
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003381 /* set HW VLAN bit if VLAN is present */
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003382 if (tx_flags & IXGBE_TX_FLAGS_VLAN)
3383 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
3384
3385 /* set segmentation enable bits for TSO/FSO */
3386 if (tx_flags & IXGBE_TX_FLAGS_TSO)
3387 cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
3388
3389 return cmd_type;
3390}
3391
3392static void ixgbevf_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
3393 u32 tx_flags, unsigned int paylen)
3394{
3395 __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
3396
3397 /* enable L4 checksum for TSO and TX checksum offload */
3398 if (tx_flags & IXGBE_TX_FLAGS_CSUM)
3399 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
3400
3401 /* enble IPv4 checksum for TSO */
3402 if (tx_flags & IXGBE_TX_FLAGS_IPV4)
3403 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
3404
3405 /* use index 1 context for TSO/FSO/FCOE */
3406 if (tx_flags & IXGBE_TX_FLAGS_TSO)
3407 olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT);
3408
3409 /* Check Context must be set if Tx switch is enabled, which it
3410 * always is for case where virtual functions are running
3411 */
3412 olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
3413
3414 tx_desc->read.olinfo_status = olinfo_status;
3415}
3416
3417static void ixgbevf_tx_map(struct ixgbevf_ring *tx_ring,
3418 struct ixgbevf_tx_buffer *first,
3419 const u8 hdr_len)
Greg Rose92915f72010-01-09 02:24:10 +00003420{
Emil Tantilov9bdfefd2014-01-17 18:30:04 -08003421 dma_addr_t dma;
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003422 struct sk_buff *skb = first->skb;
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003423 struct ixgbevf_tx_buffer *tx_buffer;
3424 union ixgbe_adv_tx_desc *tx_desc;
3425 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
3426 unsigned int data_len = skb->data_len;
3427 unsigned int size = skb_headlen(skb);
3428 unsigned int paylen = skb->len - hdr_len;
3429 u32 tx_flags = first->tx_flags;
3430 __le32 cmd_type;
3431 u16 i = tx_ring->next_to_use;
Greg Rose92915f72010-01-09 02:24:10 +00003432
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003433 tx_desc = IXGBEVF_TX_DESC(tx_ring, i);
Greg Rose92915f72010-01-09 02:24:10 +00003434
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003435 ixgbevf_tx_olinfo_status(tx_desc, tx_flags, paylen);
3436 cmd_type = ixgbevf_tx_cmd_type(tx_flags);
Greg Rose92915f72010-01-09 02:24:10 +00003437
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003438 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
3439 if (dma_mapping_error(tx_ring->dev, dma))
3440 goto dma_error;
3441
3442 /* record length, and DMA address */
3443 dma_unmap_len_set(first, len, size);
3444 dma_unmap_addr_set(first, dma, dma);
3445
3446 tx_desc->read.buffer_addr = cpu_to_le64(dma);
3447
3448 for (;;) {
3449 while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
3450 tx_desc->read.cmd_type_len =
3451 cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
3452
3453 i++;
3454 tx_desc++;
3455 if (i == tx_ring->count) {
3456 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
3457 i = 0;
3458 }
3459
3460 dma += IXGBE_MAX_DATA_PER_TXD;
3461 size -= IXGBE_MAX_DATA_PER_TXD;
3462
3463 tx_desc->read.buffer_addr = cpu_to_le64(dma);
3464 tx_desc->read.olinfo_status = 0;
3465 }
3466
3467 if (likely(!data_len))
3468 break;
3469
3470 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
3471
3472 i++;
3473 tx_desc++;
3474 if (i == tx_ring->count) {
3475 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
3476 i = 0;
3477 }
3478
3479 size = skb_frag_size(frag);
3480 data_len -= size;
3481
3482 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
3483 DMA_TO_DEVICE);
Emil Tantilov9bdfefd2014-01-17 18:30:04 -08003484 if (dma_mapping_error(tx_ring->dev, dma))
Greg Rose92915f72010-01-09 02:24:10 +00003485 goto dma_error;
Greg Rose92915f72010-01-09 02:24:10 +00003486
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003487 tx_buffer = &tx_ring->tx_buffer_info[i];
3488 dma_unmap_len_set(tx_buffer, len, size);
3489 dma_unmap_addr_set(tx_buffer, dma, dma);
Emil Tantilov9bdfefd2014-01-17 18:30:04 -08003490
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003491 tx_desc->read.buffer_addr = cpu_to_le64(dma);
3492 tx_desc->read.olinfo_status = 0;
3493
3494 frag++;
Greg Rose92915f72010-01-09 02:24:10 +00003495 }
3496
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003497 /* write last descriptor with RS and EOP bits */
3498 cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
3499 tx_desc->read.cmd_type_len = cmd_type;
Greg Rose92915f72010-01-09 02:24:10 +00003500
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003501 /* set the timestamp */
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003502 first->time_stamp = jiffies;
Greg Rose92915f72010-01-09 02:24:10 +00003503
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003504 /* Force memory writes to complete before letting h/w know there
3505 * are new descriptors to fetch. (Only applicable for weak-ordered
3506 * memory model archs, such as IA-64).
3507 *
3508 * We also need this memory barrier (wmb) to make certain all of the
3509 * status bits have been updated before next_to_watch is written.
3510 */
3511 wmb();
Greg Rose92915f72010-01-09 02:24:10 +00003512
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003513 /* set next_to_watch value indicating a packet is present */
3514 first->next_to_watch = tx_desc;
3515
3516 i++;
3517 if (i == tx_ring->count)
3518 i = 0;
3519
3520 tx_ring->next_to_use = i;
3521
3522 /* notify HW of packet */
Mark Rustad06380db2014-03-04 03:02:23 +00003523 ixgbevf_write_tail(tx_ring, i);
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003524
3525 return;
Greg Rose92915f72010-01-09 02:24:10 +00003526dma_error:
Alexander Duyck70a10e22012-05-11 08:33:21 +00003527 dev_err(tx_ring->dev, "TX DMA map failed\n");
Greg Rose92915f72010-01-09 02:24:10 +00003528
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003529 /* clear dma mappings for failed tx_buffer_info map */
3530 for (;;) {
3531 tx_buffer = &tx_ring->tx_buffer_info[i];
3532 ixgbevf_unmap_and_free_tx_resource(tx_ring, tx_buffer);
3533 if (tx_buffer == first)
3534 break;
3535 if (i == 0)
3536 i = tx_ring->count;
Greg Rose92915f72010-01-09 02:24:10 +00003537 i--;
Greg Rose92915f72010-01-09 02:24:10 +00003538 }
3539
Greg Rose92915f72010-01-09 02:24:10 +00003540 tx_ring->next_to_use = i;
Greg Rose92915f72010-01-09 02:24:10 +00003541}
3542
Alexander Duyckfb401952012-05-11 08:33:16 +00003543static int __ixgbevf_maybe_stop_tx(struct ixgbevf_ring *tx_ring, int size)
Greg Rose92915f72010-01-09 02:24:10 +00003544{
Alexander Duyckfb401952012-05-11 08:33:16 +00003545 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Greg Rose92915f72010-01-09 02:24:10 +00003546 /* Herbert's original patch had:
3547 * smp_mb__after_netif_stop_queue();
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003548 * but since that doesn't exist yet, just open code it.
3549 */
Greg Rose92915f72010-01-09 02:24:10 +00003550 smp_mb();
3551
3552 /* We need to check again in a case another CPU has just
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003553 * made room available.
3554 */
Don Skidmoref880d072013-10-23 02:17:52 +00003555 if (likely(ixgbevf_desc_unused(tx_ring) < size))
Greg Rose92915f72010-01-09 02:24:10 +00003556 return -EBUSY;
3557
3558 /* A reprieve! - use start_queue because it doesn't call schedule */
Alexander Duyckfb401952012-05-11 08:33:16 +00003559 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
Emil Tantilov095e2612014-01-17 18:30:00 -08003560 ++tx_ring->tx_stats.restart_queue;
3561
Greg Rose92915f72010-01-09 02:24:10 +00003562 return 0;
3563}
3564
Alexander Duyckfb401952012-05-11 08:33:16 +00003565static int ixgbevf_maybe_stop_tx(struct ixgbevf_ring *tx_ring, int size)
Greg Rose92915f72010-01-09 02:24:10 +00003566{
Don Skidmoref880d072013-10-23 02:17:52 +00003567 if (likely(ixgbevf_desc_unused(tx_ring) >= size))
Greg Rose92915f72010-01-09 02:24:10 +00003568 return 0;
Alexander Duyckfb401952012-05-11 08:33:16 +00003569 return __ixgbevf_maybe_stop_tx(tx_ring, size);
Greg Rose92915f72010-01-09 02:24:10 +00003570}
3571
3572static int ixgbevf_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
3573{
3574 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003575 struct ixgbevf_tx_buffer *first;
Greg Rose92915f72010-01-09 02:24:10 +00003576 struct ixgbevf_ring *tx_ring;
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003577 int tso;
3578 u32 tx_flags = 0;
Alexander Duyck35959902012-05-11 08:32:40 +00003579 u16 count = TXD_USE_COUNT(skb_headlen(skb));
3580#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
3581 unsigned short f;
3582#endif
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003583 u8 hdr_len = 0;
Greg Rosef9d08f162012-10-02 00:50:52 +00003584 u8 *dst_mac = skb_header_pointer(skb, 0, 0, NULL);
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003585
Ben Hutchings46acc462012-11-01 09:11:11 +00003586 if (!dst_mac || is_link_local_ether_addr(dst_mac)) {
Alexander Duycke7fcd542015-05-01 10:34:50 -07003587 dev_kfree_skb_any(skb);
Greg Rosef9d08f162012-10-02 00:50:52 +00003588 return NETDEV_TX_OK;
3589 }
Greg Rose92915f72010-01-09 02:24:10 +00003590
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003591 tx_ring = adapter->tx_ring[skb->queue_mapping];
Greg Rose92915f72010-01-09 02:24:10 +00003592
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003593 /* need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
Alexander Duyck35959902012-05-11 08:32:40 +00003594 * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
3595 * + 2 desc gap to keep tail from touching head,
3596 * + 1 desc for context descriptor,
3597 * otherwise try next time
3598 */
3599#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
3600 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
3601 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
3602#else
3603 count += skb_shinfo(skb)->nr_frags;
3604#endif
Alexander Duyckfb401952012-05-11 08:33:16 +00003605 if (ixgbevf_maybe_stop_tx(tx_ring, count + 3)) {
Emil Tantilov095e2612014-01-17 18:30:00 -08003606 tx_ring->tx_stats.tx_busy++;
Alexander Duyck35959902012-05-11 08:32:40 +00003607 return NETDEV_TX_BUSY;
3608 }
3609
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003610 /* record the location of the first descriptor for this packet */
3611 first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
3612 first->skb = skb;
3613 first->bytecount = skb->len;
3614 first->gso_segs = 1;
3615
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003616 if (skb_vlan_tag_present(skb)) {
3617 tx_flags |= skb_vlan_tag_get(skb);
Greg Rose92915f72010-01-09 02:24:10 +00003618 tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
3619 tx_flags |= IXGBE_TX_FLAGS_VLAN;
3620 }
3621
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003622 /* record initial flags and protocol */
3623 first->tx_flags = tx_flags;
3624 first->protocol = vlan_get_protocol(skb);
Greg Rose92915f72010-01-09 02:24:10 +00003625
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003626 tso = ixgbevf_tso(tx_ring, first, &hdr_len);
3627 if (tso < 0)
3628 goto out_drop;
Emil Tantilovb5d217f2014-02-27 20:32:44 -08003629 else if (!tso)
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003630 ixgbevf_tx_csum(tx_ring, first);
Greg Rose92915f72010-01-09 02:24:10 +00003631
Emil Tantilov29d37fa2014-01-17 18:30:05 -08003632 ixgbevf_tx_map(tx_ring, first, hdr_len);
Greg Rose92915f72010-01-09 02:24:10 +00003633
Alexander Duyckfb401952012-05-11 08:33:16 +00003634 ixgbevf_maybe_stop_tx(tx_ring, DESC_NEEDED);
Greg Rose92915f72010-01-09 02:24:10 +00003635
3636 return NETDEV_TX_OK;
Emil Tantilov7ad1a092014-01-17 18:30:03 -08003637
3638out_drop:
3639 dev_kfree_skb_any(first->skb);
3640 first->skb = NULL;
3641
3642 return NETDEV_TX_OK;
Greg Rose92915f72010-01-09 02:24:10 +00003643}
3644
3645/**
Greg Rose92915f72010-01-09 02:24:10 +00003646 * ixgbevf_set_mac - Change the Ethernet Address of the NIC
3647 * @netdev: network interface device structure
3648 * @p: pointer to an address structure
3649 *
3650 * Returns 0 on success, negative on failure
3651 **/
3652static int ixgbevf_set_mac(struct net_device *netdev, void *p)
3653{
3654 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3655 struct ixgbe_hw *hw = &adapter->hw;
3656 struct sockaddr *addr = p;
3657
3658 if (!is_valid_ether_addr(addr->sa_data))
3659 return -EADDRNOTAVAIL;
3660
3661 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
3662 memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len);
3663
John Fastabend55fdd45b2012-10-01 14:52:20 +00003664 spin_lock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00003665
Greg Rose92fe0bf2012-11-02 05:50:47 +00003666 hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0);
Greg Rose92915f72010-01-09 02:24:10 +00003667
John Fastabend55fdd45b2012-10-01 14:52:20 +00003668 spin_unlock_bh(&adapter->mbx_lock);
Alexander Duyck1c55ed72012-05-11 08:33:06 +00003669
Greg Rose92915f72010-01-09 02:24:10 +00003670 return 0;
3671}
3672
3673/**
3674 * ixgbevf_change_mtu - Change the Maximum Transfer Unit
3675 * @netdev: network interface device structure
3676 * @new_mtu: new value for maximum frame size
3677 *
3678 * Returns 0 on success, negative on failure
3679 **/
3680static int ixgbevf_change_mtu(struct net_device *netdev, int new_mtu)
3681{
3682 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
Emil Tantilovbad17232014-11-21 02:57:15 +00003683 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose92915f72010-01-09 02:24:10 +00003684 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
Greg Rose69bfbec2011-01-26 01:06:12 +00003685 int max_possible_frame = MAXIMUM_ETHERNET_VLAN_SIZE;
Greg Rose69bfbec2011-01-26 01:06:12 +00003686
Alexander Duyck56e94092012-07-20 08:10:03 +00003687 switch (adapter->hw.api_version) {
3688 case ixgbe_mbox_api_11:
Vlad Zolotarov94cf66f2015-03-30 21:35:26 +03003689 case ixgbe_mbox_api_12:
Greg Rose69bfbec2011-01-26 01:06:12 +00003690 max_possible_frame = IXGBE_MAX_JUMBO_FRAME_SIZE;
Alexander Duyck56e94092012-07-20 08:10:03 +00003691 break;
3692 default:
Emil Tantilov47068b02014-11-22 07:59:56 +00003693 if (adapter->hw.mac.type != ixgbe_mac_82599_vf)
Alexander Duyck56e94092012-07-20 08:10:03 +00003694 max_possible_frame = IXGBE_MAX_JUMBO_FRAME_SIZE;
3695 break;
3696 }
Greg Rose92915f72010-01-09 02:24:10 +00003697
3698 /* MTU < 68 is an error and causes problems on some kernels */
Greg Rose69bfbec2011-01-26 01:06:12 +00003699 if ((new_mtu < 68) || (max_frame > max_possible_frame))
Greg Rose92915f72010-01-09 02:24:10 +00003700 return -EINVAL;
3701
Emil Tantilovbad17232014-11-21 02:57:15 +00003702 hw_dbg(hw, "changing MTU from %d to %d\n",
Greg Rose92915f72010-01-09 02:24:10 +00003703 netdev->mtu, new_mtu);
3704 /* must set new MTU before calling down or up */
3705 netdev->mtu = new_mtu;
3706
Emil Tantilovbad17232014-11-21 02:57:15 +00003707 /* notify the PF of our intent to use this size of frame */
3708 ixgbevf_rlpml_set_vf(hw, max_frame);
Greg Rose92915f72010-01-09 02:24:10 +00003709
3710 return 0;
3711}
3712
Emil Tantilov688ff322014-11-08 01:39:56 +00003713#ifdef CONFIG_NET_POLL_CONTROLLER
3714/* Polling 'interrupt' - used by things like netconsole to send skbs
3715 * without having to re-enable interrupts. It's not called while
3716 * the interrupt routine is executing.
3717 */
3718static void ixgbevf_netpoll(struct net_device *netdev)
3719{
3720 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3721 int i;
3722
3723 /* if interface is down do nothing */
3724 if (test_bit(__IXGBEVF_DOWN, &adapter->state))
3725 return;
3726 for (i = 0; i < adapter->num_rx_queues; i++)
3727 ixgbevf_msix_clean_rings(0, adapter->q_vector[i]);
3728}
3729#endif /* CONFIG_NET_POLL_CONTROLLER */
3730
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003731static int ixgbevf_suspend(struct pci_dev *pdev, pm_message_t state)
Greg Rose92915f72010-01-09 02:24:10 +00003732{
3733 struct net_device *netdev = pci_get_drvdata(pdev);
3734 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003735#ifdef CONFIG_PM
3736 int retval = 0;
3737#endif
Greg Rose92915f72010-01-09 02:24:10 +00003738
3739 netif_device_detach(netdev);
3740
3741 if (netif_running(netdev)) {
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003742 rtnl_lock();
Greg Rose92915f72010-01-09 02:24:10 +00003743 ixgbevf_down(adapter);
3744 ixgbevf_free_irq(adapter);
3745 ixgbevf_free_all_tx_resources(adapter);
3746 ixgbevf_free_all_rx_resources(adapter);
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003747 rtnl_unlock();
Greg Rose92915f72010-01-09 02:24:10 +00003748 }
3749
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003750 ixgbevf_clear_interrupt_scheme(adapter);
3751
3752#ifdef CONFIG_PM
3753 retval = pci_save_state(pdev);
3754 if (retval)
3755 return retval;
3756
3757#endif
Mark Rustadbc0c7152014-03-12 00:38:45 +00003758 if (!test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state))
3759 pci_disable_device(pdev);
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003760
3761 return 0;
3762}
3763
3764#ifdef CONFIG_PM
3765static int ixgbevf_resume(struct pci_dev *pdev)
3766{
Wei Yongjun27ae2962014-01-16 02:30:07 -08003767 struct net_device *netdev = pci_get_drvdata(pdev);
3768 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003769 u32 err;
3770
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003771 pci_restore_state(pdev);
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003772 /* pci_restore_state clears dev->state_saved so call
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003773 * pci_save_state to restore it.
3774 */
Greg Rose92915f72010-01-09 02:24:10 +00003775 pci_save_state(pdev);
Greg Rose92915f72010-01-09 02:24:10 +00003776
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003777 err = pci_enable_device_mem(pdev);
3778 if (err) {
3779 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
3780 return err;
3781 }
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003782 smp_mb__before_atomic();
Mark Rustadbc0c7152014-03-12 00:38:45 +00003783 clear_bit(__IXGBEVF_DISABLED, &adapter->state);
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003784 pci_set_master(pdev);
3785
Don Skidmore798e3812013-10-01 04:33:51 -07003786 ixgbevf_reset(adapter);
3787
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003788 rtnl_lock();
3789 err = ixgbevf_init_interrupt_scheme(adapter);
3790 rtnl_unlock();
3791 if (err) {
3792 dev_err(&pdev->dev, "Cannot initialize interrupts\n");
3793 return err;
3794 }
3795
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003796 if (netif_running(netdev)) {
3797 err = ixgbevf_open(netdev);
3798 if (err)
3799 return err;
3800 }
3801
3802 netif_device_attach(netdev);
3803
3804 return err;
3805}
3806
3807#endif /* CONFIG_PM */
3808static void ixgbevf_shutdown(struct pci_dev *pdev)
3809{
3810 ixgbevf_suspend(pdev, PMSG_SUSPEND);
Greg Rose92915f72010-01-09 02:24:10 +00003811}
3812
Eric Dumazet4197aa72011-06-22 05:01:35 +00003813static struct rtnl_link_stats64 *ixgbevf_get_stats(struct net_device *netdev,
3814 struct rtnl_link_stats64 *stats)
3815{
3816 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3817 unsigned int start;
3818 u64 bytes, packets;
3819 const struct ixgbevf_ring *ring;
3820 int i;
3821
3822 ixgbevf_update_stats(adapter);
3823
3824 stats->multicast = adapter->stats.vfmprc - adapter->stats.base_vfmprc;
3825
3826 for (i = 0; i < adapter->num_rx_queues; i++) {
Don Skidmore87e70ab2014-01-16 02:30:08 -08003827 ring = adapter->rx_ring[i];
Eric Dumazet4197aa72011-06-22 05:01:35 +00003828 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07003829 start = u64_stats_fetch_begin_irq(&ring->syncp);
Emil Tantilov095e2612014-01-17 18:30:00 -08003830 bytes = ring->stats.bytes;
3831 packets = ring->stats.packets;
Eric W. Biederman57a77442014-03-13 21:26:42 -07003832 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet4197aa72011-06-22 05:01:35 +00003833 stats->rx_bytes += bytes;
3834 stats->rx_packets += packets;
3835 }
3836
3837 for (i = 0; i < adapter->num_tx_queues; i++) {
Don Skidmore87e70ab2014-01-16 02:30:08 -08003838 ring = adapter->tx_ring[i];
Eric Dumazet4197aa72011-06-22 05:01:35 +00003839 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07003840 start = u64_stats_fetch_begin_irq(&ring->syncp);
Emil Tantilov095e2612014-01-17 18:30:00 -08003841 bytes = ring->stats.bytes;
3842 packets = ring->stats.packets;
Eric W. Biederman57a77442014-03-13 21:26:42 -07003843 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazet4197aa72011-06-22 05:01:35 +00003844 stats->tx_bytes += bytes;
3845 stats->tx_packets += packets;
3846 }
3847
3848 return stats;
3849}
3850
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003851static const struct net_device_ops ixgbevf_netdev_ops = {
Stephen Hemmingerc12db762011-06-09 02:58:39 +00003852 .ndo_open = ixgbevf_open,
3853 .ndo_stop = ixgbevf_close,
3854 .ndo_start_xmit = ixgbevf_xmit_frame,
3855 .ndo_set_rx_mode = ixgbevf_set_rx_mode,
Eric Dumazet4197aa72011-06-22 05:01:35 +00003856 .ndo_get_stats64 = ixgbevf_get_stats,
Greg Rose92915f72010-01-09 02:24:10 +00003857 .ndo_validate_addr = eth_validate_addr,
Stephen Hemmingerc12db762011-06-09 02:58:39 +00003858 .ndo_set_mac_address = ixgbevf_set_mac,
3859 .ndo_change_mtu = ixgbevf_change_mtu,
3860 .ndo_tx_timeout = ixgbevf_tx_timeout,
Stephen Hemmingerc12db762011-06-09 02:58:39 +00003861 .ndo_vlan_rx_add_vid = ixgbevf_vlan_rx_add_vid,
3862 .ndo_vlan_rx_kill_vid = ixgbevf_vlan_rx_kill_vid,
Jacob Kellerc777cdf2013-09-21 06:24:20 +00003863#ifdef CONFIG_NET_RX_BUSY_POLL
3864 .ndo_busy_poll = ixgbevf_busy_poll_recv,
3865#endif
Emil Tantilov688ff322014-11-08 01:39:56 +00003866#ifdef CONFIG_NET_POLL_CONTROLLER
3867 .ndo_poll_controller = ixgbevf_netpoll,
3868#endif
Greg Rose92915f72010-01-09 02:24:10 +00003869};
Greg Rose92915f72010-01-09 02:24:10 +00003870
3871static void ixgbevf_assign_netdev_ops(struct net_device *dev)
3872{
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00003873 dev->netdev_ops = &ixgbevf_netdev_ops;
Greg Rose92915f72010-01-09 02:24:10 +00003874 ixgbevf_set_ethtool_ops(dev);
3875 dev->watchdog_timeo = 5 * HZ;
3876}
3877
3878/**
3879 * ixgbevf_probe - Device Initialization Routine
3880 * @pdev: PCI device information struct
3881 * @ent: entry in ixgbevf_pci_tbl
3882 *
3883 * Returns 0 on success, negative on failure
3884 *
3885 * ixgbevf_probe initializes an adapter identified by a pci_dev structure.
3886 * The OS initialization, configuring of the adapter private structure,
3887 * and a hardware reset occur.
3888 **/
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003889static int ixgbevf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
Greg Rose92915f72010-01-09 02:24:10 +00003890{
3891 struct net_device *netdev;
3892 struct ixgbevf_adapter *adapter = NULL;
3893 struct ixgbe_hw *hw = NULL;
3894 const struct ixgbevf_info *ii = ixgbevf_info_tbl[ent->driver_data];
Greg Rose92915f72010-01-09 02:24:10 +00003895 int err, pci_using_dac;
Emil Tantilov03334642014-12-05 04:32:44 +00003896 bool disable_dev = false;
Greg Rose92915f72010-01-09 02:24:10 +00003897
3898 err = pci_enable_device(pdev);
3899 if (err)
3900 return err;
3901
Russell King53567aa2013-06-10 12:49:38 +01003902 if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
Greg Rose92915f72010-01-09 02:24:10 +00003903 pci_using_dac = 1;
3904 } else {
Russell King53567aa2013-06-10 12:49:38 +01003905 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Greg Rose92915f72010-01-09 02:24:10 +00003906 if (err) {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003907 dev_err(&pdev->dev, "No usable DMA configuration, aborting\n");
Russell King53567aa2013-06-10 12:49:38 +01003908 goto err_dma;
Greg Rose92915f72010-01-09 02:24:10 +00003909 }
3910 pci_using_dac = 0;
3911 }
3912
3913 err = pci_request_regions(pdev, ixgbevf_driver_name);
3914 if (err) {
3915 dev_err(&pdev->dev, "pci_request_regions failed 0x%x\n", err);
3916 goto err_pci_reg;
3917 }
3918
3919 pci_set_master(pdev);
3920
Greg Rose92915f72010-01-09 02:24:10 +00003921 netdev = alloc_etherdev_mq(sizeof(struct ixgbevf_adapter),
3922 MAX_TX_QUEUES);
Greg Rose92915f72010-01-09 02:24:10 +00003923 if (!netdev) {
3924 err = -ENOMEM;
3925 goto err_alloc_etherdev;
3926 }
3927
3928 SET_NETDEV_DEV(netdev, &pdev->dev);
3929
Greg Rose92915f72010-01-09 02:24:10 +00003930 adapter = netdev_priv(netdev);
3931
3932 adapter->netdev = netdev;
3933 adapter->pdev = pdev;
3934 hw = &adapter->hw;
3935 hw->back = adapter;
stephen hemmingerb3f4d592012-03-13 06:04:20 +00003936 adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
Greg Rose92915f72010-01-09 02:24:10 +00003937
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003938 /* call save state here in standalone driver because it relies on
Greg Rose92915f72010-01-09 02:24:10 +00003939 * adapter struct to exist, and needs to call netdev_priv
3940 */
3941 pci_save_state(pdev);
3942
3943 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
3944 pci_resource_len(pdev, 0));
Mark Rustaddbf8b0d2014-03-04 03:02:34 +00003945 adapter->io_addr = hw->hw_addr;
Greg Rose92915f72010-01-09 02:24:10 +00003946 if (!hw->hw_addr) {
3947 err = -EIO;
3948 goto err_ioremap;
3949 }
3950
3951 ixgbevf_assign_netdev_ops(netdev);
3952
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003953 /* Setup HW API */
Greg Rose92915f72010-01-09 02:24:10 +00003954 memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
3955 hw->mac.type = ii->mac;
3956
3957 memcpy(&hw->mbx.ops, &ixgbevf_mbx_ops,
Greg Rosef416dfc2011-06-08 07:32:38 +00003958 sizeof(struct ixgbe_mbx_operations));
Greg Rose92915f72010-01-09 02:24:10 +00003959
Greg Rose92915f72010-01-09 02:24:10 +00003960 /* setup the private structure */
3961 err = ixgbevf_sw_init(adapter);
Danny Kukawka1a0d6ae2012-02-09 09:48:54 +00003962 if (err)
3963 goto err_sw_init;
3964
3965 /* The HW MAC address was set and/or determined in sw_init */
Danny Kukawka1a0d6ae2012-02-09 09:48:54 +00003966 if (!is_valid_ether_addr(netdev->dev_addr)) {
3967 pr_err("invalid MAC address\n");
3968 err = -EIO;
3969 goto err_sw_init;
3970 }
Greg Rose92915f72010-01-09 02:24:10 +00003971
Michał Mirosław471a76d2011-06-08 08:53:03 +00003972 netdev->hw_features = NETIF_F_SG |
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00003973 NETIF_F_IP_CSUM |
3974 NETIF_F_IPV6_CSUM |
3975 NETIF_F_TSO |
3976 NETIF_F_TSO6 |
3977 NETIF_F_RXCSUM;
Michał Mirosław471a76d2011-06-08 08:53:03 +00003978
3979 netdev->features = netdev->hw_features |
Patrick McHardyf6469682013-04-19 02:04:27 +00003980 NETIF_F_HW_VLAN_CTAG_TX |
3981 NETIF_F_HW_VLAN_CTAG_RX |
3982 NETIF_F_HW_VLAN_CTAG_FILTER;
Greg Rose92915f72010-01-09 02:24:10 +00003983
Emil Tantilov39f35a32015-01-28 03:21:13 +00003984 netdev->vlan_features |= NETIF_F_TSO |
3985 NETIF_F_TSO6 |
3986 NETIF_F_IP_CSUM |
3987 NETIF_F_IPV6_CSUM |
3988 NETIF_F_SG;
Greg Rose92915f72010-01-09 02:24:10 +00003989
3990 if (pci_using_dac)
3991 netdev->features |= NETIF_F_HIGHDMA;
3992
Jiri Pirko01789342011-08-16 06:29:00 +00003993 netdev->priv_flags |= IFF_UNICAST_FLT;
3994
Mark Rustadea699562014-03-12 00:38:51 +00003995 if (IXGBE_REMOVED(hw->hw_addr)) {
3996 err = -EIO;
3997 goto err_sw_init;
3998 }
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00003999
4000 setup_timer(&adapter->service_timer, &ixgbevf_service_timer,
4001 (unsigned long)adapter);
4002
4003 INIT_WORK(&adapter->service_task, ixgbevf_service_task);
4004 set_bit(__IXGBEVF_SERVICE_INITED, &adapter->state);
4005 clear_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state);
Greg Rose92915f72010-01-09 02:24:10 +00004006
4007 err = ixgbevf_init_interrupt_scheme(adapter);
4008 if (err)
4009 goto err_sw_init;
4010
Greg Rose92915f72010-01-09 02:24:10 +00004011 strcpy(netdev->name, "eth%d");
4012
4013 err = register_netdev(netdev);
4014 if (err)
4015 goto err_register;
4016
Emil Tantilov03334642014-12-05 04:32:44 +00004017 pci_set_drvdata(pdev, netdev);
Greg Rose5d426ad2010-11-16 19:27:19 -08004018 netif_carrier_off(netdev);
4019
Greg Rose33bd9f62010-03-19 02:59:52 +00004020 ixgbevf_init_last_counter_stats(adapter);
4021
Emil Tantilov47068b02014-11-22 07:59:56 +00004022 /* print the VF info */
4023 dev_info(&pdev->dev, "%pM\n", netdev->dev_addr);
4024 dev_info(&pdev->dev, "MAC: %d\n", hw->mac.type);
Greg Rose92915f72010-01-09 02:24:10 +00004025
Emil Tantilov47068b02014-11-22 07:59:56 +00004026 switch (hw->mac.type) {
4027 case ixgbe_mac_X550_vf:
4028 dev_info(&pdev->dev, "Intel(R) X550 Virtual Function\n");
4029 break;
4030 case ixgbe_mac_X540_vf:
4031 dev_info(&pdev->dev, "Intel(R) X540 Virtual Function\n");
4032 break;
4033 case ixgbe_mac_82599_vf:
4034 default:
4035 dev_info(&pdev->dev, "Intel(R) 82599 Virtual Function\n");
4036 break;
4037 }
Greg Rose92915f72010-01-09 02:24:10 +00004038
Greg Rose92915f72010-01-09 02:24:10 +00004039 return 0;
4040
4041err_register:
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00004042 ixgbevf_clear_interrupt_scheme(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00004043err_sw_init:
4044 ixgbevf_reset_interrupt_capability(adapter);
Mark Rustaddbf8b0d2014-03-04 03:02:34 +00004045 iounmap(adapter->io_addr);
Greg Rose92915f72010-01-09 02:24:10 +00004046err_ioremap:
Emil Tantilov03334642014-12-05 04:32:44 +00004047 disable_dev = !test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state);
Greg Rose92915f72010-01-09 02:24:10 +00004048 free_netdev(netdev);
4049err_alloc_etherdev:
4050 pci_release_regions(pdev);
4051err_pci_reg:
4052err_dma:
Emil Tantilov03334642014-12-05 04:32:44 +00004053 if (!adapter || disable_dev)
Mark Rustadbc0c7152014-03-12 00:38:45 +00004054 pci_disable_device(pdev);
Greg Rose92915f72010-01-09 02:24:10 +00004055 return err;
4056}
4057
4058/**
4059 * ixgbevf_remove - Device Removal Routine
4060 * @pdev: PCI device information struct
4061 *
4062 * ixgbevf_remove is called by the PCI subsystem to alert the driver
4063 * that it should release a PCI device. The could be caused by a
4064 * Hot-Plug event, or because the driver is going to be removed from
4065 * memory.
4066 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -05004067static void ixgbevf_remove(struct pci_dev *pdev)
Greg Rose92915f72010-01-09 02:24:10 +00004068{
4069 struct net_device *netdev = pci_get_drvdata(pdev);
Emil Tantilov03334642014-12-05 04:32:44 +00004070 struct ixgbevf_adapter *adapter;
4071 bool disable_dev;
4072
4073 if (!netdev)
4074 return;
4075
4076 adapter = netdev_priv(netdev);
Greg Rose92915f72010-01-09 02:24:10 +00004077
Mark Rustad2e7cfbd2014-03-04 03:02:13 +00004078 set_bit(__IXGBEVF_REMOVING, &adapter->state);
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00004079 cancel_work_sync(&adapter->service_task);
Greg Rose92915f72010-01-09 02:24:10 +00004080
Alexander Duyckfd13a9a2012-05-11 08:32:24 +00004081 if (netdev->reg_state == NETREG_REGISTERED)
Greg Rose92915f72010-01-09 02:24:10 +00004082 unregister_netdev(netdev);
Greg Rose92915f72010-01-09 02:24:10 +00004083
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00004084 ixgbevf_clear_interrupt_scheme(adapter);
Greg Rose92915f72010-01-09 02:24:10 +00004085 ixgbevf_reset_interrupt_capability(adapter);
4086
Mark Rustaddbf8b0d2014-03-04 03:02:34 +00004087 iounmap(adapter->io_addr);
Greg Rose92915f72010-01-09 02:24:10 +00004088 pci_release_regions(pdev);
4089
4090 hw_dbg(&adapter->hw, "Remove complete\n");
4091
Emil Tantilov03334642014-12-05 04:32:44 +00004092 disable_dev = !test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state);
Greg Rose92915f72010-01-09 02:24:10 +00004093 free_netdev(netdev);
4094
Emil Tantilov03334642014-12-05 04:32:44 +00004095 if (disable_dev)
Mark Rustadbc0c7152014-03-12 00:38:45 +00004096 pci_disable_device(pdev);
Greg Rose92915f72010-01-09 02:24:10 +00004097}
4098
Alexander Duyck9f19f312012-05-11 08:33:32 +00004099/**
4100 * ixgbevf_io_error_detected - called when PCI error is detected
4101 * @pdev: Pointer to PCI device
4102 * @state: The current pci connection state
4103 *
4104 * This function is called after a PCI bus error affecting
4105 * this device has been detected.
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004106 **/
Alexander Duyck9f19f312012-05-11 08:33:32 +00004107static pci_ers_result_t ixgbevf_io_error_detected(struct pci_dev *pdev,
4108 pci_channel_state_t state)
4109{
4110 struct net_device *netdev = pci_get_drvdata(pdev);
4111 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
4112
Emil Tantilov9ac5c5c2015-01-28 03:21:34 +00004113 if (!test_bit(__IXGBEVF_SERVICE_INITED, &adapter->state))
Mark Rustadea699562014-03-12 00:38:51 +00004114 return PCI_ERS_RESULT_DISCONNECT;
4115
Mark Rustadbc0c7152014-03-12 00:38:45 +00004116 rtnl_lock();
Alexander Duyck9f19f312012-05-11 08:33:32 +00004117 netif_device_detach(netdev);
4118
Mark Rustadbc0c7152014-03-12 00:38:45 +00004119 if (state == pci_channel_io_perm_failure) {
4120 rtnl_unlock();
Alexander Duyck9f19f312012-05-11 08:33:32 +00004121 return PCI_ERS_RESULT_DISCONNECT;
Mark Rustadbc0c7152014-03-12 00:38:45 +00004122 }
Alexander Duyck9f19f312012-05-11 08:33:32 +00004123
4124 if (netif_running(netdev))
4125 ixgbevf_down(adapter);
4126
Mark Rustadbc0c7152014-03-12 00:38:45 +00004127 if (!test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state))
4128 pci_disable_device(pdev);
4129 rtnl_unlock();
Alexander Duyck9f19f312012-05-11 08:33:32 +00004130
4131 /* Request a slot slot reset. */
4132 return PCI_ERS_RESULT_NEED_RESET;
4133}
4134
4135/**
4136 * ixgbevf_io_slot_reset - called after the pci bus has been reset.
4137 * @pdev: Pointer to PCI device
4138 *
4139 * Restart the card from scratch, as if from a cold-boot. Implementation
4140 * resembles the first-half of the ixgbevf_resume routine.
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004141 **/
Alexander Duyck9f19f312012-05-11 08:33:32 +00004142static pci_ers_result_t ixgbevf_io_slot_reset(struct pci_dev *pdev)
4143{
4144 struct net_device *netdev = pci_get_drvdata(pdev);
4145 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
4146
4147 if (pci_enable_device_mem(pdev)) {
4148 dev_err(&pdev->dev,
4149 "Cannot re-enable PCI device after reset.\n");
4150 return PCI_ERS_RESULT_DISCONNECT;
4151 }
4152
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004153 smp_mb__before_atomic();
Mark Rustadbc0c7152014-03-12 00:38:45 +00004154 clear_bit(__IXGBEVF_DISABLED, &adapter->state);
Alexander Duyck9f19f312012-05-11 08:33:32 +00004155 pci_set_master(pdev);
4156
4157 ixgbevf_reset(adapter);
4158
4159 return PCI_ERS_RESULT_RECOVERED;
4160}
4161
4162/**
4163 * ixgbevf_io_resume - called when traffic can start flowing again.
4164 * @pdev: Pointer to PCI device
4165 *
4166 * This callback is called when the error recovery driver tells us that
4167 * its OK to resume normal operation. Implementation resembles the
4168 * second-half of the ixgbevf_resume routine.
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004169 **/
Alexander Duyck9f19f312012-05-11 08:33:32 +00004170static void ixgbevf_io_resume(struct pci_dev *pdev)
4171{
4172 struct net_device *netdev = pci_get_drvdata(pdev);
4173 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
4174
4175 if (netif_running(netdev))
4176 ixgbevf_up(adapter);
4177
4178 netif_device_attach(netdev);
4179}
4180
4181/* PCI Error Recovery (ERS) */
Stephen Hemminger3646f0e2012-09-07 09:33:15 -07004182static const struct pci_error_handlers ixgbevf_err_handler = {
Alexander Duyck9f19f312012-05-11 08:33:32 +00004183 .error_detected = ixgbevf_io_error_detected,
4184 .slot_reset = ixgbevf_io_slot_reset,
4185 .resume = ixgbevf_io_resume,
4186};
4187
Greg Rose92915f72010-01-09 02:24:10 +00004188static struct pci_driver ixgbevf_driver = {
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004189 .name = ixgbevf_driver_name,
4190 .id_table = ixgbevf_pci_tbl,
4191 .probe = ixgbevf_probe,
4192 .remove = ixgbevf_remove,
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00004193#ifdef CONFIG_PM
4194 /* Power Management Hooks */
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004195 .suspend = ixgbevf_suspend,
4196 .resume = ixgbevf_resume,
Alexander Duyck0ac1e8c2012-05-11 08:33:26 +00004197#endif
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004198 .shutdown = ixgbevf_shutdown,
4199 .err_handler = &ixgbevf_err_handler
Greg Rose92915f72010-01-09 02:24:10 +00004200};
4201
4202/**
Greg Rose65d676c2011-02-03 06:54:13 +00004203 * ixgbevf_init_module - Driver Registration Routine
Greg Rose92915f72010-01-09 02:24:10 +00004204 *
Greg Rose65d676c2011-02-03 06:54:13 +00004205 * ixgbevf_init_module is the first routine called when the driver is
Greg Rose92915f72010-01-09 02:24:10 +00004206 * loaded. All it does is register with the PCI subsystem.
4207 **/
4208static int __init ixgbevf_init_module(void)
4209{
4210 int ret;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004211
Jeff Kirsherdbd96362011-10-21 19:38:18 +00004212 pr_info("%s - version %s\n", ixgbevf_driver_string,
4213 ixgbevf_driver_version);
Greg Rose92915f72010-01-09 02:24:10 +00004214
Jeff Kirsherdbd96362011-10-21 19:38:18 +00004215 pr_info("%s\n", ixgbevf_copyright);
Greg Rose92915f72010-01-09 02:24:10 +00004216
4217 ret = pci_register_driver(&ixgbevf_driver);
4218 return ret;
4219}
4220
4221module_init(ixgbevf_init_module);
4222
4223/**
Greg Rose65d676c2011-02-03 06:54:13 +00004224 * ixgbevf_exit_module - Driver Exit Cleanup Routine
Greg Rose92915f72010-01-09 02:24:10 +00004225 *
Greg Rose65d676c2011-02-03 06:54:13 +00004226 * ixgbevf_exit_module is called just before the driver is removed
Greg Rose92915f72010-01-09 02:24:10 +00004227 * from memory.
4228 **/
4229static void __exit ixgbevf_exit_module(void)
4230{
4231 pci_unregister_driver(&ixgbevf_driver);
4232}
4233
4234#ifdef DEBUG
4235/**
Greg Rose65d676c2011-02-03 06:54:13 +00004236 * ixgbevf_get_hw_dev_name - return device name string
Greg Rose92915f72010-01-09 02:24:10 +00004237 * used by hardware layer to print debugging information
4238 **/
4239char *ixgbevf_get_hw_dev_name(struct ixgbe_hw *hw)
4240{
4241 struct ixgbevf_adapter *adapter = hw->back;
Jeff Kirsherdec0d8e2015-02-10 11:42:33 +00004242
Greg Rose92915f72010-01-09 02:24:10 +00004243 return adapter->netdev->name;
4244}
4245
4246#endif
4247module_exit(ixgbevf_exit_module);
4248
4249/* ixgbevf_main.c */