i40evf_main.c 87.9 KB
Newer Older
G
Greg Rose 已提交
1 2 3
/*******************************************************************************
 *
 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
4
 * Copyright(c) 2013 - 2016 Intel Corporation.
G
Greg Rose 已提交
5 6 7 8 9 10 11 12 13 14
 *
 * 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.
 *
15 16 17
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
G
Greg Rose 已提交
18 19 20 21 22 23 24 25 26 27 28
 * 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
 *
 ******************************************************************************/

#include "i40evf.h"
#include "i40e_prototype.h"
M
Mitch Williams 已提交
29
#include "i40evf_client.h"
S
Scott Peterson 已提交
30 31 32 33 34 35 36
/* All i40evf tracepoints are defined by the include below, which must
 * be included exactly once across the whole kernel with
 * CREATE_TRACE_POINTS defined
 */
#define CREATE_TRACE_POINTS
#include "i40e_trace.h"

G
Greg Rose 已提交
37 38 39 40 41 42
static int i40evf_setup_all_tx_resources(struct i40evf_adapter *adapter);
static int i40evf_setup_all_rx_resources(struct i40evf_adapter *adapter);
static int i40evf_close(struct net_device *netdev);

char i40evf_driver_name[] = "i40evf";
static const char i40evf_driver_string[] =
43
	"Intel(R) 40-10 Gigabit Virtual Function Network Driver";
G
Greg Rose 已提交
44

45 46
#define DRV_KERN "-k"

47
#define DRV_VERSION_MAJOR 3
48 49
#define DRV_VERSION_MINOR 2
#define DRV_VERSION_BUILD 2
50 51 52 53
#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
	     __stringify(DRV_VERSION_MINOR) "." \
	     __stringify(DRV_VERSION_BUILD) \
	     DRV_KERN
G
Greg Rose 已提交
54 55
const char i40evf_driver_version[] = DRV_VERSION;
static const char i40evf_copyright[] =
56
	"Copyright (c) 2013 - 2015 Intel Corporation.";
G
Greg Rose 已提交
57 58 59 60 61 62 63 64 65

/* i40evf_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) }
 */
66
static const struct pci_device_id i40evf_pci_tbl[] = {
67
	{PCI_VDEVICE(INTEL, I40E_DEV_ID_VF), 0},
J
Joshua Hay 已提交
68
	{PCI_VDEVICE(INTEL, I40E_DEV_ID_VF_HV), 0},
69
	{PCI_VDEVICE(INTEL, I40E_DEV_ID_X722_VF), 0},
70
	{PCI_VDEVICE(INTEL, I40E_DEV_ID_ADAPTIVE_VF), 0},
G
Greg Rose 已提交
71 72 73 74 75 76 77 78 79 80 81
	/* required last entry */
	{0, }
};

MODULE_DEVICE_TABLE(pci, i40evf_pci_tbl);

MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
MODULE_DESCRIPTION("Intel(R) XL710 X710 Virtual Function Network Driver");
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_VERSION);

82 83
static struct workqueue_struct *i40evf_wq;

G
Greg Rose 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
/**
 * i40evf_allocate_dma_mem_d - OS specific memory alloc for shared code
 * @hw:   pointer to the HW structure
 * @mem:  ptr to mem struct to fill out
 * @size: size of memory requested
 * @alignment: what to align the allocation to
 **/
i40e_status i40evf_allocate_dma_mem_d(struct i40e_hw *hw,
				      struct i40e_dma_mem *mem,
				      u64 size, u32 alignment)
{
	struct i40evf_adapter *adapter = (struct i40evf_adapter *)hw->back;

	if (!mem)
		return I40E_ERR_PARAM;

	mem->size = ALIGN(size, alignment);
	mem->va = dma_alloc_coherent(&adapter->pdev->dev, mem->size,
				     (dma_addr_t *)&mem->pa, GFP_KERNEL);
	if (mem->va)
		return 0;
	else
		return I40E_ERR_NO_MEMORY;
}

/**
 * i40evf_free_dma_mem_d - OS specific memory free for shared code
 * @hw:   pointer to the HW structure
 * @mem:  ptr to mem struct to free
 **/
i40e_status i40evf_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
{
	struct i40evf_adapter *adapter = (struct i40evf_adapter *)hw->back;

	if (!mem || !mem->va)
		return I40E_ERR_PARAM;
	dma_free_coherent(&adapter->pdev->dev, mem->size,
			  mem->va, (dma_addr_t)mem->pa);
	return 0;
}

/**
 * i40evf_allocate_virt_mem_d - OS specific memory alloc for shared code
 * @hw:   pointer to the HW structure
 * @mem:  ptr to mem struct to fill out
 * @size: size of memory requested
 **/
i40e_status i40evf_allocate_virt_mem_d(struct i40e_hw *hw,
				       struct i40e_virt_mem *mem, u32 size)
{
	if (!mem)
		return I40E_ERR_PARAM;

	mem->size = size;
	mem->va = kzalloc(size, GFP_KERNEL);

	if (mem->va)
		return 0;
	else
		return I40E_ERR_NO_MEMORY;
}

/**
 * i40evf_free_virt_mem_d - OS specific memory free for shared code
 * @hw:   pointer to the HW structure
 * @mem:  ptr to mem struct to free
 **/
i40e_status i40evf_free_virt_mem_d(struct i40e_hw *hw,
				   struct i40e_virt_mem *mem)
{
	if (!mem)
		return I40E_ERR_PARAM;

	/* it's ok to kfree a NULL pointer */
	kfree(mem->va);

	return 0;
}

/**
 * i40evf_debug_d - OS dependent version of debug printing
 * @hw:  pointer to the HW structure
 * @mask: debug level mask
 * @fmt_str: printf-type format description
 **/
void i40evf_debug_d(void *hw, u32 mask, char *fmt_str, ...)
{
	char buf[512];
	va_list argptr;

	if (!(mask & ((struct i40e_hw *)hw)->debug_mask))
		return;

	va_start(argptr, fmt_str);
	vsnprintf(buf, sizeof(buf), fmt_str, argptr);
	va_end(argptr);

	/* the debug string is already formatted with a newline */
	pr_info("%s", buf);
}

185 186 187 188 189 190 191 192 193 194 195 196 197
/**
 * i40evf_schedule_reset - Set the flags and schedule a reset event
 * @adapter: board private structure
 **/
void i40evf_schedule_reset(struct i40evf_adapter *adapter)
{
	if (!(adapter->flags &
	      (I40EVF_FLAG_RESET_PENDING | I40EVF_FLAG_RESET_NEEDED))) {
		adapter->flags |= I40EVF_FLAG_RESET_NEEDED;
		schedule_work(&adapter->reset_task);
	}
}

G
Greg Rose 已提交
198 199 200 201 202 203 204 205 206
/**
 * i40evf_tx_timeout - Respond to a Tx Hang
 * @netdev: network interface device structure
 **/
static void i40evf_tx_timeout(struct net_device *netdev)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);

	adapter->tx_timeout_count++;
207
	i40evf_schedule_reset(adapter);
G
Greg Rose 已提交
208 209 210 211 212 213 214 215 216
}

/**
 * i40evf_misc_irq_disable - Mask off interrupt generation on the NIC
 * @adapter: board private structure
 **/
static void i40evf_misc_irq_disable(struct i40evf_adapter *adapter)
{
	struct i40e_hw *hw = &adapter->hw;
M
Mitch Williams 已提交
217

218 219 220
	if (!adapter->msix_entries)
		return;

G
Greg Rose 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
	wr32(hw, I40E_VFINT_DYN_CTL01, 0);

	/* read flush */
	rd32(hw, I40E_VFGEN_RSTAT);

	synchronize_irq(adapter->msix_entries[0].vector);
}

/**
 * i40evf_misc_irq_enable - Enable default interrupt generation settings
 * @adapter: board private structure
 **/
static void i40evf_misc_irq_enable(struct i40evf_adapter *adapter)
{
	struct i40e_hw *hw = &adapter->hw;
M
Mitch Williams 已提交
236

G
Greg Rose 已提交
237 238
	wr32(hw, I40E_VFINT_DYN_CTL01, I40E_VFINT_DYN_CTL01_INTENA_MASK |
				       I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
239
	wr32(hw, I40E_VFINT_ICR0_ENA1, I40E_VFINT_ICR0_ENA1_ADMINQ_MASK);
G
Greg Rose 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253

	/* read flush */
	rd32(hw, I40E_VFGEN_RSTAT);
}

/**
 * i40evf_irq_disable - Mask off interrupt generation on the NIC
 * @adapter: board private structure
 **/
static void i40evf_irq_disable(struct i40evf_adapter *adapter)
{
	int i;
	struct i40e_hw *hw = &adapter->hw;

254 255 256
	if (!adapter->msix_entries)
		return;

G
Greg Rose 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
	for (i = 1; i < adapter->num_msix_vectors; i++) {
		wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1), 0);
		synchronize_irq(adapter->msix_entries[i].vector);
	}
	/* read flush */
	rd32(hw, I40E_VFGEN_RSTAT);
}

/**
 * i40evf_irq_enable_queues - Enable interrupt for specified queues
 * @adapter: board private structure
 * @mask: bitmap of queues to enable
 **/
void i40evf_irq_enable_queues(struct i40evf_adapter *adapter, u32 mask)
{
	struct i40e_hw *hw = &adapter->hw;
	int i;

	for (i = 1; i < adapter->num_msix_vectors; i++) {
276
		if (mask & BIT(i - 1)) {
G
Greg Rose 已提交
277 278
			wr32(hw, I40E_VFINT_DYN_CTLN1(i - 1),
			     I40E_VFINT_DYN_CTLN1_INTENA_MASK |
279
			     I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK);
G
Greg Rose 已提交
280 281 282 283 284 285 286
		}
	}
}

/**
 * i40evf_irq_enable - Enable default interrupt generation settings
 * @adapter: board private structure
287
 * @flush: boolean value whether to run rd32()
G
Greg Rose 已提交
288 289 290 291 292
 **/
void i40evf_irq_enable(struct i40evf_adapter *adapter, bool flush)
{
	struct i40e_hw *hw = &adapter->hw;

293
	i40evf_misc_irq_enable(adapter);
G
Greg Rose 已提交
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
	i40evf_irq_enable_queues(adapter, ~0);

	if (flush)
		rd32(hw, I40E_VFGEN_RSTAT);
}

/**
 * i40evf_msix_aq - Interrupt handler for vector 0
 * @irq: interrupt number
 * @data: pointer to netdev
 **/
static irqreturn_t i40evf_msix_aq(int irq, void *data)
{
	struct net_device *netdev = data;
	struct i40evf_adapter *adapter = netdev_priv(netdev);
	struct i40e_hw *hw = &adapter->hw;

311
	/* handle non-queue interrupts, these reads clear the registers */
312 313
	rd32(hw, I40E_VFINT_ICR01);
	rd32(hw, I40E_VFINT_ICR0_ENA1);
G
Greg Rose 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332

	/* schedule work on the private workqueue */
	schedule_work(&adapter->adminq_task);

	return IRQ_HANDLED;
}

/**
 * i40evf_msix_clean_rings - MSIX mode Interrupt Handler
 * @irq: interrupt number
 * @data: pointer to a q_vector
 **/
static irqreturn_t i40evf_msix_clean_rings(int irq, void *data)
{
	struct i40e_q_vector *q_vector = data;

	if (!q_vector->tx.ring && !q_vector->rx.ring)
		return IRQ_HANDLED;

333
	napi_schedule_irqoff(&q_vector->napi);
G
Greg Rose 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346

	return IRQ_HANDLED;
}

/**
 * i40evf_map_vector_to_rxq - associate irqs with rx queues
 * @adapter: board private structure
 * @v_idx: interrupt number
 * @r_idx: queue number
 **/
static void
i40evf_map_vector_to_rxq(struct i40evf_adapter *adapter, int v_idx, int r_idx)
{
347
	struct i40e_q_vector *q_vector = &adapter->q_vectors[v_idx];
348
	struct i40e_ring *rx_ring = &adapter->rx_rings[r_idx];
349
	struct i40e_hw *hw = &adapter->hw;
G
Greg Rose 已提交
350 351 352 353 354 355

	rx_ring->q_vector = q_vector;
	rx_ring->next = q_vector->rx.ring;
	rx_ring->vsi = &adapter->vsi;
	q_vector->rx.ring = rx_ring;
	q_vector->rx.count++;
356
	q_vector->rx.next_update = jiffies + 1;
357
	q_vector->rx.target_itr = ITR_TO_REG(rx_ring->itr_setting);
358
	q_vector->ring_mask |= BIT(r_idx);
359
	wr32(hw, I40E_VFINT_ITRN1(I40E_RX_ITR, q_vector->reg_idx),
360 361
	     q_vector->rx.current_itr);
	q_vector->rx.current_itr = q_vector->rx.target_itr;
G
Greg Rose 已提交
362 363 364 365 366 367 368 369 370 371 372
}

/**
 * i40evf_map_vector_to_txq - associate irqs with tx queues
 * @adapter: board private structure
 * @v_idx: interrupt number
 * @t_idx: queue number
 **/
static void
i40evf_map_vector_to_txq(struct i40evf_adapter *adapter, int v_idx, int t_idx)
{
373
	struct i40e_q_vector *q_vector = &adapter->q_vectors[v_idx];
374
	struct i40e_ring *tx_ring = &adapter->tx_rings[t_idx];
375
	struct i40e_hw *hw = &adapter->hw;
G
Greg Rose 已提交
376 377 378 379 380 381

	tx_ring->q_vector = q_vector;
	tx_ring->next = q_vector->tx.ring;
	tx_ring->vsi = &adapter->vsi;
	q_vector->tx.ring = tx_ring;
	q_vector->tx.count++;
382
	q_vector->tx.next_update = jiffies + 1;
383
	q_vector->tx.target_itr = ITR_TO_REG(tx_ring->itr_setting);
G
Greg Rose 已提交
384
	q_vector->num_ringpairs++;
385
	wr32(hw, I40E_VFINT_ITRN1(I40E_TX_ITR, q_vector->reg_idx),
386 387
	     q_vector->tx.target_itr);
	q_vector->tx.current_itr = q_vector->tx.target_itr;
G
Greg Rose 已提交
388 389 390 391 392 393 394 395 396 397 398 399
}

/**
 * i40evf_map_rings_to_vectors - Maps descriptor rings to vectors
 * @adapter: board private structure to initialize
 *
 * This function maps descriptor rings to the queue-specific vectors
 * we were allotted through the MSI-X enabling code.  Ideally, we'd have
 * one vector per ring/queue, but on a constrained vector budget, we
 * group the rings as "efficiently" as possible.  You would add new
 * mapping configurations in here.
 **/
400
static void i40evf_map_rings_to_vectors(struct i40evf_adapter *adapter)
G
Greg Rose 已提交
401
{
A
Alan Brady 已提交
402 403
	int rings_remaining = adapter->num_active_queues;
	int ridx = 0, vidx = 0;
G
Greg Rose 已提交
404 405 406 407
	int q_vectors;

	q_vectors = adapter->num_msix_vectors - NONQ_VECS;

A
Alan Brady 已提交
408 409 410
	for (; ridx < rings_remaining; ridx++) {
		i40evf_map_vector_to_rxq(adapter, vidx, ridx);
		i40evf_map_vector_to_txq(adapter, vidx, ridx);
G
Greg Rose 已提交
411

A
Alan Brady 已提交
412 413 414 415 416
		/* In the case where we have more queues than vectors, continue
		 * round-robin on vectors until all queues are mapped.
		 */
		if (++vidx >= q_vectors)
			vidx = 0;
G
Greg Rose 已提交
417 418 419 420 421
	}

	adapter->aq_required |= I40EVF_FLAG_AQ_MAP_VECTORS;
}

A
Alexander Duyck 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
#ifdef CONFIG_NET_POLL_CONTROLLER
/**
 * i40evf_netpoll - A Polling 'interrupt' handler
 * @netdev: network interface device structure
 *
 * This is used by netconsole to send skbs without having to re-enable
 * interrupts.  It's not called while the normal interrupt routine is executing.
 **/
static void i40evf_netpoll(struct net_device *netdev)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);
	int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
	int i;

	/* if interface is down do nothing */
437
	if (test_bit(__I40E_VSI_DOWN, adapter->vsi.state))
A
Alexander Duyck 已提交
438 439 440
		return;

	for (i = 0; i < q_vectors; i++)
441
		i40evf_msix_clean_rings(0, &adapter->q_vectors[i]);
A
Alexander Duyck 已提交
442 443 444
}

#endif
445 446 447 448 449 450 451 452 453 454 455 456 457 458
/**
 * i40evf_irq_affinity_notify - Callback for affinity changes
 * @notify: context as to what irq was changed
 * @mask: the new affinity mask
 *
 * This is a callback function used by the irq_set_affinity_notifier function
 * so that we may register to receive changes to the irq affinity masks.
 **/
static void i40evf_irq_affinity_notify(struct irq_affinity_notify *notify,
				       const cpumask_t *mask)
{
	struct i40e_q_vector *q_vector =
		container_of(notify, struct i40e_q_vector, affinity_notify);

459
	cpumask_copy(&q_vector->affinity_mask, mask);
460 461 462 463 464 465 466 467 468 469 470 471
}

/**
 * i40evf_irq_affinity_release - Callback for affinity notifier release
 * @ref: internal core kernel usage
 *
 * This is a callback function used by the irq_set_affinity_notifier function
 * to inform the current notification subscriber that they will no longer
 * receive notifications.
 **/
static void i40evf_irq_affinity_release(struct kref *ref) {}

G
Greg Rose 已提交
472 473 474 475 476 477 478 479 480 481
/**
 * i40evf_request_traffic_irqs - Initialize MSI-X interrupts
 * @adapter: board private structure
 *
 * Allocates MSI-X vectors for tx and rx handling, and requests
 * interrupts from the kernel.
 **/
static int
i40evf_request_traffic_irqs(struct i40evf_adapter *adapter, char *basename)
{
482 483 484
	unsigned int vector, q_vectors;
	unsigned int rx_int_idx = 0, tx_int_idx = 0;
	int irq_num, err;
485
	int cpu;
G
Greg Rose 已提交
486 487 488 489 490 491

	i40evf_irq_disable(adapter);
	/* Decrement for Other and TCP Timer vectors */
	q_vectors = adapter->num_msix_vectors - NONQ_VECS;

	for (vector = 0; vector < q_vectors; vector++) {
492
		struct i40e_q_vector *q_vector = &adapter->q_vectors[vector];
493
		irq_num = adapter->msix_entries[vector + NONQ_VECS].vector;
G
Greg Rose 已提交
494 495

		if (q_vector->tx.ring && q_vector->rx.ring) {
496 497
			snprintf(q_vector->name, sizeof(q_vector->name),
				 "i40evf-%s-TxRx-%d", basename, rx_int_idx++);
G
Greg Rose 已提交
498 499
			tx_int_idx++;
		} else if (q_vector->rx.ring) {
500 501
			snprintf(q_vector->name, sizeof(q_vector->name),
				 "i40evf-%s-rx-%d", basename, rx_int_idx++);
G
Greg Rose 已提交
502
		} else if (q_vector->tx.ring) {
503 504
			snprintf(q_vector->name, sizeof(q_vector->name),
				 "i40evf-%s-tx-%d", basename, tx_int_idx++);
G
Greg Rose 已提交
505 506 507 508
		} else {
			/* skip this unused q_vector */
			continue;
		}
509 510 511 512 513
		err = request_irq(irq_num,
				  i40evf_msix_clean_rings,
				  0,
				  q_vector->name,
				  q_vector);
G
Greg Rose 已提交
514 515
		if (err) {
			dev_info(&adapter->pdev->dev,
S
Shannon Nelson 已提交
516
				 "Request_irq failed, error: %d\n", err);
G
Greg Rose 已提交
517 518
			goto free_queue_irqs;
		}
519 520 521 522 523
		/* register for affinity change notifications */
		q_vector->affinity_notify.notify = i40evf_irq_affinity_notify;
		q_vector->affinity_notify.release =
						   i40evf_irq_affinity_release;
		irq_set_affinity_notifier(irq_num, &q_vector->affinity_notify);
524 525 526
		/* Spread the IRQ affinity hints across online CPUs. Note that
		 * get_cpu_mask returns a mask with a permanent lifetime so
		 * it's safe to use as a hint for irq_set_affinity_hint.
527
		 */
528 529
		cpu = cpumask_local_spread(q_vector->v_idx, -1);
		irq_set_affinity_hint(irq_num, get_cpu_mask(cpu));
G
Greg Rose 已提交
530 531 532 533 534 535 536
	}

	return 0;

free_queue_irqs:
	while (vector) {
		vector--;
537 538 539 540
		irq_num = adapter->msix_entries[vector + NONQ_VECS].vector;
		irq_set_affinity_notifier(irq_num, NULL);
		irq_set_affinity_hint(irq_num, NULL);
		free_irq(irq_num, &adapter->q_vectors[vector]);
G
Greg Rose 已提交
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
	}
	return err;
}

/**
 * i40evf_request_misc_irq - Initialize MSI-X interrupts
 * @adapter: board private structure
 *
 * Allocates MSI-X vector 0 and requests interrupts from the kernel. This
 * vector is only for the admin queue, and stays active even when the netdev
 * is closed.
 **/
static int i40evf_request_misc_irq(struct i40evf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	int err;

558
	snprintf(adapter->misc_vector_name,
559 560
		 sizeof(adapter->misc_vector_name) - 1, "i40evf-%s:mbx",
		 dev_name(&adapter->pdev->dev));
G
Greg Rose 已提交
561
	err = request_irq(adapter->msix_entries[0].vector,
562 563
			  &i40evf_msix_aq, 0,
			  adapter->misc_vector_name, netdev);
G
Greg Rose 已提交
564 565
	if (err) {
		dev_err(&adapter->pdev->dev,
C
Catherine Sullivan 已提交
566 567
			"request_irq for %s failed: %d\n",
			adapter->misc_vector_name, err);
G
Greg Rose 已提交
568 569 570 571 572 573 574 575 576 577 578 579 580
		free_irq(adapter->msix_entries[0].vector, netdev);
	}
	return err;
}

/**
 * i40evf_free_traffic_irqs - Free MSI-X interrupts
 * @adapter: board private structure
 *
 * Frees all MSI-X vectors other than 0.
 **/
static void i40evf_free_traffic_irqs(struct i40evf_adapter *adapter)
{
581
	int vector, irq_num, q_vectors;
M
Mitch Williams 已提交
582

583 584 585
	if (!adapter->msix_entries)
		return;

G
Greg Rose 已提交
586 587
	q_vectors = adapter->num_msix_vectors - NONQ_VECS;

588 589 590 591 592
	for (vector = 0; vector < q_vectors; vector++) {
		irq_num = adapter->msix_entries[vector + NONQ_VECS].vector;
		irq_set_affinity_notifier(irq_num, NULL);
		irq_set_affinity_hint(irq_num, NULL);
		free_irq(irq_num, &adapter->q_vectors[vector]);
G
Greg Rose 已提交
593 594 595 596 597 598 599 600 601 602 603 604 605
	}
}

/**
 * i40evf_free_misc_irq - Free MSI-X miscellaneous vector
 * @adapter: board private structure
 *
 * Frees MSI-X vector 0.
 **/
static void i40evf_free_misc_irq(struct i40evf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;

606 607 608
	if (!adapter->msix_entries)
		return;

G
Greg Rose 已提交
609 610 611 612 613 614 615 616 617 618 619 620 621
	free_irq(adapter->msix_entries[0].vector, netdev);
}

/**
 * i40evf_configure_tx - Configure Transmit Unit after Reset
 * @adapter: board private structure
 *
 * Configure the Tx unit of the MAC after a reset.
 **/
static void i40evf_configure_tx(struct i40evf_adapter *adapter)
{
	struct i40e_hw *hw = &adapter->hw;
	int i;
M
Mitch Williams 已提交
622

623
	for (i = 0; i < adapter->num_active_queues; i++)
624
		adapter->tx_rings[i].tail = hw->hw_addr + I40E_QTX_TAIL1(i);
G
Greg Rose 已提交
625 626 627 628 629 630 631 632 633 634
}

/**
 * i40evf_configure_rx - Configure Receive Unit after Reset
 * @adapter: board private structure
 *
 * Configure the Rx unit of the MAC after a reset.
 **/
static void i40evf_configure_rx(struct i40evf_adapter *adapter)
{
635
	unsigned int rx_buf_len = I40E_RXBUFFER_2048;
G
Greg Rose 已提交
636 637 638
	struct i40e_hw *hw = &adapter->hw;
	int i;

639 640 641
	/* Legacy Rx will always default to a 2048 buffer size. */
#if (PAGE_SIZE < 8192)
	if (!(adapter->flags & I40EVF_FLAG_LEGACY_RX)) {
A
Arnd Bergmann 已提交
642 643
		struct net_device *netdev = adapter->netdev;

644 645 646 647 648 649
		/* For jumbo frames on systems with 4K pages we have to use
		 * an order 1 page, so we might as well increase the size
		 * of our Rx buffer to make better use of the available space
		 */
		rx_buf_len = I40E_RXBUFFER_3072;

650 651 652 653
		/* We use a 1536 buffer size for configurations with
		 * standard Ethernet mtu.  On x86 this gives us enough room
		 * for shared info and 192 bytes of padding.
		 */
654 655
		if (!I40E_2K_TOO_SMALL_WITH_PADDING &&
		    (netdev->mtu <= ETH_DATA_LEN))
656 657 658 659
			rx_buf_len = I40E_RXBUFFER_1536 - NET_IP_ALIGN;
	}
#endif

660
	for (i = 0; i < adapter->num_active_queues; i++) {
661
		adapter->rx_rings[i].tail = hw->hw_addr + I40E_QRX_TAIL1(i);
662
		adapter->rx_rings[i].rx_buf_len = rx_buf_len;
663 664 665 666 667

		if (adapter->flags & I40EVF_FLAG_LEGACY_RX)
			clear_ring_build_skb_enabled(&adapter->rx_rings[i]);
		else
			set_ring_build_skb_enabled(&adapter->rx_rings[i]);
G
Greg Rose 已提交
668 669 670 671 672 673 674 675
	}
}

/**
 * i40evf_find_vlan - Search filter list for specific vlan filter
 * @adapter: board private structure
 * @vlan: vlan tag
 *
676 677
 * Returns ptr to the filter object or NULL. Must be called while holding the
 * mac_vlan_list_lock.
G
Greg Rose 已提交
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
 **/
static struct
i40evf_vlan_filter *i40evf_find_vlan(struct i40evf_adapter *adapter, u16 vlan)
{
	struct i40evf_vlan_filter *f;

	list_for_each_entry(f, &adapter->vlan_filter_list, list) {
		if (vlan == f->vlan)
			return f;
	}
	return NULL;
}

/**
 * i40evf_add_vlan - Add a vlan filter to the list
 * @adapter: board private structure
 * @vlan: VLAN tag
 *
 * Returns ptr to the filter object or NULL when no memory available.
 **/
static struct
i40evf_vlan_filter *i40evf_add_vlan(struct i40evf_adapter *adapter, u16 vlan)
{
701 702
	struct i40evf_vlan_filter *f = NULL;

703
	spin_lock_bh(&adapter->mac_vlan_list_lock);
G
Greg Rose 已提交
704 705

	f = i40evf_find_vlan(adapter, vlan);
706
	if (!f) {
G
Greg Rose 已提交
707
		f = kzalloc(sizeof(*f), GFP_ATOMIC);
708
		if (!f)
709
			goto clearout;
710

G
Greg Rose 已提交
711 712 713 714 715 716 717 718
		f->vlan = vlan;

		INIT_LIST_HEAD(&f->list);
		list_add(&f->list, &adapter->vlan_filter_list);
		f->add = true;
		adapter->aq_required |= I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
	}

719
clearout:
720
	spin_unlock_bh(&adapter->mac_vlan_list_lock);
G
Greg Rose 已提交
721 722 723 724 725 726 727 728 729 730 731
	return f;
}

/**
 * i40evf_del_vlan - Remove a vlan filter from the list
 * @adapter: board private structure
 * @vlan: VLAN tag
 **/
static void i40evf_del_vlan(struct i40evf_adapter *adapter, u16 vlan)
{
	struct i40evf_vlan_filter *f;
732

733
	spin_lock_bh(&adapter->mac_vlan_list_lock);
G
Greg Rose 已提交
734 735 736 737 738 739

	f = i40evf_find_vlan(adapter, vlan);
	if (f) {
		f->remove = true;
		adapter->aq_required |= I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
	}
740 741

	spin_unlock_bh(&adapter->mac_vlan_list_lock);
G
Greg Rose 已提交
742 743 744 745 746 747 748 749
}

/**
 * i40evf_vlan_rx_add_vid - Add a VLAN filter to a device
 * @netdev: network device struct
 * @vid: VLAN tag
 **/
static int i40evf_vlan_rx_add_vid(struct net_device *netdev,
M
Mitch Williams 已提交
750
				  __always_unused __be16 proto, u16 vid)
G
Greg Rose 已提交
751 752 753
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);

754 755
	if (!VLAN_ALLOWED(adapter))
		return -EIO;
G
Greg Rose 已提交
756 757 758 759 760 761 762 763 764 765 766
	if (i40evf_add_vlan(adapter, vid) == NULL)
		return -ENOMEM;
	return 0;
}

/**
 * i40evf_vlan_rx_kill_vid - Remove a VLAN filter from a device
 * @netdev: network device struct
 * @vid: VLAN tag
 **/
static int i40evf_vlan_rx_kill_vid(struct net_device *netdev,
M
Mitch Williams 已提交
767
				   __always_unused __be16 proto, u16 vid)
G
Greg Rose 已提交
768 769 770
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);

771 772 773 774 775
	if (VLAN_ALLOWED(adapter)) {
		i40evf_del_vlan(adapter, vid);
		return 0;
	}
	return -EIO;
G
Greg Rose 已提交
776 777 778 779 780 781 782
}

/**
 * i40evf_find_filter - Search filter list for specific mac filter
 * @adapter: board private structure
 * @macaddr: the MAC address
 *
783 784
 * Returns ptr to the filter object or NULL. Must be called while holding the
 * mac_vlan_list_lock.
G
Greg Rose 已提交
785 786 787
 **/
static struct
i40evf_mac_filter *i40evf_find_filter(struct i40evf_adapter *adapter,
788
				      const u8 *macaddr)
G
Greg Rose 已提交
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
{
	struct i40evf_mac_filter *f;

	if (!macaddr)
		return NULL;

	list_for_each_entry(f, &adapter->mac_filter_list, list) {
		if (ether_addr_equal(macaddr, f->macaddr))
			return f;
	}
	return NULL;
}

/**
 * i40e_add_filter - Add a mac filter to the filter list
 * @adapter: board private structure
 * @macaddr: the MAC address
 *
 * Returns ptr to the filter object or NULL when no memory available.
 **/
static struct
i40evf_mac_filter *i40evf_add_filter(struct i40evf_adapter *adapter,
811
				     const u8 *macaddr)
G
Greg Rose 已提交
812 813 814 815 816 817
{
	struct i40evf_mac_filter *f;

	if (!macaddr)
		return NULL;

818
	spin_lock_bh(&adapter->mac_vlan_list_lock);
G
Greg Rose 已提交
819 820

	f = i40evf_find_filter(adapter, macaddr);
821
	if (!f) {
G
Greg Rose 已提交
822
		f = kzalloc(sizeof(*f), GFP_ATOMIC);
823 824
		if (!f)
			goto clearout;
G
Greg Rose 已提交
825

826
		ether_addr_copy(f->macaddr, macaddr);
G
Greg Rose 已提交
827

828
		list_add_tail(&f->list, &adapter->mac_filter_list);
G
Greg Rose 已提交
829 830
		f->add = true;
		adapter->aq_required |= I40EVF_FLAG_AQ_ADD_MAC_FILTER;
831 832
	} else {
		f->remove = false;
G
Greg Rose 已提交
833 834
	}

835 836
clearout:
	spin_unlock_bh(&adapter->mac_vlan_list_lock);
G
Greg Rose 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
	return f;
}

/**
 * i40evf_set_mac - NDO callback to set port mac address
 * @netdev: network interface device structure
 * @p: pointer to an address structure
 *
 * Returns 0 on success, negative on failure
 **/
static int i40evf_set_mac(struct net_device *netdev, void *p)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);
	struct i40e_hw *hw = &adapter->hw;
	struct i40evf_mac_filter *f;
	struct sockaddr *addr = p;

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

	if (ether_addr_equal(netdev->dev_addr, addr->sa_data))
		return 0;

860 861 862
	if (adapter->flags & I40EVF_FLAG_ADDR_SET_BY_PF)
		return -EPERM;

863 864
	spin_lock_bh(&adapter->mac_vlan_list_lock);

865 866 867 868 869 870
	f = i40evf_find_filter(adapter, hw->mac.addr);
	if (f) {
		f->remove = true;
		adapter->aq_required |= I40EVF_FLAG_AQ_DEL_MAC_FILTER;
	}

871 872
	spin_unlock_bh(&adapter->mac_vlan_list_lock);

G
Greg Rose 已提交
873 874
	f = i40evf_add_filter(adapter, addr->sa_data);
	if (f) {
875 876
		ether_addr_copy(hw->mac.addr, addr->sa_data);
		ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
G
Greg Rose 已提交
877 878 879 880 881 882
	}

	return (f == NULL) ? -ENOMEM : 0;
}

/**
883 884 885 886 887 888 889 890
 * i40evf_addr_sync - Callback for dev_(mc|uc)_sync to add address
 * @netdev: the netdevice
 * @addr: address to add
 *
 * Called by __dev_(mc|uc)_sync when an address needs to be added. We call
 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
 */
static int i40evf_addr_sync(struct net_device *netdev, const u8 *addr)
G
Greg Rose 已提交
891 892
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);
893

894 895 896 897 898
	if (i40evf_add_filter(adapter, addr))
		return 0;
	else
		return -ENOMEM;
}
899

900 901 902 903 904 905 906 907 908 909 910 911
/**
 * i40evf_addr_unsync - Callback for dev_(mc|uc)_sync to remove address
 * @netdev: the netdevice
 * @addr: address to add
 *
 * Called by __dev_(mc|uc)_sync when an address needs to be removed. We call
 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
 */
static int i40evf_addr_unsync(struct net_device *netdev, const u8 *addr)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);
	struct i40evf_mac_filter *f;
912

913 914 915 916 917 918 919
	/* Under some circumstances, we might receive a request to delete
	 * our own device address from our uc list. Because we store the
	 * device address in the VSI's MAC/VLAN filter list, we need to ignore
	 * such requests and not delete our device address from this list.
	 */
	if (ether_addr_equal(addr, netdev->dev_addr))
		return 0;
920

921 922
	f = i40evf_find_filter(adapter, addr);
	if (f) {
923 924
		f->remove = true;
		adapter->aq_required |= I40EVF_FLAG_AQ_DEL_MAC_FILTER;
G
Greg Rose 已提交
925
	}
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
	return 0;
}

/**
 * i40evf_set_rx_mode - NDO callback to set the netdev filters
 * @netdev: network interface device structure
 **/
static void i40evf_set_rx_mode(struct net_device *netdev)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);

	spin_lock_bh(&adapter->mac_vlan_list_lock);
	__dev_uc_sync(netdev, i40evf_addr_sync, i40evf_addr_unsync);
	__dev_mc_sync(netdev, i40evf_addr_sync, i40evf_addr_unsync);
	spin_unlock_bh(&adapter->mac_vlan_list_lock);
941 942 943 944 945 946 947 948

	if (netdev->flags & IFF_PROMISC &&
	    !(adapter->flags & I40EVF_FLAG_PROMISC_ON))
		adapter->aq_required |= I40EVF_FLAG_AQ_REQUEST_PROMISC;
	else if (!(netdev->flags & IFF_PROMISC) &&
		 adapter->flags & I40EVF_FLAG_PROMISC_ON)
		adapter->aq_required |= I40EVF_FLAG_AQ_RELEASE_PROMISC;

949 950 951 952 953 954
	if (netdev->flags & IFF_ALLMULTI &&
	    !(adapter->flags & I40EVF_FLAG_ALLMULTI_ON))
		adapter->aq_required |= I40EVF_FLAG_AQ_REQUEST_ALLMULTI;
	else if (!(netdev->flags & IFF_ALLMULTI) &&
		 adapter->flags & I40EVF_FLAG_ALLMULTI_ON)
		adapter->aq_required |= I40EVF_FLAG_AQ_RELEASE_ALLMULTI;
G
Greg Rose 已提交
955 956 957 958 959 960 961 962 963 964 965 966 967 968
}

/**
 * i40evf_napi_enable_all - enable NAPI on all queue vectors
 * @adapter: board private structure
 **/
static void i40evf_napi_enable_all(struct i40evf_adapter *adapter)
{
	int q_idx;
	struct i40e_q_vector *q_vector;
	int q_vectors = adapter->num_msix_vectors - NONQ_VECS;

	for (q_idx = 0; q_idx < q_vectors; q_idx++) {
		struct napi_struct *napi;
M
Mitch Williams 已提交
969

970
		q_vector = &adapter->q_vectors[q_idx];
G
Greg Rose 已提交
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986
		napi = &q_vector->napi;
		napi_enable(napi);
	}
}

/**
 * i40evf_napi_disable_all - disable NAPI on all queue vectors
 * @adapter: board private structure
 **/
static void i40evf_napi_disable_all(struct i40evf_adapter *adapter)
{
	int q_idx;
	struct i40e_q_vector *q_vector;
	int q_vectors = adapter->num_msix_vectors - NONQ_VECS;

	for (q_idx = 0; q_idx < q_vectors; q_idx++) {
987
		q_vector = &adapter->q_vectors[q_idx];
G
Greg Rose 已提交
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
		napi_disable(&q_vector->napi);
	}
}

/**
 * i40evf_configure - set up transmit and receive data structures
 * @adapter: board private structure
 **/
static void i40evf_configure(struct i40evf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	int i;

	i40evf_set_rx_mode(netdev);

	i40evf_configure_tx(adapter);
	i40evf_configure_rx(adapter);
	adapter->aq_required |= I40EVF_FLAG_AQ_CONFIGURE_QUEUES;

1007
	for (i = 0; i < adapter->num_active_queues; i++) {
1008
		struct i40e_ring *ring = &adapter->rx_rings[i];
M
Mitch Williams 已提交
1009

1010
		i40evf_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
G
Greg Rose 已提交
1011 1012 1013 1014 1015 1016
	}
}

/**
 * i40evf_up_complete - Finish the last steps of bringing up a connection
 * @adapter: board private structure
1017 1018
 *
 * Expects to be called while holding the __I40EVF_IN_CRITICAL_TASK bit lock.
G
Greg Rose 已提交
1019
 **/
1020
static void i40evf_up_complete(struct i40evf_adapter *adapter)
G
Greg Rose 已提交
1021 1022
{
	adapter->state = __I40EVF_RUNNING;
1023
	clear_bit(__I40E_VSI_DOWN, adapter->vsi.state);
G
Greg Rose 已提交
1024 1025 1026 1027

	i40evf_napi_enable_all(adapter);

	adapter->aq_required |= I40EVF_FLAG_AQ_ENABLE_QUEUES;
M
Mitch Williams 已提交
1028 1029
	if (CLIENT_ENABLED(adapter))
		adapter->flags |= I40EVF_FLAG_CLIENT_NEEDS_OPEN;
G
Greg Rose 已提交
1030 1031 1032 1033 1034 1035
	mod_timer_pending(&adapter->watchdog_timer, jiffies + 1);
}

/**
 * i40e_down - Shutdown the connection processing
 * @adapter: board private structure
1036 1037
 *
 * Expects to be called while holding the __I40EVF_IN_CRITICAL_TASK bit lock.
G
Greg Rose 已提交
1038 1039 1040 1041
 **/
void i40evf_down(struct i40evf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
1042
	struct i40evf_vlan_filter *vlf;
G
Greg Rose 已提交
1043 1044
	struct i40evf_mac_filter *f;

1045
	if (adapter->state <= __I40EVF_DOWN_PENDING)
M
Mitch Williams 已提交
1046 1047
		return;

1048 1049
	netif_carrier_off(netdev);
	netif_tx_disable(netdev);
1050
	adapter->link_up = false;
1051
	i40evf_napi_disable_all(adapter);
1052
	i40evf_irq_disable(adapter);
1053

1054 1055
	spin_lock_bh(&adapter->mac_vlan_list_lock);

1056 1057 1058 1059
	/* clear the sync flag on all filters */
	__dev_uc_unsync(adapter->netdev, NULL);
	__dev_mc_unsync(adapter->netdev, NULL);

M
Mitch Williams 已提交
1060
	/* remove all MAC filters */
G
Greg Rose 已提交
1061 1062 1063
	list_for_each_entry(f, &adapter->mac_filter_list, list) {
		f->remove = true;
	}
1064

1065
	/* remove all VLAN filters */
1066
	list_for_each_entry(vlf, &adapter->vlan_filter_list, list) {
1067 1068
		f->remove = true;
	}
1069 1070 1071

	spin_unlock_bh(&adapter->mac_vlan_list_lock);

M
Mitch Williams 已提交
1072 1073
	if (!(adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) &&
	    adapter->state != __I40EVF_RESETTING) {
1074
		/* cancel any current operation */
1075
		adapter->current_op = VIRTCHNL_OP_UNKNOWN;
1076 1077 1078 1079 1080
		/* Schedule operations to close down the HW. Don't wait
		 * here for this to complete. The watchdog is still running
		 * and it will take care of this.
		 */
		adapter->aq_required = I40EVF_FLAG_AQ_DEL_MAC_FILTER;
1081
		adapter->aq_required |= I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
M
Mitch Williams 已提交
1082 1083
		adapter->aq_required |= I40EVF_FLAG_AQ_DISABLE_QUEUES;
	}
G
Greg Rose 已提交
1084

1085
	mod_timer_pending(&adapter->watchdog_timer, jiffies + 1);
G
Greg Rose 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
}

/**
 * i40evf_acquire_msix_vectors - Setup the MSIX capability
 * @adapter: board private structure
 * @vectors: number of vectors to request
 *
 * Work with the OS to set up the MSIX vectors needed.
 *
 * Returns 0 on success, negative on failure
 **/
static int
i40evf_acquire_msix_vectors(struct i40evf_adapter *adapter, int vectors)
{
	int err, vector_threshold;

	/* We'll want at least 3 (vector_threshold):
	 * 0) Other (Admin Queue and link, mostly)
	 * 1) TxQ[0] Cleanup
	 * 2) RxQ[0] Cleanup
	 */
	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.
	 */
1114 1115 1116
	err = pci_enable_msix_range(adapter->pdev, adapter->msix_entries,
				    vector_threshold, vectors);
	if (err < 0) {
1117
		dev_err(&adapter->pdev->dev, "Unable to allocate MSI-X interrupts\n");
G
Greg Rose 已提交
1118 1119
		kfree(adapter->msix_entries);
		adapter->msix_entries = NULL;
1120
		return err;
G
Greg Rose 已提交
1121
	}
1122 1123 1124 1125 1126 1127 1128

	/* Adjust for only the vectors we'll use, which is minimum
	 * of max_msix_q_vectors + NONQ_VECS, or the number of
	 * vectors we were allocated.
	 */
	adapter->num_msix_vectors = err;
	return 0;
G
Greg Rose 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
}

/**
 * i40evf_free_queues - Free memory for all rings
 * @adapter: board private structure to initialize
 *
 * Free all of the memory associated with queue pairs.
 **/
static void i40evf_free_queues(struct i40evf_adapter *adapter)
{
	if (!adapter->vsi_res)
		return;
1141
	adapter->num_active_queues = 0;
1142
	kfree(adapter->tx_rings);
1143
	adapter->tx_rings = NULL;
1144
	kfree(adapter->rx_rings);
1145
	adapter->rx_rings = NULL;
G
Greg Rose 已提交
1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
}

/**
 * i40evf_alloc_queues - Allocate memory for all rings
 * @adapter: board private structure to initialize
 *
 * We allocate one ring per queue at run-time since we don't know the
 * number of queues at compile-time.  The polling_netdev array is
 * intended for Multiqueue, but should work fine with a single queue.
 **/
static int i40evf_alloc_queues(struct i40evf_adapter *adapter)
{
1158 1159
	int i, num_active_queues;

1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
	/* If we're in reset reallocating queues we don't actually know yet for
	 * certain the PF gave us the number of queues we asked for but we'll
	 * assume it did.  Once basic reset is finished we'll confirm once we
	 * start negotiating config with PF.
	 */
	if (adapter->num_req_queues)
		num_active_queues = adapter->num_req_queues;
	else
		num_active_queues = min_t(int,
					  adapter->vsi_res->num_queue_pairs,
					  (int)(num_online_cpus()));

G
Greg Rose 已提交
1172

1173
	adapter->tx_rings = kcalloc(num_active_queues,
1174 1175 1176
				    sizeof(struct i40e_ring), GFP_KERNEL);
	if (!adapter->tx_rings)
		goto err_out;
1177
	adapter->rx_rings = kcalloc(num_active_queues,
1178 1179 1180 1181
				    sizeof(struct i40e_ring), GFP_KERNEL);
	if (!adapter->rx_rings)
		goto err_out;

1182
	for (i = 0; i < num_active_queues; i++) {
G
Greg Rose 已提交
1183 1184 1185
		struct i40e_ring *tx_ring;
		struct i40e_ring *rx_ring;

1186
		tx_ring = &adapter->tx_rings[i];
G
Greg Rose 已提交
1187 1188 1189 1190

		tx_ring->queue_index = i;
		tx_ring->netdev = adapter->netdev;
		tx_ring->dev = &adapter->pdev->dev;
1191
		tx_ring->count = adapter->tx_desc_count;
1192
		tx_ring->itr_setting = I40E_ITR_TX_DEF;
1193
		if (adapter->flags & I40EVF_FLAG_WB_ON_ITR_CAPABLE)
1194
			tx_ring->flags |= I40E_TXR_FLAGS_WB_ON_ITR;
G
Greg Rose 已提交
1195

1196
		rx_ring = &adapter->rx_rings[i];
G
Greg Rose 已提交
1197 1198 1199
		rx_ring->queue_index = i;
		rx_ring->netdev = adapter->netdev;
		rx_ring->dev = &adapter->pdev->dev;
1200
		rx_ring->count = adapter->rx_desc_count;
1201
		rx_ring->itr_setting = I40E_ITR_RX_DEF;
G
Greg Rose 已提交
1202 1203
	}

1204 1205
	adapter->num_active_queues = num_active_queues;

G
Greg Rose 已提交
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
	return 0;

err_out:
	i40evf_free_queues(adapter);
	return -ENOMEM;
}

/**
 * i40evf_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 i40evf_set_interrupt_capability(struct i40evf_adapter *adapter)
{
	int vector, v_budget;
	int pairs = 0;
	int err = 0;

	if (!adapter->vsi_res) {
		err = -EIO;
		goto out;
	}
1230
	pairs = adapter->num_active_queues;
G
Greg Rose 已提交
1231

1232 1233 1234 1235
	/* It's easy to be greedy for MSI-X vectors, but it really doesn't do
	 * us much good if we have more vectors than CPUs. However, we already
	 * limit the total number of queues by the number of CPUs so we do not
	 * need any further limiting here.
G
Greg Rose 已提交
1236
	 */
1237 1238
	v_budget = min_t(int, pairs + NONQ_VECS,
			 (int)adapter->vf_res->max_vectors);
G
Greg Rose 已提交
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249

	adapter->msix_entries = kcalloc(v_budget,
					sizeof(struct msix_entry), GFP_KERNEL);
	if (!adapter->msix_entries) {
		err = -ENOMEM;
		goto out;
	}

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

1250
	err = i40evf_acquire_msix_vectors(adapter, v_budget);
G
Greg Rose 已提交
1251 1252

out:
M
Mitch Williams 已提交
1253 1254
	netif_set_real_num_rx_queues(adapter->netdev, pairs);
	netif_set_real_num_tx_queues(adapter->netdev, pairs);
G
Greg Rose 已提交
1255 1256 1257
	return err;
}

1258
/**
1259 1260
 * i40e_config_rss_aq - Configure RSS keys and lut by using AQ commands
 * @adapter: board private structure
1261 1262
 *
 * Return 0 on success, negative on failure
1263
 **/
1264
static int i40evf_config_rss_aq(struct i40evf_adapter *adapter)
1265
{
1266 1267
	struct i40e_aqc_get_set_rss_key_data *rss_key =
		(struct i40e_aqc_get_set_rss_key_data *)adapter->rss_key;
1268
	struct i40e_hw *hw = &adapter->hw;
1269
	int ret = 0;
1270

1271
	if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
1272
		/* bail because we already have a command pending */
M
Masanari Iida 已提交
1273
		dev_err(&adapter->pdev->dev, "Cannot configure RSS, command %d pending\n",
1274
			adapter->current_op);
1275
		return -EBUSY;
1276 1277
	}

1278 1279 1280 1281 1282 1283 1284
	ret = i40evf_aq_set_rss_key(hw, adapter->vsi.id, rss_key);
	if (ret) {
		dev_err(&adapter->pdev->dev, "Cannot set RSS key, err %s aq_err %s\n",
			i40evf_stat_str(hw, ret),
			i40evf_aq_str(hw, hw->aq.asq_last_status));
		return ret;

1285
	}
1286

1287 1288 1289 1290 1291 1292
	ret = i40evf_aq_set_rss_lut(hw, adapter->vsi.id, false,
				    adapter->rss_lut, adapter->rss_lut_size);
	if (ret) {
		dev_err(&adapter->pdev->dev, "Cannot set RSS lut, err %s aq_err %s\n",
			i40evf_stat_str(hw, ret),
			i40evf_aq_str(hw, hw->aq.asq_last_status));
1293 1294
	}

1295
	return ret;
1296

1297 1298 1299
}

/**
1300
 * i40evf_config_rss_reg - Configure RSS keys and lut by writing registers
1301
 * @adapter: board private structure
1302 1303
 *
 * Returns 0 on success, negative on failure
1304
 **/
1305
static int i40evf_config_rss_reg(struct i40evf_adapter *adapter)
1306 1307
{
	struct i40e_hw *hw = &adapter->hw;
1308
	u32 *dw;
1309
	u16 i;
1310

1311 1312 1313
	dw = (u32 *)adapter->rss_key;
	for (i = 0; i <= adapter->rss_key_size / 4; i++)
		wr32(hw, I40E_VFQF_HKEY(i), dw[i]);
1314

1315 1316 1317
	dw = (u32 *)adapter->rss_lut;
	for (i = 0; i <= adapter->rss_lut_size / 4; i++)
		wr32(hw, I40E_VFQF_HLUT(i), dw[i]);
1318

1319
	i40e_flush(hw);
1320 1321 1322 1323 1324 1325

	return 0;
}

/**
 * i40evf_config_rss - Configure RSS keys and lut
1326
 * @adapter: board private structure
1327 1328 1329
 *
 * Returns 0 on success, negative on failure
 **/
1330
int i40evf_config_rss(struct i40evf_adapter *adapter)
1331 1332
{

1333 1334 1335 1336 1337 1338 1339 1340 1341
	if (RSS_PF(adapter)) {
		adapter->aq_required |= I40EVF_FLAG_AQ_SET_RSS_LUT |
					I40EVF_FLAG_AQ_SET_RSS_KEY;
		return 0;
	} else if (RSS_AQ(adapter)) {
		return i40evf_config_rss_aq(adapter);
	} else {
		return i40evf_config_rss_reg(adapter);
	}
1342 1343
}

1344 1345
/**
 * i40evf_fill_rss_lut - Fill the lut with default values
1346
 * @adapter: board private structure
1347
 **/
1348
static void i40evf_fill_rss_lut(struct i40evf_adapter *adapter)
1349 1350 1351
{
	u16 i;

1352 1353
	for (i = 0; i < adapter->rss_lut_size; i++)
		adapter->rss_lut[i] = i % adapter->num_active_queues;
1354 1355 1356
}

/**
1357
 * i40evf_init_rss - Prepare for RSS
1358
 * @adapter: board private structure
1359 1360
 *
 * Return 0 on success, negative on failure
1361
 **/
1362
static int i40evf_init_rss(struct i40evf_adapter *adapter)
1363 1364
{
	struct i40e_hw *hw = &adapter->hw;
1365
	int ret;
1366

1367 1368
	if (!RSS_PF(adapter)) {
		/* Enable PCTYPES for RSS, TCP/UDP with IPv4/IPv6 */
1369
		if (adapter->vf_res->vf_cap_flags &
1370
		    VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
1371 1372 1373
			adapter->hena = I40E_DEFAULT_RSS_HENA_EXPANDED;
		else
			adapter->hena = I40E_DEFAULT_RSS_HENA;
1374

1375 1376 1377
		wr32(hw, I40E_VFQF_HENA(0), (u32)adapter->hena);
		wr32(hw, I40E_VFQF_HENA(1), (u32)(adapter->hena >> 32));
	}
1378

1379
	i40evf_fill_rss_lut(adapter);
1380

1381 1382
	netdev_rss_key_fill((void *)adapter->rss_key, adapter->rss_key_size);
	ret = i40evf_config_rss(adapter);
1383 1384

	return ret;
1385 1386
}

G
Greg Rose 已提交
1387 1388 1389 1390 1391 1392 1393 1394 1395
/**
 * i40evf_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 i40evf_alloc_q_vectors(struct i40evf_adapter *adapter)
{
1396
	int q_idx = 0, num_q_vectors;
G
Greg Rose 已提交
1397 1398 1399
	struct i40e_q_vector *q_vector;

	num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
1400
	adapter->q_vectors = kcalloc(num_q_vectors, sizeof(*q_vector),
1401 1402
				     GFP_KERNEL);
	if (!adapter->q_vectors)
A
Alan Cox 已提交
1403
		return -ENOMEM;
G
Greg Rose 已提交
1404 1405

	for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
1406
		q_vector = &adapter->q_vectors[q_idx];
G
Greg Rose 已提交
1407 1408 1409
		q_vector->adapter = adapter;
		q_vector->vsi = &adapter->vsi;
		q_vector->v_idx = q_idx;
1410
		q_vector->reg_idx = q_idx;
1411
		cpumask_copy(&q_vector->affinity_mask, cpu_possible_mask);
G
Greg Rose 已提交
1412
		netif_napi_add(adapter->netdev, &q_vector->napi,
M
Mitch Williams 已提交
1413
			       i40evf_napi_poll, NAPI_POLL_WEIGHT);
G
Greg Rose 已提交
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
	}

	return 0;
}

/**
 * i40evf_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 i40evf_free_q_vectors(struct i40evf_adapter *adapter)
{
	int q_idx, num_q_vectors;
	int napi_vectors;

1432 1433 1434
	if (!adapter->q_vectors)
		return;

G
Greg Rose 已提交
1435
	num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
1436
	napi_vectors = adapter->num_active_queues;
G
Greg Rose 已提交
1437 1438

	for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
1439
		struct i40e_q_vector *q_vector = &adapter->q_vectors[q_idx];
G
Greg Rose 已提交
1440 1441 1442
		if (q_idx < napi_vectors)
			netif_napi_del(&q_vector->napi);
	}
1443
	kfree(adapter->q_vectors);
1444
	adapter->q_vectors = NULL;
G
Greg Rose 已提交
1445 1446 1447 1448 1449 1450 1451 1452 1453
}

/**
 * i40evf_reset_interrupt_capability - Reset MSIX setup
 * @adapter: board private structure
 *
 **/
void i40evf_reset_interrupt_capability(struct i40evf_adapter *adapter)
{
1454 1455 1456
	if (!adapter->msix_entries)
		return;

G
Greg Rose 已提交
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
	pci_disable_msix(adapter->pdev);
	kfree(adapter->msix_entries);
	adapter->msix_entries = NULL;
}

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

1471 1472 1473 1474 1475 1476 1477
	err = i40evf_alloc_queues(adapter);
	if (err) {
		dev_err(&adapter->pdev->dev,
			"Unable to allocate memory for queues\n");
		goto err_alloc_queues;
	}

1478
	rtnl_lock();
G
Greg Rose 已提交
1479
	err = i40evf_set_interrupt_capability(adapter);
1480
	rtnl_unlock();
G
Greg Rose 已提交
1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
	if (err) {
		dev_err(&adapter->pdev->dev,
			"Unable to setup interrupt capabilities\n");
		goto err_set_interrupt;
	}

	err = i40evf_alloc_q_vectors(adapter);
	if (err) {
		dev_err(&adapter->pdev->dev,
			"Unable to allocate memory for queue vectors\n");
		goto err_alloc_q_vectors;
	}

	dev_info(&adapter->pdev->dev, "Multiqueue %s: Queue pair count = %u",
M
Mitch Williams 已提交
1495 1496
		 (adapter->num_active_queues > 1) ? "Enabled" : "Disabled",
		 adapter->num_active_queues);
G
Greg Rose 已提交
1497 1498 1499 1500 1501

	return 0;
err_alloc_q_vectors:
	i40evf_reset_interrupt_capability(adapter);
err_set_interrupt:
1502 1503
	i40evf_free_queues(adapter);
err_alloc_queues:
G
Greg Rose 已提交
1504 1505 1506
	return err;
}

1507
/**
1508 1509
 * i40evf_free_rss - Free memory used by RSS structs
 * @adapter: board private structure
1510
 **/
1511
static void i40evf_free_rss(struct i40evf_adapter *adapter)
1512
{
1513 1514
	kfree(adapter->rss_key);
	adapter->rss_key = NULL;
1515

1516 1517
	kfree(adapter->rss_lut);
	adapter->rss_lut = NULL;
1518 1519
}

1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
/**
 * i40evf_reinit_interrupt_scheme - Reallocate queues and vectors
 * @adapter: board private structure
 *
 * Returns 0 on success, negative on failure
 **/
static int i40evf_reinit_interrupt_scheme(struct i40evf_adapter *adapter)
{
	struct net_device *netdev = adapter->netdev;
	int err;

	if (netif_running(netdev))
		i40evf_free_traffic_irqs(adapter);
	i40evf_free_misc_irq(adapter);
	i40evf_reset_interrupt_capability(adapter);
	i40evf_free_q_vectors(adapter);
	i40evf_free_queues(adapter);

	err =  i40evf_init_interrupt_scheme(adapter);
	if (err)
		goto err;

	netif_tx_stop_all_queues(netdev);

	err = i40evf_request_misc_irq(adapter);
	if (err)
		goto err;

	set_bit(__I40E_VSI_DOWN, adapter->vsi.state);

1550
	i40evf_map_rings_to_vectors(adapter);
1551 1552 1553 1554 1555 1556 1557 1558 1559

	if (RSS_AQ(adapter))
		adapter->aq_required |= I40EVF_FLAG_AQ_CONFIGURE_RSS;
	else
		err = i40evf_init_rss(adapter);
err:
	return err;
}

G
Greg Rose 已提交
1560 1561 1562 1563
/**
 * i40evf_watchdog_timer - Periodic call-back timer
 * @data: pointer to adapter disguised as unsigned long
 **/
1564
static void i40evf_watchdog_timer(struct timer_list *t)
G
Greg Rose 已提交
1565
{
1566 1567
	struct i40evf_adapter *adapter = from_timer(adapter, t,
						    watchdog_timer);
M
Mitch Williams 已提交
1568

G
Greg Rose 已提交
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
	schedule_work(&adapter->watchdog_task);
	/* timer will be rescheduled in watchdog task */
}

/**
 * i40evf_watchdog_task - Periodic call-back task
 * @work: pointer to work_struct
 **/
static void i40evf_watchdog_task(struct work_struct *work)
{
	struct i40evf_adapter *adapter = container_of(work,
M
Mitch Williams 已提交
1580 1581
						      struct i40evf_adapter,
						      watchdog_task);
G
Greg Rose 已提交
1582
	struct i40e_hw *hw = &adapter->hw;
1583
	u32 reg_val;
G
Greg Rose 已提交
1584

M
Mitch Williams 已提交
1585 1586 1587 1588
	if (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section))
		goto restart_watchdog;

	if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) {
1589 1590
		reg_val = rd32(hw, I40E_VFGEN_RSTAT) &
			  I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1591 1592
		if ((reg_val == VIRTCHNL_VFR_VFACTIVE) ||
		    (reg_val == VIRTCHNL_VFR_COMPLETED)) {
M
Mitch Williams 已提交
1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
			/* A chance for redemption! */
			dev_err(&adapter->pdev->dev, "Hardware came out of reset. Attempting reinit.\n");
			adapter->state = __I40EVF_STARTUP;
			adapter->flags &= ~I40EVF_FLAG_PF_COMMS_FAILED;
			schedule_delayed_work(&adapter->init_task, 10);
			clear_bit(__I40EVF_IN_CRITICAL_TASK,
				  &adapter->crit_section);
			/* Don't reschedule the watchdog, since we've restarted
			 * the init task. When init_task contacts the PF and
			 * gets everything set up again, it'll restart the
			 * watchdog for us. Down, boy. Sit. Stay. Woof.
			 */
			return;
		}
		adapter->aq_required = 0;
1608
		adapter->current_op = VIRTCHNL_OP_UNKNOWN;
G
Greg Rose 已提交
1609
		goto watchdog_done;
M
Mitch Williams 已提交
1610
	}
G
Greg Rose 已提交
1611

M
Mitch Williams 已提交
1612 1613
	if ((adapter->state < __I40EVF_DOWN) ||
	    (adapter->flags & I40EVF_FLAG_RESET_PENDING))
G
Greg Rose 已提交
1614 1615
		goto watchdog_done;

M
Mitch Williams 已提交
1616
	/* check for reset */
1617 1618
	reg_val = rd32(hw, I40E_VF_ARQLEN1) & I40E_VF_ARQLEN1_ARQENABLE_MASK;
	if (!(adapter->flags & I40EVF_FLAG_RESET_PENDING) && !reg_val) {
G
Greg Rose 已提交
1619
		adapter->state = __I40EVF_RESETTING;
M
Mitch Williams 已提交
1620
		adapter->flags |= I40EVF_FLAG_RESET_PENDING;
1621
		dev_err(&adapter->pdev->dev, "Hardware reset detected\n");
G
Greg Rose 已提交
1622
		schedule_work(&adapter->reset_task);
M
Mitch Williams 已提交
1623
		adapter->aq_required = 0;
1624
		adapter->current_op = VIRTCHNL_OP_UNKNOWN;
G
Greg Rose 已提交
1625 1626 1627 1628 1629 1630
		goto watchdog_done;
	}

	/* Process admin queue tasks. After init, everything gets done
	 * here so we don't race on the admin queue.
	 */
M
Mitch Williams 已提交
1631
	if (adapter->current_op) {
1632 1633 1634 1635
		if (!i40evf_asq_done(hw)) {
			dev_dbg(&adapter->pdev->dev, "Admin queue timeout\n");
			i40evf_send_api_ver(adapter);
		}
G
Greg Rose 已提交
1636
		goto watchdog_done;
1637
	}
M
Mitch Williams 已提交
1638 1639 1640 1641
	if (adapter->aq_required & I40EVF_FLAG_AQ_GET_CONFIG) {
		i40evf_send_vf_config_msg(adapter);
		goto watchdog_done;
	}
G
Greg Rose 已提交
1642

M
Mitch Williams 已提交
1643 1644 1645 1646 1647
	if (adapter->aq_required & I40EVF_FLAG_AQ_DISABLE_QUEUES) {
		i40evf_disable_queues(adapter);
		goto watchdog_done;
	}

G
Greg Rose 已提交
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
	if (adapter->aq_required & I40EVF_FLAG_AQ_MAP_VECTORS) {
		i40evf_map_queues(adapter);
		goto watchdog_done;
	}

	if (adapter->aq_required & I40EVF_FLAG_AQ_ADD_MAC_FILTER) {
		i40evf_add_ether_addrs(adapter);
		goto watchdog_done;
	}

	if (adapter->aq_required & I40EVF_FLAG_AQ_ADD_VLAN_FILTER) {
		i40evf_add_vlans(adapter);
		goto watchdog_done;
	}

	if (adapter->aq_required & I40EVF_FLAG_AQ_DEL_MAC_FILTER) {
		i40evf_del_ether_addrs(adapter);
		goto watchdog_done;
	}

	if (adapter->aq_required & I40EVF_FLAG_AQ_DEL_VLAN_FILTER) {
		i40evf_del_vlans(adapter);
		goto watchdog_done;
	}

1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
	if (adapter->aq_required & I40EVF_FLAG_AQ_ENABLE_VLAN_STRIPPING) {
		i40evf_enable_vlan_stripping(adapter);
		goto watchdog_done;
	}

	if (adapter->aq_required & I40EVF_FLAG_AQ_DISABLE_VLAN_STRIPPING) {
		i40evf_disable_vlan_stripping(adapter);
		goto watchdog_done;
	}

G
Greg Rose 已提交
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
	if (adapter->aq_required & I40EVF_FLAG_AQ_CONFIGURE_QUEUES) {
		i40evf_configure_queues(adapter);
		goto watchdog_done;
	}

	if (adapter->aq_required & I40EVF_FLAG_AQ_ENABLE_QUEUES) {
		i40evf_enable_queues(adapter);
		goto watchdog_done;
	}

1693 1694 1695 1696 1697
	if (adapter->aq_required & I40EVF_FLAG_AQ_CONFIGURE_RSS) {
		/* This message goes straight to the firmware, not the
		 * PF, so we don't have to set current_op as we will
		 * not get a response through the ARQ.
		 */
1698
		i40evf_init_rss(adapter);
1699 1700 1701
		adapter->aq_required &= ~I40EVF_FLAG_AQ_CONFIGURE_RSS;
		goto watchdog_done;
	}
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
	if (adapter->aq_required & I40EVF_FLAG_AQ_GET_HENA) {
		i40evf_get_hena(adapter);
		goto watchdog_done;
	}
	if (adapter->aq_required & I40EVF_FLAG_AQ_SET_HENA) {
		i40evf_set_hena(adapter);
		goto watchdog_done;
	}
	if (adapter->aq_required & I40EVF_FLAG_AQ_SET_RSS_KEY) {
		i40evf_set_rss_key(adapter);
		goto watchdog_done;
	}
	if (adapter->aq_required & I40EVF_FLAG_AQ_SET_RSS_LUT) {
		i40evf_set_rss_lut(adapter);
		goto watchdog_done;
	}
1718

1719
	if (adapter->aq_required & I40EVF_FLAG_AQ_REQUEST_PROMISC) {
1720 1721
		i40evf_set_promiscuous(adapter, FLAG_VF_UNICAST_PROMISC |
				       FLAG_VF_MULTICAST_PROMISC);
1722 1723 1724
		goto watchdog_done;
	}

1725
	if (adapter->aq_required & I40EVF_FLAG_AQ_REQUEST_ALLMULTI) {
1726
		i40evf_set_promiscuous(adapter, FLAG_VF_MULTICAST_PROMISC);
1727 1728 1729 1730 1731
		goto watchdog_done;
	}

	if ((adapter->aq_required & I40EVF_FLAG_AQ_RELEASE_PROMISC) &&
	    (adapter->aq_required & I40EVF_FLAG_AQ_RELEASE_ALLMULTI)) {
1732 1733 1734
		i40evf_set_promiscuous(adapter, 0);
		goto watchdog_done;
	}
M
Mitch Williams 已提交
1735
	schedule_delayed_work(&adapter->client_task, msecs_to_jiffies(5));
1736

G
Greg Rose 已提交
1737 1738 1739
	if (adapter->state == __I40EVF_RUNNING)
		i40evf_request_stats(adapter);
watchdog_done:
1740 1741
	if (adapter->state == __I40EVF_RUNNING)
		i40evf_detect_recover_hung(&adapter->vsi);
M
Mitch Williams 已提交
1742 1743
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
restart_watchdog:
1744 1745
	if (adapter->state == __I40EVF_REMOVE)
		return;
G
Greg Rose 已提交
1746 1747 1748 1749 1750 1751 1752 1753
	if (adapter->aq_required)
		mod_timer(&adapter->watchdog_timer,
			  jiffies + msecs_to_jiffies(20));
	else
		mod_timer(&adapter->watchdog_timer, jiffies + (HZ * 2));
	schedule_work(&adapter->adminq_task);
}

1754 1755 1756 1757 1758 1759 1760
static void i40evf_disable_vf(struct i40evf_adapter *adapter)
{
	struct i40evf_mac_filter *f, *ftmp;
	struct i40evf_vlan_filter *fv, *fvtmp;

	adapter->flags |= I40EVF_FLAG_PF_COMMS_FAILED;

1761 1762 1763 1764 1765
	/* We don't use netif_running() because it may be true prior to
	 * ndo_open() returning, so we can't assume it means all our open
	 * tasks have finished, since we're not holding the rtnl_lock here.
	 */
	if (adapter->state == __I40EVF_RUNNING) {
1766
		set_bit(__I40E_VSI_DOWN, adapter->vsi.state);
1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
		netif_carrier_off(adapter->netdev);
		netif_tx_disable(adapter->netdev);
		adapter->link_up = false;
		i40evf_napi_disable_all(adapter);
		i40evf_irq_disable(adapter);
		i40evf_free_traffic_irqs(adapter);
		i40evf_free_all_tx_resources(adapter);
		i40evf_free_all_rx_resources(adapter);
	}

1777 1778
	spin_lock_bh(&adapter->mac_vlan_list_lock);

1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
	/* Delete all of the filters, both MAC and VLAN. */
	list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
		list_del(&f->list);
		kfree(f);
	}

	list_for_each_entry_safe(fv, fvtmp, &adapter->vlan_filter_list, list) {
		list_del(&fv->list);
		kfree(fv);
	}

1790 1791
	spin_unlock_bh(&adapter->mac_vlan_list_lock);

1792 1793 1794 1795 1796 1797 1798 1799 1800 1801
	i40evf_free_misc_irq(adapter);
	i40evf_reset_interrupt_capability(adapter);
	i40evf_free_queues(adapter);
	i40evf_free_q_vectors(adapter);
	kfree(adapter->vf_res);
	i40evf_shutdown_adminq(&adapter->hw);
	adapter->netdev->flags &= ~IFF_UP;
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
	adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
	adapter->state = __I40EVF_DOWN;
1802
	wake_up(&adapter->down_waitqueue);
1803 1804 1805
	dev_info(&adapter->pdev->dev, "Reset task did not complete, VF disabled\n");
}

1806 1807
#define I40EVF_RESET_WAIT_MS 10
#define I40EVF_RESET_WAIT_COUNT 500
G
Greg Rose 已提交
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
/**
 * i40evf_reset_task - Call-back task to handle hardware reset
 * @work: pointer to work_struct
 *
 * During reset we need to shut down and reinitialize the admin queue
 * before we can use it to communicate with the PF again. We also clear
 * and reinit the rings because that context is lost as well.
 **/
static void i40evf_reset_task(struct work_struct *work)
{
M
Mitch Williams 已提交
1818 1819 1820
	struct i40evf_adapter *adapter = container_of(work,
						      struct i40evf_adapter,
						      reset_task);
M
Mitch Williams 已提交
1821
	struct net_device *netdev = adapter->netdev;
G
Greg Rose 已提交
1822
	struct i40e_hw *hw = &adapter->hw;
1823
	struct i40evf_vlan_filter *vlf;
M
Mitch Williams 已提交
1824
	struct i40evf_mac_filter *f;
1825
	u32 reg_val;
M
Mitch Williams 已提交
1826
	int i = 0, err;
1827
	bool running;
G
Greg Rose 已提交
1828

1829 1830 1831 1832 1833 1834
	/* When device is being removed it doesn't make sense to run the reset
	 * task, just return in such a case.
	 */
	if (test_bit(__I40EVF_IN_REMOVE_TASK, &adapter->crit_section))
		return;

M
Mitch Williams 已提交
1835
	while (test_and_set_bit(__I40EVF_IN_CLIENT_TASK,
G
Greg Rose 已提交
1836
				&adapter->crit_section))
1837
		usleep_range(500, 1000);
M
Mitch Williams 已提交
1838 1839 1840 1841 1842 1843 1844 1845
	if (CLIENT_ENABLED(adapter)) {
		adapter->flags &= ~(I40EVF_FLAG_CLIENT_NEEDS_OPEN |
				    I40EVF_FLAG_CLIENT_NEEDS_CLOSE |
				    I40EVF_FLAG_CLIENT_NEEDS_L2_PARAMS |
				    I40EVF_FLAG_SERVICE_CLIENT_REQUESTED);
		cancel_delayed_work_sync(&adapter->client_task);
		i40evf_notify_client_close(&adapter->vsi, true);
	}
1846
	i40evf_misc_irq_disable(adapter);
1847
	if (adapter->flags & I40EVF_FLAG_RESET_NEEDED) {
1848 1849 1850 1851 1852 1853
		adapter->flags &= ~I40EVF_FLAG_RESET_NEEDED;
		/* Restart the AQ here. If we have been reset but didn't
		 * detect it, or if the PF had to reinit, our AQ will be hosed.
		 */
		i40evf_shutdown_adminq(hw);
		i40evf_init_adminq(hw);
1854 1855
		i40evf_request_reset(adapter);
	}
1856
	adapter->flags |= I40EVF_FLAG_RESET_PENDING;
1857

M
Mitch Williams 已提交
1858 1859
	/* poll until we see the reset actually happen */
	for (i = 0; i < I40EVF_RESET_WAIT_COUNT; i++) {
1860 1861 1862
		reg_val = rd32(hw, I40E_VF_ARQLEN1) &
			  I40E_VF_ARQLEN1_ARQENABLE_MASK;
		if (!reg_val)
M
Mitch Williams 已提交
1863
			break;
1864
		usleep_range(5000, 10000);
M
Mitch Williams 已提交
1865 1866
	}
	if (i == I40EVF_RESET_WAIT_COUNT) {
1867
		dev_info(&adapter->pdev->dev, "Never saw reset\n");
M
Mitch Williams 已提交
1868 1869
		goto continue_reset; /* act like the reset happened */
	}
G
Greg Rose 已提交
1870

M
Mitch Williams 已提交
1871 1872
	/* wait until the reset is complete and the PF is responding to us */
	for (i = 0; i < I40EVF_RESET_WAIT_COUNT; i++) {
J
Jacob Keller 已提交
1873 1874 1875
		/* sleep first to make sure a minimum wait time is met */
		msleep(I40EVF_RESET_WAIT_MS);

1876 1877
		reg_val = rd32(hw, I40E_VFGEN_RSTAT) &
			  I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1878
		if (reg_val == VIRTCHNL_VFR_VFACTIVE)
G
Greg Rose 已提交
1879 1880
			break;
	}
J
Jacob Keller 已提交
1881

1882
	pci_set_master(adapter->pdev);
J
Jacob Keller 已提交
1883

M
Mitch Williams 已提交
1884
	if (i == I40EVF_RESET_WAIT_COUNT) {
1885
		dev_err(&adapter->pdev->dev, "Reset never finished (%x)\n",
1886
			reg_val);
1887
		i40evf_disable_vf(adapter);
M
Mitch Williams 已提交
1888
		clear_bit(__I40EVF_IN_CLIENT_TASK, &adapter->crit_section);
M
Mitch Williams 已提交
1889
		return; /* Do not attempt to reinit. It's dead, Jim. */
G
Greg Rose 已提交
1890
	}
M
Mitch Williams 已提交
1891 1892

continue_reset:
1893 1894 1895 1896 1897 1898 1899
	/* We don't use netif_running() because it may be true prior to
	 * ndo_open() returning, so we can't assume it means all our open
	 * tasks have finished, since we're not holding the rtnl_lock here.
	 */
	running = (adapter->state == __I40EVF_RUNNING);

	if (running) {
M
Mitch Williams 已提交
1900
		netif_carrier_off(netdev);
1901
		netif_tx_stop_all_queues(netdev);
1902
		adapter->link_up = false;
1903
		i40evf_napi_disable_all(adapter);
M
Mitch Williams 已提交
1904
	}
1905
	i40evf_irq_disable(adapter);
M
Mitch Williams 已提交
1906

G
Greg Rose 已提交
1907
	adapter->state = __I40EVF_RESETTING;
1908 1909 1910 1911 1912 1913 1914
	adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;

	/* free the Tx/Rx rings and descriptors, might be better to just
	 * re-use them sometime in the future
	 */
	i40evf_free_all_rx_resources(adapter);
	i40evf_free_all_tx_resources(adapter);
G
Greg Rose 已提交
1915 1916

	/* kill and reinit the admin queue */
1917
	i40evf_shutdown_adminq(hw);
1918
	adapter->current_op = VIRTCHNL_OP_UNKNOWN;
G
Greg Rose 已提交
1919 1920
	err = i40evf_init_adminq(hw);
	if (err)
M
Mitch Williams 已提交
1921 1922
		dev_info(&adapter->pdev->dev, "Failed to init adminq: %d\n",
			 err);
1923 1924 1925 1926 1927 1928 1929
	adapter->aq_required = 0;

	if (adapter->flags & I40EVF_FLAG_REINIT_ITR_NEEDED) {
		err = i40evf_reinit_interrupt_scheme(adapter);
		if (err)
			goto reset_err;
	}
G
Greg Rose 已提交
1930

1931
	adapter->aq_required |= I40EVF_FLAG_AQ_GET_CONFIG;
M
Mitch Williams 已提交
1932
	adapter->aq_required |= I40EVF_FLAG_AQ_MAP_VECTORS;
M
Mitch Williams 已提交
1933

1934 1935
	spin_lock_bh(&adapter->mac_vlan_list_lock);

M
Mitch Williams 已提交
1936 1937 1938 1939 1940
	/* re-add all MAC filters */
	list_for_each_entry(f, &adapter->mac_filter_list, list) {
		f->add = true;
	}
	/* re-add all VLAN filters */
1941 1942
	list_for_each_entry(vlf, &adapter->vlan_filter_list, list) {
		vlf->add = true;
M
Mitch Williams 已提交
1943
	}
1944 1945 1946

	spin_unlock_bh(&adapter->mac_vlan_list_lock);

M
Mitch Williams 已提交
1947
	adapter->aq_required |= I40EVF_FLAG_AQ_ADD_MAC_FILTER;
M
Mitch Williams 已提交
1948
	adapter->aq_required |= I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
1949
	i40evf_misc_irq_enable(adapter);
G
Greg Rose 已提交
1950 1951 1952

	mod_timer(&adapter->watchdog_timer, jiffies + 2);

1953 1954 1955 1956
	/* We were running when the reset started, so we need to restore some
	 * state here.
	 */
	if (running) {
G
Greg Rose 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966
		/* allocate transmit descriptors */
		err = i40evf_setup_all_tx_resources(adapter);
		if (err)
			goto reset_err;

		/* allocate receive descriptors */
		err = i40evf_setup_all_rx_resources(adapter);
		if (err)
			goto reset_err;

1967 1968 1969 1970 1971 1972 1973 1974 1975
		if (adapter->flags & I40EVF_FLAG_REINIT_ITR_NEEDED) {
			err = i40evf_request_traffic_irqs(adapter,
							  netdev->name);
			if (err)
				goto reset_err;

			adapter->flags &= ~I40EVF_FLAG_REINIT_ITR_NEEDED;
		}

G
Greg Rose 已提交
1976 1977
		i40evf_configure(adapter);

1978
		i40evf_up_complete(adapter);
G
Greg Rose 已提交
1979 1980

		i40evf_irq_enable(adapter, true);
1981 1982
	} else {
		adapter->state = __I40EVF_DOWN;
1983
		wake_up(&adapter->down_waitqueue);
G
Greg Rose 已提交
1984
	}
1985 1986
	clear_bit(__I40EVF_IN_CLIENT_TASK, &adapter->crit_section);
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
1987

G
Greg Rose 已提交
1988 1989
	return;
reset_err:
1990 1991
	clear_bit(__I40EVF_IN_CLIENT_TASK, &adapter->crit_section);
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
1992
	dev_err(&adapter->pdev->dev, "failed to allocate resources during reinit\n");
1993
	i40evf_close(netdev);
G
Greg Rose 已提交
1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
}

/**
 * i40evf_adminq_task - worker thread to clean the admin queue
 * @work: pointer to work_struct containing our data
 **/
static void i40evf_adminq_task(struct work_struct *work)
{
	struct i40evf_adapter *adapter =
		container_of(work, struct i40evf_adapter, adminq_task);
	struct i40e_hw *hw = &adapter->hw;
	struct i40e_arq_event_info event;
2006 2007
	enum virtchnl_ops v_op;
	i40e_status ret, v_ret;
2008
	u32 val, oldval;
G
Greg Rose 已提交
2009 2010
	u16 pending;

M
Mitch Williams 已提交
2011
	if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED)
2012
		goto out;
M
Mitch Williams 已提交
2013

M
Mitch Williams 已提交
2014 2015
	event.buf_len = I40EVF_MAX_AQ_BUF_SIZE;
	event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
2016
	if (!event.msg_buf)
2017
		goto out;
2018

G
Greg Rose 已提交
2019 2020
	do {
		ret = i40evf_clean_arq_element(hw, &event, &pending);
2021 2022 2023 2024
		v_op = (enum virtchnl_ops)le32_to_cpu(event.desc.cookie_high);
		v_ret = (i40e_status)le32_to_cpu(event.desc.cookie_low);

		if (ret || !v_op)
G
Greg Rose 已提交
2025 2026
			break; /* No event to process or error cleaning ARQ */

2027
		i40evf_virtchnl_completion(adapter, v_op, v_ret, event.msg_buf,
M
Mitch Williams 已提交
2028
					   event.msg_len);
M
Mitch Williams 已提交
2029
		if (pending != 0)
G
Greg Rose 已提交
2030 2031 2032
			memset(event.msg_buf, 0, I40EVF_MAX_AQ_BUF_SIZE);
	} while (pending);

2033 2034 2035 2036 2037
	if ((adapter->flags &
	     (I40EVF_FLAG_RESET_PENDING | I40EVF_FLAG_RESET_NEEDED)) ||
	    adapter->state == __I40EVF_RESETTING)
		goto freedom;

2038 2039
	/* check for error indications */
	val = rd32(hw, hw->aq.arq.len);
2040 2041
	if (val == 0xdeadbeef) /* indicates device in reset */
		goto freedom;
2042
	oldval = val;
2043
	if (val & I40E_VF_ARQLEN1_ARQVFE_MASK) {
2044
		dev_info(&adapter->pdev->dev, "ARQ VF Error detected\n");
2045
		val &= ~I40E_VF_ARQLEN1_ARQVFE_MASK;
2046
	}
2047
	if (val & I40E_VF_ARQLEN1_ARQOVFL_MASK) {
2048
		dev_info(&adapter->pdev->dev, "ARQ Overflow Error detected\n");
2049
		val &= ~I40E_VF_ARQLEN1_ARQOVFL_MASK;
2050
	}
2051
	if (val & I40E_VF_ARQLEN1_ARQCRIT_MASK) {
2052
		dev_info(&adapter->pdev->dev, "ARQ Critical Error detected\n");
2053
		val &= ~I40E_VF_ARQLEN1_ARQCRIT_MASK;
2054 2055 2056 2057 2058 2059
	}
	if (oldval != val)
		wr32(hw, hw->aq.arq.len, val);

	val = rd32(hw, hw->aq.asq.len);
	oldval = val;
2060
	if (val & I40E_VF_ATQLEN1_ATQVFE_MASK) {
2061
		dev_info(&adapter->pdev->dev, "ASQ VF Error detected\n");
2062
		val &= ~I40E_VF_ATQLEN1_ATQVFE_MASK;
2063
	}
2064
	if (val & I40E_VF_ATQLEN1_ATQOVFL_MASK) {
2065
		dev_info(&adapter->pdev->dev, "ASQ Overflow Error detected\n");
2066
		val &= ~I40E_VF_ATQLEN1_ATQOVFL_MASK;
2067
	}
2068
	if (val & I40E_VF_ATQLEN1_ATQCRIT_MASK) {
2069
		dev_info(&adapter->pdev->dev, "ASQ Critical Error detected\n");
2070
		val &= ~I40E_VF_ATQLEN1_ATQCRIT_MASK;
2071 2072 2073 2074
	}
	if (oldval != val)
		wr32(hw, hw->aq.asq.len, val);

2075
freedom:
2076 2077
	kfree(event.msg_buf);
out:
G
Greg Rose 已提交
2078 2079 2080 2081
	/* re-enable Admin queue interrupt cause */
	i40evf_misc_irq_enable(adapter);
}

M
Mitch Williams 已提交
2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105
/**
 * i40evf_client_task - worker thread to perform client work
 * @work: pointer to work_struct containing our data
 *
 * This task handles client interactions. Because client calls can be
 * reentrant, we can't handle them in the watchdog.
 **/
static void i40evf_client_task(struct work_struct *work)
{
	struct i40evf_adapter *adapter =
		container_of(work, struct i40evf_adapter, client_task.work);

	/* If we can't get the client bit, just give up. We'll be rescheduled
	 * later.
	 */

	if (test_and_set_bit(__I40EVF_IN_CLIENT_TASK, &adapter->crit_section))
		return;

	if (adapter->flags & I40EVF_FLAG_SERVICE_CLIENT_REQUESTED) {
		i40evf_client_subtask(adapter);
		adapter->flags &= ~I40EVF_FLAG_SERVICE_CLIENT_REQUESTED;
		goto out;
	}
2106 2107 2108 2109 2110
	if (adapter->flags & I40EVF_FLAG_CLIENT_NEEDS_L2_PARAMS) {
		i40evf_notify_client_l2_params(&adapter->vsi);
		adapter->flags &= ~I40EVF_FLAG_CLIENT_NEEDS_L2_PARAMS;
		goto out;
	}
M
Mitch Williams 已提交
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123
	if (adapter->flags & I40EVF_FLAG_CLIENT_NEEDS_CLOSE) {
		i40evf_notify_client_close(&adapter->vsi, false);
		adapter->flags &= ~I40EVF_FLAG_CLIENT_NEEDS_CLOSE;
		goto out;
	}
	if (adapter->flags & I40EVF_FLAG_CLIENT_NEEDS_OPEN) {
		i40evf_notify_client_open(&adapter->vsi);
		adapter->flags &= ~I40EVF_FLAG_CLIENT_NEEDS_OPEN;
	}
out:
	clear_bit(__I40EVF_IN_CLIENT_TASK, &adapter->crit_section);
}

G
Greg Rose 已提交
2124 2125 2126 2127 2128 2129
/**
 * i40evf_free_all_tx_resources - Free Tx Resources for All Queues
 * @adapter: board private structure
 *
 * Free all transmit software resources
 **/
M
Mitch Williams 已提交
2130
void i40evf_free_all_tx_resources(struct i40evf_adapter *adapter)
G
Greg Rose 已提交
2131 2132 2133
{
	int i;

2134 2135 2136
	if (!adapter->tx_rings)
		return;

2137
	for (i = 0; i < adapter->num_active_queues; i++)
2138 2139
		if (adapter->tx_rings[i].desc)
			i40evf_free_tx_resources(&adapter->tx_rings[i]);
G
Greg Rose 已提交
2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155
}

/**
 * i40evf_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 i40evf_setup_all_tx_resources(struct i40evf_adapter *adapter)
{
	int i, err = 0;

2156
	for (i = 0; i < adapter->num_active_queues; i++) {
2157 2158
		adapter->tx_rings[i].count = adapter->tx_desc_count;
		err = i40evf_setup_tx_descriptors(&adapter->tx_rings[i]);
G
Greg Rose 已提交
2159 2160 2161
		if (!err)
			continue;
		dev_err(&adapter->pdev->dev,
S
Shannon Nelson 已提交
2162
			"Allocation for Tx Queue %u failed\n", i);
G
Greg Rose 已提交
2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
		break;
	}

	return err;
}

/**
 * i40evf_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 i40evf_setup_all_rx_resources(struct i40evf_adapter *adapter)
{
	int i, err = 0;

2183
	for (i = 0; i < adapter->num_active_queues; i++) {
2184 2185
		adapter->rx_rings[i].count = adapter->rx_desc_count;
		err = i40evf_setup_rx_descriptors(&adapter->rx_rings[i]);
G
Greg Rose 已提交
2186 2187 2188
		if (!err)
			continue;
		dev_err(&adapter->pdev->dev,
S
Shannon Nelson 已提交
2189
			"Allocation for Rx Queue %u failed\n", i);
G
Greg Rose 已提交
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
		break;
	}
	return err;
}

/**
 * i40evf_free_all_rx_resources - Free Rx Resources for All Queues
 * @adapter: board private structure
 *
 * Free all receive software resources
 **/
M
Mitch Williams 已提交
2201
void i40evf_free_all_rx_resources(struct i40evf_adapter *adapter)
G
Greg Rose 已提交
2202 2203 2204
{
	int i;

2205 2206 2207
	if (!adapter->rx_rings)
		return;

2208
	for (i = 0; i < adapter->num_active_queues; i++)
2209 2210
		if (adapter->rx_rings[i].desc)
			i40evf_free_rx_resources(&adapter->rx_rings[i]);
G
Greg Rose 已提交
2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229
}

/**
 * i40evf_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.
 **/
static int i40evf_open(struct net_device *netdev)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);
	int err;

M
Mitch Williams 已提交
2230 2231 2232 2233
	if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED) {
		dev_err(&adapter->pdev->dev, "Unable to open device due to PF driver failure.\n");
		return -EIO;
	}
2234

2235 2236 2237 2238 2239 2240 2241 2242
	while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
				&adapter->crit_section))
		usleep_range(500, 1000);

	if (adapter->state != __I40EVF_DOWN) {
		err = -EBUSY;
		goto err_unlock;
	}
G
Greg Rose 已提交
2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258

	/* allocate transmit descriptors */
	err = i40evf_setup_all_tx_resources(adapter);
	if (err)
		goto err_setup_tx;

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

	/* clear any pending interrupts, may auto mask */
	err = i40evf_request_traffic_irqs(adapter, netdev->name);
	if (err)
		goto err_req_irq;

2259
	i40evf_add_filter(adapter, adapter->hw.mac.addr);
G
Greg Rose 已提交
2260 2261
	i40evf_configure(adapter);

2262
	i40evf_up_complete(adapter);
G
Greg Rose 已提交
2263 2264 2265

	i40evf_irq_enable(adapter, true);

2266 2267
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);

G
Greg Rose 已提交
2268 2269 2270 2271 2272 2273 2274 2275 2276
	return 0;

err_req_irq:
	i40evf_down(adapter);
	i40evf_free_traffic_irqs(adapter);
err_setup_rx:
	i40evf_free_all_rx_resources(adapter);
err_setup_tx:
	i40evf_free_all_tx_resources(adapter);
2277 2278
err_unlock:
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);
G
Greg Rose 已提交
2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296

	return err;
}

/**
 * i40evf_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. All IRQs except vector 0 (reserved for admin queue)
 * are freed, along with all transmit and receive resources.
 **/
static int i40evf_close(struct net_device *netdev)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);
2297
	int status;
G
Greg Rose 已提交
2298

2299
	if (adapter->state <= __I40EVF_DOWN_PENDING)
M
Mitch Williams 已提交
2300 2301
		return 0;

2302 2303 2304
	while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
				&adapter->crit_section))
		usleep_range(500, 1000);
M
Mitch Williams 已提交
2305

2306
	set_bit(__I40E_VSI_DOWN, adapter->vsi.state);
M
Mitch Williams 已提交
2307 2308
	if (CLIENT_ENABLED(adapter))
		adapter->flags |= I40EVF_FLAG_CLIENT_NEEDS_CLOSE;
G
Greg Rose 已提交
2309 2310

	i40evf_down(adapter);
2311
	adapter->state = __I40EVF_DOWN_PENDING;
G
Greg Rose 已提交
2312 2313
	i40evf_free_traffic_irqs(adapter);

2314 2315
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);

M
Mitch Williams 已提交
2316 2317 2318 2319
	/* We explicitly don't free resources here because the hardware is
	 * still active and can DMA into memory. Resources are cleared in
	 * i40evf_virtchnl_completion() after we get confirmation from the PF
	 * driver that the rings have been stopped.
2320 2321 2322 2323 2324
	 *
	 * Also, we wait for state to transition to __I40EVF_DOWN before
	 * returning. State change occurs in i40evf_virtchnl_completion() after
	 * VF resources are released (which occurs after PF driver processes and
	 * responds to admin queue commands).
M
Mitch Williams 已提交
2325
	 */
2326 2327 2328 2329 2330 2331

	status = wait_event_timeout(adapter->down_waitqueue,
				    adapter->state == __I40EVF_DOWN,
				    msecs_to_jiffies(200));
	if (!status)
		netdev_warn(netdev, "Device resources not yet released\n");
G
Greg Rose 已提交
2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346
	return 0;
}

/**
 * i40evf_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 i40evf_change_mtu(struct net_device *netdev, int new_mtu)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);

	netdev->mtu = new_mtu;
M
Mitch Williams 已提交
2347 2348 2349 2350
	if (CLIENT_ENABLED(adapter)) {
		i40evf_notify_client_l2_params(&adapter->vsi);
		adapter->flags |= I40EVF_FLAG_SERVICE_CLIENT_REQUESTED;
	}
2351 2352 2353
	adapter->flags |= I40EVF_FLAG_RESET_NEEDED;
	schedule_work(&adapter->reset_task);

G
Greg Rose 已提交
2354 2355 2356
	return 0;
}

2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367
/**
 * i40e_set_features - set the netdev feature flags
 * @netdev: ptr to the netdev being adjusted
 * @features: the feature set that the stack is suggesting
 * Note: expects to be called while under rtnl_lock()
 **/
static int i40evf_set_features(struct net_device *netdev,
			       netdev_features_t features)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);

2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378
	/* Don't allow changing VLAN_RX flag when VLAN is set for VF
	 * and return an error in this case
	 */
	if (VLAN_ALLOWED(adapter)) {
		if (features & NETIF_F_HW_VLAN_CTAG_RX)
			adapter->aq_required |=
				I40EVF_FLAG_AQ_ENABLE_VLAN_STRIPPING;
		else
			adapter->aq_required |=
				I40EVF_FLAG_AQ_DISABLE_VLAN_STRIPPING;
	} else if ((netdev->features ^ features) & NETIF_F_HW_VLAN_CTAG_RX) {
2379
		return -EINVAL;
2380
	}
2381 2382 2383 2384

	return 0;
}

2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 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
/**
 * i40evf_features_check - Validate encapsulated packet conforms to limits
 * @skb: skb buff
 * @netdev: This physical port's netdev
 * @features: Offload features that the stack believes apply
 **/
static netdev_features_t i40evf_features_check(struct sk_buff *skb,
					       struct net_device *dev,
					       netdev_features_t features)
{
	size_t len;

	/* No point in doing any of this if neither checksum nor GSO are
	 * being requested for this frame.  We can rule out both by just
	 * checking for CHECKSUM_PARTIAL
	 */
	if (skb->ip_summed != CHECKSUM_PARTIAL)
		return features;

	/* We cannot support GSO if the MSS is going to be less than
	 * 64 bytes.  If it is then we need to drop support for GSO.
	 */
	if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_size < 64))
		features &= ~NETIF_F_GSO_MASK;

	/* MACLEN can support at most 63 words */
	len = skb_network_header(skb) - skb->data;
	if (len & ~(63 * 2))
		goto out_err;

	/* IPLEN and EIPLEN can support at most 127 dwords */
	len = skb_transport_header(skb) - skb_network_header(skb);
	if (len & ~(127 * 4))
		goto out_err;

	if (skb->encapsulation) {
		/* L4TUNLEN can support 127 words */
		len = skb_inner_network_header(skb) - skb_transport_header(skb);
		if (len & ~(127 * 2))
			goto out_err;

		/* IPLEN can support at most 127 dwords */
		len = skb_inner_transport_header(skb) -
		      skb_inner_network_header(skb);
		if (len & ~(127 * 4))
			goto out_err;
	}

	/* No need to validate L4LEN as TCP is the only protocol with a
	 * a flexible value and we support all possible values supported
	 * by TCP, which is at most 15 dwords
	 */

	return features;
out_err:
	return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
}

M
Mitch Williams 已提交
2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454
/**
 * i40evf_fix_features - fix up the netdev feature bits
 * @netdev: our net device
 * @features: desired feature bits
 *
 * Returns fixed-up features bits
 **/
static netdev_features_t i40evf_fix_features(struct net_device *netdev,
					     netdev_features_t features)
{
	struct i40evf_adapter *adapter = netdev_priv(netdev);

2455 2456 2457 2458 2459
	if (!(adapter->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN))
		features &= ~(NETIF_F_HW_VLAN_CTAG_TX |
			      NETIF_F_HW_VLAN_CTAG_RX |
			      NETIF_F_HW_VLAN_CTAG_FILTER);

M
Mitch Williams 已提交
2460 2461 2462
	return features;
}

G
Greg Rose 已提交
2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
static const struct net_device_ops i40evf_netdev_ops = {
	.ndo_open		= i40evf_open,
	.ndo_stop		= i40evf_close,
	.ndo_start_xmit		= i40evf_xmit_frame,
	.ndo_set_rx_mode	= i40evf_set_rx_mode,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= i40evf_set_mac,
	.ndo_change_mtu		= i40evf_change_mtu,
	.ndo_tx_timeout		= i40evf_tx_timeout,
	.ndo_vlan_rx_add_vid	= i40evf_vlan_rx_add_vid,
	.ndo_vlan_rx_kill_vid	= i40evf_vlan_rx_kill_vid,
2474
	.ndo_features_check	= i40evf_features_check,
M
Mitch Williams 已提交
2475
	.ndo_fix_features	= i40evf_fix_features,
2476
	.ndo_set_features	= i40evf_set_features,
A
Alexander Duyck 已提交
2477 2478 2479
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= i40evf_netpoll,
#endif
G
Greg Rose 已提交
2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493
};

/**
 * i40evf_check_reset_complete - check that VF reset is complete
 * @hw: pointer to hw struct
 *
 * Returns 0 if device is ready to use, or -EBUSY if it's in reset.
 **/
static int i40evf_check_reset_complete(struct i40e_hw *hw)
{
	u32 rstat;
	int i;

	for (i = 0; i < 100; i++) {
2494 2495
		rstat = rd32(hw, I40E_VFGEN_RSTAT) &
			    I40E_VFGEN_RSTAT_VFR_STATE_MASK;
2496 2497
		if ((rstat == VIRTCHNL_VFR_VFACTIVE) ||
		    (rstat == VIRTCHNL_VFR_COMPLETED))
G
Greg Rose 已提交
2498
			return 0;
2499
		usleep_range(10, 20);
G
Greg Rose 已提交
2500 2501 2502 2503
	}
	return -EBUSY;
}

M
Mitch Williams 已提交
2504 2505 2506 2507 2508 2509 2510 2511 2512
/**
 * i40evf_process_config - Process the config information we got from the PF
 * @adapter: board private structure
 *
 * Verify that we have a valid config struct, and set up our netdev features
 * and our VSI struct.
 **/
int i40evf_process_config(struct i40evf_adapter *adapter)
{
2513
	struct virtchnl_vf_resource *vfres = adapter->vf_res;
2514
	int i, num_req_queues = adapter->num_req_queues;
M
Mitch Williams 已提交
2515
	struct net_device *netdev = adapter->netdev;
2516
	struct i40e_vsi *vsi = &adapter->vsi;
2517 2518
	netdev_features_t hw_enc_features;
	netdev_features_t hw_features;
M
Mitch Williams 已提交
2519 2520

	/* got VF config message back from PF, now we can parse it */
2521
	for (i = 0; i < vfres->num_vsis; i++) {
2522
		if (vfres->vsi_res[i].vsi_type == VIRTCHNL_VSI_SRIOV)
2523
			adapter->vsi_res = &vfres->vsi_res[i];
M
Mitch Williams 已提交
2524 2525 2526 2527 2528 2529
	}
	if (!adapter->vsi_res) {
		dev_err(&adapter->pdev->dev, "No LAN VSI found\n");
		return -ENODEV;
	}

2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546
	if (num_req_queues &&
	    num_req_queues != adapter->vsi_res->num_queue_pairs) {
		/* Problem.  The PF gave us fewer queues than what we had
		 * negotiated in our request.  Need a reset to see if we can't
		 * get back to a working state.
		 */
		dev_err(&adapter->pdev->dev,
			"Requested %d queues, but PF only gave us %d.\n",
			num_req_queues,
			adapter->vsi_res->num_queue_pairs);
		adapter->flags |= I40EVF_FLAG_REINIT_ITR_NEEDED;
		adapter->num_req_queues = adapter->vsi_res->num_queue_pairs;
		i40evf_schedule_reset(adapter);
		return -ENODEV;
	}
	adapter->num_req_queues = 0;

2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562
	hw_enc_features = NETIF_F_SG			|
			  NETIF_F_IP_CSUM		|
			  NETIF_F_IPV6_CSUM		|
			  NETIF_F_HIGHDMA		|
			  NETIF_F_SOFT_FEATURES	|
			  NETIF_F_TSO			|
			  NETIF_F_TSO_ECN		|
			  NETIF_F_TSO6			|
			  NETIF_F_SCTP_CRC		|
			  NETIF_F_RXHASH		|
			  NETIF_F_RXCSUM		|
			  0;

	/* advertise to stack only if offloads for encapsulated packets is
	 * supported
	 */
2563
	if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_ENCAP) {
2564
		hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL	|
2565
				   NETIF_F_GSO_GRE		|
2566
				   NETIF_F_GSO_GRE_CSUM		|
2567
				   NETIF_F_GSO_IPXIP4		|
2568
				   NETIF_F_GSO_IPXIP6		|
2569
				   NETIF_F_GSO_UDP_TUNNEL_CSUM	|
2570
				   NETIF_F_GSO_PARTIAL		|
2571 2572
				   0;

2573
		if (!(vfres->vf_cap_flags &
2574
		      VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM))
2575 2576
			netdev->gso_partial_features |=
				NETIF_F_GSO_UDP_TUNNEL_CSUM;
2577

2578 2579 2580 2581
		netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
		netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
		netdev->hw_enc_features |= hw_enc_features;
	}
2582
	/* record features VLANs can make use of */
2583
	netdev->vlan_features |= hw_enc_features | NETIF_F_TSO_MANGLEID;
2584 2585

	/* Write features and hw_features separately to avoid polluting
2586
	 * with, or dropping, features that are set when we registered.
2587
	 */
2588
	hw_features = hw_enc_features;
2589

2590 2591 2592 2593 2594
	/* Enable VLAN features if supported */
	if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN)
		hw_features |= (NETIF_F_HW_VLAN_CTAG_TX |
				NETIF_F_HW_VLAN_CTAG_RX);

2595
	netdev->hw_features |= hw_features;
2596

2597 2598 2599 2600
	netdev->features |= hw_features;

	if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN)
		netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
M
Mitch Williams 已提交
2601 2602 2603 2604 2605 2606

	adapter->vsi.id = adapter->vsi_res->vsi_id;

	adapter->vsi.back = adapter;
	adapter->vsi.base_vector = 1;
	adapter->vsi.work_limit = I40E_DEFAULT_IRQ_WORK;
2607 2608
	vsi->netdev = adapter->netdev;
	vsi->qs_handle = adapter->vsi_res->qset_handle;
2609
	if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF) {
2610 2611 2612 2613 2614 2615 2616
		adapter->rss_key_size = vfres->rss_key_size;
		adapter->rss_lut_size = vfres->rss_lut_size;
	} else {
		adapter->rss_key_size = I40EVF_HKEY_ARRAY_SIZE;
		adapter->rss_lut_size = I40EVF_HLUT_ARRAY_SIZE;
	}

M
Mitch Williams 已提交
2617 2618 2619
	return 0;
}

G
Greg Rose 已提交
2620 2621 2622 2623 2624 2625
/**
 * i40evf_init_task - worker thread to perform delayed initialization
 * @work: pointer to work_struct containing our data
 *
 * This task completes the work that was begun in probe. Due to the nature
 * of VF-PF communications, we may need to wait tens of milliseconds to get
2626
 * responses back from the PF. Rather than busy-wait in probe and bog down the
G
Greg Rose 已提交
2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639
 * whole system, we'll do it in a task so we can sleep.
 * This task only runs during driver init. Once we've established
 * communications with the PF driver and set up our netdev, the watchdog
 * takes over.
 **/
static void i40evf_init_task(struct work_struct *work)
{
	struct i40evf_adapter *adapter = container_of(work,
						      struct i40evf_adapter,
						      init_task.work);
	struct net_device *netdev = adapter->netdev;
	struct i40e_hw *hw = &adapter->hw;
	struct pci_dev *pdev = adapter->pdev;
M
Mitch Williams 已提交
2640
	int err, bufsz;
G
Greg Rose 已提交
2641 2642 2643 2644

	switch (adapter->state) {
	case __I40EVF_STARTUP:
		/* driver loaded, probe complete */
M
Mitch Williams 已提交
2645 2646
		adapter->flags &= ~I40EVF_FLAG_PF_COMMS_FAILED;
		adapter->flags &= ~I40EVF_FLAG_RESET_PENDING;
G
Greg Rose 已提交
2647 2648
		err = i40e_set_mac_type(hw);
		if (err) {
2649 2650
			dev_err(&pdev->dev, "Failed to set MAC type (%d)\n",
				err);
M
Mitch Williams 已提交
2651
			goto err;
G
Greg Rose 已提交
2652 2653 2654
		}
		err = i40evf_check_reset_complete(hw);
		if (err) {
M
Mitch Williams 已提交
2655
			dev_info(&pdev->dev, "Device is still in reset (%d), retrying\n",
M
Mitch Williams 已提交
2656
				 err);
G
Greg Rose 已提交
2657 2658 2659 2660 2661 2662 2663 2664 2665
			goto err;
		}
		hw->aq.num_arq_entries = I40EVF_AQ_LEN;
		hw->aq.num_asq_entries = I40EVF_AQ_LEN;
		hw->aq.arq_buf_size = I40EVF_MAX_AQ_BUF_SIZE;
		hw->aq.asq_buf_size = I40EVF_MAX_AQ_BUF_SIZE;

		err = i40evf_init_adminq(hw);
		if (err) {
2666 2667
			dev_err(&pdev->dev, "Failed to init Admin Queue (%d)\n",
				err);
G
Greg Rose 已提交
2668 2669 2670 2671
			goto err;
		}
		err = i40evf_send_api_ver(adapter);
		if (err) {
2672
			dev_err(&pdev->dev, "Unable to send to PF (%d)\n", err);
G
Greg Rose 已提交
2673 2674 2675 2676 2677 2678
			i40evf_shutdown_adminq(hw);
			goto err;
		}
		adapter->state = __I40EVF_INIT_VERSION_CHECK;
		goto restart;
	case __I40EVF_INIT_VERSION_CHECK:
2679
		if (!i40evf_asq_done(hw)) {
2680
			dev_err(&pdev->dev, "Admin queue command never completed\n");
2681 2682
			i40evf_shutdown_adminq(hw);
			adapter->state = __I40EVF_STARTUP;
G
Greg Rose 已提交
2683
			goto err;
2684
		}
G
Greg Rose 已提交
2685 2686 2687 2688

		/* aq msg sent, awaiting reply */
		err = i40evf_verify_api_ver(adapter);
		if (err) {
2689
			if (err == I40E_ERR_ADMIN_QUEUE_NO_WORK)
2690
				err = i40evf_send_api_ver(adapter);
2691 2692 2693 2694
			else
				dev_err(&pdev->dev, "Unsupported PF API version %d.%d, expected %d.%d\n",
					adapter->pf_version.major,
					adapter->pf_version.minor,
2695 2696
					VIRTCHNL_VERSION_MAJOR,
					VIRTCHNL_VERSION_MINOR);
G
Greg Rose 已提交
2697 2698 2699 2700
			goto err;
		}
		err = i40evf_send_vf_config_msg(adapter);
		if (err) {
M
Mitch Williams 已提交
2701
			dev_err(&pdev->dev, "Unable to send config request (%d)\n",
G
Greg Rose 已提交
2702 2703 2704 2705 2706 2707 2708 2709
				err);
			goto err;
		}
		adapter->state = __I40EVF_INIT_GET_RESOURCES;
		goto restart;
	case __I40EVF_INIT_GET_RESOURCES:
		/* aq msg sent, awaiting reply */
		if (!adapter->vf_res) {
2710
			bufsz = sizeof(struct virtchnl_vf_resource) +
G
Greg Rose 已提交
2711
				(I40E_MAX_VF_VSI *
2712
				 sizeof(struct virtchnl_vsi_resource));
G
Greg Rose 已提交
2713
			adapter->vf_res = kzalloc(bufsz, GFP_KERNEL);
2714
			if (!adapter->vf_res)
G
Greg Rose 已提交
2715 2716 2717
				goto err;
		}
		err = i40evf_get_vf_config(adapter);
2718 2719 2720
		if (err == I40E_ERR_ADMIN_QUEUE_NO_WORK) {
			err = i40evf_send_vf_config_msg(adapter);
			goto err;
2721 2722 2723 2724 2725 2726 2727 2728
		} else if (err == I40E_ERR_PARAM) {
			/* We only get ERR_PARAM if the device is in a very bad
			 * state or if we've been disabled for previous bad
			 * behavior. Either way, we're done now.
			 */
			i40evf_shutdown_adminq(hw);
			dev_err(&pdev->dev, "Unable to get VF config due to PF error condition, not retrying\n");
			return;
2729
		}
G
Greg Rose 已提交
2730
		if (err) {
2731 2732
			dev_err(&pdev->dev, "Unable to get VF config (%d)\n",
				err);
G
Greg Rose 已提交
2733 2734 2735 2736 2737 2738 2739
			goto err_alloc;
		}
		adapter->state = __I40EVF_INIT_SW;
		break;
	default:
		goto err_alloc;
	}
2740

M
Mitch Williams 已提交
2741
	if (i40evf_process_config(adapter))
G
Greg Rose 已提交
2742
		goto err_alloc;
2743
	adapter->current_op = VIRTCHNL_OP_UNKNOWN;
G
Greg Rose 已提交
2744 2745 2746 2747 2748 2749

	adapter->flags |= I40EVF_FLAG_RX_CSUM_ENABLED;

	netdev->netdev_ops = &i40evf_netdev_ops;
	i40evf_set_ethtool_ops(netdev);
	netdev->watchdog_timeo = 5 * HZ;
2750

2751 2752
	/* MTU range: 68 - 9710 */
	netdev->min_mtu = ETH_MIN_MTU;
2753
	netdev->max_mtu = I40E_MAX_RXBUFFER - I40E_PACKET_HDR_PAD;
2754

G
Greg Rose 已提交
2755
	if (!is_valid_ether_addr(adapter->hw.mac.addr)) {
2756
		dev_info(&pdev->dev, "Invalid MAC address %pM, using random\n",
2757
			 adapter->hw.mac.addr);
2758 2759 2760 2761 2762 2763
		eth_hw_addr_random(netdev);
		ether_addr_copy(adapter->hw.mac.addr, netdev->dev_addr);
	} else {
		adapter->flags |= I40EVF_FLAG_ADDR_SET_BY_PF;
		ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
		ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr);
G
Greg Rose 已提交
2764 2765
	}

2766
	timer_setup(&adapter->watchdog_timer, i40evf_watchdog_timer, 0);
G
Greg Rose 已提交
2767 2768
	mod_timer(&adapter->watchdog_timer, jiffies + 1);

2769 2770
	adapter->tx_desc_count = I40EVF_DEFAULT_TXD;
	adapter->rx_desc_count = I40EVF_DEFAULT_RXD;
G
Greg Rose 已提交
2771 2772 2773 2774
	err = i40evf_init_interrupt_scheme(adapter);
	if (err)
		goto err_sw_init;
	i40evf_map_rings_to_vectors(adapter);
2775
	if (adapter->vf_res->vf_cap_flags &
2776
	    VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
2777 2778
		adapter->flags |= I40EVF_FLAG_WB_ON_ITR_CAPABLE;

G
Greg Rose 已提交
2779 2780 2781 2782 2783
	err = i40evf_request_misc_irq(adapter);
	if (err)
		goto err_sw_init;

	netif_carrier_off(netdev);
2784
	adapter->link_up = false;
G
Greg Rose 已提交
2785

M
Mitch Williams 已提交
2786 2787 2788 2789 2790
	if (!adapter->netdev_registered) {
		err = register_netdev(netdev);
		if (err)
			goto err_register;
	}
G
Greg Rose 已提交
2791 2792 2793 2794

	adapter->netdev_registered = true;

	netif_tx_stop_all_queues(netdev);
M
Mitch Williams 已提交
2795 2796 2797 2798 2799 2800
	if (CLIENT_ALLOWED(adapter)) {
		err = i40evf_lan_add_device(adapter);
		if (err)
			dev_info(&pdev->dev, "Failed to add VF to client API service list: %d\n",
				 err);
	}
G
Greg Rose 已提交
2801

2802
	dev_info(&pdev->dev, "MAC address: %pM\n", adapter->hw.mac.addr);
G
Greg Rose 已提交
2803 2804 2805 2806
	if (netdev->features & NETIF_F_GRO)
		dev_info(&pdev->dev, "GRO is enabled\n");

	adapter->state = __I40EVF_DOWN;
2807
	set_bit(__I40E_VSI_DOWN, adapter->vsi.state);
G
Greg Rose 已提交
2808
	i40evf_misc_irq_enable(adapter);
2809
	wake_up(&adapter->down_waitqueue);
2810

2811 2812 2813 2814 2815
	adapter->rss_key = kzalloc(adapter->rss_key_size, GFP_KERNEL);
	adapter->rss_lut = kzalloc(adapter->rss_lut_size, GFP_KERNEL);
	if (!adapter->rss_key || !adapter->rss_lut)
		goto err_mem;

2816 2817 2818 2819
	if (RSS_AQ(adapter)) {
		adapter->aq_required |= I40EVF_FLAG_AQ_CONFIGURE_RSS;
		mod_timer_pending(&adapter->watchdog_timer, jiffies + 1);
	} else {
2820
		i40evf_init_rss(adapter);
2821
	}
G
Greg Rose 已提交
2822 2823
	return;
restart:
2824
	schedule_delayed_work(&adapter->init_task, msecs_to_jiffies(30));
G
Greg Rose 已提交
2825
	return;
2826 2827
err_mem:
	i40evf_free_rss(adapter);
G
Greg Rose 已提交
2828 2829 2830 2831 2832 2833 2834 2835 2836 2837
err_register:
	i40evf_free_misc_irq(adapter);
err_sw_init:
	i40evf_reset_interrupt_capability(adapter);
err_alloc:
	kfree(adapter->vf_res);
	adapter->vf_res = NULL;
err:
	/* Things went into the weeds, so try again later */
	if (++adapter->aq_wait_count > I40EVF_AQ_MAX_ERR) {
M
Mitch Williams 已提交
2838
		dev_err(&pdev->dev, "Failed to communicate with PF; waiting before retry\n");
M
Mitch Williams 已提交
2839
		adapter->flags |= I40EVF_FLAG_PF_COMMS_FAILED;
M
Mitch Williams 已提交
2840 2841 2842 2843
		i40evf_shutdown_adminq(hw);
		adapter->state = __I40EVF_STARTUP;
		schedule_delayed_work(&adapter->init_task, HZ * 5);
		return;
G
Greg Rose 已提交
2844
	}
2845
	schedule_delayed_work(&adapter->init_task, HZ);
G
Greg Rose 已提交
2846 2847 2848 2849 2850 2851 2852 2853 2854
}

/**
 * i40evf_shutdown - Shutdown the device in preparation for a reboot
 * @pdev: pci device structure
 **/
static void i40evf_shutdown(struct pci_dev *pdev)
{
	struct net_device *netdev = pci_get_drvdata(pdev);
2855
	struct i40evf_adapter *adapter = netdev_priv(netdev);
G
Greg Rose 已提交
2856 2857 2858 2859 2860 2861

	netif_device_detach(netdev);

	if (netif_running(netdev))
		i40evf_close(netdev);

2862 2863 2864 2865
	/* Prevent the watchdog from running. */
	adapter->state = __I40EVF_REMOVE;
	adapter->aq_required = 0;

G
Greg Rose 已提交
2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888
#ifdef CONFIG_PM
	pci_save_state(pdev);

#endif
	pci_disable_device(pdev);
}

/**
 * i40evf_probe - Device Initialization Routine
 * @pdev: PCI device information struct
 * @ent: entry in i40evf_pci_tbl
 *
 * Returns 0 on success, negative on failure
 *
 * i40evf_probe initializes an adapter identified by a pci_dev structure.
 * The OS initialization, configuring of the adapter private structure,
 * and a hardware reset occur.
 **/
static int i40evf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
{
	struct net_device *netdev;
	struct i40evf_adapter *adapter = NULL;
	struct i40e_hw *hw = NULL;
2889
	int err;
G
Greg Rose 已提交
2890 2891 2892 2893 2894

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

2895 2896
	err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
	if (err) {
2897 2898 2899 2900 2901 2902
		err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
		if (err) {
			dev_err(&pdev->dev,
				"DMA configuration failed: 0x%x\n", err);
			goto err_dma;
		}
G
Greg Rose 已提交
2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915
	}

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

	pci_enable_pcie_error_reporting(pdev);

	pci_set_master(pdev);

2916
	netdev = alloc_etherdev_mq(sizeof(struct i40evf_adapter), MAX_QUEUES);
G
Greg Rose 已提交
2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932
	if (!netdev) {
		err = -ENOMEM;
		goto err_alloc_etherdev;
	}

	SET_NETDEV_DEV(netdev, &pdev->dev);

	pci_set_drvdata(pdev, netdev);
	adapter = netdev_priv(netdev);

	adapter->netdev = netdev;
	adapter->pdev = pdev;

	hw = &adapter->hw;
	hw->back = adapter;

2933
	adapter->msg_enable = BIT(DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
G
Greg Rose 已提交
2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951
	adapter->state = __I40EVF_STARTUP;

	/* Call save state here because it relies on the adapter struct. */
	pci_save_state(pdev);

	hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
			      pci_resource_len(pdev, 0));
	if (!hw->hw_addr) {
		err = -EIO;
		goto err_ioremap;
	}
	hw->vendor_id = pdev->vendor;
	hw->device_id = pdev->device;
	pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
	hw->subsystem_vendor_id = pdev->subsystem_vendor;
	hw->subsystem_device_id = pdev->subsystem_device;
	hw->bus.device = PCI_SLOT(pdev->devfn);
	hw->bus.func = PCI_FUNC(pdev->devfn);
2952
	hw->bus.bus_id = pdev->bus->number;
G
Greg Rose 已提交
2953

2954 2955 2956 2957 2958 2959
	/* set up the locks for the AQ, do this only once in probe
	 * and destroy them only once in remove
	 */
	mutex_init(&hw->aq.asq_mutex);
	mutex_init(&hw->aq.arq_mutex);

2960 2961
	spin_lock_init(&adapter->mac_vlan_list_lock);

2962 2963 2964
	INIT_LIST_HEAD(&adapter->mac_filter_list);
	INIT_LIST_HEAD(&adapter->vlan_filter_list);

G
Greg Rose 已提交
2965 2966 2967
	INIT_WORK(&adapter->reset_task, i40evf_reset_task);
	INIT_WORK(&adapter->adminq_task, i40evf_adminq_task);
	INIT_WORK(&adapter->watchdog_task, i40evf_watchdog_task);
M
Mitch Williams 已提交
2968
	INIT_DELAYED_WORK(&adapter->client_task, i40evf_client_task);
G
Greg Rose 已提交
2969
	INIT_DELAYED_WORK(&adapter->init_task, i40evf_init_task);
M
Mitch Williams 已提交
2970 2971
	schedule_delayed_work(&adapter->init_task,
			      msecs_to_jiffies(5 * (pdev->devfn & 0x07)));
G
Greg Rose 已提交
2972

2973 2974 2975
	/* Setup the wait queue for indicating transition to down status */
	init_waitqueue_head(&adapter->down_waitqueue);

G
Greg Rose 已提交
2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003
	return 0;

err_ioremap:
	free_netdev(netdev);
err_alloc_etherdev:
	pci_release_regions(pdev);
err_pci_reg:
err_dma:
	pci_disable_device(pdev);
	return err;
}

#ifdef CONFIG_PM
/**
 * i40evf_suspend - Power management suspend routine
 * @pdev: PCI device information struct
 * @state: unused
 *
 * Called when the system (VM) is entering sleep/suspend.
 **/
static int i40evf_suspend(struct pci_dev *pdev, pm_message_t state)
{
	struct net_device *netdev = pci_get_drvdata(pdev);
	struct i40evf_adapter *adapter = netdev_priv(netdev);
	int retval = 0;

	netif_device_detach(netdev);

3004 3005 3006 3007
	while (test_and_set_bit(__I40EVF_IN_CRITICAL_TASK,
				&adapter->crit_section))
		usleep_range(500, 1000);

G
Greg Rose 已提交
3008 3009 3010 3011 3012 3013 3014 3015
	if (netif_running(netdev)) {
		rtnl_lock();
		i40evf_down(adapter);
		rtnl_unlock();
	}
	i40evf_free_misc_irq(adapter);
	i40evf_reset_interrupt_capability(adapter);

3016 3017
	clear_bit(__I40EVF_IN_CRITICAL_TASK, &adapter->crit_section);

G
Greg Rose 已提交
3018 3019 3020 3021 3022 3023 3024 3025 3026 3027
	retval = pci_save_state(pdev);
	if (retval)
		return retval;

	pci_disable_device(pdev);

	return 0;
}

/**
3028
 * i40evf_resume - Power management resume routine
G
Greg Rose 已提交
3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055
 * @pdev: PCI device information struct
 *
 * Called when the system (VM) is resumed from sleep/suspend.
 **/
static int i40evf_resume(struct pci_dev *pdev)
{
	struct i40evf_adapter *adapter = pci_get_drvdata(pdev);
	struct net_device *netdev = adapter->netdev;
	u32 err;

	pci_set_power_state(pdev, PCI_D0);
	pci_restore_state(pdev);
	/* pci_restore_state clears dev->state_saved so call
	 * 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;
	}
	pci_set_master(pdev);

	rtnl_lock();
	err = i40evf_set_interrupt_capability(adapter);
	if (err) {
3056
		rtnl_unlock();
G
Greg Rose 已提交
3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087
		dev_err(&pdev->dev, "Cannot enable MSI-X interrupts.\n");
		return err;
	}
	err = i40evf_request_misc_irq(adapter);
	rtnl_unlock();
	if (err) {
		dev_err(&pdev->dev, "Cannot get interrupt vector.\n");
		return err;
	}

	schedule_work(&adapter->reset_task);

	netif_device_attach(netdev);

	return err;
}

#endif /* CONFIG_PM */
/**
 * i40evf_remove - Device Removal Routine
 * @pdev: PCI device information struct
 *
 * i40evf_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.
 **/
static void i40evf_remove(struct pci_dev *pdev)
{
	struct net_device *netdev = pci_get_drvdata(pdev);
	struct i40evf_adapter *adapter = netdev_priv(netdev);
3088
	struct i40evf_vlan_filter *vlf, *vlftmp;
3089
	struct i40evf_mac_filter *f, *ftmp;
G
Greg Rose 已提交
3090
	struct i40e_hw *hw = &adapter->hw;
M
Mitch Williams 已提交
3091
	int err;
3092 3093
	/* Indicate we are in remove and not to run reset_task */
	set_bit(__I40EVF_IN_REMOVE_TASK, &adapter->crit_section);
G
Greg Rose 已提交
3094
	cancel_delayed_work_sync(&adapter->init_task);
M
Mitch Williams 已提交
3095
	cancel_work_sync(&adapter->reset_task);
M
Mitch Williams 已提交
3096
	cancel_delayed_work_sync(&adapter->client_task);
G
Greg Rose 已提交
3097 3098 3099 3100
	if (adapter->netdev_registered) {
		unregister_netdev(netdev);
		adapter->netdev_registered = false;
	}
M
Mitch Williams 已提交
3101 3102 3103 3104 3105 3106
	if (CLIENT_ALLOWED(adapter)) {
		err = i40evf_lan_del_device(adapter);
		if (err)
			dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
				 err);
	}
3107

M
Mitch Williams 已提交
3108
	/* Shut down all the garbage mashers on the detention level */
G
Greg Rose 已提交
3109
	adapter->state = __I40EVF_REMOVE;
M
Mitch Williams 已提交
3110 3111
	adapter->aq_required = 0;
	i40evf_request_reset(adapter);
3112
	msleep(50);
M
Mitch Williams 已提交
3113 3114 3115
	/* If the FW isn't responding, kick it once, but only once. */
	if (!i40evf_asq_done(hw)) {
		i40evf_request_reset(adapter);
3116
		msleep(50);
M
Mitch Williams 已提交
3117
	}
3118 3119
	i40evf_free_all_tx_resources(adapter);
	i40evf_free_all_rx_resources(adapter);
3120 3121 3122 3123
	i40evf_misc_irq_disable(adapter);
	i40evf_free_misc_irq(adapter);
	i40evf_reset_interrupt_capability(adapter);
	i40evf_free_q_vectors(adapter);
G
Greg Rose 已提交
3124

3125 3126 3127
	if (adapter->watchdog_timer.function)
		del_timer_sync(&adapter->watchdog_timer);

3128
	i40evf_free_rss(adapter);
3129

G
Greg Rose 已提交
3130 3131 3132
	if (hw->aq.asq.count)
		i40evf_shutdown_adminq(hw);

3133 3134 3135 3136
	/* destroy the locks only once, here */
	mutex_destroy(&hw->aq.arq_mutex);
	mutex_destroy(&hw->aq.asq_mutex);

G
Greg Rose 已提交
3137 3138
	iounmap(hw->hw_addr);
	pci_release_regions(pdev);
M
Mitch Williams 已提交
3139 3140
	i40evf_free_all_tx_resources(adapter);
	i40evf_free_all_rx_resources(adapter);
G
Greg Rose 已提交
3141 3142
	i40evf_free_queues(adapter);
	kfree(adapter->vf_res);
3143
	spin_lock_bh(&adapter->mac_vlan_list_lock);
3144 3145 3146 3147 3148 3149 3150
	/* If we got removed before an up/down sequence, we've got a filter
	 * hanging out there that we need to get rid of.
	 */
	list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
		list_del(&f->list);
		kfree(f);
	}
3151 3152 3153 3154
	list_for_each_entry_safe(vlf, vlftmp, &adapter->vlan_filter_list,
				 list) {
		list_del(&vlf->list);
		kfree(vlf);
3155
	}
G
Greg Rose 已提交
3156

3157 3158
	spin_unlock_bh(&adapter->mac_vlan_list_lock);

G
Greg Rose 已提交
3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186
	free_netdev(netdev);

	pci_disable_pcie_error_reporting(pdev);

	pci_disable_device(pdev);
}

static struct pci_driver i40evf_driver = {
	.name     = i40evf_driver_name,
	.id_table = i40evf_pci_tbl,
	.probe    = i40evf_probe,
	.remove   = i40evf_remove,
#ifdef CONFIG_PM
	.suspend  = i40evf_suspend,
	.resume   = i40evf_resume,
#endif
	.shutdown = i40evf_shutdown,
};

/**
 * i40e_init_module - Driver Registration Routine
 *
 * i40e_init_module is the first routine called when the driver is
 * loaded. All it does is register with the PCI subsystem.
 **/
static int __init i40evf_init_module(void)
{
	int ret;
M
Mitch Williams 已提交
3187

G
Greg Rose 已提交
3188
	pr_info("i40evf: %s - version %s\n", i40evf_driver_string,
M
Mitch Williams 已提交
3189
		i40evf_driver_version);
G
Greg Rose 已提交
3190 3191 3192

	pr_info("%s\n", i40evf_copyright);

3193 3194
	i40evf_wq = alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1,
				    i40evf_driver_name);
3195 3196 3197 3198
	if (!i40evf_wq) {
		pr_err("%s: Failed to create workqueue\n", i40evf_driver_name);
		return -ENOMEM;
	}
G
Greg Rose 已提交
3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213
	ret = pci_register_driver(&i40evf_driver);
	return ret;
}

module_init(i40evf_init_module);

/**
 * i40e_exit_module - Driver Exit Cleanup Routine
 *
 * i40e_exit_module is called just before the driver is removed
 * from memory.
 **/
static void __exit i40evf_exit_module(void)
{
	pci_unregister_driver(&i40evf_driver);
3214
	destroy_workqueue(i40evf_wq);
G
Greg Rose 已提交
3215 3216 3217 3218 3219
}

module_exit(i40evf_exit_module);

/* i40evf_main.c */