ixgbevf_main.c 121.8 KB
Newer Older
1 2 3
/*******************************************************************************

  Intel 82599 Virtual Function driver
4
  Copyright(c) 1999 - 2015 Intel Corporation.
5 6 7 8 9 10 11 12 13 14 15

  This program is free software; you can redistribute it and/or modify it
  under the terms and conditions of the GNU General Public License,
  version 2, as published by the Free Software Foundation.

  This program is distributed in the hope it will be useful, but WITHOUT
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  more details.

  You should have received a copy of the GNU General Public License along with
16
  this program; if not, see <http://www.gnu.org/licenses/>.
17 18 19 20 21 22 23 24 25 26 27 28 29

  The full GNU General Public License is included in this distribution in
  the file called "COPYING".

  Contact Information:
  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497

*******************************************************************************/

/******************************************************************************
 Copyright (c)2006 - 2007 Myricom, Inc. for some LRO specific code
******************************************************************************/
30 31 32

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

33
#include <linux/types.h>
J
Jiri Pirko 已提交
34
#include <linux/bitops.h>
35 36 37 38 39 40 41 42
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/netdevice.h>
#include <linux/vmalloc.h>
#include <linux/string.h>
#include <linux/in.h>
#include <linux/ip.h>
#include <linux/tcp.h>
43
#include <linux/sctp.h>
44
#include <linux/ipv6.h>
45
#include <linux/slab.h>
46 47 48
#include <net/checksum.h>
#include <net/ip6_checksum.h>
#include <linux/ethtool.h>
49
#include <linux/if.h>
50
#include <linux/if_vlan.h>
51
#include <linux/prefetch.h>
52
#include <net/mpls.h>
53 54 55

#include "ixgbevf.h"

56
const char ixgbevf_driver_name[] = "ixgbevf";
57
static const char ixgbevf_driver_string[] =
G
Greg Rose 已提交
58
	"Intel(R) 10 Gigabit PCI Express Virtual Function Network Driver";
59

T
Tony Nguyen 已提交
60
#define DRV_VERSION "4.1.0-k"
61
const char ixgbevf_driver_version[] = DRV_VERSION;
62
static char ixgbevf_copyright[] =
63
	"Copyright (c) 2009 - 2015 Intel Corporation.";
64 65

static const struct ixgbevf_info *ixgbevf_info_tbl[] = {
66 67 68 69 70 71 72 73
	[board_82599_vf]	= &ixgbevf_82599_vf_info,
	[board_82599_vf_hv]	= &ixgbevf_82599_vf_hv_info,
	[board_X540_vf]		= &ixgbevf_X540_vf_info,
	[board_X540_vf_hv]	= &ixgbevf_X540_vf_hv_info,
	[board_X550_vf]		= &ixgbevf_X550_vf_info,
	[board_X550_vf_hv]	= &ixgbevf_X550_vf_hv_info,
	[board_X550EM_x_vf]	= &ixgbevf_X550EM_x_vf_info,
	[board_X550EM_x_vf_hv]	= &ixgbevf_X550EM_x_vf_hv_info,
74
	[board_x550em_a_vf]	= &ixgbevf_x550em_a_vf_info,
75 76 77 78 79 80 81 82 83 84
};

/* ixgbevf_pci_tbl - PCI Device ID Table
 *
 * Wildcard entries (PCI_ANY_ID) should come last
 * Last entry must be all 0s
 *
 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
 *   Class, Class Mask, private data (not used) }
 */
85
static const struct pci_device_id ixgbevf_pci_tbl[] = {
86
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_VF), board_82599_vf },
87
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_VF_HV), board_82599_vf_hv },
88
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540_VF), board_X540_vf },
89
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540_VF_HV), board_X540_vf_hv },
E
Emil Tantilov 已提交
90
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550_VF), board_X550_vf },
91
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550_VF_HV), board_X550_vf_hv },
E
Emil Tantilov 已提交
92
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_VF), board_X550EM_x_vf },
93
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_VF_HV), board_X550EM_x_vf_hv},
94
	{PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_VF), board_x550em_a_vf },
95 96 97 98 99 100
	/* required last entry */
	{0, }
};
MODULE_DEVICE_TABLE(pci, ixgbevf_pci_tbl);

MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
101
MODULE_DESCRIPTION("Intel(R) 10 Gigabit Virtual Function Network Driver");
102 103 104
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_VERSION);

105 106 107 108
#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)
static int debug = -1;
module_param(debug, int, 0);
MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
109

110 111
static struct workqueue_struct *ixgbevf_wq;

112 113 114 115 116
static void ixgbevf_service_event_schedule(struct ixgbevf_adapter *adapter)
{
	if (!test_bit(__IXGBEVF_DOWN, &adapter->state) &&
	    !test_bit(__IXGBEVF_REMOVING, &adapter->state) &&
	    !test_and_set_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state))
117
		queue_work(ixgbevf_wq, &adapter->service_task);
118 119 120 121 122 123 124 125 126 127 128
}

static void ixgbevf_service_event_complete(struct ixgbevf_adapter *adapter)
{
	BUG_ON(!test_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state));

	/* flush memory to make sure state is correct before next watchdog */
	smp_mb__before_atomic();
	clear_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state);
}

129
/* forward decls */
130
static void ixgbevf_queue_reset_subtask(struct ixgbevf_adapter *adapter);
131
static void ixgbevf_set_itr(struct ixgbevf_q_vector *q_vector);
132
static void ixgbevf_free_all_rx_resources(struct ixgbevf_adapter *adapter);
133 134 135
static bool ixgbevf_can_reuse_rx_page(struct ixgbevf_rx_buffer *rx_buffer);
static void ixgbevf_reuse_rx_page(struct ixgbevf_ring *rx_ring,
				  struct ixgbevf_rx_buffer *old_buff);
136

137 138 139 140 141 142 143 144
static void ixgbevf_remove_adapter(struct ixgbe_hw *hw)
{
	struct ixgbevf_adapter *adapter = hw->back;

	if (!hw->hw_addr)
		return;
	hw->hw_addr = NULL;
	dev_err(&adapter->pdev->dev, "Adapter removed\n");
145 146
	if (test_bit(__IXGBEVF_SERVICE_INITED, &adapter->state))
		ixgbevf_service_event_schedule(adapter);
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
}

static void ixgbevf_check_remove(struct ixgbe_hw *hw, u32 reg)
{
	u32 value;

	/* The following check not only optimizes a bit by not
	 * performing a read on the status register when the
	 * register just read was a status register read that
	 * returned IXGBE_FAILED_READ_REG. It also blocks any
	 * potential recursion.
	 */
	if (reg == IXGBE_VFSTATUS) {
		ixgbevf_remove_adapter(hw);
		return;
	}
163
	value = ixgbevf_read_reg(hw, IXGBE_VFSTATUS);
164 165 166 167
	if (value == IXGBE_FAILED_READ_REG)
		ixgbevf_remove_adapter(hw);
}

168
u32 ixgbevf_read_reg(struct ixgbe_hw *hw, u32 reg)
169
{
170
	u8 __iomem *reg_addr = READ_ONCE(hw->hw_addr);
171 172 173 174 175 176 177 178 179 180
	u32 value;

	if (IXGBE_REMOVED(reg_addr))
		return IXGBE_FAILED_READ_REG;
	value = readl(reg_addr + reg);
	if (unlikely(value == IXGBE_FAILED_READ_REG))
		ixgbevf_check_remove(hw, reg);
	return value;
}

181
/**
182
 * ixgbevf_set_ivar - set IVAR registers - maps interrupt causes to vectors
183 184 185 186
 * @adapter: pointer to adapter struct
 * @direction: 0 for Rx, 1 for Tx, -1 for other causes
 * @queue: queue to map the corresponding interrupt to
 * @msix_vector: the vector to map to the corresponding queue
187
 **/
188 189 190 191 192
static void ixgbevf_set_ivar(struct ixgbevf_adapter *adapter, s8 direction,
			     u8 queue, u8 msix_vector)
{
	u32 ivar, index;
	struct ixgbe_hw *hw = &adapter->hw;
193

194 195 196 197 198 199 200 201
	if (direction == -1) {
		/* other causes */
		msix_vector |= IXGBE_IVAR_ALLOC_VAL;
		ivar = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
		ivar &= ~0xFF;
		ivar |= msix_vector;
		IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, ivar);
	} else {
202
		/* Tx or Rx causes */
203 204 205 206 207 208 209 210 211
		msix_vector |= IXGBE_IVAR_ALLOC_VAL;
		index = ((16 * (queue & 1)) + (8 * direction));
		ivar = IXGBE_READ_REG(hw, IXGBE_VTIVAR(queue >> 1));
		ivar &= ~(0xFF << index);
		ivar |= (msix_vector << index);
		IXGBE_WRITE_REG(hw, IXGBE_VTIVAR(queue >> 1), ivar);
	}
}

212 213 214 215
static u64 ixgbevf_get_tx_completed(struct ixgbevf_ring *ring)
{
	return ring->stats.packets;
}
216

217 218 219 220
static u32 ixgbevf_get_tx_pending(struct ixgbevf_ring *ring)
{
	struct ixgbevf_adapter *adapter = netdev_priv(ring->netdev);
	struct ixgbe_hw *hw = &adapter->hw;
221

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
	u32 head = IXGBE_READ_REG(hw, IXGBE_VFTDH(ring->reg_idx));
	u32 tail = IXGBE_READ_REG(hw, IXGBE_VFTDT(ring->reg_idx));

	if (head != tail)
		return (head < tail) ?
			tail - head : (tail + ring->count - head);

	return 0;
}

static inline bool ixgbevf_check_tx_hang(struct ixgbevf_ring *tx_ring)
{
	u32 tx_done = ixgbevf_get_tx_completed(tx_ring);
	u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
	u32 tx_pending = ixgbevf_get_tx_pending(tx_ring);

	clear_check_for_tx_hang(tx_ring);

	/* Check for a hung queue, but be thorough. This verifies
	 * that a transmit has been completed since the previous
	 * check AND there is at least one packet pending. The
	 * ARMED bit is set to indicate a potential hang.
	 */
	if ((tx_done_old == tx_done) && tx_pending) {
		/* make sure it is true for two checks in a row */
		return test_and_set_bit(__IXGBEVF_HANG_CHECK_ARMED,
					&tx_ring->state);
	}
	/* reset the countdown */
	clear_bit(__IXGBEVF_HANG_CHECK_ARMED, &tx_ring->state);

	/* update completed stats and continue */
	tx_ring->tx_stats.tx_done_old = tx_done;

	return false;
}

259 260 261 262
static void ixgbevf_tx_timeout_reset(struct ixgbevf_adapter *adapter)
{
	/* Do the reset outside of interrupt context */
	if (!test_bit(__IXGBEVF_DOWN, &adapter->state)) {
263
		set_bit(__IXGBEVF_RESET_REQUESTED, &adapter->state);
264 265 266 267
		ixgbevf_service_event_schedule(adapter);
	}
}

268 269 270 271 272 273 274 275
/**
 * ixgbevf_tx_timeout - Respond to a Tx Hang
 * @netdev: network interface device structure
 **/
static void ixgbevf_tx_timeout(struct net_device *netdev)
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);

276
	ixgbevf_tx_timeout_reset(adapter);
277
}
278 279 280

/**
 * ixgbevf_clean_tx_irq - Reclaim resources after transmit completes
281
 * @q_vector: board private structure
282
 * @tx_ring: tx ring to clean
283
 * @napi_budget: Used to determine if we are in netpoll
284
 **/
285
static bool ixgbevf_clean_tx_irq(struct ixgbevf_q_vector *q_vector,
286
				 struct ixgbevf_ring *tx_ring, int napi_budget)
287
{
288
	struct ixgbevf_adapter *adapter = q_vector->adapter;
289 290
	struct ixgbevf_tx_buffer *tx_buffer;
	union ixgbe_adv_tx_desc *tx_desc;
291
	unsigned int total_bytes = 0, total_packets = 0;
292 293
	unsigned int budget = tx_ring->count / 2;
	unsigned int i = tx_ring->next_to_clean;
294

295 296 297
	if (test_bit(__IXGBEVF_DOWN, &adapter->state))
		return true;

298 299 300
	tx_buffer = &tx_ring->tx_buffer_info[i];
	tx_desc = IXGBEVF_TX_DESC(tx_ring, i);
	i -= tx_ring->count;
301

302
	do {
303
		union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch;
304 305 306 307 308 309

		/* if next_to_watch is not set then there is no work pending */
		if (!eop_desc)
			break;

		/* prevent any other reads prior to eop_desc */
310
		smp_rmb();
311 312 313 314 315 316

		/* if DD is not set pending work has not been completed */
		if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD)))
			break;

		/* clear next_to_watch to prevent false hangs */
317
		tx_buffer->next_to_watch = NULL;
318

319 320 321
		/* update the statistics for this packet */
		total_bytes += tx_buffer->bytecount;
		total_packets += tx_buffer->gso_segs;
322

323
		/* free the skb */
324
		napi_consume_skb(tx_buffer->skb, napi_budget);
325 326 327 328 329 330 331

		/* unmap skb header data */
		dma_unmap_single(tx_ring->dev,
				 dma_unmap_addr(tx_buffer, dma),
				 dma_unmap_len(tx_buffer, len),
				 DMA_TO_DEVICE);

332
		/* clear tx_buffer data */
333
		dma_unmap_len_set(tx_buffer, len, 0);
334

335 336 337 338
		/* unmap remaining buffers */
		while (tx_desc != eop_desc) {
			tx_buffer++;
			tx_desc++;
339
			i++;
340 341 342 343 344
			if (unlikely(!i)) {
				i -= tx_ring->count;
				tx_buffer = tx_ring->tx_buffer_info;
				tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
			}
345

346 347 348 349 350 351 352 353
			/* unmap any remaining paged data */
			if (dma_unmap_len(tx_buffer, len)) {
				dma_unmap_page(tx_ring->dev,
					       dma_unmap_addr(tx_buffer, dma),
					       dma_unmap_len(tx_buffer, len),
					       DMA_TO_DEVICE);
				dma_unmap_len_set(tx_buffer, len, 0);
			}
354 355
		}

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
		/* move us one more past the eop_desc for start of next pkt */
		tx_buffer++;
		tx_desc++;
		i++;
		if (unlikely(!i)) {
			i -= tx_ring->count;
			tx_buffer = tx_ring->tx_buffer_info;
			tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
		}

		/* issue prefetch for next Tx descriptor */
		prefetch(tx_desc);

		/* update budget accounting */
		budget--;
	} while (likely(budget));

	i += tx_ring->count;
374
	tx_ring->next_to_clean = i;
375 376 377 378 379 380
	u64_stats_update_begin(&tx_ring->syncp);
	tx_ring->stats.bytes += total_bytes;
	tx_ring->stats.packets += total_packets;
	u64_stats_update_end(&tx_ring->syncp);
	q_vector->tx.total_bytes += total_bytes;
	q_vector->tx.total_packets += total_packets;
381

382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
	if (check_for_tx_hang(tx_ring) && ixgbevf_check_tx_hang(tx_ring)) {
		struct ixgbe_hw *hw = &adapter->hw;
		union ixgbe_adv_tx_desc *eop_desc;

		eop_desc = tx_ring->tx_buffer_info[i].next_to_watch;

		pr_err("Detected Tx Unit Hang\n"
		       "  Tx Queue             <%d>\n"
		       "  TDH, TDT             <%x>, <%x>\n"
		       "  next_to_use          <%x>\n"
		       "  next_to_clean        <%x>\n"
		       "tx_buffer_info[next_to_clean]\n"
		       "  next_to_watch        <%p>\n"
		       "  eop_desc->wb.status  <%x>\n"
		       "  time_stamp           <%lx>\n"
		       "  jiffies              <%lx>\n",
		       tx_ring->queue_index,
		       IXGBE_READ_REG(hw, IXGBE_VFTDH(tx_ring->reg_idx)),
		       IXGBE_READ_REG(hw, IXGBE_VFTDT(tx_ring->reg_idx)),
		       tx_ring->next_to_use, i,
		       eop_desc, (eop_desc ? eop_desc->wb.status : 0),
		       tx_ring->tx_buffer_info[i].time_stamp, jiffies);

		netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);

		/* schedule immediate reset if we believe we hung */
408
		ixgbevf_tx_timeout_reset(adapter);
409 410 411 412

		return true;
	}

413
#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
414
	if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
D
Don Skidmore 已提交
415
		     (ixgbevf_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
416 417 418 419
		/* Make sure that anybody stopping the queue after this
		 * sees the new next_to_clean.
		 */
		smp_mb();
420

421 422
		if (__netif_subqueue_stopped(tx_ring->netdev,
					     tx_ring->queue_index) &&
423
		    !test_bit(__IXGBEVF_DOWN, &adapter->state)) {
424 425
			netif_wake_subqueue(tx_ring->netdev,
					    tx_ring->queue_index);
426
			++tx_ring->tx_stats.restart_queue;
427 428 429
		}
	}

430
	return !!budget;
431 432
}

J
Jacob Keller 已提交
433 434 435 436 437 438
/**
 * ixgbevf_rx_skb - Helper function to determine proper Rx method
 * @q_vector: structure containing interrupt and ring information
 * @skb: packet to send up
 **/
static void ixgbevf_rx_skb(struct ixgbevf_q_vector *q_vector,
439
			   struct sk_buff *skb)
J
Jacob Keller 已提交
440
{
E
Emil Tantilov 已提交
441
	napi_gro_receive(&q_vector->napi, skb);
J
Jacob Keller 已提交
442 443
}

444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
#define IXGBE_RSS_L4_TYPES_MASK \
	((1ul << IXGBE_RXDADV_RSSTYPE_IPV4_TCP) | \
	 (1ul << IXGBE_RXDADV_RSSTYPE_IPV4_UDP) | \
	 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_TCP) | \
	 (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_UDP))

static inline void ixgbevf_rx_hash(struct ixgbevf_ring *ring,
				   union ixgbe_adv_rx_desc *rx_desc,
				   struct sk_buff *skb)
{
	u16 rss_type;

	if (!(ring->netdev->features & NETIF_F_RXHASH))
		return;

	rss_type = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.pkt_info) &
		   IXGBE_RXDADV_RSSTYPE_MASK;

	if (!rss_type)
		return;

	skb_set_hash(skb, le32_to_cpu(rx_desc->wb.lower.hi_dword.rss),
		     (IXGBE_RSS_L4_TYPES_MASK & (1ul << rss_type)) ?
		     PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3);
}

470 471
/**
 * ixgbevf_rx_checksum - indicate in skb if hw indicated a good cksum
472 473
 * @ring: structure containig ring specific data
 * @rx_desc: current Rx descriptor being processed
474
 * @skb: skb currently being received and modified
475
 **/
476
static inline void ixgbevf_rx_checksum(struct ixgbevf_ring *ring,
477 478
				       union ixgbe_adv_rx_desc *rx_desc,
				       struct sk_buff *skb)
479
{
480
	skb_checksum_none_assert(skb);
481 482

	/* Rx csum disabled */
483
	if (!(ring->netdev->features & NETIF_F_RXCSUM))
484 485 486
		return;

	/* if IP and error */
487 488
	if (ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) &&
	    ixgbevf_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) {
489
		ring->rx_stats.csum_err++;
490 491 492
		return;
	}

493
	if (!ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS))
494 495
		return;

496
	if (ixgbevf_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) {
497
		ring->rx_stats.csum_err++;
498 499 500 501 502 503 504
		return;
	}

	/* It must be a TCP or UDP packet with a valid checksum */
	skb->ip_summed = CHECKSUM_UNNECESSARY;
}

505 506
/**
 * ixgbevf_process_skb_fields - Populate skb header fields from Rx descriptor
507 508 509 510 511 512 513
 * @rx_ring: rx descriptor ring packet is being transacted on
 * @rx_desc: pointer to the EOP Rx descriptor
 * @skb: pointer to current skb being populated
 *
 * This function checks the ring, descriptor, and packet information in
 * order to populate the checksum, VLAN, protocol, and other fields within
 * the skb.
514
 **/
515 516 517 518
static void ixgbevf_process_skb_fields(struct ixgbevf_ring *rx_ring,
				       union ixgbe_adv_rx_desc *rx_desc,
				       struct sk_buff *skb)
{
519
	ixgbevf_rx_hash(rx_ring, rx_desc, skb);
520 521 522 523 524 525 526 527 528 529 530 531 532
	ixgbevf_rx_checksum(rx_ring, rx_desc, skb);

	if (ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) {
		u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan);
		unsigned long *active_vlans = netdev_priv(rx_ring->netdev);

		if (test_bit(vid & VLAN_VID_MASK, active_vlans))
			__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
	}

	skb->protocol = eth_type_trans(skb, rx_ring->netdev);
}

533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
static
struct ixgbevf_rx_buffer *ixgbevf_get_rx_buffer(struct ixgbevf_ring *rx_ring,
						const unsigned int size)
{
	struct ixgbevf_rx_buffer *rx_buffer;

	rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];
	prefetchw(rx_buffer->page);

	/* we are reusing so sync this buffer for CPU use */
	dma_sync_single_range_for_cpu(rx_ring->dev,
				      rx_buffer->dma,
				      rx_buffer->page_offset,
				      size,
				      DMA_FROM_DEVICE);

	rx_buffer->pagecnt_bias--;

	return rx_buffer;
}

static void ixgbevf_put_rx_buffer(struct ixgbevf_ring *rx_ring,
				  struct ixgbevf_rx_buffer *rx_buffer)
{
	if (ixgbevf_can_reuse_rx_page(rx_buffer)) {
		/* hand second half of page back to the ring */
		ixgbevf_reuse_rx_page(rx_ring, rx_buffer);
	} else {
		/* We are not reusing the buffer so unmap it and free
		 * any references we are holding to it
		 */
		dma_unmap_page_attrs(rx_ring->dev, rx_buffer->dma,
				     ixgbevf_rx_pg_size(rx_ring),
				     DMA_FROM_DEVICE,
				     IXGBEVF_RX_DMA_ATTR);
		__page_frag_cache_drain(rx_buffer->page,
					rx_buffer->pagecnt_bias);
	}

	/* clear contents of rx_buffer */
	rx_buffer->page = NULL;
}

576 577 578 579 580 581 582 583 584 585 586
/**
 * ixgbevf_is_non_eop - process handling of non-EOP buffers
 * @rx_ring: Rx ring being processed
 * @rx_desc: Rx descriptor for current buffer
 *
 * This function updates next to clean.  If the buffer is an EOP buffer
 * this function exits returning false, otherwise it will place the
 * sk_buff in the next buffer to be chained and return true indicating
 * that this is in fact a non-EOP buffer.
 **/
static bool ixgbevf_is_non_eop(struct ixgbevf_ring *rx_ring,
587
			       union ixgbe_adv_rx_desc *rx_desc)
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
{
	u32 ntc = rx_ring->next_to_clean + 1;

	/* fetch, update, and store next to clean */
	ntc = (ntc < rx_ring->count) ? ntc : 0;
	rx_ring->next_to_clean = ntc;

	prefetch(IXGBEVF_RX_DESC(rx_ring, ntc));

	if (likely(ixgbevf_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)))
		return false;

	return true;
}

603 604 605 606 607
static inline unsigned int ixgbevf_rx_offset(struct ixgbevf_ring *rx_ring)
{
	return ring_uses_build_skb(rx_ring) ? IXGBEVF_SKB_PAD : 0;
}

608 609
static bool ixgbevf_alloc_mapped_page(struct ixgbevf_ring *rx_ring,
				      struct ixgbevf_rx_buffer *bi)
610
{
611
	struct page *page = bi->page;
612 613
	dma_addr_t dma = bi->dma;

614 615
	/* since we are recycling buffers we should seldom need to alloc */
	if (likely(page))
616 617
		return true;

618
	/* alloc new page for storage */
619
	page = dev_alloc_pages(ixgbevf_rx_pg_order(rx_ring));
620 621
	if (unlikely(!page)) {
		rx_ring->rx_stats.alloc_rx_page_failed++;
622 623 624
		return false;
	}

625
	/* map page for use */
626 627
	dma = dma_map_page_attrs(rx_ring->dev, page, 0,
				 ixgbevf_rx_pg_size(rx_ring),
628
				 DMA_FROM_DEVICE, IXGBEVF_RX_DMA_ATTR);
629 630 631 632 633

	/* if mapping failed free memory back to system since
	 * there isn't much point in holding memory we can't use
	 */
	if (dma_mapping_error(rx_ring->dev, dma)) {
634
		__free_pages(page, ixgbevf_rx_pg_order(rx_ring));
635

636
		rx_ring->rx_stats.alloc_rx_page_failed++;
637 638 639 640
		return false;
	}

	bi->dma = dma;
641
	bi->page = page;
642
	bi->page_offset = ixgbevf_rx_offset(rx_ring);
643
	bi->pagecnt_bias = 1;
644
	rx_ring->rx_stats.alloc_rx_page++;
645 646 647 648

	return true;
}

649 650
/**
 * ixgbevf_alloc_rx_buffers - Replace used receive buffers; packet split
651
 * @rx_ring: rx descriptor ring (for a specific queue) to setup buffers on
652
 * @cleaned_count: number of buffers to replace
653
 **/
654
static void ixgbevf_alloc_rx_buffers(struct ixgbevf_ring *rx_ring,
655
				     u16 cleaned_count)
656 657 658
{
	union ixgbe_adv_rx_desc *rx_desc;
	struct ixgbevf_rx_buffer *bi;
659
	unsigned int i = rx_ring->next_to_use;
660

661 662 663
	/* nothing to do or no valid netdev defined */
	if (!cleaned_count || !rx_ring->netdev)
		return;
664

665 666 667
	rx_desc = IXGBEVF_RX_DESC(rx_ring, i);
	bi = &rx_ring->rx_buffer_info[i];
	i -= rx_ring->count;
668

669
	do {
670
		if (!ixgbevf_alloc_mapped_page(rx_ring, bi))
671
			break;
672

673 674 675
		/* sync the buffer for use by the device */
		dma_sync_single_range_for_device(rx_ring->dev, bi->dma,
						 bi->page_offset,
676
						 ixgbevf_rx_bufsz(rx_ring),
677 678
						 DMA_FROM_DEVICE);

679 680 681
		/* Refresh the desc even if pkt_addr didn't change
		 * because each write-back erases this info.
		 */
682
		rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
683

684 685
		rx_desc++;
		bi++;
686
		i++;
687 688 689 690 691 692
		if (unlikely(!i)) {
			rx_desc = IXGBEVF_RX_DESC(rx_ring, 0);
			bi = rx_ring->rx_buffer_info;
			i -= rx_ring->count;
		}

693 694
		/* clear the length for the next_to_use descriptor */
		rx_desc->wb.upper.length = 0;
695 696 697 698 699

		cleaned_count--;
	} while (cleaned_count);

	i += rx_ring->count;
700

701 702 703 704
	if (rx_ring->next_to_use != i) {
		/* record the next descriptor to use */
		rx_ring->next_to_use = i;

705 706 707
		/* update next to alloc since we have filled the ring */
		rx_ring->next_to_alloc = i;

708 709 710 711 712 713 714 715
		/* Force memory writes to complete before letting h/w
		 * know there are new descriptors to fetch.  (Only
		 * applicable for weak-ordered memory model archs,
		 * such as IA-64).
		 */
		wmb();
		ixgbevf_write_tail(rx_ring, i);
	}
716 717
}

718 719
/**
 * ixgbevf_cleanup_headers - Correct corrupted or empty headers
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
 * @rx_ring: rx descriptor ring packet is being transacted on
 * @rx_desc: pointer to the EOP Rx descriptor
 * @skb: pointer to current skb being fixed
 *
 * Check for corrupted packet headers caused by senders on the local L2
 * embedded NIC switch not setting up their Tx Descriptors right.  These
 * should be very rare.
 *
 * Also address the case where we are pulling data in on pages only
 * and as such no data is present in the skb header.
 *
 * In addition if skb is not at least 60 bytes we need to pad it so that
 * it is large enough to qualify as a valid Ethernet frame.
 *
 * Returns true if an error was encountered and skb was freed.
735
 **/
736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
static bool ixgbevf_cleanup_headers(struct ixgbevf_ring *rx_ring,
				    union ixgbe_adv_rx_desc *rx_desc,
				    struct sk_buff *skb)
{
	/* verify that the packet does not have any known errors */
	if (unlikely(ixgbevf_test_staterr(rx_desc,
					  IXGBE_RXDADV_ERR_FRAME_ERR_MASK))) {
		struct net_device *netdev = rx_ring->netdev;

		if (!(netdev->features & NETIF_F_RXALL)) {
			dev_kfree_skb_any(skb);
			return true;
		}
	}

751 752 753
	/* if eth_skb_pad returns an error the skb was freed */
	if (eth_skb_pad(skb))
		return true;
754 755 756 757

	return false;
}

758 759
/**
 * ixgbevf_reuse_rx_page - page flip buffer and store it back on the ring
760 761 762 763
 * @rx_ring: rx descriptor ring to store buffers on
 * @old_buff: donor buffer to have page reused
 *
 * Synchronizes page for reuse by the adapter
764
 **/
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
static void ixgbevf_reuse_rx_page(struct ixgbevf_ring *rx_ring,
				  struct ixgbevf_rx_buffer *old_buff)
{
	struct ixgbevf_rx_buffer *new_buff;
	u16 nta = rx_ring->next_to_alloc;

	new_buff = &rx_ring->rx_buffer_info[nta];

	/* update, and store next to alloc */
	nta++;
	rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;

	/* transfer page from old buffer to new buffer */
	new_buff->page = old_buff->page;
	new_buff->dma = old_buff->dma;
	new_buff->page_offset = old_buff->page_offset;
781
	new_buff->pagecnt_bias = old_buff->pagecnt_bias;
782 783 784 785
}

static inline bool ixgbevf_page_is_reserved(struct page *page)
{
786
	return (page_to_nid(page) != numa_mem_id()) || page_is_pfmemalloc(page);
787 788
}

789
static bool ixgbevf_can_reuse_rx_page(struct ixgbevf_rx_buffer *rx_buffer)
790
{
791 792
	unsigned int pagecnt_bias = rx_buffer->pagecnt_bias;
	struct page *page = rx_buffer->page;
793

794 795 796 797 798 799
	/* avoid re-using remote pages */
	if (unlikely(ixgbevf_page_is_reserved(page)))
		return false;

#if (PAGE_SIZE < 8192)
	/* if we are only owner of page we can reuse it */
800
	if (unlikely((page_ref_count(page) - pagecnt_bias) > 1))
801 802
		return false;
#else
803 804 805 806
#define IXGBEVF_LAST_OFFSET \
	(SKB_WITH_OVERHEAD(PAGE_SIZE) - IXGBEVF_RXBUFFER_2048)

	if (rx_buffer->page_offset > IXGBEVF_LAST_OFFSET)
807 808 809
		return false;

#endif
810 811 812 813

	/* If we have drained the page fragment pool we need to update
	 * the pagecnt_bias and page count so that we fully restock the
	 * number of references the driver holds.
814
	 */
815
	if (unlikely(!pagecnt_bias)) {
816 817 818
		page_ref_add(page, USHRT_MAX);
		rx_buffer->pagecnt_bias = USHRT_MAX;
	}
819 820 821 822

	return true;
}

823 824
/**
 * ixgbevf_add_rx_frag - Add contents of Rx buffer to sk_buff
825 826 827
 * @rx_ring: rx descriptor ring to transact packets on
 * @rx_buffer: buffer containing page to add
 * @skb: sk_buff to place the data into
828
 * @size: size of buffer to be added
829 830
 *
 * This function will add the data contained in rx_buffer->page to the skb.
831
 **/
832
static void ixgbevf_add_rx_frag(struct ixgbevf_ring *rx_ring,
833
				struct ixgbevf_rx_buffer *rx_buffer,
834 835
				struct sk_buff *skb,
				unsigned int size)
836 837
{
#if (PAGE_SIZE < 8192)
838
	unsigned int truesize = ixgbevf_rx_pg_size(rx_ring) / 2;
839
#else
840 841 842
	unsigned int truesize = ring_uses_build_skb(rx_ring) ?
				SKB_DATA_ALIGN(IXGBEVF_SKB_PAD + size) :
				SKB_DATA_ALIGN(size);
843
#endif
844 845 846 847 848 849 850
	skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_buffer->page,
			rx_buffer->page_offset, size, truesize);
#if (PAGE_SIZE < 8192)
	rx_buffer->page_offset ^= truesize;
#else
	rx_buffer->page_offset += truesize;
#endif
851 852
}

853 854 855 856 857
static
struct sk_buff *ixgbevf_construct_skb(struct ixgbevf_ring *rx_ring,
				      struct ixgbevf_rx_buffer *rx_buffer,
				      union ixgbe_adv_rx_desc *rx_desc,
				      unsigned int size)
858
{
859 860 861 862 863 864 865 866
	void *va = page_address(rx_buffer->page) + rx_buffer->page_offset;
#if (PAGE_SIZE < 8192)
	unsigned int truesize = ixgbevf_rx_pg_size(rx_ring) / 2;
#else
	unsigned int truesize = SKB_DATA_ALIGN(size);
#endif
	unsigned int headlen;
	struct sk_buff *skb;
867

868 869
	/* prefetch first cache line of first page */
	prefetch(va);
870
#if L1_CACHE_BYTES < 128
871
	prefetch(va + L1_CACHE_BYTES);
872 873
#endif

874 875 876 877
	/* allocate a skb to store the frags */
	skb = napi_alloc_skb(&rx_ring->q_vector->napi, IXGBEVF_RX_HDR_SIZE);
	if (unlikely(!skb))
		return NULL;
878

879 880 881 882
	/* Determine available headroom for copy */
	headlen = size;
	if (headlen > IXGBEVF_RX_HDR_SIZE)
		headlen = eth_get_headlen(va, IXGBEVF_RX_HDR_SIZE);
883

884 885 886 887 888 889 890 891 892 893 894 895 896 897
	/* align pull length to size of long to optimize memcpy performance */
	memcpy(__skb_put(skb, headlen), va, ALIGN(headlen, sizeof(long)));

	/* update all of the pointers */
	size -= headlen;
	if (size) {
		skb_add_rx_frag(skb, 0, rx_buffer->page,
				(va + headlen) - page_address(rx_buffer->page),
				size, truesize);
#if (PAGE_SIZE < 8192)
		rx_buffer->page_offset ^= truesize;
#else
		rx_buffer->page_offset += truesize;
#endif
898
	} else {
899
		rx_buffer->pagecnt_bias++;
900 901 902 903 904
	}

	return skb;
}

905
static inline void ixgbevf_irq_enable_queues(struct ixgbevf_adapter *adapter,
906
					     u32 qmask)
907 908 909
{
	struct ixgbe_hw *hw = &adapter->hw;

910
	IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, qmask);
911 912
}

E
Emil Tantilov 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
static struct sk_buff *ixgbevf_build_skb(struct ixgbevf_ring *rx_ring,
					 struct ixgbevf_rx_buffer *rx_buffer,
					 union ixgbe_adv_rx_desc *rx_desc,
					 unsigned int size)
{
	void *va = page_address(rx_buffer->page) + rx_buffer->page_offset;
#if (PAGE_SIZE < 8192)
	unsigned int truesize = ixgbevf_rx_pg_size(rx_ring) / 2;
#else
	unsigned int truesize = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) +
				SKB_DATA_ALIGN(IXGBEVF_SKB_PAD + size);
#endif
	struct sk_buff *skb;

	/* prefetch first cache line of first page */
	prefetch(va);
#if L1_CACHE_BYTES < 128
	prefetch(va + L1_CACHE_BYTES);
#endif

	/* build an skb to around the page buffer */
	skb = build_skb(va - IXGBEVF_SKB_PAD, truesize);
	if (unlikely(!skb))
		return NULL;

	/* update pointers within the skb to store the data */
	skb_reserve(skb, IXGBEVF_SKB_PAD);
	__skb_put(skb, size);

	/* update buffer offset */
#if (PAGE_SIZE < 8192)
	rx_buffer->page_offset ^= truesize;
#else
	rx_buffer->page_offset += truesize;
#endif

	return skb;
}
951 952 953
static int ixgbevf_clean_rx_irq(struct ixgbevf_q_vector *q_vector,
				struct ixgbevf_ring *rx_ring,
				int budget)
954 955
{
	unsigned int total_rx_bytes = 0, total_rx_packets = 0;
956
	u16 cleaned_count = ixgbevf_desc_unused(rx_ring);
957
	struct sk_buff *skb = rx_ring->skb;
958

959
	while (likely(total_rx_packets < budget)) {
960
		union ixgbe_adv_rx_desc *rx_desc;
961 962
		struct ixgbevf_rx_buffer *rx_buffer;
		unsigned int size;
963

964 965 966 967 968 969
		/* return some buffers to hardware, one at a time is too slow */
		if (cleaned_count >= IXGBEVF_RX_BUFFER_WRITE) {
			ixgbevf_alloc_rx_buffers(rx_ring, cleaned_count);
			cleaned_count = 0;
		}

970
		rx_desc = IXGBEVF_RX_DESC(rx_ring, rx_ring->next_to_clean);
971 972
		size = le16_to_cpu(rx_desc->wb.upper.length);
		if (!size)
973 974
			break;

975 976 977 978 979
		/* This memory barrier is needed to keep us from reading
		 * any other fields out of the rx_desc until we know the
		 * RXD_STAT_DD bit is set
		 */
		rmb();
980

981 982
		rx_buffer = ixgbevf_get_rx_buffer(rx_ring, size);

983
		/* retrieve a buffer from the ring */
984 985
		if (skb)
			ixgbevf_add_rx_frag(rx_ring, rx_buffer, skb, size);
E
Emil Tantilov 已提交
986 987 988
		else if (ring_uses_build_skb(rx_ring))
			skb = ixgbevf_build_skb(rx_ring, rx_buffer,
						rx_desc, size);
989 990 991
		else
			skb = ixgbevf_construct_skb(rx_ring, rx_buffer,
						    rx_desc, size);
992

993
		/* exit if we failed to retrieve a buffer */
994 995
		if (!skb) {
			rx_ring->rx_stats.alloc_rx_buff_failed++;
996
			rx_buffer->pagecnt_bias++;
997
			break;
998
		}
999

1000
		ixgbevf_put_rx_buffer(rx_ring, rx_buffer);
1001 1002
		cleaned_count++;

1003 1004
		/* fetch next buffer in frame if non-eop */
		if (ixgbevf_is_non_eop(rx_ring, rx_desc))
1005
			continue;
1006

1007 1008 1009
		/* verify the packet layout is correct */
		if (ixgbevf_cleanup_headers(rx_ring, rx_desc, skb)) {
			skb = NULL;
1010
			continue;
1011 1012 1013 1014 1015
		}

		/* probably a little skewed due to removing CRC */
		total_rx_bytes += skb->len;

1016 1017 1018
		/* Workaround hardware that can't do proper VEPA multicast
		 * source pruning.
		 */
1019
		if ((skb->pkt_type == PACKET_BROADCAST ||
1020
		     skb->pkt_type == PACKET_MULTICAST) &&
1021
		    ether_addr_equal(rx_ring->netdev->dev_addr,
1022
				     eth_hdr(skb)->h_source)) {
1023
			dev_kfree_skb_irq(skb);
1024
			continue;
1025 1026
		}

1027 1028 1029 1030
		/* populate checksum, VLAN, and protocol */
		ixgbevf_process_skb_fields(rx_ring, rx_desc, skb);

		ixgbevf_rx_skb(q_vector, skb);
1031

1032 1033 1034
		/* reset skb pointer */
		skb = NULL;

1035
		/* update budget accounting */
1036 1037
		total_rx_packets++;
	}
1038

1039 1040 1041
	/* place incomplete frames back on ring for completion */
	rx_ring->skb = skb;

1042
	u64_stats_update_begin(&rx_ring->syncp);
1043 1044
	rx_ring->stats.packets += total_rx_packets;
	rx_ring->stats.bytes += total_rx_bytes;
1045
	u64_stats_update_end(&rx_ring->syncp);
1046 1047
	q_vector->rx.total_packets += total_rx_packets;
	q_vector->rx.total_bytes += total_rx_bytes;
1048

1049
	return total_rx_packets;
1050 1051 1052
}

/**
1053
 * ixgbevf_poll - NAPI polling calback
1054 1055 1056
 * @napi: napi struct with our devices info in it
 * @budget: amount of work driver is allowed to do this pass, in packets
 *
1057
 * This function will clean more than one or more rings associated with a
1058 1059
 * q_vector.
 **/
1060
static int ixgbevf_poll(struct napi_struct *napi, int budget)
1061 1062 1063 1064
{
	struct ixgbevf_q_vector *q_vector =
		container_of(napi, struct ixgbevf_q_vector, napi);
	struct ixgbevf_adapter *adapter = q_vector->adapter;
1065
	struct ixgbevf_ring *ring;
1066
	int per_ring_budget, work_done = 0;
1067 1068
	bool clean_complete = true;

1069 1070 1071 1072
	ixgbevf_for_each_ring(ring, q_vector->tx) {
		if (!ixgbevf_clean_tx_irq(q_vector, ring, budget))
			clean_complete = false;
	}
1073

1074 1075
	if (budget <= 0)
		return budget;
1076

1077
	/* attempt to distribute budget to each queue fairly, but don't allow
1078 1079
	 * the budget to go below 1 because we'll exit polling
	 */
1080 1081 1082 1083 1084
	if (q_vector->rx.count > 1)
		per_ring_budget = max(budget/q_vector->rx.count, 1);
	else
		per_ring_budget = budget;

1085 1086 1087 1088
	ixgbevf_for_each_ring(ring, q_vector->rx) {
		int cleaned = ixgbevf_clean_rx_irq(q_vector, ring,
						   per_ring_budget);
		work_done += cleaned;
1089 1090
		if (cleaned >= per_ring_budget)
			clean_complete = false;
1091
	}
1092 1093 1094 1095 1096

	/* If all work not completed, return budget and keep polling */
	if (!clean_complete)
		return budget;
	/* all work done, exit the polling mode */
1097
	napi_complete_done(napi, work_done);
1098
	if (adapter->rx_itr_setting == 1)
1099
		ixgbevf_set_itr(q_vector);
1100 1101
	if (!test_bit(__IXGBEVF_DOWN, &adapter->state) &&
	    !test_bit(__IXGBEVF_REMOVING, &adapter->state))
1102
		ixgbevf_irq_enable_queues(adapter,
1103
					  BIT(q_vector->v_idx));
1104

1105
	return 0;
1106 1107
}

1108 1109 1110
/**
 * ixgbevf_write_eitr - write VTEITR register in hardware specific way
 * @q_vector: structure containing interrupt and ring information
1111
 **/
1112
void ixgbevf_write_eitr(struct ixgbevf_q_vector *q_vector)
1113 1114 1115 1116 1117 1118
{
	struct ixgbevf_adapter *adapter = q_vector->adapter;
	struct ixgbe_hw *hw = &adapter->hw;
	int v_idx = q_vector->v_idx;
	u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR;

1119
	/* set the WDIS bit to not clear the timer bits and cause an
1120 1121 1122 1123 1124 1125
	 * immediate assertion of the interrupt
	 */
	itr_reg |= IXGBE_EITR_CNT_WDIS;

	IXGBE_WRITE_REG(hw, IXGBE_VTEITR(v_idx), itr_reg);
}
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136

/**
 * ixgbevf_configure_msix - Configure MSI-X hardware
 * @adapter: board private structure
 *
 * ixgbevf_configure_msix sets up the hardware to properly generate MSI-X
 * interrupts.
 **/
static void ixgbevf_configure_msix(struct ixgbevf_adapter *adapter)
{
	struct ixgbevf_q_vector *q_vector;
1137
	int q_vectors, v_idx;
1138 1139

	q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1140
	adapter->eims_enable_mask = 0;
1141

1142
	/* Populate the IVAR table and set the ITR values to the
1143 1144 1145
	 * corresponding register.
	 */
	for (v_idx = 0; v_idx < q_vectors; v_idx++) {
1146
		struct ixgbevf_ring *ring;
1147

1148
		q_vector = adapter->q_vector[v_idx];
1149 1150 1151 1152 1153 1154

		ixgbevf_for_each_ring(ring, q_vector->rx)
			ixgbevf_set_ivar(adapter, 0, ring->reg_idx, v_idx);

		ixgbevf_for_each_ring(ring, q_vector->tx)
			ixgbevf_set_ivar(adapter, 1, ring->reg_idx, v_idx);
1155

1156
		if (q_vector->tx.ring && !q_vector->rx.ring) {
1157
			/* Tx only vector */
1158
			if (adapter->tx_itr_setting == 1)
1159
				q_vector->itr = IXGBE_12K_ITR;
1160 1161 1162
			else
				q_vector->itr = adapter->tx_itr_setting;
		} else {
1163
			/* Rx or Rx/Tx vector */
1164 1165 1166 1167 1168 1169 1170
			if (adapter->rx_itr_setting == 1)
				q_vector->itr = IXGBE_20K_ITR;
			else
				q_vector->itr = adapter->rx_itr_setting;
		}

		/* add q_vector eims value to global eims_enable_mask */
1171
		adapter->eims_enable_mask |= BIT(v_idx);
1172

1173
		ixgbevf_write_eitr(q_vector);
1174 1175 1176
	}

	ixgbevf_set_ivar(adapter, -1, 1, v_idx);
1177
	/* setup eims_other and add value to global eims_enable_mask */
1178
	adapter->eims_other = BIT(v_idx);
1179
	adapter->eims_enable_mask |= adapter->eims_other;
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
}

enum latency_range {
	lowest_latency = 0,
	low_latency = 1,
	bulk_latency = 2,
	latency_invalid = 255
};

/**
 * ixgbevf_update_itr - update the dynamic ITR value based on statistics
1191 1192
 * @q_vector: structure containing interrupt and ring information
 * @ring_container: structure containing ring performance data
1193
 *
1194 1195 1196 1197 1198 1199 1200
 * Stores a new ITR value based on packets and byte
 * counts during the last interrupt.  The advantage of per interrupt
 * computation is faster updates and more accurate ITR for the current
 * traffic pattern.  Constants in this function were computed
 * based on theoretical maximum wire speed and thresholds were set based
 * on testing data as well as attempting to minimize response time
 * while increasing bulk throughput.
1201
 **/
1202 1203
static void ixgbevf_update_itr(struct ixgbevf_q_vector *q_vector,
			       struct ixgbevf_ring_container *ring_container)
1204
{
1205 1206
	int bytes = ring_container->total_bytes;
	int packets = ring_container->total_packets;
1207 1208
	u32 timepassed_us;
	u64 bytes_perint;
1209
	u8 itr_setting = ring_container->itr;
1210 1211

	if (packets == 0)
1212
		return;
1213

1214
	/* simple throttle rate management
1215 1216
	 *    0-20MB/s lowest (100000 ints/s)
	 *   20-100MB/s low   (20000 ints/s)
1217
	 *  100-1249MB/s bulk (12000 ints/s)
1218 1219
	 */
	/* what was last interrupt timeslice? */
1220
	timepassed_us = q_vector->itr >> 2;
1221 1222 1223 1224
	bytes_perint = bytes / timepassed_us; /* bytes/usec */

	switch (itr_setting) {
	case lowest_latency:
1225
		if (bytes_perint > 10)
1226
			itr_setting = low_latency;
1227 1228
		break;
	case low_latency:
1229
		if (bytes_perint > 20)
1230
			itr_setting = bulk_latency;
1231
		else if (bytes_perint <= 10)
1232
			itr_setting = lowest_latency;
1233 1234
		break;
	case bulk_latency:
1235
		if (bytes_perint <= 20)
1236
			itr_setting = low_latency;
1237 1238 1239
		break;
	}

1240 1241 1242 1243 1244 1245
	/* clear work counters since we have the values we need */
	ring_container->total_bytes = 0;
	ring_container->total_packets = 0;

	/* write updated itr to ring container */
	ring_container->itr = itr_setting;
1246 1247
}

1248
static void ixgbevf_set_itr(struct ixgbevf_q_vector *q_vector)
1249
{
1250 1251
	u32 new_itr = q_vector->itr;
	u8 current_itr;
1252

1253 1254
	ixgbevf_update_itr(q_vector, &q_vector->tx);
	ixgbevf_update_itr(q_vector, &q_vector->rx);
1255

1256
	current_itr = max(q_vector->rx.itr, q_vector->tx.itr);
1257 1258 1259 1260

	switch (current_itr) {
	/* counts and packets in update_itr are dependent on these numbers */
	case lowest_latency:
1261
		new_itr = IXGBE_100K_ITR;
1262 1263
		break;
	case low_latency:
1264
		new_itr = IXGBE_20K_ITR;
1265 1266
		break;
	case bulk_latency:
1267
		new_itr = IXGBE_12K_ITR;
1268
		break;
1269 1270
	default:
		break;
1271 1272
	}

1273
	if (new_itr != q_vector->itr) {
1274
		/* do an exponential smoothing */
1275 1276 1277 1278 1279 1280 1281
		new_itr = (10 * new_itr * q_vector->itr) /
			  ((9 * new_itr) + q_vector->itr);

		/* save the algorithm value here */
		q_vector->itr = new_itr;

		ixgbevf_write_eitr(q_vector);
1282 1283 1284
	}
}

1285
static irqreturn_t ixgbevf_msix_other(int irq, void *data)
1286
{
1287
	struct ixgbevf_adapter *adapter = data;
1288
	struct ixgbe_hw *hw = &adapter->hw;
1289

1290
	hw->mac.get_link_status = 1;
1291

1292
	ixgbevf_service_event_schedule(adapter);
1293

1294 1295
	IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, adapter->eims_other);

1296 1297 1298 1299
	return IRQ_HANDLED;
}

/**
1300
 * ixgbevf_msix_clean_rings - single unshared vector rx clean (all queues)
1301 1302 1303
 * @irq: unused
 * @data: pointer to our q_vector struct for this interrupt vector
 **/
1304
static irqreturn_t ixgbevf_msix_clean_rings(int irq, void *data)
1305 1306 1307
{
	struct ixgbevf_q_vector *q_vector = data;

1308
	/* EIAM disabled interrupts (on this vector) for us */
1309
	if (q_vector->rx.ring || q_vector->tx.ring)
1310
		napi_schedule_irqoff(&q_vector->napi);
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324

	return IRQ_HANDLED;
}

/**
 * ixgbevf_request_msix_irqs - Initialize MSI-X interrupts
 * @adapter: board private structure
 *
 * ixgbevf_request_msix_irqs allocates MSI-X vectors and requests
 * interrupts from the kernel.
 **/
static int ixgbevf_request_msix_irqs(struct ixgbevf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
1325
	int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
1326
	unsigned int ri = 0, ti = 0;
1327
	int vector, err;
1328 1329

	for (vector = 0; vector < q_vectors; vector++) {
1330 1331 1332 1333
		struct ixgbevf_q_vector *q_vector = adapter->q_vector[vector];
		struct msix_entry *entry = &adapter->msix_entries[vector];

		if (q_vector->tx.ring && q_vector->rx.ring) {
1334 1335
			snprintf(q_vector->name, sizeof(q_vector->name),
				 "%s-TxRx-%u", netdev->name, ri++);
1336 1337
			ti++;
		} else if (q_vector->rx.ring) {
1338 1339
			snprintf(q_vector->name, sizeof(q_vector->name),
				 "%s-rx-%u", netdev->name, ri++);
1340
		} else if (q_vector->tx.ring) {
1341 1342
			snprintf(q_vector->name, sizeof(q_vector->name),
				 "%s-tx-%u", netdev->name, ti++);
1343 1344 1345 1346
		} else {
			/* skip this unused q_vector */
			continue;
		}
1347 1348
		err = request_irq(entry->vector, &ixgbevf_msix_clean_rings, 0,
				  q_vector->name, q_vector);
1349 1350
		if (err) {
			hw_dbg(&adapter->hw,
1351 1352
			       "request_irq failed for MSIX interrupt Error: %d\n",
			       err);
1353 1354 1355 1356 1357
			goto free_queue_irqs;
		}
	}

	err = request_irq(adapter->msix_entries[vector].vector,
1358
			  &ixgbevf_msix_other, 0, netdev->name, adapter);
1359
	if (err) {
1360 1361
		hw_dbg(&adapter->hw, "request_irq for msix_other failed: %d\n",
		       err);
1362 1363 1364 1365 1366 1367
		goto free_queue_irqs;
	}

	return 0;

free_queue_irqs:
1368 1369 1370 1371 1372
	while (vector) {
		vector--;
		free_irq(adapter->msix_entries[vector].vector,
			 adapter->q_vector[vector]);
	}
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
	/* This failure is non-recoverable - it indicates the system is
	 * out of MSIX vector resources and the VF driver cannot run
	 * without them.  Set the number of msix vectors to zero
	 * indicating that not enough can be allocated.  The error
	 * will be returned to the user indicating device open failed.
	 * Any further attempts to force the driver to open will also
	 * fail.  The only way to recover is to unload the driver and
	 * reload it again.  If the system has recovered some MSIX
	 * vectors then it may succeed.
	 */
	adapter->num_msix_vectors = 0;
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
	return err;
}

/**
 * ixgbevf_request_irq - initialize interrupts
 * @adapter: board private structure
 *
 * Attempts to configure interrupts using the best available
 * capabilities of the hardware and kernel.
 **/
static int ixgbevf_request_irq(struct ixgbevf_adapter *adapter)
{
M
Mark Rustad 已提交
1396
	int err = ixgbevf_request_msix_irqs(adapter);
1397 1398

	if (err)
1399
		hw_dbg(&adapter->hw, "request_irq failed, Error %d\n", err);
1400 1401 1402 1403 1404 1405 1406 1407

	return err;
}

static void ixgbevf_free_irq(struct ixgbevf_adapter *adapter)
{
	int i, q_vectors;

1408 1409 1410
	if (!adapter->msix_entries)
		return;

1411 1412 1413
	q_vectors = adapter->num_msix_vectors;
	i = q_vectors - 1;

1414
	free_irq(adapter->msix_entries[i].vector, adapter);
1415 1416 1417
	i--;

	for (; i >= 0; i--) {
1418 1419 1420 1421 1422
		/* free only the irqs that were actually requested */
		if (!adapter->q_vector[i]->rx.ring &&
		    !adapter->q_vector[i]->tx.ring)
			continue;

1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
		free_irq(adapter->msix_entries[i].vector,
			 adapter->q_vector[i]);
	}
}

/**
 * ixgbevf_irq_disable - Mask off interrupt generation on the NIC
 * @adapter: board private structure
 **/
static inline void ixgbevf_irq_disable(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;
1435
	int i;
1436

1437
	IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, 0);
1438
	IXGBE_WRITE_REG(hw, IXGBE_VTEIMC, ~0);
1439
	IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, 0);
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450

	IXGBE_WRITE_FLUSH(hw);

	for (i = 0; i < adapter->num_msix_vectors; i++)
		synchronize_irq(adapter->msix_entries[i].vector);
}

/**
 * ixgbevf_irq_enable - Enable default interrupt generation settings
 * @adapter: board private structure
 **/
1451
static inline void ixgbevf_irq_enable(struct ixgbevf_adapter *adapter)
1452 1453 1454
{
	struct ixgbe_hw *hw = &adapter->hw;

1455 1456 1457
	IXGBE_WRITE_REG(hw, IXGBE_VTEIAM, adapter->eims_enable_mask);
	IXGBE_WRITE_REG(hw, IXGBE_VTEIAC, adapter->eims_enable_mask);
	IXGBE_WRITE_REG(hw, IXGBE_VTEIMS, adapter->eims_enable_mask);
1458 1459
}

1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
/**
 * ixgbevf_configure_tx_ring - Configure 82599 VF Tx ring after Reset
 * @adapter: board private structure
 * @ring: structure containing ring specific data
 *
 * Configure the Tx descriptor ring after a reset.
 **/
static void ixgbevf_configure_tx_ring(struct ixgbevf_adapter *adapter,
				      struct ixgbevf_ring *ring)
{
	struct ixgbe_hw *hw = &adapter->hw;
	u64 tdba = ring->dma;
	int wait_loop = 10;
	u32 txdctl = IXGBE_TXDCTL_ENABLE;
	u8 reg_idx = ring->reg_idx;

	/* disable queue to avoid issues while updating state */
	IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH);
	IXGBE_WRITE_FLUSH(hw);

	IXGBE_WRITE_REG(hw, IXGBE_VFTDBAL(reg_idx), tdba & DMA_BIT_MASK(32));
	IXGBE_WRITE_REG(hw, IXGBE_VFTDBAH(reg_idx), tdba >> 32);
	IXGBE_WRITE_REG(hw, IXGBE_VFTDLEN(reg_idx),
			ring->count * sizeof(union ixgbe_adv_tx_desc));

	/* disable head writeback */
	IXGBE_WRITE_REG(hw, IXGBE_VFTDWBAH(reg_idx), 0);
	IXGBE_WRITE_REG(hw, IXGBE_VFTDWBAL(reg_idx), 0);

	/* enable relaxed ordering */
	IXGBE_WRITE_REG(hw, IXGBE_VFDCA_TXCTRL(reg_idx),
			(IXGBE_DCA_TXCTRL_DESC_RRO_EN |
			 IXGBE_DCA_TXCTRL_DATA_RRO_EN));

	/* reset head and tail pointers */
	IXGBE_WRITE_REG(hw, IXGBE_VFTDH(reg_idx), 0);
	IXGBE_WRITE_REG(hw, IXGBE_VFTDT(reg_idx), 0);
1497
	ring->tail = adapter->io_addr + IXGBE_VFTDT(reg_idx);
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509

	/* reset ntu and ntc to place SW in sync with hardwdare */
	ring->next_to_clean = 0;
	ring->next_to_use = 0;

	/* In order to avoid issues WTHRESH + PTHRESH should always be equal
	 * to or less than the number of on chip descriptors, which is
	 * currently 40.
	 */
	txdctl |= (8 << 16);    /* WTHRESH = 8 */

	/* Setting PTHRESH to 32 both improves performance */
1510 1511
	txdctl |= (1u << 8) |    /* HTHRESH = 1 */
		   32;           /* PTHRESH = 32 */
1512

1513 1514 1515 1516
	/* reinitialize tx_buffer_info */
	memset(ring->tx_buffer_info, 0,
	       sizeof(struct ixgbevf_tx_buffer) * ring->count);

1517 1518
	clear_bit(__IXGBEVF_HANG_CHECK_ARMED, &ring->state);

1519 1520 1521 1522 1523 1524 1525 1526
	IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(reg_idx), txdctl);

	/* poll to verify queue is enabled */
	do {
		usleep_range(1000, 2000);
		txdctl = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(reg_idx));
	}  while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE));
	if (!wait_loop)
1527
		hw_dbg(hw, "Could not enable Tx Queue %d\n", reg_idx);
1528 1529
}

1530 1531 1532 1533 1534 1535 1536 1537
/**
 * ixgbevf_configure_tx - Configure 82599 VF Transmit Unit after Reset
 * @adapter: board private structure
 *
 * Configure the Tx unit of the MAC after a reset.
 **/
static void ixgbevf_configure_tx(struct ixgbevf_adapter *adapter)
{
1538
	u32 i;
1539 1540

	/* Setup the HW Tx Head and Tail descriptor pointers */
1541 1542
	for (i = 0; i < adapter->num_tx_queues; i++)
		ixgbevf_configure_tx_ring(adapter, adapter->tx_ring[i]);
1543 1544 1545 1546
}

#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT	2

1547 1548
static void ixgbevf_configure_srrctl(struct ixgbevf_adapter *adapter,
				     struct ixgbevf_ring *ring, int index)
1549 1550 1551 1552 1553 1554
{
	struct ixgbe_hw *hw = &adapter->hw;
	u32 srrctl;

	srrctl = IXGBE_SRRCTL_DROP_EN;

1555
	srrctl |= IXGBEVF_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT;
1556 1557 1558 1559
	if (ring_uses_large_buffer(ring))
		srrctl |= IXGBEVF_RXBUFFER_3072 >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
	else
		srrctl |= IXGBEVF_RXBUFFER_2048 >> IXGBE_SRRCTL_BSIZEPKT_SHIFT;
1560
	srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF;
1561 1562 1563 1564

	IXGBE_WRITE_REG(hw, IXGBE_VFSRRCTL(index), srrctl);
}

1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
static void ixgbevf_setup_psrtype(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;

	/* PSRTYPE must be initialized in 82599 */
	u32 psrtype = IXGBE_PSRTYPE_TCPHDR | IXGBE_PSRTYPE_UDPHDR |
		      IXGBE_PSRTYPE_IPV4HDR | IXGBE_PSRTYPE_IPV6HDR |
		      IXGBE_PSRTYPE_L2HDR;

	if (adapter->num_rx_queues > 1)
1575
		psrtype |= BIT(29);
1576 1577 1578 1579

	IXGBE_WRITE_REG(hw, IXGBE_VFPSRTYPE, psrtype);
}

1580 1581 1582 1583 1584 1585 1586 1587 1588
#define IXGBEVF_MAX_RX_DESC_POLL 10
static void ixgbevf_disable_rx_queue(struct ixgbevf_adapter *adapter,
				     struct ixgbevf_ring *ring)
{
	struct ixgbe_hw *hw = &adapter->hw;
	int wait_loop = IXGBEVF_MAX_RX_DESC_POLL;
	u32 rxdctl;
	u8 reg_idx = ring->reg_idx;

1589 1590
	if (IXGBE_REMOVED(hw->hw_addr))
		return;
1591 1592 1593 1594 1595 1596
	rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
	rxdctl &= ~IXGBE_RXDCTL_ENABLE;

	/* write value back with RXDCTL.ENABLE bit cleared */
	IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl);

1597
	/* the hardware may take up to 100us to really disable the Rx queue */
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
	do {
		udelay(10);
		rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
	} while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE));

	if (!wait_loop)
		pr_err("RXDCTL.ENABLE queue %d not cleared while polling\n",
		       reg_idx);
}

static void ixgbevf_rx_desc_queue_enable(struct ixgbevf_adapter *adapter,
					 struct ixgbevf_ring *ring)
{
	struct ixgbe_hw *hw = &adapter->hw;
	int wait_loop = IXGBEVF_MAX_RX_DESC_POLL;
	u32 rxdctl;
	u8 reg_idx = ring->reg_idx;

1616 1617
	if (IXGBE_REMOVED(hw->hw_addr))
		return;
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
	do {
		usleep_range(1000, 2000);
		rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
	} while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE));

	if (!wait_loop)
		pr_err("RXDCTL.ENABLE queue %d not set while polling\n",
		       reg_idx);
}

1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
/**
 * ixgbevf_init_rss_key - Initialize adapter RSS key
 * @adapter: device handle
 *
 * Allocates and initializes the RSS key if it is not allocated.
 **/
static inline int ixgbevf_init_rss_key(struct ixgbevf_adapter *adapter)
{
	u32 *rss_key;

	if (!adapter->rss_key) {
		rss_key = kzalloc(IXGBEVF_RSS_HASH_KEY_SIZE, GFP_KERNEL);
		if (unlikely(!rss_key))
			return -ENOMEM;

		netdev_rss_key_fill(rss_key, IXGBEVF_RSS_HASH_KEY_SIZE);
		adapter->rss_key = rss_key;
	}

	return 0;
}

1650 1651 1652 1653 1654
static void ixgbevf_setup_vfmrqc(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;
	u32 vfmrqc = 0, vfreta = 0;
	u16 rss_i = adapter->num_rx_queues;
1655
	u8 i, j;
1656 1657

	/* Fill out hash function seeds */
1658
	for (i = 0; i < IXGBEVF_VFRSSRK_REGS; i++)
1659
		IXGBE_WRITE_REG(hw, IXGBE_VFRSSRK(i), *(adapter->rss_key + i));
1660

1661
	for (i = 0, j = 0; i < IXGBEVF_X550_VFRETA_SIZE; i++, j++) {
1662 1663
		if (j == rss_i)
			j = 0;
1664 1665 1666 1667 1668

		adapter->rss_indir_tbl[i] = j;

		vfreta |= j << (i & 0x3) * 8;
		if ((i & 3) == 3) {
1669
			IXGBE_WRITE_REG(hw, IXGBE_VFRETA(i >> 2), vfreta);
1670 1671
			vfreta = 0;
		}
1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
	}

	/* Perform hash on these packet types */
	vfmrqc |= IXGBE_VFMRQC_RSS_FIELD_IPV4 |
		IXGBE_VFMRQC_RSS_FIELD_IPV4_TCP |
		IXGBE_VFMRQC_RSS_FIELD_IPV6 |
		IXGBE_VFMRQC_RSS_FIELD_IPV6_TCP;

	vfmrqc |= IXGBE_VFMRQC_RSSEN;

	IXGBE_WRITE_REG(hw, IXGBE_VFMRQC, vfmrqc);
}

1685 1686 1687 1688
static void ixgbevf_configure_rx_ring(struct ixgbevf_adapter *adapter,
				      struct ixgbevf_ring *ring)
{
	struct ixgbe_hw *hw = &adapter->hw;
1689
	union ixgbe_adv_rx_desc *rx_desc;
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
	u64 rdba = ring->dma;
	u32 rxdctl;
	u8 reg_idx = ring->reg_idx;

	/* disable queue to avoid issues while updating state */
	rxdctl = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(reg_idx));
	ixgbevf_disable_rx_queue(adapter, ring);

	IXGBE_WRITE_REG(hw, IXGBE_VFRDBAL(reg_idx), rdba & DMA_BIT_MASK(32));
	IXGBE_WRITE_REG(hw, IXGBE_VFRDBAH(reg_idx), rdba >> 32);
	IXGBE_WRITE_REG(hw, IXGBE_VFRDLEN(reg_idx),
			ring->count * sizeof(union ixgbe_adv_rx_desc));

1703
#ifndef CONFIG_SPARC
1704 1705 1706
	/* enable relaxed ordering */
	IXGBE_WRITE_REG(hw, IXGBE_VFDCA_RXCTRL(reg_idx),
			IXGBE_DCA_RXCTRL_DESC_RRO_EN);
1707 1708 1709 1710 1711
#else
	IXGBE_WRITE_REG(hw, IXGBE_VFDCA_RXCTRL(reg_idx),
			IXGBE_DCA_RXCTRL_DESC_RRO_EN |
			IXGBE_DCA_RXCTRL_DATA_WRO_EN);
#endif
1712 1713 1714 1715

	/* reset head and tail pointers */
	IXGBE_WRITE_REG(hw, IXGBE_VFRDH(reg_idx), 0);
	IXGBE_WRITE_REG(hw, IXGBE_VFRDT(reg_idx), 0);
1716
	ring->tail = adapter->io_addr + IXGBE_VFRDT(reg_idx);
1717

1718 1719 1720 1721
	/* initialize rx_buffer_info */
	memset(ring->rx_buffer_info, 0,
	       sizeof(struct ixgbevf_rx_buffer) * ring->count);

1722 1723 1724 1725
	/* initialize Rx descriptor 0 */
	rx_desc = IXGBEVF_RX_DESC(ring, 0);
	rx_desc->wb.upper.length = 0;

1726 1727 1728
	/* reset ntu and ntc to place SW in sync with hardwdare */
	ring->next_to_clean = 0;
	ring->next_to_use = 0;
1729
	ring->next_to_alloc = 0;
1730

1731
	ixgbevf_configure_srrctl(adapter, ring, reg_idx);
1732

1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745
	/* RXDCTL.RLPML does not work on 82599 */
	if (adapter->hw.mac.type != ixgbe_mac_82599_vf) {
		rxdctl &= ~(IXGBE_RXDCTL_RLPMLMASK |
			    IXGBE_RXDCTL_RLPML_EN);

#if (PAGE_SIZE < 8192)
		/* Limit the maximum frame size so we don't overrun the skb */
		if (ring_uses_build_skb(ring) &&
		    !ring_uses_large_buffer(ring))
			rxdctl |= IXGBEVF_MAX_FRAME_BUILD_SKB |
				  IXGBE_RXDCTL_RLPML_EN;
#endif
	}
1746

1747 1748 1749 1750
	rxdctl |= IXGBE_RXDCTL_ENABLE | IXGBE_RXDCTL_VME;
	IXGBE_WRITE_REG(hw, IXGBE_VFRXDCTL(reg_idx), rxdctl);

	ixgbevf_rx_desc_queue_enable(adapter, ring);
1751
	ixgbevf_alloc_rx_buffers(ring, ixgbevf_desc_unused(ring));
1752 1753
}

1754 1755 1756 1757 1758 1759 1760
static void ixgbevf_set_rx_buffer_len(struct ixgbevf_adapter *adapter,
				      struct ixgbevf_ring *rx_ring)
{
	struct net_device *netdev = adapter->netdev;
	unsigned int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN;

	/* set build_skb and buffer size flags */
1761
	clear_ring_build_skb_enabled(rx_ring);
1762 1763 1764 1765 1766
	clear_ring_uses_large_buffer(rx_ring);

	if (adapter->flags & IXGBEVF_FLAGS_LEGACY_RX)
		return;

1767 1768
	set_ring_build_skb_enabled(rx_ring);

1769 1770 1771 1772 1773 1774 1775 1776
#if (PAGE_SIZE < 8192)
	if (max_frame <= IXGBEVF_MAX_FRAME_BUILD_SKB)
		return;

	set_ring_uses_large_buffer(rx_ring);
#endif
}

1777 1778 1779 1780 1781 1782 1783 1784
/**
 * ixgbevf_configure_rx - Configure 82599 VF Receive Unit after Reset
 * @adapter: board private structure
 *
 * Configure the Rx unit of the MAC after a reset.
 **/
static void ixgbevf_configure_rx(struct ixgbevf_adapter *adapter)
{
1785 1786
	struct ixgbe_hw *hw = &adapter->hw;
	struct net_device *netdev = adapter->netdev;
1787
	int i, ret;
1788

1789
	ixgbevf_setup_psrtype(adapter);
1790 1791
	if (hw->mac.type >= ixgbe_mac_X550_vf)
		ixgbevf_setup_vfmrqc(adapter);
1792

1793
	spin_lock_bh(&adapter->mbx_lock);
1794
	/* notify the PF of our intent to use this size of frame */
1795
	ret = hw->mac.ops.set_rlpml(hw, netdev->mtu + ETH_HLEN + ETH_FCS_LEN);
1796
	spin_unlock_bh(&adapter->mbx_lock);
1797 1798 1799
	if (ret)
		dev_err(&adapter->pdev->dev,
			"Failed to set MTU at %d\n", netdev->mtu);
1800 1801

	/* Setup the HW Rx Head and Tail Descriptor Pointers and
1802 1803
	 * the Base and Length of the Rx Descriptor Ring
	 */
1804 1805 1806 1807 1808 1809
	for (i = 0; i < adapter->num_rx_queues; i++) {
		struct ixgbevf_ring *rx_ring = adapter->rx_ring[i];

		ixgbevf_set_rx_buffer_len(adapter, rx_ring);
		ixgbevf_configure_rx_ring(adapter, rx_ring);
	}
1810 1811
}

1812 1813
static int ixgbevf_vlan_rx_add_vid(struct net_device *netdev,
				   __be16 proto, u16 vid)
1814 1815 1816
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	struct ixgbe_hw *hw = &adapter->hw;
1817 1818
	int err;

1819
	spin_lock_bh(&adapter->mbx_lock);
1820

1821
	/* add VID to filter table */
1822
	err = hw->mac.ops.set_vfta(hw, vid, 0, true);
1823

1824
	spin_unlock_bh(&adapter->mbx_lock);
1825

1826 1827 1828 1829 1830 1831 1832
	/* translate error return types so error makes sense */
	if (err == IXGBE_ERR_MBX)
		return -EIO;

	if (err == IXGBE_ERR_INVALID_ARGUMENT)
		return -EACCES;

J
Jiri Pirko 已提交
1833
	set_bit(vid, adapter->active_vlans);
1834

1835
	return err;
1836 1837
}

1838 1839
static int ixgbevf_vlan_rx_kill_vid(struct net_device *netdev,
				    __be16 proto, u16 vid)
1840 1841 1842
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	struct ixgbe_hw *hw = &adapter->hw;
M
Mark Rustad 已提交
1843
	int err;
1844

1845
	spin_lock_bh(&adapter->mbx_lock);
1846

1847
	/* remove VID from filter table */
1848
	err = hw->mac.ops.set_vfta(hw, vid, 0, false);
1849

1850
	spin_unlock_bh(&adapter->mbx_lock);
1851

J
Jiri Pirko 已提交
1852
	clear_bit(vid, adapter->active_vlans);
1853

1854
	return err;
1855 1856 1857 1858
}

static void ixgbevf_restore_vlan(struct ixgbevf_adapter *adapter)
{
J
Jiri Pirko 已提交
1859
	u16 vid;
1860

J
Jiri Pirko 已提交
1861
	for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
1862 1863
		ixgbevf_vlan_rx_add_vid(adapter->netdev,
					htons(ETH_P_8021Q), vid);
1864 1865
}

1866 1867 1868 1869 1870 1871 1872
static int ixgbevf_write_uc_addr_list(struct net_device *netdev)
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	struct ixgbe_hw *hw = &adapter->hw;
	int count = 0;

	if ((netdev_uc_count(netdev)) > 10) {
1873
		pr_err("Too many unicast filters - No Space\n");
1874 1875 1876 1877 1878
		return -ENOSPC;
	}

	if (!netdev_uc_empty(netdev)) {
		struct netdev_hw_addr *ha;
1879

1880 1881 1882 1883 1884
		netdev_for_each_uc_addr(ha, netdev) {
			hw->mac.ops.set_uc_addr(hw, ++count, ha->addr);
			udelay(200);
		}
	} else {
1885 1886
		/* If the list is empty then send message to PF driver to
		 * clear all MAC VLANs on this VF.
1887 1888 1889 1890 1891 1892 1893
		 */
		hw->mac.ops.set_uc_addr(hw, 0, NULL);
	}

	return count;
}

1894
/**
1895
 * ixgbevf_set_rx_mode - Multicast and unicast set
1896 1897 1898
 * @netdev: network interface device structure
 *
 * The set_rx_method entry point is called whenever the multicast address
1899 1900 1901
 * list, unicast address list or the network interface flags are updated.
 * This routine is responsible for configuring the hardware for proper
 * multicast mode and configuring requested unicast filters.
1902 1903 1904 1905 1906
 **/
static void ixgbevf_set_rx_mode(struct net_device *netdev)
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	struct ixgbe_hw *hw = &adapter->hw;
1907 1908 1909
	unsigned int flags = netdev->flags;
	int xcast_mode;

1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
	/* request the most inclusive mode we need */
	if (flags & IFF_PROMISC)
		xcast_mode = IXGBEVF_XCAST_MODE_PROMISC;
	else if (flags & IFF_ALLMULTI)
		xcast_mode = IXGBEVF_XCAST_MODE_ALLMULTI;
	else if (flags & (IFF_BROADCAST | IFF_MULTICAST))
		xcast_mode = IXGBEVF_XCAST_MODE_MULTI;
	else
		xcast_mode = IXGBEVF_XCAST_MODE_NONE;

1920
	spin_lock_bh(&adapter->mbx_lock);
1921

T
Tony Nguyen 已提交
1922
	hw->mac.ops.update_xcast_mode(hw, xcast_mode);
1923

1924
	/* reprogram multicast list */
1925
	hw->mac.ops.update_mc_addr_list(hw, netdev);
1926 1927

	ixgbevf_write_uc_addr_list(netdev);
1928

1929
	spin_unlock_bh(&adapter->mbx_lock);
1930 1931 1932 1933 1934 1935 1936 1937 1938 1939
}

static void ixgbevf_napi_enable_all(struct ixgbevf_adapter *adapter)
{
	int q_idx;
	struct ixgbevf_q_vector *q_vector;
	int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;

	for (q_idx = 0; q_idx < q_vectors; q_idx++) {
		q_vector = adapter->q_vector[q_idx];
1940
		napi_enable(&q_vector->napi);
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
	}
}

static void ixgbevf_napi_disable_all(struct ixgbevf_adapter *adapter)
{
	int q_idx;
	struct ixgbevf_q_vector *q_vector;
	int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;

	for (q_idx = 0; q_idx < q_vectors; q_idx++) {
		q_vector = adapter->q_vector[q_idx];
		napi_disable(&q_vector->napi);
	}
}

1956 1957 1958 1959 1960
static int ixgbevf_configure_dcb(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;
	unsigned int def_q = 0;
	unsigned int num_tcs = 0;
1961 1962
	unsigned int num_rx_queues = adapter->num_rx_queues;
	unsigned int num_tx_queues = adapter->num_tx_queues;
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975
	int err;

	spin_lock_bh(&adapter->mbx_lock);

	/* fetch queue configuration from the PF */
	err = ixgbevf_get_queues(hw, &num_tcs, &def_q);

	spin_unlock_bh(&adapter->mbx_lock);

	if (err)
		return err;

	if (num_tcs > 1) {
1976 1977 1978
		/* we need only one Tx queue */
		num_tx_queues = 1;

1979
		/* update default Tx ring register index */
1980
		adapter->tx_ring[0]->reg_idx = def_q;
1981 1982 1983 1984 1985 1986

		/* we need as many queues as traffic classes */
		num_rx_queues = num_tcs;
	}

	/* if we have a bad config abort request queue reset */
1987 1988
	if ((adapter->num_rx_queues != num_rx_queues) ||
	    (adapter->num_tx_queues != num_tx_queues)) {
1989 1990 1991 1992
		/* force mailbox timeout to prevent further messages */
		hw->mbx.timeout = 0;

		/* wait for watchdog to come around and bail us out */
1993
		set_bit(__IXGBEVF_QUEUE_RESET_REQUESTED, &adapter->state);
1994 1995 1996 1997 1998
	}

	return 0;
}

1999 2000
static void ixgbevf_configure(struct ixgbevf_adapter *adapter)
{
2001 2002
	ixgbevf_configure_dcb(adapter);

2003
	ixgbevf_set_rx_mode(adapter->netdev);
2004 2005 2006 2007 2008 2009 2010

	ixgbevf_restore_vlan(adapter);

	ixgbevf_configure_tx(adapter);
	ixgbevf_configure_rx(adapter);
}

2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048
static void ixgbevf_save_reset_stats(struct ixgbevf_adapter *adapter)
{
	/* Only save pre-reset stats if there are some */
	if (adapter->stats.vfgprc || adapter->stats.vfgptc) {
		adapter->stats.saved_reset_vfgprc += adapter->stats.vfgprc -
			adapter->stats.base_vfgprc;
		adapter->stats.saved_reset_vfgptc += adapter->stats.vfgptc -
			adapter->stats.base_vfgptc;
		adapter->stats.saved_reset_vfgorc += adapter->stats.vfgorc -
			adapter->stats.base_vfgorc;
		adapter->stats.saved_reset_vfgotc += adapter->stats.vfgotc -
			adapter->stats.base_vfgotc;
		adapter->stats.saved_reset_vfmprc += adapter->stats.vfmprc -
			adapter->stats.base_vfmprc;
	}
}

static void ixgbevf_init_last_counter_stats(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;

	adapter->stats.last_vfgprc = IXGBE_READ_REG(hw, IXGBE_VFGPRC);
	adapter->stats.last_vfgorc = IXGBE_READ_REG(hw, IXGBE_VFGORC_LSB);
	adapter->stats.last_vfgorc |=
		(((u64)(IXGBE_READ_REG(hw, IXGBE_VFGORC_MSB))) << 32);
	adapter->stats.last_vfgptc = IXGBE_READ_REG(hw, IXGBE_VFGPTC);
	adapter->stats.last_vfgotc = IXGBE_READ_REG(hw, IXGBE_VFGOTC_LSB);
	adapter->stats.last_vfgotc |=
		(((u64)(IXGBE_READ_REG(hw, IXGBE_VFGOTC_MSB))) << 32);
	adapter->stats.last_vfmprc = IXGBE_READ_REG(hw, IXGBE_VFMPRC);

	adapter->stats.base_vfgprc = adapter->stats.last_vfgprc;
	adapter->stats.base_vfgorc = adapter->stats.last_vfgorc;
	adapter->stats.base_vfgptc = adapter->stats.last_vfgptc;
	adapter->stats.base_vfgotc = adapter->stats.last_vfgotc;
	adapter->stats.base_vfmprc = adapter->stats.last_vfmprc;
}

2049 2050 2051
static void ixgbevf_negotiate_api(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;
2052 2053
	int api[] = { ixgbe_mbox_api_13,
		      ixgbe_mbox_api_12,
V
Vlad Zolotarov 已提交
2054
		      ixgbe_mbox_api_11,
2055
		      ixgbe_mbox_api_10,
2056
		      ixgbe_mbox_api_unknown };
M
Mark Rustad 已提交
2057
	int err, idx = 0;
2058

2059
	spin_lock_bh(&adapter->mbx_lock);
2060 2061

	while (api[idx] != ixgbe_mbox_api_unknown) {
2062
		err = hw->mac.ops.negotiate_api_version(hw, api[idx]);
2063 2064 2065 2066 2067
		if (!err)
			break;
		idx++;
	}

2068
	spin_unlock_bh(&adapter->mbx_lock);
2069 2070
}

2071
static void ixgbevf_up_complete(struct ixgbevf_adapter *adapter)
2072 2073 2074 2075 2076 2077
{
	struct net_device *netdev = adapter->netdev;
	struct ixgbe_hw *hw = &adapter->hw;

	ixgbevf_configure_msix(adapter);

2078
	spin_lock_bh(&adapter->mbx_lock);
2079

2080 2081 2082 2083
	if (is_valid_ether_addr(hw->mac.addr))
		hw->mac.ops.set_rar(hw, 0, hw->mac.addr, 0);
	else
		hw->mac.ops.set_rar(hw, 0, hw->mac.perm_addr, 0);
2084

2085
	spin_unlock_bh(&adapter->mbx_lock);
2086

2087
	smp_mb__before_atomic();
2088 2089 2090
	clear_bit(__IXGBEVF_DOWN, &adapter->state);
	ixgbevf_napi_enable_all(adapter);

2091 2092 2093 2094
	/* clear any pending interrupts, may auto mask */
	IXGBE_READ_REG(hw, IXGBE_VTEICR);
	ixgbevf_irq_enable(adapter);

2095 2096 2097
	/* enable transmits */
	netif_tx_start_all_queues(netdev);

2098 2099 2100
	ixgbevf_save_reset_stats(adapter);
	ixgbevf_init_last_counter_stats(adapter);

2101
	hw->mac.get_link_status = 1;
2102
	mod_timer(&adapter->service_timer, jiffies);
2103 2104
}

2105
void ixgbevf_up(struct ixgbevf_adapter *adapter)
2106 2107 2108
{
	ixgbevf_configure(adapter);

2109
	ixgbevf_up_complete(adapter);
2110 2111 2112 2113 2114 2115
}

/**
 * ixgbevf_clean_rx_ring - Free Rx Buffers per Queue
 * @rx_ring: ring to free buffers from
 **/
2116
static void ixgbevf_clean_rx_ring(struct ixgbevf_ring *rx_ring)
2117
{
2118
	u16 i = rx_ring->next_to_clean;
2119

2120 2121 2122 2123 2124 2125 2126
	/* Free Rx ring sk_buff */
	if (rx_ring->skb) {
		dev_kfree_skb(rx_ring->skb);
		rx_ring->skb = NULL;
	}

	/* Free all the Rx ring pages */
2127
	while (i != rx_ring->next_to_alloc) {
2128
		struct ixgbevf_rx_buffer *rx_buffer;
2129

2130
		rx_buffer = &rx_ring->rx_buffer_info[i];
2131 2132 2133 2134 2135 2136 2137

		/* Invalidate cache lines that may have been written to by
		 * device so that we avoid corrupting memory.
		 */
		dma_sync_single_range_for_cpu(rx_ring->dev,
					      rx_buffer->dma,
					      rx_buffer->page_offset,
2138
					      ixgbevf_rx_bufsz(rx_ring),
2139 2140 2141 2142 2143
					      DMA_FROM_DEVICE);

		/* free resources associated with mapping */
		dma_unmap_page_attrs(rx_ring->dev,
				     rx_buffer->dma,
2144
				     ixgbevf_rx_pg_size(rx_ring),
2145 2146 2147
				     DMA_FROM_DEVICE,
				     IXGBEVF_RX_DMA_ATTR);

2148 2149 2150
		__page_frag_cache_drain(rx_buffer->page,
					rx_buffer->pagecnt_bias);

2151 2152 2153
		i++;
		if (i == rx_ring->count)
			i = 0;
2154 2155
	}

2156 2157 2158
	rx_ring->next_to_alloc = 0;
	rx_ring->next_to_clean = 0;
	rx_ring->next_to_use = 0;
2159 2160 2161 2162 2163 2164
}

/**
 * ixgbevf_clean_tx_ring - Free Tx Buffers
 * @tx_ring: ring to be cleaned
 **/
2165
static void ixgbevf_clean_tx_ring(struct ixgbevf_ring *tx_ring)
2166
{
2167 2168
	u16 i = tx_ring->next_to_clean;
	struct ixgbevf_tx_buffer *tx_buffer = &tx_ring->tx_buffer_info[i];
2169

2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195
	while (i != tx_ring->next_to_use) {
		union ixgbe_adv_tx_desc *eop_desc, *tx_desc;

		/* Free all the Tx ring sk_buffs */
		dev_kfree_skb_any(tx_buffer->skb);

		/* unmap skb header data */
		dma_unmap_single(tx_ring->dev,
				 dma_unmap_addr(tx_buffer, dma),
				 dma_unmap_len(tx_buffer, len),
				 DMA_TO_DEVICE);

		/* check for eop_desc to determine the end of the packet */
		eop_desc = tx_buffer->next_to_watch;
		tx_desc = IXGBEVF_TX_DESC(tx_ring, i);

		/* unmap remaining buffers */
		while (tx_desc != eop_desc) {
			tx_buffer++;
			tx_desc++;
			i++;
			if (unlikely(i == tx_ring->count)) {
				i = 0;
				tx_buffer = tx_ring->tx_buffer_info;
				tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
			}
G
Greg Rose 已提交
2196

2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
			/* unmap any remaining paged data */
			if (dma_unmap_len(tx_buffer, len))
				dma_unmap_page(tx_ring->dev,
					       dma_unmap_addr(tx_buffer, dma),
					       dma_unmap_len(tx_buffer, len),
					       DMA_TO_DEVICE);
		}

		/* move us one more past the eop_desc for start of next pkt */
		tx_buffer++;
		i++;
		if (unlikely(i == tx_ring->count)) {
			i = 0;
			tx_buffer = tx_ring->tx_buffer_info;
		}
2212 2213
	}

2214 2215 2216
	/* reset next_to_use and next_to_clean */
	tx_ring->next_to_use = 0;
	tx_ring->next_to_clean = 0;
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228

}

/**
 * ixgbevf_clean_all_rx_rings - Free Rx Buffers for all queues
 * @adapter: board private structure
 **/
static void ixgbevf_clean_all_rx_rings(struct ixgbevf_adapter *adapter)
{
	int i;

	for (i = 0; i < adapter->num_rx_queues; i++)
2229
		ixgbevf_clean_rx_ring(adapter->rx_ring[i]);
2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240
}

/**
 * ixgbevf_clean_all_tx_rings - Free Tx Buffers for all queues
 * @adapter: board private structure
 **/
static void ixgbevf_clean_all_tx_rings(struct ixgbevf_adapter *adapter)
{
	int i;

	for (i = 0; i < adapter->num_tx_queues; i++)
2241
		ixgbevf_clean_tx_ring(adapter->tx_ring[i]);
2242 2243 2244 2245 2246 2247
}

void ixgbevf_down(struct ixgbevf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	struct ixgbe_hw *hw = &adapter->hw;
2248
	int i;
2249 2250

	/* signal that we are down to the interrupt handler */
2251 2252
	if (test_and_set_bit(__IXGBEVF_DOWN, &adapter->state))
		return; /* do nothing if already down */
2253

2254
	/* disable all enabled Rx queues */
2255
	for (i = 0; i < adapter->num_rx_queues; i++)
2256
		ixgbevf_disable_rx_queue(adapter, adapter->rx_ring[i]);
2257

2258
	usleep_range(10000, 20000);
2259 2260 2261

	netif_tx_stop_all_queues(netdev);

2262 2263 2264 2265
	/* call carrier off first to avoid false dev_watchdog timeouts */
	netif_carrier_off(netdev);
	netif_tx_disable(netdev);

2266 2267 2268 2269
	ixgbevf_irq_disable(adapter);

	ixgbevf_napi_disable_all(adapter);

2270
	del_timer_sync(&adapter->service_timer);
2271 2272 2273

	/* disable transmits in the hardware now that interrupts are off */
	for (i = 0; i < adapter->num_tx_queues; i++) {
2274 2275 2276 2277
		u8 reg_idx = adapter->tx_ring[i]->reg_idx;

		IXGBE_WRITE_REG(hw, IXGBE_VFTXDCTL(reg_idx),
				IXGBE_TXDCTL_SWFLSH);
2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289
	}

	if (!pci_channel_offline(adapter->pdev))
		ixgbevf_reset(adapter);

	ixgbevf_clean_all_tx_rings(adapter);
	ixgbevf_clean_all_rx_rings(adapter);
}

void ixgbevf_reinit_locked(struct ixgbevf_adapter *adapter)
{
	WARN_ON(in_interrupt());
G
Greg Rose 已提交
2290

2291 2292 2293
	while (test_and_set_bit(__IXGBEVF_RESETTING, &adapter->state))
		msleep(1);

2294 2295
	ixgbevf_down(adapter);
	ixgbevf_up(adapter);
2296 2297 2298 2299 2300 2301 2302 2303 2304

	clear_bit(__IXGBEVF_RESETTING, &adapter->state);
}

void ixgbevf_reset(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;
	struct net_device *netdev = adapter->netdev;

D
Don Skidmore 已提交
2305
	if (hw->mac.ops.reset_hw(hw)) {
2306
		hw_dbg(hw, "PF still resetting\n");
D
Don Skidmore 已提交
2307
	} else {
2308
		hw->mac.ops.init_hw(hw);
D
Don Skidmore 已提交
2309 2310
		ixgbevf_negotiate_api(adapter);
	}
2311 2312

	if (is_valid_ether_addr(adapter->hw.mac.addr)) {
2313 2314
		ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
		ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr);
2315
	}
2316 2317

	adapter->last_reset = jiffies;
2318 2319
}

2320 2321
static int ixgbevf_acquire_msix_vectors(struct ixgbevf_adapter *adapter,
					int vectors)
2322
{
2323
	int vector_threshold;
2324

2325 2326 2327
	/* We'll want at least 2 (vector_threshold):
	 * 1) TxQ[0] + RxQ[0] handler
	 * 2) Other (Link Status Change, etc.)
2328 2329 2330 2331 2332 2333 2334 2335
	 */
	vector_threshold = MIN_MSIX_COUNT;

	/* The more we get, the more we will assign to Tx/Rx Cleanup
	 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
	 * Right now, we simply care about how many we'll get; we'll
	 * set them up later while requesting irq's.
	 */
2336 2337
	vectors = pci_enable_msix_range(adapter->pdev, adapter->msix_entries,
					vector_threshold, vectors);
2338

2339
	if (vectors < 0) {
2340 2341
		dev_err(&adapter->pdev->dev,
			"Unable to allocate MSI-X interrupts\n");
2342 2343
		kfree(adapter->msix_entries);
		adapter->msix_entries = NULL;
2344
		return vectors;
2345
	}
2346

2347 2348 2349 2350 2351 2352 2353
	/* Adjust for only the vectors we'll use, which is minimum
	 * of max_msix_q_vectors + NON_Q_VECTORS, or the number of
	 * vectors we were allocated.
	 */
	adapter->num_msix_vectors = vectors;

	return 0;
2354 2355
}

2356 2357
/**
 * ixgbevf_set_num_queues - Allocate queues for device, feature dependent
2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
 * @adapter: board private structure to initialize
 *
 * This is the top level queue allocation routine.  The order here is very
 * important, starting with the "most" number of features turned on at once,
 * and ending with the smallest set of features.  This way large combinations
 * can be allocated if they're turned on, and smaller combinations are the
 * fallthrough conditions.
 *
 **/
static void ixgbevf_set_num_queues(struct ixgbevf_adapter *adapter)
{
2369 2370 2371 2372 2373
	struct ixgbe_hw *hw = &adapter->hw;
	unsigned int def_q = 0;
	unsigned int num_tcs = 0;
	int err;

2374 2375 2376
	/* Start with base case */
	adapter->num_rx_queues = 1;
	adapter->num_tx_queues = 1;
2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388

	spin_lock_bh(&adapter->mbx_lock);

	/* fetch queue configuration from the PF */
	err = ixgbevf_get_queues(hw, &num_tcs, &def_q);

	spin_unlock_bh(&adapter->mbx_lock);

	if (err)
		return;

	/* we need as many queues as traffic classes */
2389
	if (num_tcs > 1) {
2390
		adapter->num_rx_queues = num_tcs;
2391 2392 2393 2394 2395
	} else {
		u16 rss = min_t(u16, num_online_cpus(), IXGBEVF_MAX_RSS_QUEUES);

		switch (hw->api_version) {
		case ixgbe_mbox_api_11:
V
Vlad Zolotarov 已提交
2396
		case ixgbe_mbox_api_12:
2397
		case ixgbe_mbox_api_13:
2398 2399 2400 2401 2402 2403
			adapter->num_rx_queues = rss;
			adapter->num_tx_queues = rss;
		default:
			break;
		}
	}
2404 2405 2406
}

/**
2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
 * ixgbevf_set_interrupt_capability - set MSI-X or FAIL if not supported
 * @adapter: board private structure to initialize
 *
 * Attempt to configure the interrupts using the best available
 * capabilities of the hardware and the kernel.
 **/
static int ixgbevf_set_interrupt_capability(struct ixgbevf_adapter *adapter)
{
	int vector, v_budget;

	/* It's easy to be greedy for MSI-X vectors, but it really
	 * doesn't do us much good if we have a lot more vectors
	 * than CPU's.  So let's be conservative and only ask for
	 * (roughly) the same number of vectors as there are CPU's.
	 * The default is to use pairs of vectors.
	 */
	v_budget = max(adapter->num_rx_queues, adapter->num_tx_queues);
	v_budget = min_t(int, v_budget, num_online_cpus());
	v_budget += NON_Q_VECTORS;

	adapter->msix_entries = kcalloc(v_budget,
					sizeof(struct msix_entry), GFP_KERNEL);
	if (!adapter->msix_entries)
		return -ENOMEM;

	for (vector = 0; vector < v_budget; vector++)
		adapter->msix_entries[vector].entry = vector;

	/* A failure in MSI-X entry allocation isn't fatal, but the VF driver
	 * does not support any other modes, so we will simply fail here. Note
	 * that we clean up the msix_entries pointer else-where.
	 */
	return ixgbevf_acquire_msix_vectors(adapter, v_budget);
}

static void ixgbevf_add_ring(struct ixgbevf_ring *ring,
			     struct ixgbevf_ring_container *head)
{
	ring->next = head->ring;
	head->ring = ring;
	head->count++;
}

/**
 * ixgbevf_alloc_q_vector - Allocate memory for a single interrupt vector
2452
 * @adapter: board private structure to initialize
2453 2454 2455 2456 2457
 * @v_idx: index of vector in adapter struct
 * @txr_count: number of Tx rings for q vector
 * @txr_idx: index of first Tx ring to assign
 * @rxr_count: number of Rx rings for q vector
 * @rxr_idx: index of first Rx ring to assign
2458
 *
2459
 * We allocate one q_vector.  If allocation fails we return -ENOMEM.
2460
 **/
2461 2462 2463
static int ixgbevf_alloc_q_vector(struct ixgbevf_adapter *adapter, int v_idx,
				  int txr_count, int txr_idx,
				  int rxr_count, int rxr_idx)
2464
{
2465
	struct ixgbevf_q_vector *q_vector;
2466
	struct ixgbevf_ring *ring;
2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483
	int ring_count, size;

	ring_count = txr_count + rxr_count;
	size = sizeof(*q_vector) + (sizeof(*ring) * ring_count);

	/* allocate q_vector and rings */
	q_vector = kzalloc(size, GFP_KERNEL);
	if (!q_vector)
		return -ENOMEM;

	/* initialize NAPI */
	netif_napi_add(adapter->netdev, &q_vector->napi, ixgbevf_poll, 64);

	/* tie q_vector and adapter together */
	adapter->q_vector[v_idx] = q_vector;
	q_vector->adapter = adapter;
	q_vector->v_idx = v_idx;
2484

2485 2486
	/* initialize pointer to rings */
	ring = q_vector->ring;
2487

2488 2489
	while (txr_count) {
		/* assign generic ring traits */
2490 2491
		ring->dev = &adapter->pdev->dev;
		ring->netdev = adapter->netdev;
2492 2493 2494 2495 2496 2497 2498 2499

		/* configure backlink on ring */
		ring->q_vector = q_vector;

		/* update q_vector Tx values */
		ixgbevf_add_ring(ring, &q_vector->tx);

		/* apply Tx specific ring traits */
2500
		ring->count = adapter->tx_ring_count;
2501 2502
		ring->queue_index = txr_idx;
		ring->reg_idx = txr_idx;
2503

2504 2505 2506 2507 2508 2509
		/* assign ring to adapter */
		 adapter->tx_ring[txr_idx] = ring;

		/* update count and index */
		txr_count--;
		txr_idx++;
2510

2511 2512 2513
		/* push pointer to next ring */
		ring++;
	}
2514

2515 2516
	while (rxr_count) {
		/* assign generic ring traits */
2517 2518 2519
		ring->dev = &adapter->pdev->dev;
		ring->netdev = adapter->netdev;

2520 2521 2522 2523 2524 2525 2526
		/* configure backlink on ring */
		ring->q_vector = q_vector;

		/* update q_vector Rx values */
		ixgbevf_add_ring(ring, &q_vector->rx);

		/* apply Rx specific ring traits */
2527
		ring->count = adapter->rx_ring_count;
2528 2529
		ring->queue_index = rxr_idx;
		ring->reg_idx = rxr_idx;
2530

2531 2532
		/* assign ring to adapter */
		adapter->rx_ring[rxr_idx] = ring;
2533

2534 2535 2536
		/* update count and index */
		rxr_count--;
		rxr_idx++;
2537

2538 2539
		/* push pointer to next ring */
		ring++;
2540 2541
	}

2542
	return 0;
2543 2544 2545
}

/**
2546
 * ixgbevf_free_q_vector - Free memory allocated for specific interrupt vector
2547
 * @adapter: board private structure to initialize
2548
 * @v_idx: index of vector in adapter struct
2549
 *
2550 2551 2552
 * This function frees the memory allocated to the q_vector.  In addition if
 * NAPI is enabled it will delete any references to the NAPI struct prior
 * to freeing the q_vector.
2553
 **/
2554
static void ixgbevf_free_q_vector(struct ixgbevf_adapter *adapter, int v_idx)
2555
{
2556 2557
	struct ixgbevf_q_vector *q_vector = adapter->q_vector[v_idx];
	struct ixgbevf_ring *ring;
2558

2559 2560
	ixgbevf_for_each_ring(ring, q_vector->tx)
		adapter->tx_ring[ring->queue_index] = NULL;
2561

2562 2563
	ixgbevf_for_each_ring(ring, q_vector->rx)
		adapter->rx_ring[ring->queue_index] = NULL;
2564

2565 2566
	adapter->q_vector[v_idx] = NULL;
	netif_napi_del(&q_vector->napi);
2567

2568 2569 2570 2571
	/* ixgbevf_get_stats() might access the rings on this vector,
	 * we must wait a grace period before freeing it.
	 */
	kfree_rcu(q_vector, rcu);
2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582
}

/**
 * ixgbevf_alloc_q_vectors - Allocate memory for interrupt vectors
 * @adapter: board private structure to initialize
 *
 * We allocate one q_vector per queue interrupt.  If allocation fails we
 * return -ENOMEM.
 **/
static int ixgbevf_alloc_q_vectors(struct ixgbevf_adapter *adapter)
{
2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606
	int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
	int rxr_remaining = adapter->num_rx_queues;
	int txr_remaining = adapter->num_tx_queues;
	int rxr_idx = 0, txr_idx = 0, v_idx = 0;
	int err;

	if (q_vectors >= (rxr_remaining + txr_remaining)) {
		for (; rxr_remaining; v_idx++, q_vectors--) {
			int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors);

			err = ixgbevf_alloc_q_vector(adapter, v_idx,
						     0, 0, rqpv, rxr_idx);
			if (err)
				goto err_out;

			/* update counts and index */
			rxr_remaining -= rqpv;
			rxr_idx += rqpv;
		}
	}

	for (; q_vectors; v_idx++, q_vectors--) {
		int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors);
		int tqpv = DIV_ROUND_UP(txr_remaining, q_vectors);
2607

2608 2609 2610
		err = ixgbevf_alloc_q_vector(adapter, v_idx,
					     tqpv, txr_idx,
					     rqpv, rxr_idx);
2611

2612
		if (err)
2613
			goto err_out;
2614 2615 2616 2617 2618 2619

		/* update counts and index */
		rxr_remaining -= rqpv;
		rxr_idx += rqpv;
		txr_remaining -= tqpv;
		txr_idx += tqpv;
2620 2621 2622 2623 2624
	}

	return 0;

err_out:
2625 2626 2627
	while (v_idx) {
		v_idx--;
		ixgbevf_free_q_vector(adapter, v_idx);
2628
	}
2629

2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
	return -ENOMEM;
}

/**
 * ixgbevf_free_q_vectors - Free memory allocated for interrupt vectors
 * @adapter: board private structure to initialize
 *
 * This function frees the memory allocated to the q_vectors.  In addition if
 * NAPI is enabled it will delete any references to the NAPI struct prior
 * to freeing the q_vector.
 **/
static void ixgbevf_free_q_vectors(struct ixgbevf_adapter *adapter)
{
2643
	int q_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2644

2645 2646 2647
	while (q_vectors) {
		q_vectors--;
		ixgbevf_free_q_vector(adapter, q_vectors);
2648 2649 2650 2651 2652 2653 2654 2655 2656 2657
	}
}

/**
 * ixgbevf_reset_interrupt_capability - Reset MSIX setup
 * @adapter: board private structure
 *
 **/
static void ixgbevf_reset_interrupt_capability(struct ixgbevf_adapter *adapter)
{
2658 2659 2660
	if (!adapter->msix_entries)
		return;

2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
	pci_disable_msix(adapter->pdev);
	kfree(adapter->msix_entries);
	adapter->msix_entries = NULL;
}

/**
 * ixgbevf_init_interrupt_scheme - Determine if MSIX is supported and init
 * @adapter: board private structure to initialize
 *
 **/
static int ixgbevf_init_interrupt_scheme(struct ixgbevf_adapter *adapter)
{
	int err;

	/* Number of supported queues */
	ixgbevf_set_num_queues(adapter);

	err = ixgbevf_set_interrupt_capability(adapter);
	if (err) {
		hw_dbg(&adapter->hw,
		       "Unable to setup interrupt capabilities\n");
		goto err_set_interrupt;
	}

	err = ixgbevf_alloc_q_vectors(adapter);
	if (err) {
2687
		hw_dbg(&adapter->hw, "Unable to allocate memory for queue vectors\n");
2688 2689 2690
		goto err_alloc_q_vectors;
	}

2691
	hw_dbg(&adapter->hw, "Multiqueue %s: Rx Queue count = %u, Tx Queue count = %u\n",
2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703
	       (adapter->num_rx_queues > 1) ? "Enabled" :
	       "Disabled", adapter->num_rx_queues, adapter->num_tx_queues);

	set_bit(__IXGBEVF_DOWN, &adapter->state);

	return 0;
err_alloc_q_vectors:
	ixgbevf_reset_interrupt_capability(adapter);
err_set_interrupt:
	return err;
}

2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719
/**
 * ixgbevf_clear_interrupt_scheme - Clear the current interrupt scheme settings
 * @adapter: board private structure to clear interrupt scheme on
 *
 * We go through and clear interrupt specific resources and reset the structure
 * to pre-load conditions
 **/
static void ixgbevf_clear_interrupt_scheme(struct ixgbevf_adapter *adapter)
{
	adapter->num_tx_queues = 0;
	adapter->num_rx_queues = 0;

	ixgbevf_free_q_vectors(adapter);
	ixgbevf_reset_interrupt_capability(adapter);
}

2720 2721 2722 2723 2724 2725 2726 2727
/**
 * ixgbevf_sw_init - Initialize general software structures
 * @adapter: board private structure to initialize
 *
 * ixgbevf_sw_init initializes the Adapter private data structure.
 * Fields are initialized based on PCI device information and
 * OS network device settings (MTU size).
 **/
2728
static int ixgbevf_sw_init(struct ixgbevf_adapter *adapter)
2729 2730 2731
{
	struct ixgbe_hw *hw = &adapter->hw;
	struct pci_dev *pdev = adapter->pdev;
2732
	struct net_device *netdev = adapter->netdev;
2733 2734 2735 2736 2737
	int err;

	/* PCI config space info */
	hw->vendor_id = pdev->vendor;
	hw->device_id = pdev->device;
2738
	hw->revision_id = pdev->revision;
2739 2740 2741 2742
	hw->subsystem_vendor_id = pdev->subsystem_vendor;
	hw->subsystem_device_id = pdev->subsystem_device;

	hw->mbx.ops.init_params(hw);
2743

2744 2745 2746 2747 2748 2749
	if (hw->mac.type >= ixgbe_mac_X550_vf) {
		err = ixgbevf_init_rss_key(adapter);
		if (err)
			goto out;
	}

2750 2751 2752 2753
	/* assume legacy case in which PF would only give VF 2 queues */
	hw->mac.max_tx_queues = 2;
	hw->mac.max_rx_queues = 2;

D
Don Skidmore 已提交
2754 2755 2756
	/* lock to protect mailbox accesses */
	spin_lock_init(&adapter->mbx_lock);

2757 2758 2759
	err = hw->mac.ops.reset_hw(hw);
	if (err) {
		dev_info(&pdev->dev,
2760
			 "PF still in reset state.  Is the PF interface up?\n");
2761 2762 2763
	} else {
		err = hw->mac.ops.init_hw(hw);
		if (err) {
2764
			pr_err("init_shared_code failed: %d\n", err);
2765 2766
			goto out;
		}
D
Don Skidmore 已提交
2767
		ixgbevf_negotiate_api(adapter);
2768 2769 2770 2771 2772 2773
		err = hw->mac.ops.get_mac_addr(hw, hw->mac.addr);
		if (err)
			dev_info(&pdev->dev, "Error reading MAC address\n");
		else if (is_zero_ether_addr(adapter->hw.mac.addr))
			dev_info(&pdev->dev,
				 "MAC address not assigned by administrator.\n");
2774
		ether_addr_copy(netdev->dev_addr, hw->mac.addr);
2775 2776 2777 2778 2779
	}

	if (!is_valid_ether_addr(netdev->dev_addr)) {
		dev_info(&pdev->dev, "Assigning random MAC address\n");
		eth_hw_addr_random(netdev);
2780
		ether_addr_copy(hw->mac.addr, netdev->dev_addr);
2781
		ether_addr_copy(hw->mac.perm_addr, netdev->dev_addr);
2782 2783 2784
	}

	/* Enable dynamic interrupt throttling rates */
2785 2786
	adapter->rx_itr_setting = 1;
	adapter->tx_itr_setting = 1;
2787 2788 2789 2790 2791 2792

	/* set default ring sizes */
	adapter->tx_ring_count = IXGBEVF_DEFAULT_TXD;
	adapter->rx_ring_count = IXGBEVF_DEFAULT_RXD;

	set_bit(__IXGBEVF_DOWN, &adapter->state);
2793
	return 0;
2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812

out:
	return err;
}

#define UPDATE_VF_COUNTER_32bit(reg, last_counter, counter)	\
	{							\
		u32 current_counter = IXGBE_READ_REG(hw, reg);	\
		if (current_counter < last_counter)		\
			counter += 0x100000000LL;		\
		last_counter = current_counter;			\
		counter &= 0xFFFFFFFF00000000LL;		\
		counter |= current_counter;			\
	}

#define UPDATE_VF_COUNTER_36bit(reg_lsb, reg_msb, last_counter, counter) \
	{								 \
		u64 current_counter_lsb = IXGBE_READ_REG(hw, reg_lsb);	 \
		u64 current_counter_msb = IXGBE_READ_REG(hw, reg_msb);	 \
2813 2814
		u64 current_counter = (current_counter_msb << 32) |	 \
			current_counter_lsb;				 \
2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
		if (current_counter < last_counter)			 \
			counter += 0x1000000000LL;			 \
		last_counter = current_counter;				 \
		counter &= 0xFFFFFFF000000000LL;			 \
		counter |= current_counter;				 \
	}
/**
 * ixgbevf_update_stats - Update the board statistics counters.
 * @adapter: board private structure
 **/
void ixgbevf_update_stats(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;
2828 2829
	u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0;
	u64 alloc_rx_page = 0, hw_csum_rx_error = 0;
2830
	int i;
2831

2832 2833
	if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
	    test_bit(__IXGBEVF_RESETTING, &adapter->state))
G
Greg Rose 已提交
2834 2835
		return;

2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847
	UPDATE_VF_COUNTER_32bit(IXGBE_VFGPRC, adapter->stats.last_vfgprc,
				adapter->stats.vfgprc);
	UPDATE_VF_COUNTER_32bit(IXGBE_VFGPTC, adapter->stats.last_vfgptc,
				adapter->stats.vfgptc);
	UPDATE_VF_COUNTER_36bit(IXGBE_VFGORC_LSB, IXGBE_VFGORC_MSB,
				adapter->stats.last_vfgorc,
				adapter->stats.vfgorc);
	UPDATE_VF_COUNTER_36bit(IXGBE_VFGOTC_LSB, IXGBE_VFGOTC_MSB,
				adapter->stats.last_vfgotc,
				adapter->stats.vfgotc);
	UPDATE_VF_COUNTER_32bit(IXGBE_VFMPRC, adapter->stats.last_vfmprc,
				adapter->stats.vfmprc);
2848 2849

	for (i = 0;  i  < adapter->num_rx_queues;  i++) {
2850 2851 2852 2853 2854 2855
		struct ixgbevf_ring *rx_ring = adapter->rx_ring[i];

		hw_csum_rx_error += rx_ring->rx_stats.csum_err;
		alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed;
		alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed;
		alloc_rx_page += rx_ring->rx_stats.alloc_rx_page;
2856
	}
2857 2858 2859 2860 2861

	adapter->hw_csum_rx_error = hw_csum_rx_error;
	adapter->alloc_rx_page_failed = alloc_rx_page_failed;
	adapter->alloc_rx_buff_failed = alloc_rx_buff_failed;
	adapter->alloc_rx_page = alloc_rx_page;
2862 2863 2864
}

/**
2865
 * ixgbevf_service_timer - Timer Call-back
2866
 * @t: pointer to timer_list struct
2867
 **/
2868
static void ixgbevf_service_timer(struct timer_list *t)
2869
{
2870 2871
	struct ixgbevf_adapter *adapter = from_timer(adapter, t,
						     service_timer);
2872

2873 2874 2875 2876
	/* Reset the timer */
	mod_timer(&adapter->service_timer, (HZ * 2) + jiffies);

	ixgbevf_service_event_schedule(adapter);
2877 2878
}

2879
static void ixgbevf_reset_subtask(struct ixgbevf_adapter *adapter)
2880
{
2881
	if (!test_and_clear_bit(__IXGBEVF_RESET_REQUESTED, &adapter->state))
2882
		return;
2883 2884 2885

	/* If we're already down or resetting, just bail */
	if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
2886
	    test_bit(__IXGBEVF_REMOVING, &adapter->state) ||
2887 2888 2889 2890 2891
	    test_bit(__IXGBEVF_RESETTING, &adapter->state))
		return;

	adapter->tx_timeout_count++;

2892
	rtnl_lock();
2893
	ixgbevf_reinit_locked(adapter);
2894
	rtnl_unlock();
2895 2896
}

2897 2898 2899
/**
 * ixgbevf_check_hang_subtask - check for hung queues and dropped interrupts
 * @adapter: pointer to the device adapter structure
2900 2901 2902 2903 2904
 *
 * This function serves two purposes.  First it strobes the interrupt lines
 * in order to make certain interrupts are occurring.  Secondly it sets the
 * bits needed to check for TX hangs.  As a result we should immediately
 * determine if a hang has occurred.
2905
 **/
2906 2907
static void ixgbevf_check_hang_subtask(struct ixgbevf_adapter *adapter)
{
2908
	struct ixgbe_hw *hw = &adapter->hw;
2909
	u32 eics = 0;
2910 2911
	int i;

2912 2913 2914 2915
	/* If we're down or resetting, just bail */
	if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
	    test_bit(__IXGBEVF_RESETTING, &adapter->state))
		return;
2916

2917 2918 2919 2920 2921 2922
	/* Force detection of hung controller */
	if (netif_carrier_ok(adapter->netdev)) {
		for (i = 0; i < adapter->num_tx_queues; i++)
			set_check_for_tx_hang(adapter->tx_ring[i]);
	}

2923
	/* get one bit for every active Tx/Rx interrupt vector */
2924 2925
	for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++) {
		struct ixgbevf_q_vector *qv = adapter->q_vector[i];
2926

2927
		if (qv->rx.ring || qv->tx.ring)
2928
			eics |= BIT(i);
2929 2930
	}

2931
	/* Cause software interrupt to ensure rings are cleaned */
2932
	IXGBE_WRITE_REG(hw, IXGBE_VTEICS, eics);
2933
}
2934

2935 2936
/**
 * ixgbevf_watchdog_update_link - update the link status
2937
 * @adapter: pointer to the device adapter structure
2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
 **/
static void ixgbevf_watchdog_update_link(struct ixgbevf_adapter *adapter)
{
	struct ixgbe_hw *hw = &adapter->hw;
	u32 link_speed = adapter->link_speed;
	bool link_up = adapter->link_up;
	s32 err;

	spin_lock_bh(&adapter->mbx_lock);

	err = hw->mac.ops.check_link(hw, &link_speed, &link_up, false);

	spin_unlock_bh(&adapter->mbx_lock);

	/* if check for link returns error we will need to reset */
	if (err && time_after(jiffies, adapter->last_reset + (10 * HZ))) {
2954
		set_bit(__IXGBEVF_RESET_REQUESTED, &adapter->state);
2955 2956 2957 2958 2959
		link_up = false;
	}

	adapter->link_up = link_up;
	adapter->link_speed = link_speed;
2960 2961
}

2962 2963 2964
/**
 * ixgbevf_watchdog_link_is_up - update netif_carrier status and
 *				 print link up message
2965
 * @adapter: pointer to the device adapter structure
2966 2967
 **/
static void ixgbevf_watchdog_link_is_up(struct ixgbevf_adapter *adapter)
2968
{
2969
	struct net_device *netdev = adapter->netdev;
2970

2971 2972
	/* only continue if link was previously down */
	if (netif_carrier_ok(netdev))
2973 2974
		return;

2975 2976 2977 2978 2979 2980 2981 2982
	dev_info(&adapter->pdev->dev, "NIC Link is Up %s\n",
		 (adapter->link_speed == IXGBE_LINK_SPEED_10GB_FULL) ?
		 "10 Gbps" :
		 (adapter->link_speed == IXGBE_LINK_SPEED_1GB_FULL) ?
		 "1 Gbps" :
		 (adapter->link_speed == IXGBE_LINK_SPEED_100_FULL) ?
		 "100 Mbps" :
		 "unknown speed");
2983

2984 2985 2986 2987 2988 2989
	netif_carrier_on(netdev);
}

/**
 * ixgbevf_watchdog_link_is_down - update netif_carrier status and
 *				   print link down message
2990
 * @adapter: pointer to the adapter structure
2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004
 **/
static void ixgbevf_watchdog_link_is_down(struct ixgbevf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;

	adapter->link_speed = 0;

	/* only continue if link was up previously */
	if (!netif_carrier_ok(netdev))
		return;

	dev_info(&adapter->pdev->dev, "NIC Link is Down\n");

	netif_carrier_off(netdev);
3005 3006 3007
}

/**
3008
 * ixgbevf_watchdog_subtask - worker thread to bring link up
3009
 * @adapter: board private structure
3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029
 **/
static void ixgbevf_watchdog_subtask(struct ixgbevf_adapter *adapter)
{
	/* if interface is down do nothing */
	if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
	    test_bit(__IXGBEVF_RESETTING, &adapter->state))
		return;

	ixgbevf_watchdog_update_link(adapter);

	if (adapter->link_up)
		ixgbevf_watchdog_link_is_up(adapter);
	else
		ixgbevf_watchdog_link_is_down(adapter);

	ixgbevf_update_stats(adapter);
}

/**
 * ixgbevf_service_task - manages and runs subtasks
3030 3031
 * @work: pointer to work_struct containing our data
 **/
3032
static void ixgbevf_service_task(struct work_struct *work)
3033 3034 3035
{
	struct ixgbevf_adapter *adapter = container_of(work,
						       struct ixgbevf_adapter,
3036
						       service_task);
3037 3038
	struct ixgbe_hw *hw = &adapter->hw;

3039 3040 3041 3042 3043 3044 3045 3046
	if (IXGBE_REMOVED(hw->hw_addr)) {
		if (!test_bit(__IXGBEVF_DOWN, &adapter->state)) {
			rtnl_lock();
			ixgbevf_down(adapter);
			rtnl_unlock();
		}
		return;
	}
3047

3048
	ixgbevf_queue_reset_subtask(adapter);
3049 3050
	ixgbevf_reset_subtask(adapter);
	ixgbevf_watchdog_subtask(adapter);
3051 3052
	ixgbevf_check_hang_subtask(adapter);

3053
	ixgbevf_service_event_complete(adapter);
3054 3055 3056 3057 3058 3059 3060 3061
}

/**
 * ixgbevf_free_tx_resources - Free Tx Resources per Queue
 * @tx_ring: Tx descriptor ring for a specific queue
 *
 * Free all transmit software resources
 **/
3062
void ixgbevf_free_tx_resources(struct ixgbevf_ring *tx_ring)
3063
{
3064
	ixgbevf_clean_tx_ring(tx_ring);
3065 3066 3067 3068

	vfree(tx_ring->tx_buffer_info);
	tx_ring->tx_buffer_info = NULL;

3069 3070 3071 3072
	/* if not set, then don't free */
	if (!tx_ring->desc)
		return;

3073
	dma_free_coherent(tx_ring->dev, tx_ring->size, tx_ring->desc,
3074
			  tx_ring->dma);
3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089

	tx_ring->desc = NULL;
}

/**
 * ixgbevf_free_all_tx_resources - Free Tx Resources for All Queues
 * @adapter: board private structure
 *
 * Free all transmit software resources
 **/
static void ixgbevf_free_all_tx_resources(struct ixgbevf_adapter *adapter)
{
	int i;

	for (i = 0; i < adapter->num_tx_queues; i++)
3090
		if (adapter->tx_ring[i]->desc)
3091
			ixgbevf_free_tx_resources(adapter->tx_ring[i]);
3092 3093 3094 3095
}

/**
 * ixgbevf_setup_tx_resources - allocate Tx resources (Descriptors)
3096
 * @tx_ring: Tx descriptor ring (for a specific queue) to setup
3097 3098 3099
 *
 * Return 0 on success, negative on failure
 **/
3100
int ixgbevf_setup_tx_resources(struct ixgbevf_ring *tx_ring)
3101
{
3102
	struct ixgbevf_adapter *adapter = netdev_priv(tx_ring->netdev);
3103 3104 3105
	int size;

	size = sizeof(struct ixgbevf_tx_buffer) * tx_ring->count;
3106
	tx_ring->tx_buffer_info = vmalloc(size);
3107 3108 3109
	if (!tx_ring->tx_buffer_info)
		goto err;

3110 3111
	u64_stats_init(&tx_ring->syncp);

3112 3113 3114 3115
	/* round up to nearest 4K */
	tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc);
	tx_ring->size = ALIGN(tx_ring->size, 4096);

3116
	tx_ring->desc = dma_alloc_coherent(tx_ring->dev, tx_ring->size,
3117
					   &tx_ring->dma, GFP_KERNEL);
3118 3119 3120 3121 3122 3123 3124 3125
	if (!tx_ring->desc)
		goto err;

	return 0;

err:
	vfree(tx_ring->tx_buffer_info);
	tx_ring->tx_buffer_info = NULL;
3126
	hw_dbg(&adapter->hw, "Unable to allocate memory for the transmit descriptor ring\n");
3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144
	return -ENOMEM;
}

/**
 * ixgbevf_setup_all_tx_resources - allocate all queues Tx resources
 * @adapter: board private structure
 *
 * If this function returns with an error, then it's possible one or
 * more of the rings is populated (while the rest are not).  It is the
 * callers duty to clean those orphaned rings.
 *
 * Return 0 on success, negative on failure
 **/
static int ixgbevf_setup_all_tx_resources(struct ixgbevf_adapter *adapter)
{
	int i, err = 0;

	for (i = 0; i < adapter->num_tx_queues; i++) {
3145
		err = ixgbevf_setup_tx_resources(adapter->tx_ring[i]);
3146 3147
		if (!err)
			continue;
3148
		hw_dbg(&adapter->hw, "Allocation for Tx Queue %u failed\n", i);
E
Emil Tantilov 已提交
3149
		goto err_setup_tx;
3150 3151
	}

E
Emil Tantilov 已提交
3152 3153 3154 3155 3156
	return 0;
err_setup_tx:
	/* rewind the index freeing the rings as we go */
	while (i--)
		ixgbevf_free_tx_resources(adapter->tx_ring[i]);
3157 3158 3159 3160 3161
	return err;
}

/**
 * ixgbevf_setup_rx_resources - allocate Rx resources (Descriptors)
3162
 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
3163 3164 3165
 *
 * Returns 0 on success, negative on failure
 **/
3166
int ixgbevf_setup_rx_resources(struct ixgbevf_ring *rx_ring)
3167 3168 3169 3170
{
	int size;

	size = sizeof(struct ixgbevf_rx_buffer) * rx_ring->count;
3171
	rx_ring->rx_buffer_info = vmalloc(size);
3172
	if (!rx_ring->rx_buffer_info)
3173
		goto err;
3174

3175 3176
	u64_stats_init(&rx_ring->syncp);

3177 3178 3179 3180
	/* Round up to nearest 4K */
	rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
	rx_ring->size = ALIGN(rx_ring->size, 4096);

3181
	rx_ring->desc = dma_alloc_coherent(rx_ring->dev, rx_ring->size,
3182
					   &rx_ring->dma, GFP_KERNEL);
3183

3184 3185
	if (!rx_ring->desc)
		goto err;
3186 3187

	return 0;
3188 3189 3190 3191
err:
	vfree(rx_ring->rx_buffer_info);
	rx_ring->rx_buffer_info = NULL;
	dev_err(rx_ring->dev, "Unable to allocate memory for the Rx descriptor ring\n");
3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209
	return -ENOMEM;
}

/**
 * ixgbevf_setup_all_rx_resources - allocate all queues Rx resources
 * @adapter: board private structure
 *
 * If this function returns with an error, then it's possible one or
 * more of the rings is populated (while the rest are not).  It is the
 * callers duty to clean those orphaned rings.
 *
 * Return 0 on success, negative on failure
 **/
static int ixgbevf_setup_all_rx_resources(struct ixgbevf_adapter *adapter)
{
	int i, err = 0;

	for (i = 0; i < adapter->num_rx_queues; i++) {
3210
		err = ixgbevf_setup_rx_resources(adapter->rx_ring[i]);
3211 3212
		if (!err)
			continue;
3213
		hw_dbg(&adapter->hw, "Allocation for Rx Queue %u failed\n", i);
E
Emil Tantilov 已提交
3214
		goto err_setup_rx;
3215
	}
E
Emil Tantilov 已提交
3216 3217 3218 3219 3220 3221

	return 0;
err_setup_rx:
	/* rewind the index freeing the rings as we go */
	while (i--)
		ixgbevf_free_rx_resources(adapter->rx_ring[i]);
3222 3223 3224 3225 3226 3227 3228 3229 3230
	return err;
}

/**
 * ixgbevf_free_rx_resources - Free Rx Resources
 * @rx_ring: ring to clean the resources from
 *
 * Free all receive software resources
 **/
3231
void ixgbevf_free_rx_resources(struct ixgbevf_ring *rx_ring)
3232
{
3233
	ixgbevf_clean_rx_ring(rx_ring);
3234 3235 3236 3237

	vfree(rx_ring->rx_buffer_info);
	rx_ring->rx_buffer_info = NULL;

3238
	dma_free_coherent(rx_ring->dev, rx_ring->size, rx_ring->desc,
3239
			  rx_ring->dma);
3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254

	rx_ring->desc = NULL;
}

/**
 * ixgbevf_free_all_rx_resources - Free Rx Resources for All Queues
 * @adapter: board private structure
 *
 * Free all receive software resources
 **/
static void ixgbevf_free_all_rx_resources(struct ixgbevf_adapter *adapter)
{
	int i;

	for (i = 0; i < adapter->num_rx_queues; i++)
3255
		if (adapter->rx_ring[i]->desc)
3256
			ixgbevf_free_rx_resources(adapter->rx_ring[i]);
3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270
}

/**
 * ixgbevf_open - Called when a network interface is made active
 * @netdev: network interface device structure
 *
 * Returns 0 on success, negative value on failure
 *
 * The open entry point is called when a network interface is made
 * active by the system (IFF_UP).  At this point all resources needed
 * for transmit and receive operations are allocated, the interrupt
 * handler is registered with the OS, the watchdog timer is started,
 * and the stack is notified that the interface is ready.
 **/
3271
int ixgbevf_open(struct net_device *netdev)
3272 3273 3274 3275 3276
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	struct ixgbe_hw *hw = &adapter->hw;
	int err;

3277 3278 3279 3280 3281 3282 3283 3284 3285
	/* A previous failure to open the device because of a lack of
	 * available MSIX vector resources may have reset the number
	 * of msix vectors variable to zero.  The only way to recover
	 * is to unload/reload the driver and hope that the system has
	 * been able to recover some MSIX vector resources.
	 */
	if (!adapter->num_msix_vectors)
		return -ENOMEM;

3286 3287 3288
	if (hw->adapter_stopped) {
		ixgbevf_reset(adapter);
		/* if adapter is still stopped then PF isn't up and
3289 3290
		 * the VF can't start.
		 */
3291 3292
		if (hw->adapter_stopped) {
			err = IXGBE_ERR_MBX;
3293
			pr_err("Unable to start - perhaps the PF Driver isn't up yet\n");
3294 3295 3296 3297
			goto err_setup_reset;
		}
	}

3298 3299 3300 3301 3302 3303
	/* disallow open during test */
	if (test_bit(__IXGBEVF_TESTING, &adapter->state))
		return -EBUSY;

	netif_carrier_off(netdev);

3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319
	/* allocate transmit descriptors */
	err = ixgbevf_setup_all_tx_resources(adapter);
	if (err)
		goto err_setup_tx;

	/* allocate receive descriptors */
	err = ixgbevf_setup_all_rx_resources(adapter);
	if (err)
		goto err_setup_rx;

	ixgbevf_configure(adapter);

	err = ixgbevf_request_irq(adapter);
	if (err)
		goto err_req_irq;

E
Emil Tantilov 已提交
3320 3321 3322 3323 3324 3325 3326 3327 3328
	/* Notify the stack of the actual queue counts. */
	err = netif_set_real_num_tx_queues(netdev, adapter->num_tx_queues);
	if (err)
		goto err_set_queues;

	err = netif_set_real_num_rx_queues(netdev, adapter->num_rx_queues);
	if (err)
		goto err_set_queues;

3329
	ixgbevf_up_complete(adapter);
3330 3331 3332

	return 0;

E
Emil Tantilov 已提交
3333 3334
err_set_queues:
	ixgbevf_free_irq(adapter);
3335 3336
err_req_irq:
	ixgbevf_free_all_rx_resources(adapter);
E
Emil Tantilov 已提交
3337
err_setup_rx:
3338
	ixgbevf_free_all_tx_resources(adapter);
E
Emil Tantilov 已提交
3339
err_setup_tx:
3340 3341 3342 3343 3344 3345
	ixgbevf_reset(adapter);
err_setup_reset:

	return err;
}

E
Emil Tantilov 已提交
3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360
/**
 * ixgbevf_close_suspend - actions necessary to both suspend and close flows
 * @adapter: the private adapter struct
 *
 * This function should contain the necessary work common to both suspending
 * and closing of the device.
 */
static void ixgbevf_close_suspend(struct ixgbevf_adapter *adapter)
{
	ixgbevf_down(adapter);
	ixgbevf_free_irq(adapter);
	ixgbevf_free_all_tx_resources(adapter);
	ixgbevf_free_all_rx_resources(adapter);
}

3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371
/**
 * ixgbevf_close - Disables a network interface
 * @netdev: network interface device structure
 *
 * Returns 0, this is not allowed to fail
 *
 * The close entry point is called when an interface is de-activated
 * by the OS.  The hardware is still under the drivers control, but
 * needs to be disabled.  A global MAC reset is issued to stop the
 * hardware, and all transmit and receive resources are freed.
 **/
3372
int ixgbevf_close(struct net_device *netdev)
3373 3374 3375
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);

E
Emil Tantilov 已提交
3376 3377
	if (netif_device_present(netdev))
		ixgbevf_close_suspend(adapter);
3378 3379 3380 3381

	return 0;
}

3382 3383 3384 3385
static void ixgbevf_queue_reset_subtask(struct ixgbevf_adapter *adapter)
{
	struct net_device *dev = adapter->netdev;

3386 3387
	if (!test_and_clear_bit(__IXGBEVF_QUEUE_RESET_REQUESTED,
				&adapter->state))
3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398
		return;

	/* if interface is down do nothing */
	if (test_bit(__IXGBEVF_DOWN, &adapter->state) ||
	    test_bit(__IXGBEVF_RESETTING, &adapter->state))
		return;

	/* Hardware has to reinitialize queues and interrupts to
	 * match packet buffer alignment. Unfortunately, the
	 * hardware is not flexible enough to do this dynamically.
	 */
3399 3400
	rtnl_lock();

3401 3402 3403 3404 3405 3406 3407 3408
	if (netif_running(dev))
		ixgbevf_close(dev);

	ixgbevf_clear_interrupt_scheme(adapter);
	ixgbevf_init_interrupt_scheme(adapter);

	if (netif_running(dev))
		ixgbevf_open(dev);
3409 3410

	rtnl_unlock();
3411 3412
}

3413 3414 3415
static void ixgbevf_tx_ctxtdesc(struct ixgbevf_ring *tx_ring,
				u32 vlan_macip_lens, u32 type_tucmd,
				u32 mss_l4len_idx)
3416 3417
{
	struct ixgbe_adv_tx_context_desc *context_desc;
3418
	u16 i = tx_ring->next_to_use;
3419

3420
	context_desc = IXGBEVF_TX_CTXTDESC(tx_ring, i);
3421

3422 3423
	i++;
	tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
3424

3425 3426
	/* set bits to identify this as an advanced context descriptor */
	type_tucmd |= IXGBE_TXD_CMD_DEXT | IXGBE_ADVTXD_DTYP_CTXT;
3427

3428 3429 3430 3431 3432 3433 3434
	context_desc->vlan_macip_lens	= cpu_to_le32(vlan_macip_lens);
	context_desc->seqnum_seed	= 0;
	context_desc->type_tucmd_mlhl	= cpu_to_le32(type_tucmd);
	context_desc->mss_l4len_idx	= cpu_to_le32(mss_l4len_idx);
}

static int ixgbevf_tso(struct ixgbevf_ring *tx_ring,
3435 3436
		       struct ixgbevf_tx_buffer *first,
		       u8 *hdr_len)
3437
{
3438
	u32 vlan_macip_lens, type_tucmd, mss_l4len_idx;
3439
	struct sk_buff *skb = first->skb;
3440 3441 3442 3443 3444 3445 3446 3447 3448 3449
	union {
		struct iphdr *v4;
		struct ipv6hdr *v6;
		unsigned char *hdr;
	} ip;
	union {
		struct tcphdr *tcp;
		unsigned char *hdr;
	} l4;
	u32 paylen, l4_offset;
3450
	int err;
3451

3452 3453 3454
	if (skb->ip_summed != CHECKSUM_PARTIAL)
		return 0;

3455 3456
	if (!skb_is_gso(skb))
		return 0;
3457

3458 3459 3460
	err = skb_cow_head(skb, 0);
	if (err < 0)
		return err;
3461

3462 3463 3464 3465
	if (eth_p_mpls(first->protocol))
		ip.hdr = skb_inner_network_header(skb);
	else
		ip.hdr = skb_network_header(skb);
3466 3467
	l4.hdr = skb_checksum_start(skb);

3468 3469 3470
	/* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */
	type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;

3471 3472
	/* initialize outer IP header fields */
	if (ip.v4->version == 4) {
3473 3474 3475
		unsigned char *csum_start = skb_checksum_start(skb);
		unsigned char *trans_start = ip.hdr + (ip.v4->ihl * 4);

3476 3477 3478
		/* IP header will have to cancel out any data that
		 * is not a part of the outer IP header
		 */
3479 3480 3481
		ip.v4->check = csum_fold(csum_partial(trans_start,
						      csum_start - trans_start,
						      0));
3482
		type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4;
3483 3484

		ip.v4->tot_len = 0;
3485 3486 3487
		first->tx_flags |= IXGBE_TX_FLAGS_TSO |
				   IXGBE_TX_FLAGS_CSUM |
				   IXGBE_TX_FLAGS_IPV4;
3488 3489
	} else {
		ip.v6->payload_len = 0;
3490 3491
		first->tx_flags |= IXGBE_TX_FLAGS_TSO |
				   IXGBE_TX_FLAGS_CSUM;
3492 3493
	}

3494 3495 3496 3497 3498
	/* determine offset of inner transport header */
	l4_offset = l4.hdr - skb->data;

	/* compute length of segmentation header */
	*hdr_len = (l4.tcp->doff * 4) + l4_offset;
3499

3500 3501 3502 3503 3504
	/* remove payload length from inner checksum */
	paylen = skb->len - l4_offset;
	csum_replace_by_diff(&l4.tcp->check, htonl(paylen));

	/* update gso size and bytecount with header size */
3505 3506 3507
	first->gso_segs = skb_shinfo(skb)->gso_segs;
	first->bytecount += (first->gso_segs - 1) * *hdr_len;

3508
	/* mss_l4len_id: use 1 as index for TSO */
3509
	mss_l4len_idx = (*hdr_len - l4_offset) << IXGBE_ADVTXD_L4LEN_SHIFT;
3510
	mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
3511
	mss_l4len_idx |= (1u << IXGBE_ADVTXD_IDX_SHIFT);
3512 3513

	/* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
3514 3515
	vlan_macip_lens = l4.hdr - ip.hdr;
	vlan_macip_lens |= (ip.hdr - skb->data) << IXGBE_ADVTXD_MACLEN_SHIFT;
3516
	vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
3517 3518 3519 3520 3521

	ixgbevf_tx_ctxtdesc(tx_ring, vlan_macip_lens,
			    type_tucmd, mss_l4len_idx);

	return 1;
3522 3523
}

3524 3525 3526 3527 3528 3529 3530 3531 3532
static inline bool ixgbevf_ipv6_csum_is_sctp(struct sk_buff *skb)
{
	unsigned int offset = 0;

	ipv6_find_hdr(skb, &offset, IPPROTO_SCTP, NULL, NULL);

	return offset == skb_checksum_start_offset(skb);
}

3533 3534
static void ixgbevf_tx_csum(struct ixgbevf_ring *tx_ring,
			    struct ixgbevf_tx_buffer *first)
3535
{
3536
	struct sk_buff *skb = first->skb;
3537 3538
	u32 vlan_macip_lens = 0;
	u32 type_tucmd = 0;
3539

3540 3541
	if (skb->ip_summed != CHECKSUM_PARTIAL)
		goto no_csum;
3542

3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555
	switch (skb->csum_offset) {
	case offsetof(struct tcphdr, check):
		type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP;
		/* fall through */
	case offsetof(struct udphdr, check):
		break;
	case offsetof(struct sctphdr, checksum):
		/* validate that this is actually an SCTP request */
		if (((first->protocol == htons(ETH_P_IP)) &&
		     (ip_hdr(skb)->protocol == IPPROTO_SCTP)) ||
		    ((first->protocol == htons(ETH_P_IPV6)) &&
		     ixgbevf_ipv6_csum_is_sctp(skb))) {
			type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_SCTP;
3556 3557
			break;
		}
3558 3559 3560 3561
		/* fall through */
	default:
		skb_checksum_help(skb);
		goto no_csum;
3562
	}
3563 3564 3565 3566
	/* update TX checksum flag */
	first->tx_flags |= IXGBE_TX_FLAGS_CSUM;
	vlan_macip_lens = skb_checksum_start_offset(skb) -
			  skb_network_offset(skb);
3567
no_csum:
3568 3569
	/* vlan_macip_lens: MACLEN, VLAN tag */
	vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT;
3570
	vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
3571

3572
	ixgbevf_tx_ctxtdesc(tx_ring, vlan_macip_lens, type_tucmd, 0);
3573 3574
}

3575
static __le32 ixgbevf_tx_cmd_type(u32 tx_flags)
3576
{
3577 3578 3579 3580
	/* set type for advanced descriptor with frame checksum insertion */
	__le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA |
				      IXGBE_ADVTXD_DCMD_IFCS |
				      IXGBE_ADVTXD_DCMD_DEXT);
3581

3582
	/* set HW VLAN bit if VLAN is present */
3583 3584
	if (tx_flags & IXGBE_TX_FLAGS_VLAN)
		cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE);
3585

3586 3587 3588
	/* set segmentation enable bits for TSO/FSO */
	if (tx_flags & IXGBE_TX_FLAGS_TSO)
		cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE);
3589

3590 3591
	return cmd_type;
}
3592

3593 3594 3595 3596
static void ixgbevf_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc,
				     u32 tx_flags, unsigned int paylen)
{
	__le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT);
3597

3598 3599 3600
	/* enable L4 checksum for TSO and TX checksum offload */
	if (tx_flags & IXGBE_TX_FLAGS_CSUM)
		olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM);
3601

3602 3603 3604
	/* enble IPv4 checksum for TSO */
	if (tx_flags & IXGBE_TX_FLAGS_IPV4)
		olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM);
3605

3606 3607
	/* use index 1 context for TSO/FSO/FCOE */
	if (tx_flags & IXGBE_TX_FLAGS_TSO)
3608
		olinfo_status |= cpu_to_le32(1u << IXGBE_ADVTXD_IDX_SHIFT);
3609

3610 3611 3612 3613
	/* Check Context must be set if Tx switch is enabled, which it
	 * always is for case where virtual functions are running
	 */
	olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC);
3614

3615 3616
	tx_desc->read.olinfo_status = olinfo_status;
}
3617

3618 3619 3620 3621 3622 3623 3624
static void ixgbevf_tx_map(struct ixgbevf_ring *tx_ring,
			   struct ixgbevf_tx_buffer *first,
			   const u8 hdr_len)
{
	struct sk_buff *skb = first->skb;
	struct ixgbevf_tx_buffer *tx_buffer;
	union ixgbe_adv_tx_desc *tx_desc;
3625 3626 3627
	struct skb_frag_struct *frag;
	dma_addr_t dma;
	unsigned int data_len, size;
3628
	u32 tx_flags = first->tx_flags;
3629
	__le32 cmd_type = ixgbevf_tx_cmd_type(tx_flags);
3630
	u16 i = tx_ring->next_to_use;
3631

3632
	tx_desc = IXGBEVF_TX_DESC(tx_ring, i);
3633

3634 3635 3636 3637
	ixgbevf_tx_olinfo_status(tx_desc, tx_flags, skb->len - hdr_len);

	size = skb_headlen(skb);
	data_len = skb->data_len;
3638

3639
	dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
3640

3641
	tx_buffer = first;
3642

3643 3644 3645 3646 3647 3648 3649 3650 3651
	for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
		if (dma_mapping_error(tx_ring->dev, dma))
			goto dma_error;

		/* record length, and DMA address */
		dma_unmap_len_set(tx_buffer, len, size);
		dma_unmap_addr_set(tx_buffer, dma, dma);

		tx_desc->read.buffer_addr = cpu_to_le64(dma);
3652

3653 3654 3655
		while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) {
			tx_desc->read.cmd_type_len =
				cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD);
3656

3657 3658 3659 3660 3661 3662
			i++;
			tx_desc++;
			if (i == tx_ring->count) {
				tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
				i = 0;
			}
3663
			tx_desc->read.olinfo_status = 0;
3664

3665 3666
			dma += IXGBE_MAX_DATA_PER_TXD;
			size -= IXGBE_MAX_DATA_PER_TXD;
3667

3668 3669
			tx_desc->read.buffer_addr = cpu_to_le64(dma);
		}
3670

3671 3672
		if (likely(!data_len))
			break;
3673

3674
		tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size);
3675

3676 3677 3678 3679 3680 3681
		i++;
		tx_desc++;
		if (i == tx_ring->count) {
			tx_desc = IXGBEVF_TX_DESC(tx_ring, 0);
			i = 0;
		}
3682
		tx_desc->read.olinfo_status = 0;
3683

3684 3685
		size = skb_frag_size(frag);
		data_len -= size;
3686

3687 3688
		dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
				       DMA_TO_DEVICE);
3689

3690
		tx_buffer = &tx_ring->tx_buffer_info[i];
3691
	}
3692

3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705
	/* write last descriptor with RS and EOP bits */
	cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD);
	tx_desc->read.cmd_type_len = cmd_type;

	/* set the timestamp */
	first->time_stamp = jiffies;

	/* Force memory writes to complete before letting h/w know there
	 * are new descriptors to fetch.  (Only applicable for weak-ordered
	 * memory model archs, such as IA-64).
	 *
	 * We also need this memory barrier (wmb) to make certain all of the
	 * status bits have been updated before next_to_watch is written.
3706
	 */
3707
	wmb();
3708

3709 3710
	/* set next_to_watch value indicating a packet is present */
	first->next_to_watch = tx_desc;
3711

3712 3713 3714
	i++;
	if (i == tx_ring->count)
		i = 0;
3715

3716
	tx_ring->next_to_use = i;
3717

3718
	/* notify HW of packet */
3719
	ixgbevf_write_tail(tx_ring, i);
3720 3721 3722 3723

	return;
dma_error:
	dev_err(tx_ring->dev, "TX DMA map failed\n");
3724
	tx_buffer = &tx_ring->tx_buffer_info[i];
3725 3726

	/* clear dma mappings for failed tx_buffer_info map */
3727 3728 3729 3730 3731 3732 3733 3734 3735 3736
	while (tx_buffer != first) {
		if (dma_unmap_len(tx_buffer, len))
			dma_unmap_page(tx_ring->dev,
				       dma_unmap_addr(tx_buffer, dma),
				       dma_unmap_len(tx_buffer, len),
				       DMA_TO_DEVICE);
		dma_unmap_len_set(tx_buffer, len, 0);

		if (i-- == 0)
			i += tx_ring->count;
3737 3738
		tx_buffer = &tx_ring->tx_buffer_info[i];
	}
3739

3740 3741 3742 3743 3744 3745 3746 3747 3748 3749
	if (dma_unmap_len(tx_buffer, len))
		dma_unmap_single(tx_ring->dev,
				 dma_unmap_addr(tx_buffer, dma),
				 dma_unmap_len(tx_buffer, len),
				 DMA_TO_DEVICE);
	dma_unmap_len_set(tx_buffer, len, 0);

	dev_kfree_skb_any(tx_buffer->skb);
	tx_buffer->skb = NULL;

3750 3751 3752
	tx_ring->next_to_use = i;
}

3753
static int __ixgbevf_maybe_stop_tx(struct ixgbevf_ring *tx_ring, int size)
3754
{
3755
	netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
3756 3757
	/* Herbert's original patch had:
	 *  smp_mb__after_netif_stop_queue();
3758 3759
	 * but since that doesn't exist yet, just open code it.
	 */
3760 3761 3762
	smp_mb();

	/* We need to check again in a case another CPU has just
3763 3764
	 * made room available.
	 */
D
Don Skidmore 已提交
3765
	if (likely(ixgbevf_desc_unused(tx_ring) < size))
3766 3767 3768
		return -EBUSY;

	/* A reprieve! - use start_queue because it doesn't call schedule */
3769
	netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
3770 3771
	++tx_ring->tx_stats.restart_queue;

3772 3773 3774
	return 0;
}

3775
static int ixgbevf_maybe_stop_tx(struct ixgbevf_ring *tx_ring, int size)
3776
{
D
Don Skidmore 已提交
3777
	if (likely(ixgbevf_desc_unused(tx_ring) >= size))
3778
		return 0;
3779
	return __ixgbevf_maybe_stop_tx(tx_ring, size);
3780 3781
}

3782 3783
static int ixgbevf_xmit_frame_ring(struct sk_buff *skb,
				   struct ixgbevf_ring *tx_ring)
3784
{
3785 3786 3787
	struct ixgbevf_tx_buffer *first;
	int tso;
	u32 tx_flags = 0;
3788 3789 3790 3791
	u16 count = TXD_USE_COUNT(skb_headlen(skb));
#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
	unsigned short f;
#endif
3792
	u8 hdr_len = 0;
3793
	u8 *dst_mac = skb_header_pointer(skb, 0, 0, NULL);
3794

3795
	if (!dst_mac || is_link_local_ether_addr(dst_mac)) {
3796
		dev_kfree_skb_any(skb);
3797 3798
		return NETDEV_TX_OK;
	}
3799

3800
	/* need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD,
3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811
	 *       + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD,
	 *       + 2 desc gap to keep tail from touching head,
	 *       + 1 desc for context descriptor,
	 * otherwise try next time
	 */
#if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD
	for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
		count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
#else
	count += skb_shinfo(skb)->nr_frags;
#endif
3812
	if (ixgbevf_maybe_stop_tx(tx_ring, count + 3)) {
3813
		tx_ring->tx_stats.tx_busy++;
3814 3815 3816
		return NETDEV_TX_BUSY;
	}

3817 3818 3819 3820 3821 3822
	/* record the location of the first descriptor for this packet */
	first = &tx_ring->tx_buffer_info[tx_ring->next_to_use];
	first->skb = skb;
	first->bytecount = skb->len;
	first->gso_segs = 1;

3823 3824
	if (skb_vlan_tag_present(skb)) {
		tx_flags |= skb_vlan_tag_get(skb);
3825 3826 3827 3828
		tx_flags <<= IXGBE_TX_FLAGS_VLAN_SHIFT;
		tx_flags |= IXGBE_TX_FLAGS_VLAN;
	}

3829 3830 3831
	/* record initial flags and protocol */
	first->tx_flags = tx_flags;
	first->protocol = vlan_get_protocol(skb);
3832

3833 3834 3835
	tso = ixgbevf_tso(tx_ring, first, &hdr_len);
	if (tso < 0)
		goto out_drop;
3836
	else if (!tso)
3837
		ixgbevf_tx_csum(tx_ring, first);
3838

3839
	ixgbevf_tx_map(tx_ring, first, hdr_len);
3840

3841
	ixgbevf_maybe_stop_tx(tx_ring, DESC_NEEDED);
3842

3843 3844 3845 3846 3847 3848
	return NETDEV_TX_OK;

out_drop:
	dev_kfree_skb_any(first->skb);
	first->skb = NULL;

3849 3850 3851
	return NETDEV_TX_OK;
}

3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874
static int ixgbevf_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	struct ixgbevf_ring *tx_ring;

	if (skb->len <= 0) {
		dev_kfree_skb_any(skb);
		return NETDEV_TX_OK;
	}

	/* The minimum packet size for olinfo paylen is 17 so pad the skb
	 * in order to meet this minimum size requirement.
	 */
	if (skb->len < 17) {
		if (skb_padto(skb, 17))
			return NETDEV_TX_OK;
		skb->len = 17;
	}

	tx_ring = adapter->tx_ring[skb->queue_mapping];
	return ixgbevf_xmit_frame_ring(skb, tx_ring);
}

3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886
/**
 * ixgbevf_set_mac - Change the Ethernet Address of the NIC
 * @netdev: network interface device structure
 * @p: pointer to an address structure
 *
 * Returns 0 on success, negative on failure
 **/
static int ixgbevf_set_mac(struct net_device *netdev, void *p)
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	struct ixgbe_hw *hw = &adapter->hw;
	struct sockaddr *addr = p;
3887
	int err;
3888 3889 3890 3891

	if (!is_valid_ether_addr(addr->sa_data))
		return -EADDRNOTAVAIL;

3892
	spin_lock_bh(&adapter->mbx_lock);
3893

3894
	err = hw->mac.ops.set_rar(hw, 0, addr->sa_data, 0);
3895

3896
	spin_unlock_bh(&adapter->mbx_lock);
3897

3898 3899 3900 3901 3902 3903
	if (err)
		return -EPERM;

	ether_addr_copy(hw->mac.addr, addr->sa_data);
	ether_addr_copy(netdev->dev_addr, addr->sa_data);

3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916
	return 0;
}

/**
 * ixgbevf_change_mtu - Change the Maximum Transfer Unit
 * @netdev: network interface device structure
 * @new_mtu: new value for maximum frame size
 *
 * Returns 0 on success, negative on failure
 **/
static int ixgbevf_change_mtu(struct net_device *netdev, int new_mtu)
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3917
	struct ixgbe_hw *hw = &adapter->hw;
3918
	int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
3919
	int ret;
3920

3921
	spin_lock_bh(&adapter->mbx_lock);
3922 3923
	/* notify the PF of our intent to use this size of frame */
	ret = hw->mac.ops.set_rlpml(hw, max_frame);
3924
	spin_unlock_bh(&adapter->mbx_lock);
3925 3926 3927
	if (ret)
		return -EINVAL;

3928
	hw_dbg(hw, "changing MTU from %d to %d\n",
3929
	       netdev->mtu, new_mtu);
3930

3931 3932 3933
	/* must set new MTU before calling down or up */
	netdev->mtu = new_mtu;

3934 3935 3936
	if (netif_running(netdev))
		ixgbevf_reinit_locked(adapter);

3937 3938 3939
	return 0;
}

E
Emil Tantilov 已提交
3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957
#ifdef CONFIG_NET_POLL_CONTROLLER
/* Polling 'interrupt' - used by things like netconsole to send skbs
 * without having to re-enable interrupts. It's not called while
 * the interrupt routine is executing.
 */
static void ixgbevf_netpoll(struct net_device *netdev)
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	int i;

	/* if interface is down do nothing */
	if (test_bit(__IXGBEVF_DOWN, &adapter->state))
		return;
	for (i = 0; i < adapter->num_rx_queues; i++)
		ixgbevf_msix_clean_rings(0, adapter->q_vector[i]);
}
#endif /* CONFIG_NET_POLL_CONTROLLER */

3958
static int ixgbevf_suspend(struct pci_dev *pdev, pm_message_t state)
3959 3960 3961
{
	struct net_device *netdev = pci_get_drvdata(pdev);
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3962 3963 3964
#ifdef CONFIG_PM
	int retval = 0;
#endif
3965

3966
	rtnl_lock();
3967 3968
	netif_device_detach(netdev);

E
Emil Tantilov 已提交
3969 3970 3971 3972
	if (netif_running(netdev))
		ixgbevf_close_suspend(adapter);

	ixgbevf_clear_interrupt_scheme(adapter);
3973
	rtnl_unlock();
3974

3975 3976 3977 3978
#ifdef CONFIG_PM
	retval = pci_save_state(pdev);
	if (retval)
		return retval;
3979

3980
#endif
3981 3982
	if (!test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state))
		pci_disable_device(pdev);
3983 3984 3985 3986 3987 3988 3989

	return 0;
}

#ifdef CONFIG_PM
static int ixgbevf_resume(struct pci_dev *pdev)
{
3990 3991
	struct net_device *netdev = pci_get_drvdata(pdev);
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
3992 3993 3994
	u32 err;

	pci_restore_state(pdev);
3995
	/* pci_restore_state clears dev->state_saved so call
3996 3997 3998 3999 4000 4001 4002 4003 4004
	 * pci_save_state to restore it.
	 */
	pci_save_state(pdev);

	err = pci_enable_device_mem(pdev);
	if (err) {
		dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
		return err;
	}
4005 4006

	adapter->hw.hw_addr = adapter->io_addr;
4007
	smp_mb__before_atomic();
4008
	clear_bit(__IXGBEVF_DISABLED, &adapter->state);
4009 4010
	pci_set_master(pdev);

D
Don Skidmore 已提交
4011 4012
	ixgbevf_reset(adapter);

4013 4014
	rtnl_lock();
	err = ixgbevf_init_interrupt_scheme(adapter);
E
Emil Tantilov 已提交
4015 4016
	if (!err && netif_running(netdev))
		err = ixgbevf_open(netdev);
4017
	rtnl_unlock();
E
Emil Tantilov 已提交
4018
	if (err)
4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029
		return err;

	netif_device_attach(netdev);

	return err;
}

#endif /* CONFIG_PM */
static void ixgbevf_shutdown(struct pci_dev *pdev)
{
	ixgbevf_suspend(pdev, PMSG_SUSPEND);
4030 4031
}

4032 4033
static void ixgbevf_get_stats(struct net_device *netdev,
			      struct rtnl_link_stats64 *stats)
4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044
{
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);
	unsigned int start;
	u64 bytes, packets;
	const struct ixgbevf_ring *ring;
	int i;

	ixgbevf_update_stats(adapter);

	stats->multicast = adapter->stats.vfmprc - adapter->stats.base_vfmprc;

4045
	rcu_read_lock();
4046
	for (i = 0; i < adapter->num_rx_queues; i++) {
4047
		ring = adapter->rx_ring[i];
4048
		do {
4049
			start = u64_stats_fetch_begin_irq(&ring->syncp);
4050 4051
			bytes = ring->stats.bytes;
			packets = ring->stats.packets;
4052
		} while (u64_stats_fetch_retry_irq(&ring->syncp, start));
4053 4054 4055 4056 4057
		stats->rx_bytes += bytes;
		stats->rx_packets += packets;
	}

	for (i = 0; i < adapter->num_tx_queues; i++) {
4058
		ring = adapter->tx_ring[i];
4059
		do {
4060
			start = u64_stats_fetch_begin_irq(&ring->syncp);
4061 4062
			bytes = ring->stats.bytes;
			packets = ring->stats.packets;
4063
		} while (u64_stats_fetch_retry_irq(&ring->syncp, start));
4064 4065 4066
		stats->tx_bytes += bytes;
		stats->tx_packets += packets;
	}
4067
	rcu_read_unlock();
4068 4069
}

4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103
#define IXGBEVF_MAX_MAC_HDR_LEN		127
#define IXGBEVF_MAX_NETWORK_HDR_LEN	511

static netdev_features_t
ixgbevf_features_check(struct sk_buff *skb, struct net_device *dev,
		       netdev_features_t features)
{
	unsigned int network_hdr_len, mac_hdr_len;

	/* Make certain the headers can be described by a context descriptor */
	mac_hdr_len = skb_network_header(skb) - skb->data;
	if (unlikely(mac_hdr_len > IXGBEVF_MAX_MAC_HDR_LEN))
		return features & ~(NETIF_F_HW_CSUM |
				    NETIF_F_SCTP_CRC |
				    NETIF_F_HW_VLAN_CTAG_TX |
				    NETIF_F_TSO |
				    NETIF_F_TSO6);

	network_hdr_len = skb_checksum_start(skb) - skb_network_header(skb);
	if (unlikely(network_hdr_len >  IXGBEVF_MAX_NETWORK_HDR_LEN))
		return features & ~(NETIF_F_HW_CSUM |
				    NETIF_F_SCTP_CRC |
				    NETIF_F_TSO |
				    NETIF_F_TSO6);

	/* We can only support IPV4 TSO in tunnels if we can mangle the
	 * inner IP ID field, so strip TSO if MANGLEID is not supported.
	 */
	if (skb->encapsulation && !(features & NETIF_F_TSO_MANGLEID))
		features &= ~NETIF_F_TSO;

	return features;
}

4104
static const struct net_device_ops ixgbevf_netdev_ops = {
4105 4106 4107 4108
	.ndo_open		= ixgbevf_open,
	.ndo_stop		= ixgbevf_close,
	.ndo_start_xmit		= ixgbevf_xmit_frame,
	.ndo_set_rx_mode	= ixgbevf_set_rx_mode,
4109
	.ndo_get_stats64	= ixgbevf_get_stats,
4110
	.ndo_validate_addr	= eth_validate_addr,
4111 4112 4113 4114 4115
	.ndo_set_mac_address	= ixgbevf_set_mac,
	.ndo_change_mtu		= ixgbevf_change_mtu,
	.ndo_tx_timeout		= ixgbevf_tx_timeout,
	.ndo_vlan_rx_add_vid	= ixgbevf_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= ixgbevf_vlan_rx_kill_vid,
E
Emil Tantilov 已提交
4116 4117 4118
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= ixgbevf_netpoll,
#endif
4119
	.ndo_features_check	= ixgbevf_features_check,
4120 4121 4122 4123
};

static void ixgbevf_assign_netdev_ops(struct net_device *dev)
{
4124
	dev->netdev_ops = &ixgbevf_netdev_ops;
4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139
	ixgbevf_set_ethtool_ops(dev);
	dev->watchdog_timeo = 5 * HZ;
}

/**
 * ixgbevf_probe - Device Initialization Routine
 * @pdev: PCI device information struct
 * @ent: entry in ixgbevf_pci_tbl
 *
 * Returns 0 on success, negative on failure
 *
 * ixgbevf_probe initializes an adapter identified by a pci_dev structure.
 * The OS initialization, configuring of the adapter private structure,
 * and a hardware reset occur.
 **/
4140
static int ixgbevf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
4141 4142 4143 4144 4145 4146
{
	struct net_device *netdev;
	struct ixgbevf_adapter *adapter = NULL;
	struct ixgbe_hw *hw = NULL;
	const struct ixgbevf_info *ii = ixgbevf_info_tbl[ent->driver_data];
	int err, pci_using_dac;
4147
	bool disable_dev = false;
4148 4149 4150 4151 4152

	err = pci_enable_device(pdev);
	if (err)
		return err;

4153
	if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
4154 4155
		pci_using_dac = 1;
	} else {
4156
		err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
4157
		if (err) {
4158
			dev_err(&pdev->dev, "No usable DMA configuration, aborting\n");
4159
			goto err_dma;
4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186
		}
		pci_using_dac = 0;
	}

	err = pci_request_regions(pdev, ixgbevf_driver_name);
	if (err) {
		dev_err(&pdev->dev, "pci_request_regions failed 0x%x\n", err);
		goto err_pci_reg;
	}

	pci_set_master(pdev);

	netdev = alloc_etherdev_mq(sizeof(struct ixgbevf_adapter),
				   MAX_TX_QUEUES);
	if (!netdev) {
		err = -ENOMEM;
		goto err_alloc_etherdev;
	}

	SET_NETDEV_DEV(netdev, &pdev->dev);

	adapter = netdev_priv(netdev);

	adapter->netdev = netdev;
	adapter->pdev = pdev;
	hw = &adapter->hw;
	hw->back = adapter;
4187
	adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
4188

4189
	/* call save state here in standalone driver because it relies on
4190 4191 4192 4193 4194 4195
	 * adapter struct to exist, and needs to call netdev_priv
	 */
	pci_save_state(pdev);

	hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
			      pci_resource_len(pdev, 0));
4196
	adapter->io_addr = hw->hw_addr;
4197 4198 4199 4200 4201 4202 4203
	if (!hw->hw_addr) {
		err = -EIO;
		goto err_ioremap;
	}

	ixgbevf_assign_netdev_ops(netdev);

4204
	/* Setup HW API */
4205 4206 4207 4208
	memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops));
	hw->mac.type  = ii->mac;

	memcpy(&hw->mbx.ops, &ixgbevf_mbx_ops,
4209
	       sizeof(struct ixgbe_mbx_operations));
4210 4211 4212

	/* setup the private structure */
	err = ixgbevf_sw_init(adapter);
4213 4214 4215 4216 4217 4218 4219 4220 4221
	if (err)
		goto err_sw_init;

	/* The HW MAC address was set and/or determined in sw_init */
	if (!is_valid_ether_addr(netdev->dev_addr)) {
		pr_err("invalid MAC address\n");
		err = -EIO;
		goto err_sw_init;
	}
4222

4223
	netdev->hw_features = NETIF_F_SG |
4224 4225
			      NETIF_F_TSO |
			      NETIF_F_TSO6 |
4226 4227 4228
			      NETIF_F_RXCSUM |
			      NETIF_F_HW_CSUM |
			      NETIF_F_SCTP_CRC;
4229

4230 4231
#define IXGBEVF_GSO_PARTIAL_FEATURES (NETIF_F_GSO_GRE | \
				      NETIF_F_GSO_GRE_CSUM | \
4232
				      NETIF_F_GSO_IPXIP4 | \
4233
				      NETIF_F_GSO_IPXIP6 | \
4234 4235
				      NETIF_F_GSO_UDP_TUNNEL | \
				      NETIF_F_GSO_UDP_TUNNEL_CSUM)
4236

4237 4238 4239
	netdev->gso_partial_features = IXGBEVF_GSO_PARTIAL_FEATURES;
	netdev->hw_features |= NETIF_F_GSO_PARTIAL |
			       IXGBEVF_GSO_PARTIAL_FEATURES;
4240

4241
	netdev->features = netdev->hw_features;
4242 4243 4244 4245

	if (pci_using_dac)
		netdev->features |= NETIF_F_HIGHDMA;

4246
	netdev->vlan_features |= netdev->features | NETIF_F_TSO_MANGLEID;
4247 4248 4249 4250 4251
	netdev->mpls_features |= NETIF_F_SG |
				 NETIF_F_TSO |
				 NETIF_F_TSO6 |
				 NETIF_F_HW_CSUM;
	netdev->mpls_features |= IXGBEVF_GSO_PARTIAL_FEATURES;
4252 4253 4254 4255 4256 4257 4258
	netdev->hw_enc_features |= netdev->vlan_features;

	/* set this bit last since it cannot be part of vlan_features */
	netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER |
			    NETIF_F_HW_VLAN_CTAG_RX |
			    NETIF_F_HW_VLAN_CTAG_TX;

4259 4260
	netdev->priv_flags |= IFF_UNICAST_FLT;

4261 4262 4263 4264 4265
	/* MTU range: 68 - 1504 or 9710 */
	netdev->min_mtu = ETH_MIN_MTU;
	switch (adapter->hw.api_version) {
	case ixgbe_mbox_api_11:
	case ixgbe_mbox_api_12:
4266
	case ixgbe_mbox_api_13:
4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278
		netdev->max_mtu = IXGBE_MAX_JUMBO_FRAME_SIZE -
				  (ETH_HLEN + ETH_FCS_LEN);
		break;
	default:
		if (adapter->hw.mac.type != ixgbe_mac_82599_vf)
			netdev->max_mtu = IXGBE_MAX_JUMBO_FRAME_SIZE -
					  (ETH_HLEN + ETH_FCS_LEN);
		else
			netdev->max_mtu = ETH_DATA_LEN + ETH_FCS_LEN;
		break;
	}

4279 4280 4281 4282
	if (IXGBE_REMOVED(hw->hw_addr)) {
		err = -EIO;
		goto err_sw_init;
	}
4283

4284
	timer_setup(&adapter->service_timer, ixgbevf_service_timer, 0);
4285 4286 4287 4288

	INIT_WORK(&adapter->service_task, ixgbevf_service_task);
	set_bit(__IXGBEVF_SERVICE_INITED, &adapter->state);
	clear_bit(__IXGBEVF_SERVICE_SCHED, &adapter->state);
4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299

	err = ixgbevf_init_interrupt_scheme(adapter);
	if (err)
		goto err_sw_init;

	strcpy(netdev->name, "eth%d");

	err = register_netdev(netdev);
	if (err)
		goto err_register;

4300
	pci_set_drvdata(pdev, netdev);
G
Greg Rose 已提交
4301 4302
	netif_carrier_off(netdev);

4303 4304
	ixgbevf_init_last_counter_stats(adapter);

E
Emil Tantilov 已提交
4305 4306 4307
	/* print the VF info */
	dev_info(&pdev->dev, "%pM\n", netdev->dev_addr);
	dev_info(&pdev->dev, "MAC: %d\n", hw->mac.type);
4308

E
Emil Tantilov 已提交
4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320
	switch (hw->mac.type) {
	case ixgbe_mac_X550_vf:
		dev_info(&pdev->dev, "Intel(R) X550 Virtual Function\n");
		break;
	case ixgbe_mac_X540_vf:
		dev_info(&pdev->dev, "Intel(R) X540 Virtual Function\n");
		break;
	case ixgbe_mac_82599_vf:
	default:
		dev_info(&pdev->dev, "Intel(R) 82599 Virtual Function\n");
		break;
	}
4321 4322 4323 4324

	return 0;

err_register:
4325
	ixgbevf_clear_interrupt_scheme(adapter);
4326 4327
err_sw_init:
	ixgbevf_reset_interrupt_capability(adapter);
4328
	iounmap(adapter->io_addr);
4329
	kfree(adapter->rss_key);
4330
err_ioremap:
4331
	disable_dev = !test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state);
4332 4333 4334 4335 4336
	free_netdev(netdev);
err_alloc_etherdev:
	pci_release_regions(pdev);
err_pci_reg:
err_dma:
4337
	if (!adapter || disable_dev)
4338
		pci_disable_device(pdev);
4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350
	return err;
}

/**
 * ixgbevf_remove - Device Removal Routine
 * @pdev: PCI device information struct
 *
 * ixgbevf_remove is called by the PCI subsystem to alert the driver
 * that it should release a PCI device.  The could be caused by a
 * Hot-Plug event, or because the driver is going to be removed from
 * memory.
 **/
4351
static void ixgbevf_remove(struct pci_dev *pdev)
4352 4353
{
	struct net_device *netdev = pci_get_drvdata(pdev);
4354 4355 4356 4357 4358 4359 4360
	struct ixgbevf_adapter *adapter;
	bool disable_dev;

	if (!netdev)
		return;

	adapter = netdev_priv(netdev);
4361

4362
	set_bit(__IXGBEVF_REMOVING, &adapter->state);
4363
	cancel_work_sync(&adapter->service_task);
4364

4365
	if (netdev->reg_state == NETREG_REGISTERED)
4366 4367
		unregister_netdev(netdev);

4368
	ixgbevf_clear_interrupt_scheme(adapter);
4369 4370
	ixgbevf_reset_interrupt_capability(adapter);

4371
	iounmap(adapter->io_addr);
4372 4373 4374 4375
	pci_release_regions(pdev);

	hw_dbg(&adapter->hw, "Remove complete\n");

4376
	kfree(adapter->rss_key);
4377
	disable_dev = !test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state);
4378 4379
	free_netdev(netdev);

4380
	if (disable_dev)
4381
		pci_disable_device(pdev);
4382 4383
}

4384 4385 4386 4387 4388 4389 4390
/**
 * ixgbevf_io_error_detected - called when PCI error is detected
 * @pdev: Pointer to PCI device
 * @state: The current pci connection state
 *
 * This function is called after a PCI bus error affecting
 * this device has been detected.
4391
 **/
4392 4393 4394 4395 4396 4397
static pci_ers_result_t ixgbevf_io_error_detected(struct pci_dev *pdev,
						  pci_channel_state_t state)
{
	struct net_device *netdev = pci_get_drvdata(pdev);
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);

4398
	if (!test_bit(__IXGBEVF_SERVICE_INITED, &adapter->state))
4399 4400
		return PCI_ERS_RESULT_DISCONNECT;

4401
	rtnl_lock();
4402 4403
	netif_device_detach(netdev);

4404 4405
	if (state == pci_channel_io_perm_failure) {
		rtnl_unlock();
4406
		return PCI_ERS_RESULT_DISCONNECT;
4407
	}
4408 4409

	if (netif_running(netdev))
E
Emil Tantilov 已提交
4410
		ixgbevf_close_suspend(adapter);
4411

4412 4413 4414
	if (!test_and_set_bit(__IXGBEVF_DISABLED, &adapter->state))
		pci_disable_device(pdev);
	rtnl_unlock();
4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425

	/* Request a slot slot reset. */
	return PCI_ERS_RESULT_NEED_RESET;
}

/**
 * ixgbevf_io_slot_reset - called after the pci bus has been reset.
 * @pdev: Pointer to PCI device
 *
 * Restart the card from scratch, as if from a cold-boot. Implementation
 * resembles the first-half of the ixgbevf_resume routine.
4426
 **/
4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437
static pci_ers_result_t ixgbevf_io_slot_reset(struct pci_dev *pdev)
{
	struct net_device *netdev = pci_get_drvdata(pdev);
	struct ixgbevf_adapter *adapter = netdev_priv(netdev);

	if (pci_enable_device_mem(pdev)) {
		dev_err(&pdev->dev,
			"Cannot re-enable PCI device after reset.\n");
		return PCI_ERS_RESULT_DISCONNECT;
	}

4438
	adapter->hw.hw_addr = adapter->io_addr;
4439
	smp_mb__before_atomic();
4440
	clear_bit(__IXGBEVF_DISABLED, &adapter->state);
4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454
	pci_set_master(pdev);

	ixgbevf_reset(adapter);

	return PCI_ERS_RESULT_RECOVERED;
}

/**
 * ixgbevf_io_resume - called when traffic can start flowing again.
 * @pdev: Pointer to PCI device
 *
 * This callback is called when the error recovery driver tells us that
 * its OK to resume normal operation. Implementation resembles the
 * second-half of the ixgbevf_resume routine.
4455
 **/
4456 4457 4458 4459
static void ixgbevf_io_resume(struct pci_dev *pdev)
{
	struct net_device *netdev = pci_get_drvdata(pdev);

E
Emil Tantilov 已提交
4460
	rtnl_lock();
4461
	if (netif_running(netdev))
E
Emil Tantilov 已提交
4462
		ixgbevf_open(netdev);
4463 4464

	netif_device_attach(netdev);
E
Emil Tantilov 已提交
4465
	rtnl_unlock();
4466 4467 4468
}

/* PCI Error Recovery (ERS) */
4469
static const struct pci_error_handlers ixgbevf_err_handler = {
4470 4471 4472 4473 4474
	.error_detected = ixgbevf_io_error_detected,
	.slot_reset = ixgbevf_io_slot_reset,
	.resume = ixgbevf_io_resume,
};

4475
static struct pci_driver ixgbevf_driver = {
4476 4477 4478 4479
	.name		= ixgbevf_driver_name,
	.id_table	= ixgbevf_pci_tbl,
	.probe		= ixgbevf_probe,
	.remove		= ixgbevf_remove,
4480 4481
#ifdef CONFIG_PM
	/* Power Management Hooks */
4482 4483
	.suspend	= ixgbevf_suspend,
	.resume		= ixgbevf_resume,
4484
#endif
4485 4486
	.shutdown	= ixgbevf_shutdown,
	.err_handler	= &ixgbevf_err_handler
4487 4488 4489
};

/**
4490
 * ixgbevf_init_module - Driver Registration Routine
4491
 *
4492
 * ixgbevf_init_module is the first routine called when the driver is
4493 4494 4495 4496
 * loaded. All it does is register with the PCI subsystem.
 **/
static int __init ixgbevf_init_module(void)
{
4497 4498
	pr_info("%s - version %s\n", ixgbevf_driver_string,
		ixgbevf_driver_version);
4499

4500
	pr_info("%s\n", ixgbevf_copyright);
4501 4502 4503 4504 4505
	ixgbevf_wq = create_singlethread_workqueue(ixgbevf_driver_name);
	if (!ixgbevf_wq) {
		pr_err("%s: Failed to create workqueue\n", ixgbevf_driver_name);
		return -ENOMEM;
	}
4506

M
Mark Rustad 已提交
4507
	return pci_register_driver(&ixgbevf_driver);
4508 4509 4510 4511 4512
}

module_init(ixgbevf_init_module);

/**
4513
 * ixgbevf_exit_module - Driver Exit Cleanup Routine
4514
 *
4515
 * ixgbevf_exit_module is called just before the driver is removed
4516 4517 4518 4519 4520
 * from memory.
 **/
static void __exit ixgbevf_exit_module(void)
{
	pci_unregister_driver(&ixgbevf_driver);
4521 4522 4523 4524
	if (ixgbevf_wq) {
		destroy_workqueue(ixgbevf_wq);
		ixgbevf_wq = NULL;
	}
4525 4526 4527 4528
}

#ifdef DEBUG
/**
4529
 * ixgbevf_get_hw_dev_name - return device name string
4530
 * used by hardware layer to print debugging information
4531
 * @hw: pointer to private hardware struct
4532 4533 4534 4535
 **/
char *ixgbevf_get_hw_dev_name(struct ixgbe_hw *hw)
{
	struct ixgbevf_adapter *adapter = hw->back;
4536

4537 4538 4539 4540 4541 4542 4543
	return adapter->netdev->name;
}

#endif
module_exit(ixgbevf_exit_module);

/* ixgbevf_main.c */