1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 2013 - 2018 Intel Corporation. */
5 #include "iavf_prototype.h"
6 #include "iavf_client.h"
7 /* All iavf tracepoints are defined by the include below, which must
8 * be included exactly once across the whole kernel with
9 * CREATE_TRACE_POINTS defined
11 #define CREATE_TRACE_POINTS
12 #include "iavf_trace.h"
14 static int iavf_setup_all_tx_resources(struct iavf_adapter *adapter);
15 static int iavf_setup_all_rx_resources(struct iavf_adapter *adapter);
16 static int iavf_close(struct net_device *netdev);
17 static int iavf_init_get_resources(struct iavf_adapter *adapter);
18 static int iavf_check_reset_complete(struct iavf_hw *hw);
20 char iavf_driver_name[] = "iavf";
21 static const char iavf_driver_string[] =
22 "Intel(R) Ethernet Adaptive Virtual Function Network Driver";
24 static const char iavf_copyright[] =
25 "Copyright (c) 2013 - 2018 Intel Corporation.";
27 /* iavf_pci_tbl - PCI Device ID Table
29 * Wildcard entries (PCI_ANY_ID) should come last
30 * Last entry must be all 0s
32 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
33 * Class, Class Mask, private data (not used) }
35 static const struct pci_device_id iavf_pci_tbl[] = {
36 {PCI_VDEVICE(INTEL, IAVF_DEV_ID_VF), 0},
37 {PCI_VDEVICE(INTEL, IAVF_DEV_ID_VF_HV), 0},
38 {PCI_VDEVICE(INTEL, IAVF_DEV_ID_X722_VF), 0},
39 {PCI_VDEVICE(INTEL, IAVF_DEV_ID_ADAPTIVE_VF), 0},
40 /* required last entry */
44 MODULE_DEVICE_TABLE(pci, iavf_pci_tbl);
46 MODULE_ALIAS("i40evf");
47 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
48 MODULE_DESCRIPTION("Intel(R) Ethernet Adaptive Virtual Function Network Driver");
49 MODULE_LICENSE("GPL v2");
51 static const struct net_device_ops iavf_netdev_ops;
52 struct workqueue_struct *iavf_wq;
55 * iavf_allocate_dma_mem_d - OS specific memory alloc for shared code
56 * @hw: pointer to the HW structure
57 * @mem: ptr to mem struct to fill out
58 * @size: size of memory requested
59 * @alignment: what to align the allocation to
61 enum iavf_status iavf_allocate_dma_mem_d(struct iavf_hw *hw,
62 struct iavf_dma_mem *mem,
63 u64 size, u32 alignment)
65 struct iavf_adapter *adapter = (struct iavf_adapter *)hw->back;
68 return IAVF_ERR_PARAM;
70 mem->size = ALIGN(size, alignment);
71 mem->va = dma_alloc_coherent(&adapter->pdev->dev, mem->size,
72 (dma_addr_t *)&mem->pa, GFP_KERNEL);
76 return IAVF_ERR_NO_MEMORY;
80 * iavf_free_dma_mem_d - OS specific memory free for shared code
81 * @hw: pointer to the HW structure
82 * @mem: ptr to mem struct to free
84 enum iavf_status iavf_free_dma_mem_d(struct iavf_hw *hw,
85 struct iavf_dma_mem *mem)
87 struct iavf_adapter *adapter = (struct iavf_adapter *)hw->back;
90 return IAVF_ERR_PARAM;
91 dma_free_coherent(&adapter->pdev->dev, mem->size,
92 mem->va, (dma_addr_t)mem->pa);
97 * iavf_allocate_virt_mem_d - OS specific memory alloc for shared code
98 * @hw: pointer to the HW structure
99 * @mem: ptr to mem struct to fill out
100 * @size: size of memory requested
102 enum iavf_status iavf_allocate_virt_mem_d(struct iavf_hw *hw,
103 struct iavf_virt_mem *mem, u32 size)
106 return IAVF_ERR_PARAM;
109 mem->va = kzalloc(size, GFP_KERNEL);
114 return IAVF_ERR_NO_MEMORY;
118 * iavf_free_virt_mem_d - OS specific memory free for shared code
119 * @hw: pointer to the HW structure
120 * @mem: ptr to mem struct to free
122 enum iavf_status iavf_free_virt_mem_d(struct iavf_hw *hw,
123 struct iavf_virt_mem *mem)
126 return IAVF_ERR_PARAM;
128 /* it's ok to kfree a NULL pointer */
135 * iavf_lock_timeout - try to lock mutex but give up after timeout
136 * @lock: mutex that should be locked
137 * @msecs: timeout in msecs
139 * Returns 0 on success, negative on failure
141 static int iavf_lock_timeout(struct mutex *lock, unsigned int msecs)
143 unsigned int wait, delay = 10;
145 for (wait = 0; wait < msecs; wait += delay) {
146 if (mutex_trylock(lock))
156 * iavf_schedule_reset - Set the flags and schedule a reset event
157 * @adapter: board private structure
159 void iavf_schedule_reset(struct iavf_adapter *adapter)
161 if (!(adapter->flags &
162 (IAVF_FLAG_RESET_PENDING | IAVF_FLAG_RESET_NEEDED))) {
163 adapter->flags |= IAVF_FLAG_RESET_NEEDED;
164 queue_work(iavf_wq, &adapter->reset_task);
169 * iavf_tx_timeout - Respond to a Tx Hang
170 * @netdev: network interface device structure
171 * @txqueue: queue number that is timing out
173 static void iavf_tx_timeout(struct net_device *netdev, unsigned int txqueue)
175 struct iavf_adapter *adapter = netdev_priv(netdev);
177 adapter->tx_timeout_count++;
178 iavf_schedule_reset(adapter);
182 * iavf_misc_irq_disable - Mask off interrupt generation on the NIC
183 * @adapter: board private structure
185 static void iavf_misc_irq_disable(struct iavf_adapter *adapter)
187 struct iavf_hw *hw = &adapter->hw;
189 if (!adapter->msix_entries)
192 wr32(hw, IAVF_VFINT_DYN_CTL01, 0);
196 synchronize_irq(adapter->msix_entries[0].vector);
200 * iavf_misc_irq_enable - Enable default interrupt generation settings
201 * @adapter: board private structure
203 static void iavf_misc_irq_enable(struct iavf_adapter *adapter)
205 struct iavf_hw *hw = &adapter->hw;
207 wr32(hw, IAVF_VFINT_DYN_CTL01, IAVF_VFINT_DYN_CTL01_INTENA_MASK |
208 IAVF_VFINT_DYN_CTL01_ITR_INDX_MASK);
209 wr32(hw, IAVF_VFINT_ICR0_ENA1, IAVF_VFINT_ICR0_ENA1_ADMINQ_MASK);
215 * iavf_irq_disable - Mask off interrupt generation on the NIC
216 * @adapter: board private structure
218 static void iavf_irq_disable(struct iavf_adapter *adapter)
221 struct iavf_hw *hw = &adapter->hw;
223 if (!adapter->msix_entries)
226 for (i = 1; i < adapter->num_msix_vectors; i++) {
227 wr32(hw, IAVF_VFINT_DYN_CTLN1(i - 1), 0);
228 synchronize_irq(adapter->msix_entries[i].vector);
234 * iavf_irq_enable_queues - Enable interrupt for specified queues
235 * @adapter: board private structure
236 * @mask: bitmap of queues to enable
238 void iavf_irq_enable_queues(struct iavf_adapter *adapter, u32 mask)
240 struct iavf_hw *hw = &adapter->hw;
243 for (i = 1; i < adapter->num_msix_vectors; i++) {
244 if (mask & BIT(i - 1)) {
245 wr32(hw, IAVF_VFINT_DYN_CTLN1(i - 1),
246 IAVF_VFINT_DYN_CTLN1_INTENA_MASK |
247 IAVF_VFINT_DYN_CTLN1_ITR_INDX_MASK);
253 * iavf_irq_enable - Enable default interrupt generation settings
254 * @adapter: board private structure
255 * @flush: boolean value whether to run rd32()
257 void iavf_irq_enable(struct iavf_adapter *adapter, bool flush)
259 struct iavf_hw *hw = &adapter->hw;
261 iavf_misc_irq_enable(adapter);
262 iavf_irq_enable_queues(adapter, ~0);
269 * iavf_msix_aq - Interrupt handler for vector 0
270 * @irq: interrupt number
271 * @data: pointer to netdev
273 static irqreturn_t iavf_msix_aq(int irq, void *data)
275 struct net_device *netdev = data;
276 struct iavf_adapter *adapter = netdev_priv(netdev);
277 struct iavf_hw *hw = &adapter->hw;
279 /* handle non-queue interrupts, these reads clear the registers */
280 rd32(hw, IAVF_VFINT_ICR01);
281 rd32(hw, IAVF_VFINT_ICR0_ENA1);
283 /* schedule work on the private workqueue */
284 queue_work(iavf_wq, &adapter->adminq_task);
290 * iavf_msix_clean_rings - MSIX mode Interrupt Handler
291 * @irq: interrupt number
292 * @data: pointer to a q_vector
294 static irqreturn_t iavf_msix_clean_rings(int irq, void *data)
296 struct iavf_q_vector *q_vector = data;
298 if (!q_vector->tx.ring && !q_vector->rx.ring)
301 napi_schedule_irqoff(&q_vector->napi);
307 * iavf_map_vector_to_rxq - associate irqs with rx queues
308 * @adapter: board private structure
309 * @v_idx: interrupt number
310 * @r_idx: queue number
313 iavf_map_vector_to_rxq(struct iavf_adapter *adapter, int v_idx, int r_idx)
315 struct iavf_q_vector *q_vector = &adapter->q_vectors[v_idx];
316 struct iavf_ring *rx_ring = &adapter->rx_rings[r_idx];
317 struct iavf_hw *hw = &adapter->hw;
319 rx_ring->q_vector = q_vector;
320 rx_ring->next = q_vector->rx.ring;
321 rx_ring->vsi = &adapter->vsi;
322 q_vector->rx.ring = rx_ring;
323 q_vector->rx.count++;
324 q_vector->rx.next_update = jiffies + 1;
325 q_vector->rx.target_itr = ITR_TO_REG(rx_ring->itr_setting);
326 q_vector->ring_mask |= BIT(r_idx);
327 wr32(hw, IAVF_VFINT_ITRN1(IAVF_RX_ITR, q_vector->reg_idx),
328 q_vector->rx.current_itr >> 1);
329 q_vector->rx.current_itr = q_vector->rx.target_itr;
333 * iavf_map_vector_to_txq - associate irqs with tx queues
334 * @adapter: board private structure
335 * @v_idx: interrupt number
336 * @t_idx: queue number
339 iavf_map_vector_to_txq(struct iavf_adapter *adapter, int v_idx, int t_idx)
341 struct iavf_q_vector *q_vector = &adapter->q_vectors[v_idx];
342 struct iavf_ring *tx_ring = &adapter->tx_rings[t_idx];
343 struct iavf_hw *hw = &adapter->hw;
345 tx_ring->q_vector = q_vector;
346 tx_ring->next = q_vector->tx.ring;
347 tx_ring->vsi = &adapter->vsi;
348 q_vector->tx.ring = tx_ring;
349 q_vector->tx.count++;
350 q_vector->tx.next_update = jiffies + 1;
351 q_vector->tx.target_itr = ITR_TO_REG(tx_ring->itr_setting);
352 q_vector->num_ringpairs++;
353 wr32(hw, IAVF_VFINT_ITRN1(IAVF_TX_ITR, q_vector->reg_idx),
354 q_vector->tx.target_itr >> 1);
355 q_vector->tx.current_itr = q_vector->tx.target_itr;
359 * iavf_map_rings_to_vectors - Maps descriptor rings to vectors
360 * @adapter: board private structure to initialize
362 * This function maps descriptor rings to the queue-specific vectors
363 * we were allotted through the MSI-X enabling code. Ideally, we'd have
364 * one vector per ring/queue, but on a constrained vector budget, we
365 * group the rings as "efficiently" as possible. You would add new
366 * mapping configurations in here.
368 static void iavf_map_rings_to_vectors(struct iavf_adapter *adapter)
370 int rings_remaining = adapter->num_active_queues;
371 int ridx = 0, vidx = 0;
374 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
376 for (; ridx < rings_remaining; ridx++) {
377 iavf_map_vector_to_rxq(adapter, vidx, ridx);
378 iavf_map_vector_to_txq(adapter, vidx, ridx);
380 /* In the case where we have more queues than vectors, continue
381 * round-robin on vectors until all queues are mapped.
383 if (++vidx >= q_vectors)
387 adapter->aq_required |= IAVF_FLAG_AQ_MAP_VECTORS;
391 * iavf_irq_affinity_notify - Callback for affinity changes
392 * @notify: context as to what irq was changed
393 * @mask: the new affinity mask
395 * This is a callback function used by the irq_set_affinity_notifier function
396 * so that we may register to receive changes to the irq affinity masks.
398 static void iavf_irq_affinity_notify(struct irq_affinity_notify *notify,
399 const cpumask_t *mask)
401 struct iavf_q_vector *q_vector =
402 container_of(notify, struct iavf_q_vector, affinity_notify);
404 cpumask_copy(&q_vector->affinity_mask, mask);
408 * iavf_irq_affinity_release - Callback for affinity notifier release
409 * @ref: internal core kernel usage
411 * This is a callback function used by the irq_set_affinity_notifier function
412 * to inform the current notification subscriber that they will no longer
413 * receive notifications.
415 static void iavf_irq_affinity_release(struct kref *ref) {}
418 * iavf_request_traffic_irqs - Initialize MSI-X interrupts
419 * @adapter: board private structure
420 * @basename: device basename
422 * Allocates MSI-X vectors for tx and rx handling, and requests
423 * interrupts from the kernel.
426 iavf_request_traffic_irqs(struct iavf_adapter *adapter, char *basename)
428 unsigned int vector, q_vectors;
429 unsigned int rx_int_idx = 0, tx_int_idx = 0;
433 iavf_irq_disable(adapter);
434 /* Decrement for Other and TCP Timer vectors */
435 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
437 for (vector = 0; vector < q_vectors; vector++) {
438 struct iavf_q_vector *q_vector = &adapter->q_vectors[vector];
440 irq_num = adapter->msix_entries[vector + NONQ_VECS].vector;
442 if (q_vector->tx.ring && q_vector->rx.ring) {
443 snprintf(q_vector->name, sizeof(q_vector->name),
444 "iavf-%s-TxRx-%d", basename, rx_int_idx++);
446 } else if (q_vector->rx.ring) {
447 snprintf(q_vector->name, sizeof(q_vector->name),
448 "iavf-%s-rx-%d", basename, rx_int_idx++);
449 } else if (q_vector->tx.ring) {
450 snprintf(q_vector->name, sizeof(q_vector->name),
451 "iavf-%s-tx-%d", basename, tx_int_idx++);
453 /* skip this unused q_vector */
456 err = request_irq(irq_num,
457 iavf_msix_clean_rings,
462 dev_info(&adapter->pdev->dev,
463 "Request_irq failed, error: %d\n", err);
464 goto free_queue_irqs;
466 /* register for affinity change notifications */
467 q_vector->affinity_notify.notify = iavf_irq_affinity_notify;
468 q_vector->affinity_notify.release =
469 iavf_irq_affinity_release;
470 irq_set_affinity_notifier(irq_num, &q_vector->affinity_notify);
471 /* Spread the IRQ affinity hints across online CPUs. Note that
472 * get_cpu_mask returns a mask with a permanent lifetime so
473 * it's safe to use as a hint for irq_set_affinity_hint.
475 cpu = cpumask_local_spread(q_vector->v_idx, -1);
476 irq_set_affinity_hint(irq_num, get_cpu_mask(cpu));
484 irq_num = adapter->msix_entries[vector + NONQ_VECS].vector;
485 irq_set_affinity_notifier(irq_num, NULL);
486 irq_set_affinity_hint(irq_num, NULL);
487 free_irq(irq_num, &adapter->q_vectors[vector]);
493 * iavf_request_misc_irq - Initialize MSI-X interrupts
494 * @adapter: board private structure
496 * Allocates MSI-X vector 0 and requests interrupts from the kernel. This
497 * vector is only for the admin queue, and stays active even when the netdev
500 static int iavf_request_misc_irq(struct iavf_adapter *adapter)
502 struct net_device *netdev = adapter->netdev;
505 snprintf(adapter->misc_vector_name,
506 sizeof(adapter->misc_vector_name) - 1, "iavf-%s:mbx",
507 dev_name(&adapter->pdev->dev));
508 err = request_irq(adapter->msix_entries[0].vector,
510 adapter->misc_vector_name, netdev);
512 dev_err(&adapter->pdev->dev,
513 "request_irq for %s failed: %d\n",
514 adapter->misc_vector_name, err);
515 free_irq(adapter->msix_entries[0].vector, netdev);
521 * iavf_free_traffic_irqs - Free MSI-X interrupts
522 * @adapter: board private structure
524 * Frees all MSI-X vectors other than 0.
526 static void iavf_free_traffic_irqs(struct iavf_adapter *adapter)
528 int vector, irq_num, q_vectors;
530 if (!adapter->msix_entries)
533 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
535 for (vector = 0; vector < q_vectors; vector++) {
536 irq_num = adapter->msix_entries[vector + NONQ_VECS].vector;
537 irq_set_affinity_notifier(irq_num, NULL);
538 irq_set_affinity_hint(irq_num, NULL);
539 free_irq(irq_num, &adapter->q_vectors[vector]);
544 * iavf_free_misc_irq - Free MSI-X miscellaneous vector
545 * @adapter: board private structure
547 * Frees MSI-X vector 0.
549 static void iavf_free_misc_irq(struct iavf_adapter *adapter)
551 struct net_device *netdev = adapter->netdev;
553 if (!adapter->msix_entries)
556 free_irq(adapter->msix_entries[0].vector, netdev);
560 * iavf_configure_tx - Configure Transmit Unit after Reset
561 * @adapter: board private structure
563 * Configure the Tx unit of the MAC after a reset.
565 static void iavf_configure_tx(struct iavf_adapter *adapter)
567 struct iavf_hw *hw = &adapter->hw;
570 for (i = 0; i < adapter->num_active_queues; i++)
571 adapter->tx_rings[i].tail = hw->hw_addr + IAVF_QTX_TAIL1(i);
575 * iavf_configure_rx - Configure Receive Unit after Reset
576 * @adapter: board private structure
578 * Configure the Rx unit of the MAC after a reset.
580 static void iavf_configure_rx(struct iavf_adapter *adapter)
582 unsigned int rx_buf_len = IAVF_RXBUFFER_2048;
583 struct iavf_hw *hw = &adapter->hw;
586 /* Legacy Rx will always default to a 2048 buffer size. */
587 #if (PAGE_SIZE < 8192)
588 if (!(adapter->flags & IAVF_FLAG_LEGACY_RX)) {
589 struct net_device *netdev = adapter->netdev;
591 /* For jumbo frames on systems with 4K pages we have to use
592 * an order 1 page, so we might as well increase the size
593 * of our Rx buffer to make better use of the available space
595 rx_buf_len = IAVF_RXBUFFER_3072;
597 /* We use a 1536 buffer size for configurations with
598 * standard Ethernet mtu. On x86 this gives us enough room
599 * for shared info and 192 bytes of padding.
601 if (!IAVF_2K_TOO_SMALL_WITH_PADDING &&
602 (netdev->mtu <= ETH_DATA_LEN))
603 rx_buf_len = IAVF_RXBUFFER_1536 - NET_IP_ALIGN;
607 for (i = 0; i < adapter->num_active_queues; i++) {
608 adapter->rx_rings[i].tail = hw->hw_addr + IAVF_QRX_TAIL1(i);
609 adapter->rx_rings[i].rx_buf_len = rx_buf_len;
611 if (adapter->flags & IAVF_FLAG_LEGACY_RX)
612 clear_ring_build_skb_enabled(&adapter->rx_rings[i]);
614 set_ring_build_skb_enabled(&adapter->rx_rings[i]);
619 * iavf_find_vlan - Search filter list for specific vlan filter
620 * @adapter: board private structure
623 * Returns ptr to the filter object or NULL. Must be called while holding the
624 * mac_vlan_list_lock.
627 iavf_vlan_filter *iavf_find_vlan(struct iavf_adapter *adapter, u16 vlan)
629 struct iavf_vlan_filter *f;
631 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
639 * iavf_add_vlan - Add a vlan filter to the list
640 * @adapter: board private structure
643 * Returns ptr to the filter object or NULL when no memory available.
646 iavf_vlan_filter *iavf_add_vlan(struct iavf_adapter *adapter, u16 vlan)
648 struct iavf_vlan_filter *f = NULL;
650 spin_lock_bh(&adapter->mac_vlan_list_lock);
652 f = iavf_find_vlan(adapter, vlan);
654 f = kzalloc(sizeof(*f), GFP_ATOMIC);
660 list_add_tail(&f->list, &adapter->vlan_filter_list);
662 adapter->aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER;
666 spin_unlock_bh(&adapter->mac_vlan_list_lock);
671 * iavf_del_vlan - Remove a vlan filter from the list
672 * @adapter: board private structure
675 static void iavf_del_vlan(struct iavf_adapter *adapter, u16 vlan)
677 struct iavf_vlan_filter *f;
679 spin_lock_bh(&adapter->mac_vlan_list_lock);
681 f = iavf_find_vlan(adapter, vlan);
684 adapter->aq_required |= IAVF_FLAG_AQ_DEL_VLAN_FILTER;
687 spin_unlock_bh(&adapter->mac_vlan_list_lock);
691 * iavf_vlan_rx_add_vid - Add a VLAN filter to a device
692 * @netdev: network device struct
693 * @proto: unused protocol data
696 static int iavf_vlan_rx_add_vid(struct net_device *netdev,
697 __always_unused __be16 proto, u16 vid)
699 struct iavf_adapter *adapter = netdev_priv(netdev);
701 if (!VLAN_ALLOWED(adapter))
703 if (iavf_add_vlan(adapter, vid) == NULL)
709 * iavf_vlan_rx_kill_vid - Remove a VLAN filter from a device
710 * @netdev: network device struct
711 * @proto: unused protocol data
714 static int iavf_vlan_rx_kill_vid(struct net_device *netdev,
715 __always_unused __be16 proto, u16 vid)
717 struct iavf_adapter *adapter = netdev_priv(netdev);
719 if (VLAN_ALLOWED(adapter)) {
720 iavf_del_vlan(adapter, vid);
727 * iavf_find_filter - Search filter list for specific mac filter
728 * @adapter: board private structure
729 * @macaddr: the MAC address
731 * Returns ptr to the filter object or NULL. Must be called while holding the
732 * mac_vlan_list_lock.
735 iavf_mac_filter *iavf_find_filter(struct iavf_adapter *adapter,
738 struct iavf_mac_filter *f;
743 list_for_each_entry(f, &adapter->mac_filter_list, list) {
744 if (ether_addr_equal(macaddr, f->macaddr))
751 * iavf_add_filter - Add a mac filter to the filter list
752 * @adapter: board private structure
753 * @macaddr: the MAC address
755 * Returns ptr to the filter object or NULL when no memory available.
757 struct iavf_mac_filter *iavf_add_filter(struct iavf_adapter *adapter,
760 struct iavf_mac_filter *f;
765 f = iavf_find_filter(adapter, macaddr);
767 f = kzalloc(sizeof(*f), GFP_ATOMIC);
771 ether_addr_copy(f->macaddr, macaddr);
773 list_add_tail(&f->list, &adapter->mac_filter_list);
775 f->is_new_mac = true;
776 adapter->aq_required |= IAVF_FLAG_AQ_ADD_MAC_FILTER;
785 * iavf_set_mac - NDO callback to set port mac address
786 * @netdev: network interface device structure
787 * @p: pointer to an address structure
789 * Returns 0 on success, negative on failure
791 static int iavf_set_mac(struct net_device *netdev, void *p)
793 struct iavf_adapter *adapter = netdev_priv(netdev);
794 struct iavf_hw *hw = &adapter->hw;
795 struct iavf_mac_filter *f;
796 struct sockaddr *addr = p;
798 if (!is_valid_ether_addr(addr->sa_data))
799 return -EADDRNOTAVAIL;
801 if (ether_addr_equal(netdev->dev_addr, addr->sa_data))
804 spin_lock_bh(&adapter->mac_vlan_list_lock);
806 f = iavf_find_filter(adapter, hw->mac.addr);
809 adapter->aq_required |= IAVF_FLAG_AQ_DEL_MAC_FILTER;
812 f = iavf_add_filter(adapter, addr->sa_data);
814 spin_unlock_bh(&adapter->mac_vlan_list_lock);
817 ether_addr_copy(hw->mac.addr, addr->sa_data);
820 return (f == NULL) ? -ENOMEM : 0;
824 * iavf_addr_sync - Callback for dev_(mc|uc)_sync to add address
825 * @netdev: the netdevice
826 * @addr: address to add
828 * Called by __dev_(mc|uc)_sync when an address needs to be added. We call
829 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
831 static int iavf_addr_sync(struct net_device *netdev, const u8 *addr)
833 struct iavf_adapter *adapter = netdev_priv(netdev);
835 if (iavf_add_filter(adapter, addr))
842 * iavf_addr_unsync - Callback for dev_(mc|uc)_sync to remove address
843 * @netdev: the netdevice
844 * @addr: address to add
846 * Called by __dev_(mc|uc)_sync when an address needs to be removed. We call
847 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
849 static int iavf_addr_unsync(struct net_device *netdev, const u8 *addr)
851 struct iavf_adapter *adapter = netdev_priv(netdev);
852 struct iavf_mac_filter *f;
854 /* Under some circumstances, we might receive a request to delete
855 * our own device address from our uc list. Because we store the
856 * device address in the VSI's MAC/VLAN filter list, we need to ignore
857 * such requests and not delete our device address from this list.
859 if (ether_addr_equal(addr, netdev->dev_addr))
862 f = iavf_find_filter(adapter, addr);
865 adapter->aq_required |= IAVF_FLAG_AQ_DEL_MAC_FILTER;
871 * iavf_set_rx_mode - NDO callback to set the netdev filters
872 * @netdev: network interface device structure
874 static void iavf_set_rx_mode(struct net_device *netdev)
876 struct iavf_adapter *adapter = netdev_priv(netdev);
878 spin_lock_bh(&adapter->mac_vlan_list_lock);
879 __dev_uc_sync(netdev, iavf_addr_sync, iavf_addr_unsync);
880 __dev_mc_sync(netdev, iavf_addr_sync, iavf_addr_unsync);
881 spin_unlock_bh(&adapter->mac_vlan_list_lock);
883 if (netdev->flags & IFF_PROMISC &&
884 !(adapter->flags & IAVF_FLAG_PROMISC_ON))
885 adapter->aq_required |= IAVF_FLAG_AQ_REQUEST_PROMISC;
886 else if (!(netdev->flags & IFF_PROMISC) &&
887 adapter->flags & IAVF_FLAG_PROMISC_ON)
888 adapter->aq_required |= IAVF_FLAG_AQ_RELEASE_PROMISC;
890 if (netdev->flags & IFF_ALLMULTI &&
891 !(adapter->flags & IAVF_FLAG_ALLMULTI_ON))
892 adapter->aq_required |= IAVF_FLAG_AQ_REQUEST_ALLMULTI;
893 else if (!(netdev->flags & IFF_ALLMULTI) &&
894 adapter->flags & IAVF_FLAG_ALLMULTI_ON)
895 adapter->aq_required |= IAVF_FLAG_AQ_RELEASE_ALLMULTI;
899 * iavf_napi_enable_all - enable NAPI on all queue vectors
900 * @adapter: board private structure
902 static void iavf_napi_enable_all(struct iavf_adapter *adapter)
905 struct iavf_q_vector *q_vector;
906 int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
908 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
909 struct napi_struct *napi;
911 q_vector = &adapter->q_vectors[q_idx];
912 napi = &q_vector->napi;
918 * iavf_napi_disable_all - disable NAPI on all queue vectors
919 * @adapter: board private structure
921 static void iavf_napi_disable_all(struct iavf_adapter *adapter)
924 struct iavf_q_vector *q_vector;
925 int q_vectors = adapter->num_msix_vectors - NONQ_VECS;
927 for (q_idx = 0; q_idx < q_vectors; q_idx++) {
928 q_vector = &adapter->q_vectors[q_idx];
929 napi_disable(&q_vector->napi);
934 * iavf_configure - set up transmit and receive data structures
935 * @adapter: board private structure
937 static void iavf_configure(struct iavf_adapter *adapter)
939 struct net_device *netdev = adapter->netdev;
942 iavf_set_rx_mode(netdev);
944 iavf_configure_tx(adapter);
945 iavf_configure_rx(adapter);
946 adapter->aq_required |= IAVF_FLAG_AQ_CONFIGURE_QUEUES;
948 for (i = 0; i < adapter->num_active_queues; i++) {
949 struct iavf_ring *ring = &adapter->rx_rings[i];
951 iavf_alloc_rx_buffers(ring, IAVF_DESC_UNUSED(ring));
956 * iavf_up_complete - Finish the last steps of bringing up a connection
957 * @adapter: board private structure
959 * Expects to be called while holding the __IAVF_IN_CRITICAL_TASK bit lock.
961 static void iavf_up_complete(struct iavf_adapter *adapter)
963 adapter->state = __IAVF_RUNNING;
964 clear_bit(__IAVF_VSI_DOWN, adapter->vsi.state);
966 iavf_napi_enable_all(adapter);
968 adapter->aq_required |= IAVF_FLAG_AQ_ENABLE_QUEUES;
969 if (CLIENT_ENABLED(adapter))
970 adapter->flags |= IAVF_FLAG_CLIENT_NEEDS_OPEN;
971 mod_delayed_work(iavf_wq, &adapter->watchdog_task, 0);
975 * iavf_down - Shutdown the connection processing
976 * @adapter: board private structure
978 * Expects to be called while holding the __IAVF_IN_CRITICAL_TASK bit lock.
980 void iavf_down(struct iavf_adapter *adapter)
982 struct net_device *netdev = adapter->netdev;
983 struct iavf_vlan_filter *vlf;
984 struct iavf_cloud_filter *cf;
985 struct iavf_fdir_fltr *fdir;
986 struct iavf_mac_filter *f;
987 struct iavf_adv_rss *rss;
989 if (adapter->state <= __IAVF_DOWN_PENDING)
992 netif_carrier_off(netdev);
993 netif_tx_disable(netdev);
994 adapter->link_up = false;
995 iavf_napi_disable_all(adapter);
996 iavf_irq_disable(adapter);
998 spin_lock_bh(&adapter->mac_vlan_list_lock);
1000 /* clear the sync flag on all filters */
1001 __dev_uc_unsync(adapter->netdev, NULL);
1002 __dev_mc_unsync(adapter->netdev, NULL);
1004 /* remove all MAC filters */
1005 list_for_each_entry(f, &adapter->mac_filter_list, list) {
1009 /* remove all VLAN filters */
1010 list_for_each_entry(vlf, &adapter->vlan_filter_list, list) {
1014 spin_unlock_bh(&adapter->mac_vlan_list_lock);
1016 /* remove all cloud filters */
1017 spin_lock_bh(&adapter->cloud_filter_list_lock);
1018 list_for_each_entry(cf, &adapter->cloud_filter_list, list) {
1021 spin_unlock_bh(&adapter->cloud_filter_list_lock);
1023 /* remove all Flow Director filters */
1024 spin_lock_bh(&adapter->fdir_fltr_lock);
1025 list_for_each_entry(fdir, &adapter->fdir_list_head, list) {
1026 fdir->state = IAVF_FDIR_FLTR_DEL_REQUEST;
1028 spin_unlock_bh(&adapter->fdir_fltr_lock);
1030 /* remove all advance RSS configuration */
1031 spin_lock_bh(&adapter->adv_rss_lock);
1032 list_for_each_entry(rss, &adapter->adv_rss_list_head, list)
1033 rss->state = IAVF_ADV_RSS_DEL_REQUEST;
1034 spin_unlock_bh(&adapter->adv_rss_lock);
1036 if (!(adapter->flags & IAVF_FLAG_PF_COMMS_FAILED) &&
1037 adapter->state != __IAVF_RESETTING) {
1038 /* cancel any current operation */
1039 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
1040 /* Schedule operations to close down the HW. Don't wait
1041 * here for this to complete. The watchdog is still running
1042 * and it will take care of this.
1044 adapter->aq_required = IAVF_FLAG_AQ_DEL_MAC_FILTER;
1045 adapter->aq_required |= IAVF_FLAG_AQ_DEL_VLAN_FILTER;
1046 adapter->aq_required |= IAVF_FLAG_AQ_DEL_CLOUD_FILTER;
1047 adapter->aq_required |= IAVF_FLAG_AQ_DEL_FDIR_FILTER;
1048 adapter->aq_required |= IAVF_FLAG_AQ_DEL_ADV_RSS_CFG;
1049 adapter->aq_required |= IAVF_FLAG_AQ_DISABLE_QUEUES;
1052 mod_delayed_work(iavf_wq, &adapter->watchdog_task, 0);
1056 * iavf_acquire_msix_vectors - Setup the MSIX capability
1057 * @adapter: board private structure
1058 * @vectors: number of vectors to request
1060 * Work with the OS to set up the MSIX vectors needed.
1062 * Returns 0 on success, negative on failure
1065 iavf_acquire_msix_vectors(struct iavf_adapter *adapter, int vectors)
1067 int err, vector_threshold;
1069 /* We'll want at least 3 (vector_threshold):
1070 * 0) Other (Admin Queue and link, mostly)
1074 vector_threshold = MIN_MSIX_COUNT;
1076 /* The more we get, the more we will assign to Tx/Rx Cleanup
1077 * for the separate queues...where Rx Cleanup >= Tx Cleanup.
1078 * Right now, we simply care about how many we'll get; we'll
1079 * set them up later while requesting irq's.
1081 err = pci_enable_msix_range(adapter->pdev, adapter->msix_entries,
1082 vector_threshold, vectors);
1084 dev_err(&adapter->pdev->dev, "Unable to allocate MSI-X interrupts\n");
1085 kfree(adapter->msix_entries);
1086 adapter->msix_entries = NULL;
1090 /* Adjust for only the vectors we'll use, which is minimum
1091 * of max_msix_q_vectors + NONQ_VECS, or the number of
1092 * vectors we were allocated.
1094 adapter->num_msix_vectors = err;
1099 * iavf_free_queues - Free memory for all rings
1100 * @adapter: board private structure to initialize
1102 * Free all of the memory associated with queue pairs.
1104 static void iavf_free_queues(struct iavf_adapter *adapter)
1106 if (!adapter->vsi_res)
1108 adapter->num_active_queues = 0;
1109 kfree(adapter->tx_rings);
1110 adapter->tx_rings = NULL;
1111 kfree(adapter->rx_rings);
1112 adapter->rx_rings = NULL;
1116 * iavf_alloc_queues - Allocate memory for all rings
1117 * @adapter: board private structure to initialize
1119 * We allocate one ring per queue at run-time since we don't know the
1120 * number of queues at compile-time. The polling_netdev array is
1121 * intended for Multiqueue, but should work fine with a single queue.
1123 static int iavf_alloc_queues(struct iavf_adapter *adapter)
1125 int i, num_active_queues;
1127 /* If we're in reset reallocating queues we don't actually know yet for
1128 * certain the PF gave us the number of queues we asked for but we'll
1129 * assume it did. Once basic reset is finished we'll confirm once we
1130 * start negotiating config with PF.
1132 if (adapter->num_req_queues)
1133 num_active_queues = adapter->num_req_queues;
1134 else if ((adapter->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_ADQ) &&
1136 num_active_queues = adapter->ch_config.total_qps;
1138 num_active_queues = min_t(int,
1139 adapter->vsi_res->num_queue_pairs,
1140 (int)(num_online_cpus()));
1143 adapter->tx_rings = kcalloc(num_active_queues,
1144 sizeof(struct iavf_ring), GFP_KERNEL);
1145 if (!adapter->tx_rings)
1147 adapter->rx_rings = kcalloc(num_active_queues,
1148 sizeof(struct iavf_ring), GFP_KERNEL);
1149 if (!adapter->rx_rings)
1152 for (i = 0; i < num_active_queues; i++) {
1153 struct iavf_ring *tx_ring;
1154 struct iavf_ring *rx_ring;
1156 tx_ring = &adapter->tx_rings[i];
1158 tx_ring->queue_index = i;
1159 tx_ring->netdev = adapter->netdev;
1160 tx_ring->dev = &adapter->pdev->dev;
1161 tx_ring->count = adapter->tx_desc_count;
1162 tx_ring->itr_setting = IAVF_ITR_TX_DEF;
1163 if (adapter->flags & IAVF_FLAG_WB_ON_ITR_CAPABLE)
1164 tx_ring->flags |= IAVF_TXR_FLAGS_WB_ON_ITR;
1166 rx_ring = &adapter->rx_rings[i];
1167 rx_ring->queue_index = i;
1168 rx_ring->netdev = adapter->netdev;
1169 rx_ring->dev = &adapter->pdev->dev;
1170 rx_ring->count = adapter->rx_desc_count;
1171 rx_ring->itr_setting = IAVF_ITR_RX_DEF;
1174 adapter->num_active_queues = num_active_queues;
1179 iavf_free_queues(adapter);
1184 * iavf_set_interrupt_capability - set MSI-X or FAIL if not supported
1185 * @adapter: board private structure to initialize
1187 * Attempt to configure the interrupts using the best available
1188 * capabilities of the hardware and the kernel.
1190 static int iavf_set_interrupt_capability(struct iavf_adapter *adapter)
1192 int vector, v_budget;
1196 if (!adapter->vsi_res) {
1200 pairs = adapter->num_active_queues;
1202 /* It's easy to be greedy for MSI-X vectors, but it really doesn't do
1203 * us much good if we have more vectors than CPUs. However, we already
1204 * limit the total number of queues by the number of CPUs so we do not
1205 * need any further limiting here.
1207 v_budget = min_t(int, pairs + NONQ_VECS,
1208 (int)adapter->vf_res->max_vectors);
1210 adapter->msix_entries = kcalloc(v_budget,
1211 sizeof(struct msix_entry), GFP_KERNEL);
1212 if (!adapter->msix_entries) {
1217 for (vector = 0; vector < v_budget; vector++)
1218 adapter->msix_entries[vector].entry = vector;
1220 err = iavf_acquire_msix_vectors(adapter, v_budget);
1223 netif_set_real_num_rx_queues(adapter->netdev, pairs);
1224 netif_set_real_num_tx_queues(adapter->netdev, pairs);
1229 * iavf_config_rss_aq - Configure RSS keys and lut by using AQ commands
1230 * @adapter: board private structure
1232 * Return 0 on success, negative on failure
1234 static int iavf_config_rss_aq(struct iavf_adapter *adapter)
1236 struct iavf_aqc_get_set_rss_key_data *rss_key =
1237 (struct iavf_aqc_get_set_rss_key_data *)adapter->rss_key;
1238 struct iavf_hw *hw = &adapter->hw;
1241 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
1242 /* bail because we already have a command pending */
1243 dev_err(&adapter->pdev->dev, "Cannot configure RSS, command %d pending\n",
1244 adapter->current_op);
1248 ret = iavf_aq_set_rss_key(hw, adapter->vsi.id, rss_key);
1250 dev_err(&adapter->pdev->dev, "Cannot set RSS key, err %s aq_err %s\n",
1251 iavf_stat_str(hw, ret),
1252 iavf_aq_str(hw, hw->aq.asq_last_status));
1257 ret = iavf_aq_set_rss_lut(hw, adapter->vsi.id, false,
1258 adapter->rss_lut, adapter->rss_lut_size);
1260 dev_err(&adapter->pdev->dev, "Cannot set RSS lut, err %s aq_err %s\n",
1261 iavf_stat_str(hw, ret),
1262 iavf_aq_str(hw, hw->aq.asq_last_status));
1270 * iavf_config_rss_reg - Configure RSS keys and lut by writing registers
1271 * @adapter: board private structure
1273 * Returns 0 on success, negative on failure
1275 static int iavf_config_rss_reg(struct iavf_adapter *adapter)
1277 struct iavf_hw *hw = &adapter->hw;
1281 dw = (u32 *)adapter->rss_key;
1282 for (i = 0; i <= adapter->rss_key_size / 4; i++)
1283 wr32(hw, IAVF_VFQF_HKEY(i), dw[i]);
1285 dw = (u32 *)adapter->rss_lut;
1286 for (i = 0; i <= adapter->rss_lut_size / 4; i++)
1287 wr32(hw, IAVF_VFQF_HLUT(i), dw[i]);
1295 * iavf_config_rss - Configure RSS keys and lut
1296 * @adapter: board private structure
1298 * Returns 0 on success, negative on failure
1300 int iavf_config_rss(struct iavf_adapter *adapter)
1303 if (RSS_PF(adapter)) {
1304 adapter->aq_required |= IAVF_FLAG_AQ_SET_RSS_LUT |
1305 IAVF_FLAG_AQ_SET_RSS_KEY;
1307 } else if (RSS_AQ(adapter)) {
1308 return iavf_config_rss_aq(adapter);
1310 return iavf_config_rss_reg(adapter);
1315 * iavf_fill_rss_lut - Fill the lut with default values
1316 * @adapter: board private structure
1318 static void iavf_fill_rss_lut(struct iavf_adapter *adapter)
1322 for (i = 0; i < adapter->rss_lut_size; i++)
1323 adapter->rss_lut[i] = i % adapter->num_active_queues;
1327 * iavf_init_rss - Prepare for RSS
1328 * @adapter: board private structure
1330 * Return 0 on success, negative on failure
1332 static int iavf_init_rss(struct iavf_adapter *adapter)
1334 struct iavf_hw *hw = &adapter->hw;
1337 if (!RSS_PF(adapter)) {
1338 /* Enable PCTYPES for RSS, TCP/UDP with IPv4/IPv6 */
1339 if (adapter->vf_res->vf_cap_flags &
1340 VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
1341 adapter->hena = IAVF_DEFAULT_RSS_HENA_EXPANDED;
1343 adapter->hena = IAVF_DEFAULT_RSS_HENA;
1345 wr32(hw, IAVF_VFQF_HENA(0), (u32)adapter->hena);
1346 wr32(hw, IAVF_VFQF_HENA(1), (u32)(adapter->hena >> 32));
1349 iavf_fill_rss_lut(adapter);
1350 netdev_rss_key_fill((void *)adapter->rss_key, adapter->rss_key_size);
1351 ret = iavf_config_rss(adapter);
1357 * iavf_alloc_q_vectors - Allocate memory for interrupt vectors
1358 * @adapter: board private structure to initialize
1360 * We allocate one q_vector per queue interrupt. If allocation fails we
1363 static int iavf_alloc_q_vectors(struct iavf_adapter *adapter)
1365 int q_idx = 0, num_q_vectors;
1366 struct iavf_q_vector *q_vector;
1368 num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
1369 adapter->q_vectors = kcalloc(num_q_vectors, sizeof(*q_vector),
1371 if (!adapter->q_vectors)
1374 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
1375 q_vector = &adapter->q_vectors[q_idx];
1376 q_vector->adapter = adapter;
1377 q_vector->vsi = &adapter->vsi;
1378 q_vector->v_idx = q_idx;
1379 q_vector->reg_idx = q_idx;
1380 cpumask_copy(&q_vector->affinity_mask, cpu_possible_mask);
1381 netif_napi_add(adapter->netdev, &q_vector->napi,
1382 iavf_napi_poll, NAPI_POLL_WEIGHT);
1389 * iavf_free_q_vectors - Free memory allocated for interrupt vectors
1390 * @adapter: board private structure to initialize
1392 * This function frees the memory allocated to the q_vectors. In addition if
1393 * NAPI is enabled it will delete any references to the NAPI struct prior
1394 * to freeing the q_vector.
1396 static void iavf_free_q_vectors(struct iavf_adapter *adapter)
1398 int q_idx, num_q_vectors;
1401 if (!adapter->q_vectors)
1404 num_q_vectors = adapter->num_msix_vectors - NONQ_VECS;
1405 napi_vectors = adapter->num_active_queues;
1407 for (q_idx = 0; q_idx < num_q_vectors; q_idx++) {
1408 struct iavf_q_vector *q_vector = &adapter->q_vectors[q_idx];
1410 if (q_idx < napi_vectors)
1411 netif_napi_del(&q_vector->napi);
1413 kfree(adapter->q_vectors);
1414 adapter->q_vectors = NULL;
1418 * iavf_reset_interrupt_capability - Reset MSIX setup
1419 * @adapter: board private structure
1422 void iavf_reset_interrupt_capability(struct iavf_adapter *adapter)
1424 if (!adapter->msix_entries)
1427 pci_disable_msix(adapter->pdev);
1428 kfree(adapter->msix_entries);
1429 adapter->msix_entries = NULL;
1433 * iavf_init_interrupt_scheme - Determine if MSIX is supported and init
1434 * @adapter: board private structure to initialize
1437 int iavf_init_interrupt_scheme(struct iavf_adapter *adapter)
1441 err = iavf_alloc_queues(adapter);
1443 dev_err(&adapter->pdev->dev,
1444 "Unable to allocate memory for queues\n");
1445 goto err_alloc_queues;
1449 err = iavf_set_interrupt_capability(adapter);
1452 dev_err(&adapter->pdev->dev,
1453 "Unable to setup interrupt capabilities\n");
1454 goto err_set_interrupt;
1457 err = iavf_alloc_q_vectors(adapter);
1459 dev_err(&adapter->pdev->dev,
1460 "Unable to allocate memory for queue vectors\n");
1461 goto err_alloc_q_vectors;
1464 /* If we've made it so far while ADq flag being ON, then we haven't
1465 * bailed out anywhere in middle. And ADq isn't just enabled but actual
1466 * resources have been allocated in the reset path.
1467 * Now we can truly claim that ADq is enabled.
1469 if ((adapter->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_ADQ) &&
1471 dev_info(&adapter->pdev->dev, "ADq Enabled, %u TCs created",
1474 dev_info(&adapter->pdev->dev, "Multiqueue %s: Queue pair count = %u",
1475 (adapter->num_active_queues > 1) ? "Enabled" : "Disabled",
1476 adapter->num_active_queues);
1479 err_alloc_q_vectors:
1480 iavf_reset_interrupt_capability(adapter);
1482 iavf_free_queues(adapter);
1488 * iavf_free_rss - Free memory used by RSS structs
1489 * @adapter: board private structure
1491 static void iavf_free_rss(struct iavf_adapter *adapter)
1493 kfree(adapter->rss_key);
1494 adapter->rss_key = NULL;
1496 kfree(adapter->rss_lut);
1497 adapter->rss_lut = NULL;
1501 * iavf_reinit_interrupt_scheme - Reallocate queues and vectors
1502 * @adapter: board private structure
1504 * Returns 0 on success, negative on failure
1506 static int iavf_reinit_interrupt_scheme(struct iavf_adapter *adapter)
1508 struct net_device *netdev = adapter->netdev;
1511 if (netif_running(netdev))
1512 iavf_free_traffic_irqs(adapter);
1513 iavf_free_misc_irq(adapter);
1514 iavf_reset_interrupt_capability(adapter);
1515 iavf_free_q_vectors(adapter);
1516 iavf_free_queues(adapter);
1518 err = iavf_init_interrupt_scheme(adapter);
1522 netif_tx_stop_all_queues(netdev);
1524 err = iavf_request_misc_irq(adapter);
1528 set_bit(__IAVF_VSI_DOWN, adapter->vsi.state);
1530 iavf_map_rings_to_vectors(adapter);
1536 * iavf_process_aq_command - process aq_required flags
1537 * and sends aq command
1538 * @adapter: pointer to iavf adapter structure
1540 * Returns 0 on success
1541 * Returns error code if no command was sent
1542 * or error code if the command failed.
1544 static int iavf_process_aq_command(struct iavf_adapter *adapter)
1546 if (adapter->aq_required & IAVF_FLAG_AQ_GET_CONFIG)
1547 return iavf_send_vf_config_msg(adapter);
1548 if (adapter->aq_required & IAVF_FLAG_AQ_DISABLE_QUEUES) {
1549 iavf_disable_queues(adapter);
1553 if (adapter->aq_required & IAVF_FLAG_AQ_MAP_VECTORS) {
1554 iavf_map_queues(adapter);
1558 if (adapter->aq_required & IAVF_FLAG_AQ_ADD_MAC_FILTER) {
1559 iavf_add_ether_addrs(adapter);
1563 if (adapter->aq_required & IAVF_FLAG_AQ_ADD_VLAN_FILTER) {
1564 iavf_add_vlans(adapter);
1568 if (adapter->aq_required & IAVF_FLAG_AQ_DEL_MAC_FILTER) {
1569 iavf_del_ether_addrs(adapter);
1573 if (adapter->aq_required & IAVF_FLAG_AQ_DEL_VLAN_FILTER) {
1574 iavf_del_vlans(adapter);
1578 if (adapter->aq_required & IAVF_FLAG_AQ_ENABLE_VLAN_STRIPPING) {
1579 iavf_enable_vlan_stripping(adapter);
1583 if (adapter->aq_required & IAVF_FLAG_AQ_DISABLE_VLAN_STRIPPING) {
1584 iavf_disable_vlan_stripping(adapter);
1588 if (adapter->aq_required & IAVF_FLAG_AQ_CONFIGURE_QUEUES) {
1589 iavf_configure_queues(adapter);
1593 if (adapter->aq_required & IAVF_FLAG_AQ_ENABLE_QUEUES) {
1594 iavf_enable_queues(adapter);
1598 if (adapter->aq_required & IAVF_FLAG_AQ_CONFIGURE_RSS) {
1599 /* This message goes straight to the firmware, not the
1600 * PF, so we don't have to set current_op as we will
1601 * not get a response through the ARQ.
1603 adapter->aq_required &= ~IAVF_FLAG_AQ_CONFIGURE_RSS;
1606 if (adapter->aq_required & IAVF_FLAG_AQ_GET_HENA) {
1607 iavf_get_hena(adapter);
1610 if (adapter->aq_required & IAVF_FLAG_AQ_SET_HENA) {
1611 iavf_set_hena(adapter);
1614 if (adapter->aq_required & IAVF_FLAG_AQ_SET_RSS_KEY) {
1615 iavf_set_rss_key(adapter);
1618 if (adapter->aq_required & IAVF_FLAG_AQ_SET_RSS_LUT) {
1619 iavf_set_rss_lut(adapter);
1623 if (adapter->aq_required & IAVF_FLAG_AQ_REQUEST_PROMISC) {
1624 iavf_set_promiscuous(adapter, FLAG_VF_UNICAST_PROMISC |
1625 FLAG_VF_MULTICAST_PROMISC);
1629 if (adapter->aq_required & IAVF_FLAG_AQ_REQUEST_ALLMULTI) {
1630 iavf_set_promiscuous(adapter, FLAG_VF_MULTICAST_PROMISC);
1634 if ((adapter->aq_required & IAVF_FLAG_AQ_RELEASE_PROMISC) &&
1635 (adapter->aq_required & IAVF_FLAG_AQ_RELEASE_ALLMULTI)) {
1636 iavf_set_promiscuous(adapter, 0);
1640 if (adapter->aq_required & IAVF_FLAG_AQ_ENABLE_CHANNELS) {
1641 iavf_enable_channels(adapter);
1645 if (adapter->aq_required & IAVF_FLAG_AQ_DISABLE_CHANNELS) {
1646 iavf_disable_channels(adapter);
1649 if (adapter->aq_required & IAVF_FLAG_AQ_ADD_CLOUD_FILTER) {
1650 iavf_add_cloud_filter(adapter);
1654 if (adapter->aq_required & IAVF_FLAG_AQ_DEL_CLOUD_FILTER) {
1655 iavf_del_cloud_filter(adapter);
1658 if (adapter->aq_required & IAVF_FLAG_AQ_DEL_CLOUD_FILTER) {
1659 iavf_del_cloud_filter(adapter);
1662 if (adapter->aq_required & IAVF_FLAG_AQ_ADD_CLOUD_FILTER) {
1663 iavf_add_cloud_filter(adapter);
1666 if (adapter->aq_required & IAVF_FLAG_AQ_ADD_FDIR_FILTER) {
1667 iavf_add_fdir_filter(adapter);
1668 return IAVF_SUCCESS;
1670 if (adapter->aq_required & IAVF_FLAG_AQ_DEL_FDIR_FILTER) {
1671 iavf_del_fdir_filter(adapter);
1672 return IAVF_SUCCESS;
1674 if (adapter->aq_required & IAVF_FLAG_AQ_ADD_ADV_RSS_CFG) {
1675 iavf_add_adv_rss_cfg(adapter);
1678 if (adapter->aq_required & IAVF_FLAG_AQ_DEL_ADV_RSS_CFG) {
1679 iavf_del_adv_rss_cfg(adapter);
1686 * iavf_startup - first step of driver startup
1687 * @adapter: board private structure
1689 * Function process __IAVF_STARTUP driver state.
1690 * When success the state is changed to __IAVF_INIT_VERSION_CHECK
1691 * when fails it returns -EAGAIN
1693 static int iavf_startup(struct iavf_adapter *adapter)
1695 struct pci_dev *pdev = adapter->pdev;
1696 struct iavf_hw *hw = &adapter->hw;
1699 WARN_ON(adapter->state != __IAVF_STARTUP);
1701 /* driver loaded, probe complete */
1702 adapter->flags &= ~IAVF_FLAG_PF_COMMS_FAILED;
1703 adapter->flags &= ~IAVF_FLAG_RESET_PENDING;
1704 err = iavf_set_mac_type(hw);
1706 dev_err(&pdev->dev, "Failed to set MAC type (%d)\n", err);
1710 err = iavf_check_reset_complete(hw);
1712 dev_info(&pdev->dev, "Device is still in reset (%d), retrying\n",
1716 hw->aq.num_arq_entries = IAVF_AQ_LEN;
1717 hw->aq.num_asq_entries = IAVF_AQ_LEN;
1718 hw->aq.arq_buf_size = IAVF_MAX_AQ_BUF_SIZE;
1719 hw->aq.asq_buf_size = IAVF_MAX_AQ_BUF_SIZE;
1721 err = iavf_init_adminq(hw);
1723 dev_err(&pdev->dev, "Failed to init Admin Queue (%d)\n", err);
1726 err = iavf_send_api_ver(adapter);
1728 dev_err(&pdev->dev, "Unable to send to PF (%d)\n", err);
1729 iavf_shutdown_adminq(hw);
1732 adapter->state = __IAVF_INIT_VERSION_CHECK;
1738 * iavf_init_version_check - second step of driver startup
1739 * @adapter: board private structure
1741 * Function process __IAVF_INIT_VERSION_CHECK driver state.
1742 * When success the state is changed to __IAVF_INIT_GET_RESOURCES
1743 * when fails it returns -EAGAIN
1745 static int iavf_init_version_check(struct iavf_adapter *adapter)
1747 struct pci_dev *pdev = adapter->pdev;
1748 struct iavf_hw *hw = &adapter->hw;
1751 WARN_ON(adapter->state != __IAVF_INIT_VERSION_CHECK);
1753 if (!iavf_asq_done(hw)) {
1754 dev_err(&pdev->dev, "Admin queue command never completed\n");
1755 iavf_shutdown_adminq(hw);
1756 adapter->state = __IAVF_STARTUP;
1760 /* aq msg sent, awaiting reply */
1761 err = iavf_verify_api_ver(adapter);
1763 if (err == IAVF_ERR_ADMIN_QUEUE_NO_WORK)
1764 err = iavf_send_api_ver(adapter);
1766 dev_err(&pdev->dev, "Unsupported PF API version %d.%d, expected %d.%d\n",
1767 adapter->pf_version.major,
1768 adapter->pf_version.minor,
1769 VIRTCHNL_VERSION_MAJOR,
1770 VIRTCHNL_VERSION_MINOR);
1773 err = iavf_send_vf_config_msg(adapter);
1775 dev_err(&pdev->dev, "Unable to send config request (%d)\n",
1779 adapter->state = __IAVF_INIT_GET_RESOURCES;
1786 * iavf_init_get_resources - third step of driver startup
1787 * @adapter: board private structure
1789 * Function process __IAVF_INIT_GET_RESOURCES driver state and
1790 * finishes driver initialization procedure.
1791 * When success the state is changed to __IAVF_DOWN
1792 * when fails it returns -EAGAIN
1794 static int iavf_init_get_resources(struct iavf_adapter *adapter)
1796 struct net_device *netdev = adapter->netdev;
1797 struct pci_dev *pdev = adapter->pdev;
1798 struct iavf_hw *hw = &adapter->hw;
1801 WARN_ON(adapter->state != __IAVF_INIT_GET_RESOURCES);
1802 /* aq msg sent, awaiting reply */
1803 if (!adapter->vf_res) {
1804 adapter->vf_res = kzalloc(IAVF_VIRTCHNL_VF_RESOURCE_SIZE,
1806 if (!adapter->vf_res) {
1811 err = iavf_get_vf_config(adapter);
1812 if (err == IAVF_ERR_ADMIN_QUEUE_NO_WORK) {
1813 err = iavf_send_vf_config_msg(adapter);
1815 } else if (err == IAVF_ERR_PARAM) {
1816 /* We only get ERR_PARAM if the device is in a very bad
1817 * state or if we've been disabled for previous bad
1818 * behavior. Either way, we're done now.
1820 iavf_shutdown_adminq(hw);
1821 dev_err(&pdev->dev, "Unable to get VF config due to PF error condition, not retrying\n");
1825 dev_err(&pdev->dev, "Unable to get VF config (%d)\n", err);
1829 err = iavf_process_config(adapter);
1832 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
1834 adapter->flags |= IAVF_FLAG_RX_CSUM_ENABLED;
1836 netdev->netdev_ops = &iavf_netdev_ops;
1837 iavf_set_ethtool_ops(netdev);
1838 netdev->watchdog_timeo = 5 * HZ;
1840 /* MTU range: 68 - 9710 */
1841 netdev->min_mtu = ETH_MIN_MTU;
1842 netdev->max_mtu = IAVF_MAX_RXBUFFER - IAVF_PACKET_HDR_PAD;
1844 if (!is_valid_ether_addr(adapter->hw.mac.addr)) {
1845 dev_info(&pdev->dev, "Invalid MAC address %pM, using random\n",
1846 adapter->hw.mac.addr);
1847 eth_hw_addr_random(netdev);
1848 ether_addr_copy(adapter->hw.mac.addr, netdev->dev_addr);
1850 ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
1851 ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr);
1854 adapter->tx_desc_count = IAVF_DEFAULT_TXD;
1855 adapter->rx_desc_count = IAVF_DEFAULT_RXD;
1856 err = iavf_init_interrupt_scheme(adapter);
1859 iavf_map_rings_to_vectors(adapter);
1860 if (adapter->vf_res->vf_cap_flags &
1861 VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
1862 adapter->flags |= IAVF_FLAG_WB_ON_ITR_CAPABLE;
1864 err = iavf_request_misc_irq(adapter);
1868 netif_carrier_off(netdev);
1869 adapter->link_up = false;
1871 /* set the semaphore to prevent any callbacks after device registration
1872 * up to time when state of driver will be set to __IAVF_DOWN
1875 if (!adapter->netdev_registered) {
1876 err = register_netdevice(netdev);
1883 adapter->netdev_registered = true;
1885 netif_tx_stop_all_queues(netdev);
1886 if (CLIENT_ALLOWED(adapter)) {
1887 err = iavf_lan_add_device(adapter);
1889 dev_info(&pdev->dev, "Failed to add VF to client API service list: %d\n",
1892 dev_info(&pdev->dev, "MAC address: %pM\n", adapter->hw.mac.addr);
1893 if (netdev->features & NETIF_F_GRO)
1894 dev_info(&pdev->dev, "GRO is enabled\n");
1896 adapter->state = __IAVF_DOWN;
1897 set_bit(__IAVF_VSI_DOWN, adapter->vsi.state);
1900 iavf_misc_irq_enable(adapter);
1901 wake_up(&adapter->down_waitqueue);
1903 adapter->rss_key = kzalloc(adapter->rss_key_size, GFP_KERNEL);
1904 adapter->rss_lut = kzalloc(adapter->rss_lut_size, GFP_KERNEL);
1905 if (!adapter->rss_key || !adapter->rss_lut) {
1909 if (RSS_AQ(adapter))
1910 adapter->aq_required |= IAVF_FLAG_AQ_CONFIGURE_RSS;
1912 iavf_init_rss(adapter);
1916 iavf_free_rss(adapter);
1918 iavf_free_misc_irq(adapter);
1920 iavf_reset_interrupt_capability(adapter);
1922 kfree(adapter->vf_res);
1923 adapter->vf_res = NULL;
1929 * iavf_watchdog_task - Periodic call-back task
1930 * @work: pointer to work_struct
1932 static void iavf_watchdog_task(struct work_struct *work)
1934 struct iavf_adapter *adapter = container_of(work,
1935 struct iavf_adapter,
1936 watchdog_task.work);
1937 struct iavf_hw *hw = &adapter->hw;
1940 if (!mutex_trylock(&adapter->crit_lock))
1941 goto restart_watchdog;
1943 if (adapter->flags & IAVF_FLAG_PF_COMMS_FAILED)
1944 adapter->state = __IAVF_COMM_FAILED;
1946 switch (adapter->state) {
1947 case __IAVF_COMM_FAILED:
1948 reg_val = rd32(hw, IAVF_VFGEN_RSTAT) &
1949 IAVF_VFGEN_RSTAT_VFR_STATE_MASK;
1950 if (reg_val == VIRTCHNL_VFR_VFACTIVE ||
1951 reg_val == VIRTCHNL_VFR_COMPLETED) {
1952 /* A chance for redemption! */
1953 dev_err(&adapter->pdev->dev,
1954 "Hardware came out of reset. Attempting reinit.\n");
1955 adapter->state = __IAVF_STARTUP;
1956 adapter->flags &= ~IAVF_FLAG_PF_COMMS_FAILED;
1957 queue_delayed_work(iavf_wq, &adapter->init_task, 10);
1958 mutex_unlock(&adapter->crit_lock);
1959 /* Don't reschedule the watchdog, since we've restarted
1960 * the init task. When init_task contacts the PF and
1961 * gets everything set up again, it'll restart the
1962 * watchdog for us. Down, boy. Sit. Stay. Woof.
1966 adapter->aq_required = 0;
1967 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
1968 queue_delayed_work(iavf_wq,
1969 &adapter->watchdog_task,
1970 msecs_to_jiffies(10));
1972 case __IAVF_RESETTING:
1973 mutex_unlock(&adapter->crit_lock);
1974 queue_delayed_work(iavf_wq, &adapter->watchdog_task, HZ * 2);
1977 case __IAVF_DOWN_PENDING:
1978 case __IAVF_TESTING:
1979 case __IAVF_RUNNING:
1980 if (adapter->current_op) {
1981 if (!iavf_asq_done(hw)) {
1982 dev_dbg(&adapter->pdev->dev,
1983 "Admin queue timeout\n");
1984 iavf_send_api_ver(adapter);
1987 /* An error will be returned if no commands were
1988 * processed; use this opportunity to update stats
1990 if (iavf_process_aq_command(adapter) &&
1991 adapter->state == __IAVF_RUNNING)
1992 iavf_request_stats(adapter);
1996 mutex_unlock(&adapter->crit_lock);
1999 goto restart_watchdog;
2002 /* check for hw reset */
2003 reg_val = rd32(hw, IAVF_VF_ARQLEN1) & IAVF_VF_ARQLEN1_ARQENABLE_MASK;
2005 adapter->flags |= IAVF_FLAG_RESET_PENDING;
2006 adapter->aq_required = 0;
2007 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
2008 dev_err(&adapter->pdev->dev, "Hardware reset detected\n");
2009 queue_work(iavf_wq, &adapter->reset_task);
2013 schedule_delayed_work(&adapter->client_task, msecs_to_jiffies(5));
2015 if (adapter->state == __IAVF_RUNNING ||
2016 adapter->state == __IAVF_COMM_FAILED)
2017 iavf_detect_recover_hung(&adapter->vsi);
2018 mutex_unlock(&adapter->crit_lock);
2020 if (adapter->aq_required)
2021 queue_delayed_work(iavf_wq, &adapter->watchdog_task,
2022 msecs_to_jiffies(20));
2024 queue_delayed_work(iavf_wq, &adapter->watchdog_task, HZ * 2);
2025 queue_work(iavf_wq, &adapter->adminq_task);
2028 static void iavf_disable_vf(struct iavf_adapter *adapter)
2030 struct iavf_mac_filter *f, *ftmp;
2031 struct iavf_vlan_filter *fv, *fvtmp;
2032 struct iavf_cloud_filter *cf, *cftmp;
2034 adapter->flags |= IAVF_FLAG_PF_COMMS_FAILED;
2036 /* We don't use netif_running() because it may be true prior to
2037 * ndo_open() returning, so we can't assume it means all our open
2038 * tasks have finished, since we're not holding the rtnl_lock here.
2040 if (adapter->state == __IAVF_RUNNING) {
2041 set_bit(__IAVF_VSI_DOWN, adapter->vsi.state);
2042 netif_carrier_off(adapter->netdev);
2043 netif_tx_disable(adapter->netdev);
2044 adapter->link_up = false;
2045 iavf_napi_disable_all(adapter);
2046 iavf_irq_disable(adapter);
2047 iavf_free_traffic_irqs(adapter);
2048 iavf_free_all_tx_resources(adapter);
2049 iavf_free_all_rx_resources(adapter);
2052 spin_lock_bh(&adapter->mac_vlan_list_lock);
2054 /* Delete all of the filters */
2055 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
2060 list_for_each_entry_safe(fv, fvtmp, &adapter->vlan_filter_list, list) {
2061 list_del(&fv->list);
2065 spin_unlock_bh(&adapter->mac_vlan_list_lock);
2067 spin_lock_bh(&adapter->cloud_filter_list_lock);
2068 list_for_each_entry_safe(cf, cftmp, &adapter->cloud_filter_list, list) {
2069 list_del(&cf->list);
2071 adapter->num_cloud_filters--;
2073 spin_unlock_bh(&adapter->cloud_filter_list_lock);
2075 iavf_free_misc_irq(adapter);
2076 iavf_reset_interrupt_capability(adapter);
2077 iavf_free_queues(adapter);
2078 iavf_free_q_vectors(adapter);
2079 memset(adapter->vf_res, 0, IAVF_VIRTCHNL_VF_RESOURCE_SIZE);
2080 iavf_shutdown_adminq(&adapter->hw);
2081 adapter->netdev->flags &= ~IFF_UP;
2082 mutex_unlock(&adapter->crit_lock);
2083 adapter->flags &= ~IAVF_FLAG_RESET_PENDING;
2084 adapter->state = __IAVF_DOWN;
2085 wake_up(&adapter->down_waitqueue);
2086 dev_info(&adapter->pdev->dev, "Reset task did not complete, VF disabled\n");
2090 * iavf_reset_task - Call-back task to handle hardware reset
2091 * @work: pointer to work_struct
2093 * During reset we need to shut down and reinitialize the admin queue
2094 * before we can use it to communicate with the PF again. We also clear
2095 * and reinit the rings because that context is lost as well.
2097 static void iavf_reset_task(struct work_struct *work)
2099 struct iavf_adapter *adapter = container_of(work,
2100 struct iavf_adapter,
2102 struct virtchnl_vf_resource *vfres = adapter->vf_res;
2103 struct net_device *netdev = adapter->netdev;
2104 struct iavf_hw *hw = &adapter->hw;
2105 struct iavf_mac_filter *f, *ftmp;
2106 struct iavf_vlan_filter *vlf;
2107 struct iavf_cloud_filter *cf;
2112 /* When device is being removed it doesn't make sense to run the reset
2113 * task, just return in such a case.
2115 if (mutex_is_locked(&adapter->remove_lock))
2118 if (iavf_lock_timeout(&adapter->crit_lock, 200)) {
2119 schedule_work(&adapter->reset_task);
2122 while (!mutex_trylock(&adapter->client_lock))
2123 usleep_range(500, 1000);
2124 if (CLIENT_ENABLED(adapter)) {
2125 adapter->flags &= ~(IAVF_FLAG_CLIENT_NEEDS_OPEN |
2126 IAVF_FLAG_CLIENT_NEEDS_CLOSE |
2127 IAVF_FLAG_CLIENT_NEEDS_L2_PARAMS |
2128 IAVF_FLAG_SERVICE_CLIENT_REQUESTED);
2129 cancel_delayed_work_sync(&adapter->client_task);
2130 iavf_notify_client_close(&adapter->vsi, true);
2132 iavf_misc_irq_disable(adapter);
2133 if (adapter->flags & IAVF_FLAG_RESET_NEEDED) {
2134 adapter->flags &= ~IAVF_FLAG_RESET_NEEDED;
2135 /* Restart the AQ here. If we have been reset but didn't
2136 * detect it, or if the PF had to reinit, our AQ will be hosed.
2138 iavf_shutdown_adminq(hw);
2139 iavf_init_adminq(hw);
2140 iavf_request_reset(adapter);
2142 adapter->flags |= IAVF_FLAG_RESET_PENDING;
2144 /* poll until we see the reset actually happen */
2145 for (i = 0; i < IAVF_RESET_WAIT_DETECTED_COUNT; i++) {
2146 reg_val = rd32(hw, IAVF_VF_ARQLEN1) &
2147 IAVF_VF_ARQLEN1_ARQENABLE_MASK;
2150 usleep_range(5000, 10000);
2152 if (i == IAVF_RESET_WAIT_DETECTED_COUNT) {
2153 dev_info(&adapter->pdev->dev, "Never saw reset\n");
2154 goto continue_reset; /* act like the reset happened */
2157 /* wait until the reset is complete and the PF is responding to us */
2158 for (i = 0; i < IAVF_RESET_WAIT_COMPLETE_COUNT; i++) {
2159 /* sleep first to make sure a minimum wait time is met */
2160 msleep(IAVF_RESET_WAIT_MS);
2162 reg_val = rd32(hw, IAVF_VFGEN_RSTAT) &
2163 IAVF_VFGEN_RSTAT_VFR_STATE_MASK;
2164 if (reg_val == VIRTCHNL_VFR_VFACTIVE)
2168 pci_set_master(adapter->pdev);
2170 if (i == IAVF_RESET_WAIT_COMPLETE_COUNT) {
2171 dev_err(&adapter->pdev->dev, "Reset never finished (%x)\n",
2173 iavf_disable_vf(adapter);
2174 mutex_unlock(&adapter->client_lock);
2175 return; /* Do not attempt to reinit. It's dead, Jim. */
2179 /* We don't use netif_running() because it may be true prior to
2180 * ndo_open() returning, so we can't assume it means all our open
2181 * tasks have finished, since we're not holding the rtnl_lock here.
2183 running = ((adapter->state == __IAVF_RUNNING) ||
2184 (adapter->state == __IAVF_RESETTING));
2187 netif_carrier_off(netdev);
2188 netif_tx_stop_all_queues(netdev);
2189 adapter->link_up = false;
2190 iavf_napi_disable_all(adapter);
2192 iavf_irq_disable(adapter);
2194 adapter->state = __IAVF_RESETTING;
2195 adapter->flags &= ~IAVF_FLAG_RESET_PENDING;
2197 /* free the Tx/Rx rings and descriptors, might be better to just
2198 * re-use them sometime in the future
2200 iavf_free_all_rx_resources(adapter);
2201 iavf_free_all_tx_resources(adapter);
2203 adapter->flags |= IAVF_FLAG_QUEUES_DISABLED;
2204 /* kill and reinit the admin queue */
2205 iavf_shutdown_adminq(hw);
2206 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
2207 err = iavf_init_adminq(hw);
2209 dev_info(&adapter->pdev->dev, "Failed to init adminq: %d\n",
2211 adapter->aq_required = 0;
2213 if (adapter->flags & IAVF_FLAG_REINIT_ITR_NEEDED) {
2214 err = iavf_reinit_interrupt_scheme(adapter);
2219 if (RSS_AQ(adapter)) {
2220 adapter->aq_required |= IAVF_FLAG_AQ_CONFIGURE_RSS;
2222 err = iavf_init_rss(adapter);
2227 adapter->aq_required |= IAVF_FLAG_AQ_GET_CONFIG;
2228 adapter->aq_required |= IAVF_FLAG_AQ_MAP_VECTORS;
2230 spin_lock_bh(&adapter->mac_vlan_list_lock);
2232 /* Delete filter for the current MAC address, it could have
2233 * been changed by the PF via administratively set MAC.
2234 * Will be re-added via VIRTCHNL_OP_GET_VF_RESOURCES.
2236 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
2237 if (ether_addr_equal(f->macaddr, adapter->hw.mac.addr)) {
2242 /* re-add all MAC filters */
2243 list_for_each_entry(f, &adapter->mac_filter_list, list) {
2246 /* re-add all VLAN filters */
2247 list_for_each_entry(vlf, &adapter->vlan_filter_list, list) {
2251 spin_unlock_bh(&adapter->mac_vlan_list_lock);
2253 /* check if TCs are running and re-add all cloud filters */
2254 spin_lock_bh(&adapter->cloud_filter_list_lock);
2255 if ((vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_ADQ) &&
2257 list_for_each_entry(cf, &adapter->cloud_filter_list, list) {
2261 spin_unlock_bh(&adapter->cloud_filter_list_lock);
2263 adapter->aq_required |= IAVF_FLAG_AQ_ADD_MAC_FILTER;
2264 adapter->aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER;
2265 adapter->aq_required |= IAVF_FLAG_AQ_ADD_CLOUD_FILTER;
2266 iavf_misc_irq_enable(adapter);
2268 mod_delayed_work(iavf_wq, &adapter->watchdog_task, 2);
2270 /* We were running when the reset started, so we need to restore some
2274 /* allocate transmit descriptors */
2275 err = iavf_setup_all_tx_resources(adapter);
2279 /* allocate receive descriptors */
2280 err = iavf_setup_all_rx_resources(adapter);
2284 if (adapter->flags & IAVF_FLAG_REINIT_ITR_NEEDED) {
2285 err = iavf_request_traffic_irqs(adapter, netdev->name);
2289 adapter->flags &= ~IAVF_FLAG_REINIT_ITR_NEEDED;
2292 iavf_configure(adapter);
2294 iavf_up_complete(adapter);
2296 iavf_irq_enable(adapter, true);
2298 adapter->state = __IAVF_DOWN;
2299 wake_up(&adapter->down_waitqueue);
2301 mutex_unlock(&adapter->client_lock);
2302 mutex_unlock(&adapter->crit_lock);
2306 mutex_unlock(&adapter->client_lock);
2307 mutex_unlock(&adapter->crit_lock);
2308 dev_err(&adapter->pdev->dev, "failed to allocate resources during reinit\n");
2313 * iavf_adminq_task - worker thread to clean the admin queue
2314 * @work: pointer to work_struct containing our data
2316 static void iavf_adminq_task(struct work_struct *work)
2318 struct iavf_adapter *adapter =
2319 container_of(work, struct iavf_adapter, adminq_task);
2320 struct iavf_hw *hw = &adapter->hw;
2321 struct iavf_arq_event_info event;
2322 enum virtchnl_ops v_op;
2323 enum iavf_status ret, v_ret;
2327 if (adapter->flags & IAVF_FLAG_PF_COMMS_FAILED)
2330 event.buf_len = IAVF_MAX_AQ_BUF_SIZE;
2331 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
2335 if (iavf_lock_timeout(&adapter->crit_lock, 200))
2338 ret = iavf_clean_arq_element(hw, &event, &pending);
2339 v_op = (enum virtchnl_ops)le32_to_cpu(event.desc.cookie_high);
2340 v_ret = (enum iavf_status)le32_to_cpu(event.desc.cookie_low);
2343 break; /* No event to process or error cleaning ARQ */
2345 iavf_virtchnl_completion(adapter, v_op, v_ret, event.msg_buf,
2348 memset(event.msg_buf, 0, IAVF_MAX_AQ_BUF_SIZE);
2350 mutex_unlock(&adapter->crit_lock);
2352 if ((adapter->flags &
2353 (IAVF_FLAG_RESET_PENDING | IAVF_FLAG_RESET_NEEDED)) ||
2354 adapter->state == __IAVF_RESETTING)
2357 /* check for error indications */
2358 val = rd32(hw, hw->aq.arq.len);
2359 if (val == 0xdeadbeef) /* indicates device in reset */
2362 if (val & IAVF_VF_ARQLEN1_ARQVFE_MASK) {
2363 dev_info(&adapter->pdev->dev, "ARQ VF Error detected\n");
2364 val &= ~IAVF_VF_ARQLEN1_ARQVFE_MASK;
2366 if (val & IAVF_VF_ARQLEN1_ARQOVFL_MASK) {
2367 dev_info(&adapter->pdev->dev, "ARQ Overflow Error detected\n");
2368 val &= ~IAVF_VF_ARQLEN1_ARQOVFL_MASK;
2370 if (val & IAVF_VF_ARQLEN1_ARQCRIT_MASK) {
2371 dev_info(&adapter->pdev->dev, "ARQ Critical Error detected\n");
2372 val &= ~IAVF_VF_ARQLEN1_ARQCRIT_MASK;
2375 wr32(hw, hw->aq.arq.len, val);
2377 val = rd32(hw, hw->aq.asq.len);
2379 if (val & IAVF_VF_ATQLEN1_ATQVFE_MASK) {
2380 dev_info(&adapter->pdev->dev, "ASQ VF Error detected\n");
2381 val &= ~IAVF_VF_ATQLEN1_ATQVFE_MASK;
2383 if (val & IAVF_VF_ATQLEN1_ATQOVFL_MASK) {
2384 dev_info(&adapter->pdev->dev, "ASQ Overflow Error detected\n");
2385 val &= ~IAVF_VF_ATQLEN1_ATQOVFL_MASK;
2387 if (val & IAVF_VF_ATQLEN1_ATQCRIT_MASK) {
2388 dev_info(&adapter->pdev->dev, "ASQ Critical Error detected\n");
2389 val &= ~IAVF_VF_ATQLEN1_ATQCRIT_MASK;
2392 wr32(hw, hw->aq.asq.len, val);
2395 kfree(event.msg_buf);
2397 /* re-enable Admin queue interrupt cause */
2398 iavf_misc_irq_enable(adapter);
2402 * iavf_client_task - worker thread to perform client work
2403 * @work: pointer to work_struct containing our data
2405 * This task handles client interactions. Because client calls can be
2406 * reentrant, we can't handle them in the watchdog.
2408 static void iavf_client_task(struct work_struct *work)
2410 struct iavf_adapter *adapter =
2411 container_of(work, struct iavf_adapter, client_task.work);
2413 /* If we can't get the client bit, just give up. We'll be rescheduled
2417 if (!mutex_trylock(&adapter->client_lock))
2420 if (adapter->flags & IAVF_FLAG_SERVICE_CLIENT_REQUESTED) {
2421 iavf_client_subtask(adapter);
2422 adapter->flags &= ~IAVF_FLAG_SERVICE_CLIENT_REQUESTED;
2425 if (adapter->flags & IAVF_FLAG_CLIENT_NEEDS_L2_PARAMS) {
2426 iavf_notify_client_l2_params(&adapter->vsi);
2427 adapter->flags &= ~IAVF_FLAG_CLIENT_NEEDS_L2_PARAMS;
2430 if (adapter->flags & IAVF_FLAG_CLIENT_NEEDS_CLOSE) {
2431 iavf_notify_client_close(&adapter->vsi, false);
2432 adapter->flags &= ~IAVF_FLAG_CLIENT_NEEDS_CLOSE;
2435 if (adapter->flags & IAVF_FLAG_CLIENT_NEEDS_OPEN) {
2436 iavf_notify_client_open(&adapter->vsi);
2437 adapter->flags &= ~IAVF_FLAG_CLIENT_NEEDS_OPEN;
2440 mutex_unlock(&adapter->client_lock);
2444 * iavf_free_all_tx_resources - Free Tx Resources for All Queues
2445 * @adapter: board private structure
2447 * Free all transmit software resources
2449 void iavf_free_all_tx_resources(struct iavf_adapter *adapter)
2453 if (!adapter->tx_rings)
2456 for (i = 0; i < adapter->num_active_queues; i++)
2457 if (adapter->tx_rings[i].desc)
2458 iavf_free_tx_resources(&adapter->tx_rings[i]);
2462 * iavf_setup_all_tx_resources - allocate all queues Tx resources
2463 * @adapter: board private structure
2465 * If this function returns with an error, then it's possible one or
2466 * more of the rings is populated (while the rest are not). It is the
2467 * callers duty to clean those orphaned rings.
2469 * Return 0 on success, negative on failure
2471 static int iavf_setup_all_tx_resources(struct iavf_adapter *adapter)
2475 for (i = 0; i < adapter->num_active_queues; i++) {
2476 adapter->tx_rings[i].count = adapter->tx_desc_count;
2477 err = iavf_setup_tx_descriptors(&adapter->tx_rings[i]);
2480 dev_err(&adapter->pdev->dev,
2481 "Allocation for Tx Queue %u failed\n", i);
2489 * iavf_setup_all_rx_resources - allocate all queues Rx resources
2490 * @adapter: board private structure
2492 * If this function returns with an error, then it's possible one or
2493 * more of the rings is populated (while the rest are not). It is the
2494 * callers duty to clean those orphaned rings.
2496 * Return 0 on success, negative on failure
2498 static int iavf_setup_all_rx_resources(struct iavf_adapter *adapter)
2502 for (i = 0; i < adapter->num_active_queues; i++) {
2503 adapter->rx_rings[i].count = adapter->rx_desc_count;
2504 err = iavf_setup_rx_descriptors(&adapter->rx_rings[i]);
2507 dev_err(&adapter->pdev->dev,
2508 "Allocation for Rx Queue %u failed\n", i);
2515 * iavf_free_all_rx_resources - Free Rx Resources for All Queues
2516 * @adapter: board private structure
2518 * Free all receive software resources
2520 void iavf_free_all_rx_resources(struct iavf_adapter *adapter)
2524 if (!adapter->rx_rings)
2527 for (i = 0; i < adapter->num_active_queues; i++)
2528 if (adapter->rx_rings[i].desc)
2529 iavf_free_rx_resources(&adapter->rx_rings[i]);
2533 * iavf_validate_tx_bandwidth - validate the max Tx bandwidth
2534 * @adapter: board private structure
2535 * @max_tx_rate: max Tx bw for a tc
2537 static int iavf_validate_tx_bandwidth(struct iavf_adapter *adapter,
2540 int speed = 0, ret = 0;
2542 if (ADV_LINK_SUPPORT(adapter)) {
2543 if (adapter->link_speed_mbps < U32_MAX) {
2544 speed = adapter->link_speed_mbps;
2547 dev_err(&adapter->pdev->dev, "Unknown link speed\n");
2552 switch (adapter->link_speed) {
2553 case VIRTCHNL_LINK_SPEED_40GB:
2554 speed = SPEED_40000;
2556 case VIRTCHNL_LINK_SPEED_25GB:
2557 speed = SPEED_25000;
2559 case VIRTCHNL_LINK_SPEED_20GB:
2560 speed = SPEED_20000;
2562 case VIRTCHNL_LINK_SPEED_10GB:
2563 speed = SPEED_10000;
2565 case VIRTCHNL_LINK_SPEED_5GB:
2568 case VIRTCHNL_LINK_SPEED_2_5GB:
2571 case VIRTCHNL_LINK_SPEED_1GB:
2574 case VIRTCHNL_LINK_SPEED_100MB:
2582 if (max_tx_rate > speed) {
2583 dev_err(&adapter->pdev->dev,
2584 "Invalid tx rate specified\n");
2592 * iavf_validate_ch_config - validate queue mapping info
2593 * @adapter: board private structure
2594 * @mqprio_qopt: queue parameters
2596 * This function validates if the config provided by the user to
2597 * configure queue channels is valid or not. Returns 0 on a valid
2600 static int iavf_validate_ch_config(struct iavf_adapter *adapter,
2601 struct tc_mqprio_qopt_offload *mqprio_qopt)
2603 u64 total_max_rate = 0;
2608 if (mqprio_qopt->qopt.num_tc > IAVF_MAX_TRAFFIC_CLASS ||
2609 mqprio_qopt->qopt.num_tc < 1)
2612 for (i = 0; i <= mqprio_qopt->qopt.num_tc - 1; i++) {
2613 if (!mqprio_qopt->qopt.count[i] ||
2614 mqprio_qopt->qopt.offset[i] != num_qps)
2616 if (mqprio_qopt->min_rate[i]) {
2617 dev_err(&adapter->pdev->dev,
2618 "Invalid min tx rate (greater than 0) specified\n");
2621 /*convert to Mbps */
2622 tx_rate = div_u64(mqprio_qopt->max_rate[i],
2624 total_max_rate += tx_rate;
2625 num_qps += mqprio_qopt->qopt.count[i];
2627 if (num_qps > IAVF_MAX_REQ_QUEUES)
2630 ret = iavf_validate_tx_bandwidth(adapter, total_max_rate);
2635 * iavf_del_all_cloud_filters - delete all cloud filters on the traffic classes
2636 * @adapter: board private structure
2638 static void iavf_del_all_cloud_filters(struct iavf_adapter *adapter)
2640 struct iavf_cloud_filter *cf, *cftmp;
2642 spin_lock_bh(&adapter->cloud_filter_list_lock);
2643 list_for_each_entry_safe(cf, cftmp, &adapter->cloud_filter_list,
2645 list_del(&cf->list);
2647 adapter->num_cloud_filters--;
2649 spin_unlock_bh(&adapter->cloud_filter_list_lock);
2653 * __iavf_setup_tc - configure multiple traffic classes
2654 * @netdev: network interface device structure
2655 * @type_data: tc offload data
2657 * This function processes the config information provided by the
2658 * user to configure traffic classes/queue channels and packages the
2659 * information to request the PF to setup traffic classes.
2661 * Returns 0 on success.
2663 static int __iavf_setup_tc(struct net_device *netdev, void *type_data)
2665 struct tc_mqprio_qopt_offload *mqprio_qopt = type_data;
2666 struct iavf_adapter *adapter = netdev_priv(netdev);
2667 struct virtchnl_vf_resource *vfres = adapter->vf_res;
2668 u8 num_tc = 0, total_qps = 0;
2669 int ret = 0, netdev_tc = 0;
2674 num_tc = mqprio_qopt->qopt.num_tc;
2675 mode = mqprio_qopt->mode;
2677 /* delete queue_channel */
2678 if (!mqprio_qopt->qopt.hw) {
2679 if (adapter->ch_config.state == __IAVF_TC_RUNNING) {
2680 /* reset the tc configuration */
2681 netdev_reset_tc(netdev);
2682 adapter->num_tc = 0;
2683 netif_tx_stop_all_queues(netdev);
2684 netif_tx_disable(netdev);
2685 iavf_del_all_cloud_filters(adapter);
2686 adapter->aq_required = IAVF_FLAG_AQ_DISABLE_CHANNELS;
2693 /* add queue channel */
2694 if (mode == TC_MQPRIO_MODE_CHANNEL) {
2695 if (!(vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_ADQ)) {
2696 dev_err(&adapter->pdev->dev, "ADq not supported\n");
2699 if (adapter->ch_config.state != __IAVF_TC_INVALID) {
2700 dev_err(&adapter->pdev->dev, "TC configuration already exists\n");
2704 ret = iavf_validate_ch_config(adapter, mqprio_qopt);
2707 /* Return if same TC config is requested */
2708 if (adapter->num_tc == num_tc)
2710 adapter->num_tc = num_tc;
2712 for (i = 0; i < IAVF_MAX_TRAFFIC_CLASS; i++) {
2714 adapter->ch_config.ch_info[i].count =
2715 mqprio_qopt->qopt.count[i];
2716 adapter->ch_config.ch_info[i].offset =
2717 mqprio_qopt->qopt.offset[i];
2718 total_qps += mqprio_qopt->qopt.count[i];
2719 max_tx_rate = mqprio_qopt->max_rate[i];
2720 /* convert to Mbps */
2721 max_tx_rate = div_u64(max_tx_rate,
2723 adapter->ch_config.ch_info[i].max_tx_rate =
2726 adapter->ch_config.ch_info[i].count = 1;
2727 adapter->ch_config.ch_info[i].offset = 0;
2730 adapter->ch_config.total_qps = total_qps;
2731 netif_tx_stop_all_queues(netdev);
2732 netif_tx_disable(netdev);
2733 adapter->aq_required |= IAVF_FLAG_AQ_ENABLE_CHANNELS;
2734 netdev_reset_tc(netdev);
2735 /* Report the tc mapping up the stack */
2736 netdev_set_num_tc(adapter->netdev, num_tc);
2737 for (i = 0; i < IAVF_MAX_TRAFFIC_CLASS; i++) {
2738 u16 qcount = mqprio_qopt->qopt.count[i];
2739 u16 qoffset = mqprio_qopt->qopt.offset[i];
2742 netdev_set_tc_queue(netdev, netdev_tc++, qcount,
2751 * iavf_parse_cls_flower - Parse tc flower filters provided by kernel
2752 * @adapter: board private structure
2753 * @f: pointer to struct flow_cls_offload
2754 * @filter: pointer to cloud filter structure
2756 static int iavf_parse_cls_flower(struct iavf_adapter *adapter,
2757 struct flow_cls_offload *f,
2758 struct iavf_cloud_filter *filter)
2760 struct flow_rule *rule = flow_cls_offload_flow_rule(f);
2761 struct flow_dissector *dissector = rule->match.dissector;
2762 u16 n_proto_mask = 0;
2763 u16 n_proto_key = 0;
2768 struct virtchnl_filter *vf = &filter->f;
2770 if (dissector->used_keys &
2771 ~(BIT(FLOW_DISSECTOR_KEY_CONTROL) |
2772 BIT(FLOW_DISSECTOR_KEY_BASIC) |
2773 BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS) |
2774 BIT(FLOW_DISSECTOR_KEY_VLAN) |
2775 BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS) |
2776 BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS) |
2777 BIT(FLOW_DISSECTOR_KEY_PORTS) |
2778 BIT(FLOW_DISSECTOR_KEY_ENC_KEYID))) {
2779 dev_err(&adapter->pdev->dev, "Unsupported key used: 0x%x\n",
2780 dissector->used_keys);
2784 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_ENC_KEYID)) {
2785 struct flow_match_enc_keyid match;
2787 flow_rule_match_enc_keyid(rule, &match);
2788 if (match.mask->keyid != 0)
2789 field_flags |= IAVF_CLOUD_FIELD_TEN_ID;
2792 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_BASIC)) {
2793 struct flow_match_basic match;
2795 flow_rule_match_basic(rule, &match);
2796 n_proto_key = ntohs(match.key->n_proto);
2797 n_proto_mask = ntohs(match.mask->n_proto);
2799 if (n_proto_key == ETH_P_ALL) {
2803 n_proto = n_proto_key & n_proto_mask;
2804 if (n_proto != ETH_P_IP && n_proto != ETH_P_IPV6)
2806 if (n_proto == ETH_P_IPV6) {
2807 /* specify flow type as TCP IPv6 */
2808 vf->flow_type = VIRTCHNL_TCP_V6_FLOW;
2811 if (match.key->ip_proto != IPPROTO_TCP) {
2812 dev_info(&adapter->pdev->dev, "Only TCP transport is supported\n");
2817 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_ETH_ADDRS)) {
2818 struct flow_match_eth_addrs match;
2820 flow_rule_match_eth_addrs(rule, &match);
2822 /* use is_broadcast and is_zero to check for all 0xf or 0 */
2823 if (!is_zero_ether_addr(match.mask->dst)) {
2824 if (is_broadcast_ether_addr(match.mask->dst)) {
2825 field_flags |= IAVF_CLOUD_FIELD_OMAC;
2827 dev_err(&adapter->pdev->dev, "Bad ether dest mask %pM\n",
2829 return IAVF_ERR_CONFIG;
2833 if (!is_zero_ether_addr(match.mask->src)) {
2834 if (is_broadcast_ether_addr(match.mask->src)) {
2835 field_flags |= IAVF_CLOUD_FIELD_IMAC;
2837 dev_err(&adapter->pdev->dev, "Bad ether src mask %pM\n",
2839 return IAVF_ERR_CONFIG;
2843 if (!is_zero_ether_addr(match.key->dst))
2844 if (is_valid_ether_addr(match.key->dst) ||
2845 is_multicast_ether_addr(match.key->dst)) {
2846 /* set the mask if a valid dst_mac address */
2847 for (i = 0; i < ETH_ALEN; i++)
2848 vf->mask.tcp_spec.dst_mac[i] |= 0xff;
2849 ether_addr_copy(vf->data.tcp_spec.dst_mac,
2853 if (!is_zero_ether_addr(match.key->src))
2854 if (is_valid_ether_addr(match.key->src) ||
2855 is_multicast_ether_addr(match.key->src)) {
2856 /* set the mask if a valid dst_mac address */
2857 for (i = 0; i < ETH_ALEN; i++)
2858 vf->mask.tcp_spec.src_mac[i] |= 0xff;
2859 ether_addr_copy(vf->data.tcp_spec.src_mac,
2864 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_VLAN)) {
2865 struct flow_match_vlan match;
2867 flow_rule_match_vlan(rule, &match);
2868 if (match.mask->vlan_id) {
2869 if (match.mask->vlan_id == VLAN_VID_MASK) {
2870 field_flags |= IAVF_CLOUD_FIELD_IVLAN;
2872 dev_err(&adapter->pdev->dev, "Bad vlan mask %u\n",
2873 match.mask->vlan_id);
2874 return IAVF_ERR_CONFIG;
2877 vf->mask.tcp_spec.vlan_id |= cpu_to_be16(0xffff);
2878 vf->data.tcp_spec.vlan_id = cpu_to_be16(match.key->vlan_id);
2881 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_CONTROL)) {
2882 struct flow_match_control match;
2884 flow_rule_match_control(rule, &match);
2885 addr_type = match.key->addr_type;
2888 if (addr_type == FLOW_DISSECTOR_KEY_IPV4_ADDRS) {
2889 struct flow_match_ipv4_addrs match;
2891 flow_rule_match_ipv4_addrs(rule, &match);
2892 if (match.mask->dst) {
2893 if (match.mask->dst == cpu_to_be32(0xffffffff)) {
2894 field_flags |= IAVF_CLOUD_FIELD_IIP;
2896 dev_err(&adapter->pdev->dev, "Bad ip dst mask 0x%08x\n",
2897 be32_to_cpu(match.mask->dst));
2898 return IAVF_ERR_CONFIG;
2902 if (match.mask->src) {
2903 if (match.mask->src == cpu_to_be32(0xffffffff)) {
2904 field_flags |= IAVF_CLOUD_FIELD_IIP;
2906 dev_err(&adapter->pdev->dev, "Bad ip src mask 0x%08x\n",
2907 be32_to_cpu(match.mask->dst));
2908 return IAVF_ERR_CONFIG;
2912 if (field_flags & IAVF_CLOUD_FIELD_TEN_ID) {
2913 dev_info(&adapter->pdev->dev, "Tenant id not allowed for ip filter\n");
2914 return IAVF_ERR_CONFIG;
2916 if (match.key->dst) {
2917 vf->mask.tcp_spec.dst_ip[0] |= cpu_to_be32(0xffffffff);
2918 vf->data.tcp_spec.dst_ip[0] = match.key->dst;
2920 if (match.key->src) {
2921 vf->mask.tcp_spec.src_ip[0] |= cpu_to_be32(0xffffffff);
2922 vf->data.tcp_spec.src_ip[0] = match.key->src;
2926 if (addr_type == FLOW_DISSECTOR_KEY_IPV6_ADDRS) {
2927 struct flow_match_ipv6_addrs match;
2929 flow_rule_match_ipv6_addrs(rule, &match);
2931 /* validate mask, make sure it is not IPV6_ADDR_ANY */
2932 if (ipv6_addr_any(&match.mask->dst)) {
2933 dev_err(&adapter->pdev->dev, "Bad ipv6 dst mask 0x%02x\n",
2935 return IAVF_ERR_CONFIG;
2938 /* src and dest IPv6 address should not be LOOPBACK
2939 * (0:0:0:0:0:0:0:1) which can be represented as ::1
2941 if (ipv6_addr_loopback(&match.key->dst) ||
2942 ipv6_addr_loopback(&match.key->src)) {
2943 dev_err(&adapter->pdev->dev,
2944 "ipv6 addr should not be loopback\n");
2945 return IAVF_ERR_CONFIG;
2947 if (!ipv6_addr_any(&match.mask->dst) ||
2948 !ipv6_addr_any(&match.mask->src))
2949 field_flags |= IAVF_CLOUD_FIELD_IIP;
2951 for (i = 0; i < 4; i++)
2952 vf->mask.tcp_spec.dst_ip[i] |= cpu_to_be32(0xffffffff);
2953 memcpy(&vf->data.tcp_spec.dst_ip, &match.key->dst.s6_addr32,
2954 sizeof(vf->data.tcp_spec.dst_ip));
2955 for (i = 0; i < 4; i++)
2956 vf->mask.tcp_spec.src_ip[i] |= cpu_to_be32(0xffffffff);
2957 memcpy(&vf->data.tcp_spec.src_ip, &match.key->src.s6_addr32,
2958 sizeof(vf->data.tcp_spec.src_ip));
2960 if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_PORTS)) {
2961 struct flow_match_ports match;
2963 flow_rule_match_ports(rule, &match);
2964 if (match.mask->src) {
2965 if (match.mask->src == cpu_to_be16(0xffff)) {
2966 field_flags |= IAVF_CLOUD_FIELD_IIP;
2968 dev_err(&adapter->pdev->dev, "Bad src port mask %u\n",
2969 be16_to_cpu(match.mask->src));
2970 return IAVF_ERR_CONFIG;
2974 if (match.mask->dst) {
2975 if (match.mask->dst == cpu_to_be16(0xffff)) {
2976 field_flags |= IAVF_CLOUD_FIELD_IIP;
2978 dev_err(&adapter->pdev->dev, "Bad dst port mask %u\n",
2979 be16_to_cpu(match.mask->dst));
2980 return IAVF_ERR_CONFIG;
2983 if (match.key->dst) {
2984 vf->mask.tcp_spec.dst_port |= cpu_to_be16(0xffff);
2985 vf->data.tcp_spec.dst_port = match.key->dst;
2988 if (match.key->src) {
2989 vf->mask.tcp_spec.src_port |= cpu_to_be16(0xffff);
2990 vf->data.tcp_spec.src_port = match.key->src;
2993 vf->field_flags = field_flags;
2999 * iavf_handle_tclass - Forward to a traffic class on the device
3000 * @adapter: board private structure
3001 * @tc: traffic class index on the device
3002 * @filter: pointer to cloud filter structure
3004 static int iavf_handle_tclass(struct iavf_adapter *adapter, u32 tc,
3005 struct iavf_cloud_filter *filter)
3009 if (tc < adapter->num_tc) {
3010 if (!filter->f.data.tcp_spec.dst_port) {
3011 dev_err(&adapter->pdev->dev,
3012 "Specify destination port to redirect to traffic class other than TC0\n");
3016 /* redirect to a traffic class on the same device */
3017 filter->f.action = VIRTCHNL_ACTION_TC_REDIRECT;
3018 filter->f.action_meta = tc;
3023 * iavf_configure_clsflower - Add tc flower filters
3024 * @adapter: board private structure
3025 * @cls_flower: Pointer to struct flow_cls_offload
3027 static int iavf_configure_clsflower(struct iavf_adapter *adapter,
3028 struct flow_cls_offload *cls_flower)
3030 int tc = tc_classid_to_hwtc(adapter->netdev, cls_flower->classid);
3031 struct iavf_cloud_filter *filter = NULL;
3032 int err = -EINVAL, count = 50;
3035 dev_err(&adapter->pdev->dev, "Invalid traffic class\n");
3039 filter = kzalloc(sizeof(*filter), GFP_KERNEL);
3043 while (!mutex_trylock(&adapter->crit_lock)) {
3049 filter->cookie = cls_flower->cookie;
3051 /* set the mask to all zeroes to begin with */
3052 memset(&filter->f.mask.tcp_spec, 0, sizeof(struct virtchnl_l4_spec));
3053 /* start out with flow type and eth type IPv4 to begin with */
3054 filter->f.flow_type = VIRTCHNL_TCP_V4_FLOW;
3055 err = iavf_parse_cls_flower(adapter, cls_flower, filter);
3059 err = iavf_handle_tclass(adapter, tc, filter);
3063 /* add filter to the list */
3064 spin_lock_bh(&adapter->cloud_filter_list_lock);
3065 list_add_tail(&filter->list, &adapter->cloud_filter_list);
3066 adapter->num_cloud_filters++;
3068 adapter->aq_required |= IAVF_FLAG_AQ_ADD_CLOUD_FILTER;
3069 spin_unlock_bh(&adapter->cloud_filter_list_lock);
3074 mutex_unlock(&adapter->crit_lock);
3078 /* iavf_find_cf - Find the cloud filter in the list
3079 * @adapter: Board private structure
3080 * @cookie: filter specific cookie
3082 * Returns ptr to the filter object or NULL. Must be called while holding the
3083 * cloud_filter_list_lock.
3085 static struct iavf_cloud_filter *iavf_find_cf(struct iavf_adapter *adapter,
3086 unsigned long *cookie)
3088 struct iavf_cloud_filter *filter = NULL;
3093 list_for_each_entry(filter, &adapter->cloud_filter_list, list) {
3094 if (!memcmp(cookie, &filter->cookie, sizeof(filter->cookie)))
3101 * iavf_delete_clsflower - Remove tc flower filters
3102 * @adapter: board private structure
3103 * @cls_flower: Pointer to struct flow_cls_offload
3105 static int iavf_delete_clsflower(struct iavf_adapter *adapter,
3106 struct flow_cls_offload *cls_flower)
3108 struct iavf_cloud_filter *filter = NULL;
3111 spin_lock_bh(&adapter->cloud_filter_list_lock);
3112 filter = iavf_find_cf(adapter, &cls_flower->cookie);
3115 adapter->aq_required |= IAVF_FLAG_AQ_DEL_CLOUD_FILTER;
3119 spin_unlock_bh(&adapter->cloud_filter_list_lock);
3125 * iavf_setup_tc_cls_flower - flower classifier offloads
3126 * @adapter: board private structure
3127 * @cls_flower: pointer to flow_cls_offload struct with flow info
3129 static int iavf_setup_tc_cls_flower(struct iavf_adapter *adapter,
3130 struct flow_cls_offload *cls_flower)
3132 switch (cls_flower->command) {
3133 case FLOW_CLS_REPLACE:
3134 return iavf_configure_clsflower(adapter, cls_flower);
3135 case FLOW_CLS_DESTROY:
3136 return iavf_delete_clsflower(adapter, cls_flower);
3137 case FLOW_CLS_STATS:
3145 * iavf_setup_tc_block_cb - block callback for tc
3146 * @type: type of offload
3147 * @type_data: offload data
3150 * This function is the block callback for traffic classes
3152 static int iavf_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
3155 struct iavf_adapter *adapter = cb_priv;
3157 if (!tc_cls_can_offload_and_chain0(adapter->netdev, type_data))
3161 case TC_SETUP_CLSFLOWER:
3162 return iavf_setup_tc_cls_flower(cb_priv, type_data);
3168 static LIST_HEAD(iavf_block_cb_list);
3171 * iavf_setup_tc - configure multiple traffic classes
3172 * @netdev: network interface device structure
3173 * @type: type of offload
3174 * @type_data: tc offload data
3176 * This function is the callback to ndo_setup_tc in the
3179 * Returns 0 on success
3181 static int iavf_setup_tc(struct net_device *netdev, enum tc_setup_type type,
3184 struct iavf_adapter *adapter = netdev_priv(netdev);
3187 case TC_SETUP_QDISC_MQPRIO:
3188 return __iavf_setup_tc(netdev, type_data);
3189 case TC_SETUP_BLOCK:
3190 return flow_block_cb_setup_simple(type_data,
3191 &iavf_block_cb_list,
3192 iavf_setup_tc_block_cb,
3193 adapter, adapter, true);
3200 * iavf_open - Called when a network interface is made active
3201 * @netdev: network interface device structure
3203 * Returns 0 on success, negative value on failure
3205 * The open entry point is called when a network interface is made
3206 * active by the system (IFF_UP). At this point all resources needed
3207 * for transmit and receive operations are allocated, the interrupt
3208 * handler is registered with the OS, the watchdog is started,
3209 * and the stack is notified that the interface is ready.
3211 static int iavf_open(struct net_device *netdev)
3213 struct iavf_adapter *adapter = netdev_priv(netdev);
3216 if (adapter->flags & IAVF_FLAG_PF_COMMS_FAILED) {
3217 dev_err(&adapter->pdev->dev, "Unable to open device due to PF driver failure.\n");
3221 while (!mutex_trylock(&adapter->crit_lock))
3222 usleep_range(500, 1000);
3224 if (adapter->state != __IAVF_DOWN) {
3229 /* allocate transmit descriptors */
3230 err = iavf_setup_all_tx_resources(adapter);
3234 /* allocate receive descriptors */
3235 err = iavf_setup_all_rx_resources(adapter);
3239 /* clear any pending interrupts, may auto mask */
3240 err = iavf_request_traffic_irqs(adapter, netdev->name);
3244 spin_lock_bh(&adapter->mac_vlan_list_lock);
3246 iavf_add_filter(adapter, adapter->hw.mac.addr);
3248 spin_unlock_bh(&adapter->mac_vlan_list_lock);
3250 iavf_configure(adapter);
3252 iavf_up_complete(adapter);
3254 iavf_irq_enable(adapter, true);
3256 mutex_unlock(&adapter->crit_lock);
3262 iavf_free_traffic_irqs(adapter);
3264 iavf_free_all_rx_resources(adapter);
3266 iavf_free_all_tx_resources(adapter);
3268 mutex_unlock(&adapter->crit_lock);
3274 * iavf_close - Disables a network interface
3275 * @netdev: network interface device structure
3277 * Returns 0, this is not allowed to fail
3279 * The close entry point is called when an interface is de-activated
3280 * by the OS. The hardware is still under the drivers control, but
3281 * needs to be disabled. All IRQs except vector 0 (reserved for admin queue)
3282 * are freed, along with all transmit and receive resources.
3284 static int iavf_close(struct net_device *netdev)
3286 struct iavf_adapter *adapter = netdev_priv(netdev);
3289 if (adapter->state <= __IAVF_DOWN_PENDING)
3292 while (!mutex_trylock(&adapter->crit_lock))
3293 usleep_range(500, 1000);
3295 set_bit(__IAVF_VSI_DOWN, adapter->vsi.state);
3296 if (CLIENT_ENABLED(adapter))
3297 adapter->flags |= IAVF_FLAG_CLIENT_NEEDS_CLOSE;
3300 adapter->state = __IAVF_DOWN_PENDING;
3301 iavf_free_traffic_irqs(adapter);
3303 mutex_unlock(&adapter->crit_lock);
3305 /* We explicitly don't free resources here because the hardware is
3306 * still active and can DMA into memory. Resources are cleared in
3307 * iavf_virtchnl_completion() after we get confirmation from the PF
3308 * driver that the rings have been stopped.
3310 * Also, we wait for state to transition to __IAVF_DOWN before
3311 * returning. State change occurs in iavf_virtchnl_completion() after
3312 * VF resources are released (which occurs after PF driver processes and
3313 * responds to admin queue commands).
3316 status = wait_event_timeout(adapter->down_waitqueue,
3317 adapter->state == __IAVF_DOWN,
3318 msecs_to_jiffies(500));
3320 netdev_warn(netdev, "Device resources not yet released\n");
3325 * iavf_change_mtu - Change the Maximum Transfer Unit
3326 * @netdev: network interface device structure
3327 * @new_mtu: new value for maximum frame size
3329 * Returns 0 on success, negative on failure
3331 static int iavf_change_mtu(struct net_device *netdev, int new_mtu)
3333 struct iavf_adapter *adapter = netdev_priv(netdev);
3335 netdev->mtu = new_mtu;
3336 if (CLIENT_ENABLED(adapter)) {
3337 iavf_notify_client_l2_params(&adapter->vsi);
3338 adapter->flags |= IAVF_FLAG_SERVICE_CLIENT_REQUESTED;
3340 adapter->flags |= IAVF_FLAG_RESET_NEEDED;
3341 queue_work(iavf_wq, &adapter->reset_task);
3347 * iavf_set_features - set the netdev feature flags
3348 * @netdev: ptr to the netdev being adjusted
3349 * @features: the feature set that the stack is suggesting
3350 * Note: expects to be called while under rtnl_lock()
3352 static int iavf_set_features(struct net_device *netdev,
3353 netdev_features_t features)
3355 struct iavf_adapter *adapter = netdev_priv(netdev);
3357 /* Don't allow changing VLAN_RX flag when adapter is not capable
3360 if (!VLAN_ALLOWED(adapter)) {
3361 if ((netdev->features ^ features) & NETIF_F_HW_VLAN_CTAG_RX)
3363 } else if ((netdev->features ^ features) & NETIF_F_HW_VLAN_CTAG_RX) {
3364 if (features & NETIF_F_HW_VLAN_CTAG_RX)
3365 adapter->aq_required |=
3366 IAVF_FLAG_AQ_ENABLE_VLAN_STRIPPING;
3368 adapter->aq_required |=
3369 IAVF_FLAG_AQ_DISABLE_VLAN_STRIPPING;
3376 * iavf_features_check - Validate encapsulated packet conforms to limits
3378 * @dev: This physical port's netdev
3379 * @features: Offload features that the stack believes apply
3381 static netdev_features_t iavf_features_check(struct sk_buff *skb,
3382 struct net_device *dev,
3383 netdev_features_t features)
3387 /* No point in doing any of this if neither checksum nor GSO are
3388 * being requested for this frame. We can rule out both by just
3389 * checking for CHECKSUM_PARTIAL
3391 if (skb->ip_summed != CHECKSUM_PARTIAL)
3394 /* We cannot support GSO if the MSS is going to be less than
3395 * 64 bytes. If it is then we need to drop support for GSO.
3397 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_size < 64))
3398 features &= ~NETIF_F_GSO_MASK;
3400 /* MACLEN can support at most 63 words */
3401 len = skb_network_header(skb) - skb->data;
3402 if (len & ~(63 * 2))
3405 /* IPLEN and EIPLEN can support at most 127 dwords */
3406 len = skb_transport_header(skb) - skb_network_header(skb);
3407 if (len & ~(127 * 4))
3410 if (skb->encapsulation) {
3411 /* L4TUNLEN can support 127 words */
3412 len = skb_inner_network_header(skb) - skb_transport_header(skb);
3413 if (len & ~(127 * 2))
3416 /* IPLEN can support at most 127 dwords */
3417 len = skb_inner_transport_header(skb) -
3418 skb_inner_network_header(skb);
3419 if (len & ~(127 * 4))
3423 /* No need to validate L4LEN as TCP is the only protocol with a
3424 * a flexible value and we support all possible values supported
3425 * by TCP, which is at most 15 dwords
3430 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
3434 * iavf_fix_features - fix up the netdev feature bits
3435 * @netdev: our net device
3436 * @features: desired feature bits
3438 * Returns fixed-up features bits
3440 static netdev_features_t iavf_fix_features(struct net_device *netdev,
3441 netdev_features_t features)
3443 struct iavf_adapter *adapter = netdev_priv(netdev);
3445 if (!(adapter->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN))
3446 features &= ~(NETIF_F_HW_VLAN_CTAG_TX |
3447 NETIF_F_HW_VLAN_CTAG_RX |
3448 NETIF_F_HW_VLAN_CTAG_FILTER);
3453 static const struct net_device_ops iavf_netdev_ops = {
3454 .ndo_open = iavf_open,
3455 .ndo_stop = iavf_close,
3456 .ndo_start_xmit = iavf_xmit_frame,
3457 .ndo_set_rx_mode = iavf_set_rx_mode,
3458 .ndo_validate_addr = eth_validate_addr,
3459 .ndo_set_mac_address = iavf_set_mac,
3460 .ndo_change_mtu = iavf_change_mtu,
3461 .ndo_tx_timeout = iavf_tx_timeout,
3462 .ndo_vlan_rx_add_vid = iavf_vlan_rx_add_vid,
3463 .ndo_vlan_rx_kill_vid = iavf_vlan_rx_kill_vid,
3464 .ndo_features_check = iavf_features_check,
3465 .ndo_fix_features = iavf_fix_features,
3466 .ndo_set_features = iavf_set_features,
3467 .ndo_setup_tc = iavf_setup_tc,
3471 * iavf_check_reset_complete - check that VF reset is complete
3472 * @hw: pointer to hw struct
3474 * Returns 0 if device is ready to use, or -EBUSY if it's in reset.
3476 static int iavf_check_reset_complete(struct iavf_hw *hw)
3481 for (i = 0; i < IAVF_RESET_WAIT_COMPLETE_COUNT; i++) {
3482 rstat = rd32(hw, IAVF_VFGEN_RSTAT) &
3483 IAVF_VFGEN_RSTAT_VFR_STATE_MASK;
3484 if ((rstat == VIRTCHNL_VFR_VFACTIVE) ||
3485 (rstat == VIRTCHNL_VFR_COMPLETED))
3487 usleep_range(10, 20);
3493 * iavf_process_config - Process the config information we got from the PF
3494 * @adapter: board private structure
3496 * Verify that we have a valid config struct, and set up our netdev features
3497 * and our VSI struct.
3499 int iavf_process_config(struct iavf_adapter *adapter)
3501 struct virtchnl_vf_resource *vfres = adapter->vf_res;
3502 int i, num_req_queues = adapter->num_req_queues;
3503 struct net_device *netdev = adapter->netdev;
3504 struct iavf_vsi *vsi = &adapter->vsi;
3505 netdev_features_t hw_enc_features;
3506 netdev_features_t hw_features;
3508 /* got VF config message back from PF, now we can parse it */
3509 for (i = 0; i < vfres->num_vsis; i++) {
3510 if (vfres->vsi_res[i].vsi_type == VIRTCHNL_VSI_SRIOV)
3511 adapter->vsi_res = &vfres->vsi_res[i];
3513 if (!adapter->vsi_res) {
3514 dev_err(&adapter->pdev->dev, "No LAN VSI found\n");
3518 if (num_req_queues &&
3519 num_req_queues > adapter->vsi_res->num_queue_pairs) {
3520 /* Problem. The PF gave us fewer queues than what we had
3521 * negotiated in our request. Need a reset to see if we can't
3522 * get back to a working state.
3524 dev_err(&adapter->pdev->dev,
3525 "Requested %d queues, but PF only gave us %d.\n",
3527 adapter->vsi_res->num_queue_pairs);
3528 adapter->flags |= IAVF_FLAG_REINIT_ITR_NEEDED;
3529 adapter->num_req_queues = adapter->vsi_res->num_queue_pairs;
3530 iavf_schedule_reset(adapter);
3533 adapter->num_req_queues = 0;
3535 hw_enc_features = NETIF_F_SG |
3539 NETIF_F_SOFT_FEATURES |
3548 /* advertise to stack only if offloads for encapsulated packets is
3551 if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_ENCAP) {
3552 hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL |
3554 NETIF_F_GSO_GRE_CSUM |
3555 NETIF_F_GSO_IPXIP4 |
3556 NETIF_F_GSO_IPXIP6 |
3557 NETIF_F_GSO_UDP_TUNNEL_CSUM |
3558 NETIF_F_GSO_PARTIAL |
3561 if (!(vfres->vf_cap_flags &
3562 VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM))
3563 netdev->gso_partial_features |=
3564 NETIF_F_GSO_UDP_TUNNEL_CSUM;
3566 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
3567 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
3568 netdev->hw_enc_features |= hw_enc_features;
3570 /* record features VLANs can make use of */
3571 netdev->vlan_features |= hw_enc_features | NETIF_F_TSO_MANGLEID;
3573 /* Write features and hw_features separately to avoid polluting
3574 * with, or dropping, features that are set when we registered.
3576 hw_features = hw_enc_features;
3578 /* Enable VLAN features if supported */
3579 if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN)
3580 hw_features |= (NETIF_F_HW_VLAN_CTAG_TX |
3581 NETIF_F_HW_VLAN_CTAG_RX);
3582 /* Enable cloud filter if ADQ is supported */
3583 if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_ADQ)
3584 hw_features |= NETIF_F_HW_TC;
3585 if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_USO)
3586 hw_features |= NETIF_F_GSO_UDP_L4;
3588 netdev->hw_features |= hw_features;
3590 netdev->features |= hw_features;
3592 if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN)
3593 netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
3595 netdev->priv_flags |= IFF_UNICAST_FLT;
3597 /* Do not turn on offloads when they are requested to be turned off.
3598 * TSO needs minimum 576 bytes to work correctly.
3600 if (netdev->wanted_features) {
3601 if (!(netdev->wanted_features & NETIF_F_TSO) ||
3603 netdev->features &= ~NETIF_F_TSO;
3604 if (!(netdev->wanted_features & NETIF_F_TSO6) ||
3606 netdev->features &= ~NETIF_F_TSO6;
3607 if (!(netdev->wanted_features & NETIF_F_TSO_ECN))
3608 netdev->features &= ~NETIF_F_TSO_ECN;
3609 if (!(netdev->wanted_features & NETIF_F_GRO))
3610 netdev->features &= ~NETIF_F_GRO;
3611 if (!(netdev->wanted_features & NETIF_F_GSO))
3612 netdev->features &= ~NETIF_F_GSO;
3615 adapter->vsi.id = adapter->vsi_res->vsi_id;
3617 adapter->vsi.back = adapter;
3618 adapter->vsi.base_vector = 1;
3619 adapter->vsi.work_limit = IAVF_DEFAULT_IRQ_WORK;
3620 vsi->netdev = adapter->netdev;
3621 vsi->qs_handle = adapter->vsi_res->qset_handle;
3622 if (vfres->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF) {
3623 adapter->rss_key_size = vfres->rss_key_size;
3624 adapter->rss_lut_size = vfres->rss_lut_size;
3626 adapter->rss_key_size = IAVF_HKEY_ARRAY_SIZE;
3627 adapter->rss_lut_size = IAVF_HLUT_ARRAY_SIZE;
3634 * iavf_init_task - worker thread to perform delayed initialization
3635 * @work: pointer to work_struct containing our data
3637 * This task completes the work that was begun in probe. Due to the nature
3638 * of VF-PF communications, we may need to wait tens of milliseconds to get
3639 * responses back from the PF. Rather than busy-wait in probe and bog down the
3640 * whole system, we'll do it in a task so we can sleep.
3641 * This task only runs during driver init. Once we've established
3642 * communications with the PF driver and set up our netdev, the watchdog
3645 static void iavf_init_task(struct work_struct *work)
3647 struct iavf_adapter *adapter = container_of(work,
3648 struct iavf_adapter,
3650 struct iavf_hw *hw = &adapter->hw;
3652 if (iavf_lock_timeout(&adapter->crit_lock, 5000)) {
3653 dev_warn(&adapter->pdev->dev, "failed to acquire crit_lock in %s\n", __FUNCTION__);
3656 switch (adapter->state) {
3657 case __IAVF_STARTUP:
3658 if (iavf_startup(adapter) < 0)
3661 case __IAVF_INIT_VERSION_CHECK:
3662 if (iavf_init_version_check(adapter) < 0)
3665 case __IAVF_INIT_GET_RESOURCES:
3666 if (iavf_init_get_resources(adapter) < 0)
3673 queue_delayed_work(iavf_wq, &adapter->init_task,
3674 msecs_to_jiffies(30));
3677 if (++adapter->aq_wait_count > IAVF_AQ_MAX_ERR) {
3678 dev_err(&adapter->pdev->dev,
3679 "Failed to communicate with PF; waiting before retry\n");
3680 adapter->flags |= IAVF_FLAG_PF_COMMS_FAILED;
3681 iavf_shutdown_adminq(hw);
3682 adapter->state = __IAVF_STARTUP;
3683 queue_delayed_work(iavf_wq, &adapter->init_task, HZ * 5);
3686 queue_delayed_work(iavf_wq, &adapter->init_task, HZ);
3688 mutex_unlock(&adapter->crit_lock);
3692 * iavf_shutdown - Shutdown the device in preparation for a reboot
3693 * @pdev: pci device structure
3695 static void iavf_shutdown(struct pci_dev *pdev)
3697 struct net_device *netdev = pci_get_drvdata(pdev);
3698 struct iavf_adapter *adapter = netdev_priv(netdev);
3700 netif_device_detach(netdev);
3702 if (netif_running(netdev))
3705 if (iavf_lock_timeout(&adapter->crit_lock, 5000))
3706 dev_warn(&adapter->pdev->dev, "failed to acquire crit_lock in %s\n", __FUNCTION__);
3707 /* Prevent the watchdog from running. */
3708 adapter->state = __IAVF_REMOVE;
3709 adapter->aq_required = 0;
3710 mutex_unlock(&adapter->crit_lock);
3713 pci_save_state(pdev);
3716 pci_disable_device(pdev);
3720 * iavf_probe - Device Initialization Routine
3721 * @pdev: PCI device information struct
3722 * @ent: entry in iavf_pci_tbl
3724 * Returns 0 on success, negative on failure
3726 * iavf_probe initializes an adapter identified by a pci_dev structure.
3727 * The OS initialization, configuring of the adapter private structure,
3728 * and a hardware reset occur.
3730 static int iavf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
3732 struct net_device *netdev;
3733 struct iavf_adapter *adapter = NULL;
3734 struct iavf_hw *hw = NULL;
3737 err = pci_enable_device(pdev);
3741 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
3743 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
3746 "DMA configuration failed: 0x%x\n", err);
3751 err = pci_request_regions(pdev, iavf_driver_name);
3754 "pci_request_regions failed 0x%x\n", err);
3758 pci_enable_pcie_error_reporting(pdev);
3760 pci_set_master(pdev);
3762 netdev = alloc_etherdev_mq(sizeof(struct iavf_adapter),
3763 IAVF_MAX_REQ_QUEUES);
3766 goto err_alloc_etherdev;
3769 SET_NETDEV_DEV(netdev, &pdev->dev);
3771 pci_set_drvdata(pdev, netdev);
3772 adapter = netdev_priv(netdev);
3774 adapter->netdev = netdev;
3775 adapter->pdev = pdev;
3780 adapter->msg_enable = BIT(DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
3781 adapter->state = __IAVF_STARTUP;
3783 /* Call save state here because it relies on the adapter struct. */
3784 pci_save_state(pdev);
3786 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
3787 pci_resource_len(pdev, 0));
3792 hw->vendor_id = pdev->vendor;
3793 hw->device_id = pdev->device;
3794 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
3795 hw->subsystem_vendor_id = pdev->subsystem_vendor;
3796 hw->subsystem_device_id = pdev->subsystem_device;
3797 hw->bus.device = PCI_SLOT(pdev->devfn);
3798 hw->bus.func = PCI_FUNC(pdev->devfn);
3799 hw->bus.bus_id = pdev->bus->number;
3801 /* set up the locks for the AQ, do this only once in probe
3802 * and destroy them only once in remove
3804 mutex_init(&adapter->crit_lock);
3805 mutex_init(&adapter->client_lock);
3806 mutex_init(&adapter->remove_lock);
3807 mutex_init(&hw->aq.asq_mutex);
3808 mutex_init(&hw->aq.arq_mutex);
3810 spin_lock_init(&adapter->mac_vlan_list_lock);
3811 spin_lock_init(&adapter->cloud_filter_list_lock);
3812 spin_lock_init(&adapter->fdir_fltr_lock);
3813 spin_lock_init(&adapter->adv_rss_lock);
3815 INIT_LIST_HEAD(&adapter->mac_filter_list);
3816 INIT_LIST_HEAD(&adapter->vlan_filter_list);
3817 INIT_LIST_HEAD(&adapter->cloud_filter_list);
3818 INIT_LIST_HEAD(&adapter->fdir_list_head);
3819 INIT_LIST_HEAD(&adapter->adv_rss_list_head);
3821 INIT_WORK(&adapter->reset_task, iavf_reset_task);
3822 INIT_WORK(&adapter->adminq_task, iavf_adminq_task);
3823 INIT_DELAYED_WORK(&adapter->watchdog_task, iavf_watchdog_task);
3824 INIT_DELAYED_WORK(&adapter->client_task, iavf_client_task);
3825 INIT_DELAYED_WORK(&adapter->init_task, iavf_init_task);
3826 queue_delayed_work(iavf_wq, &adapter->init_task,
3827 msecs_to_jiffies(5 * (pdev->devfn & 0x07)));
3829 /* Setup the wait queue for indicating transition to down status */
3830 init_waitqueue_head(&adapter->down_waitqueue);
3835 free_netdev(netdev);
3837 pci_disable_pcie_error_reporting(pdev);
3838 pci_release_regions(pdev);
3841 pci_disable_device(pdev);
3846 * iavf_suspend - Power management suspend routine
3847 * @dev_d: device info pointer
3849 * Called when the system (VM) is entering sleep/suspend.
3851 static int __maybe_unused iavf_suspend(struct device *dev_d)
3853 struct net_device *netdev = dev_get_drvdata(dev_d);
3854 struct iavf_adapter *adapter = netdev_priv(netdev);
3856 netif_device_detach(netdev);
3858 while (!mutex_trylock(&adapter->crit_lock))
3859 usleep_range(500, 1000);
3861 if (netif_running(netdev)) {
3866 iavf_free_misc_irq(adapter);
3867 iavf_reset_interrupt_capability(adapter);
3869 mutex_unlock(&adapter->crit_lock);
3875 * iavf_resume - Power management resume routine
3876 * @dev_d: device info pointer
3878 * Called when the system (VM) is resumed from sleep/suspend.
3880 static int __maybe_unused iavf_resume(struct device *dev_d)
3882 struct pci_dev *pdev = to_pci_dev(dev_d);
3883 struct net_device *netdev = pci_get_drvdata(pdev);
3884 struct iavf_adapter *adapter = netdev_priv(netdev);
3887 pci_set_master(pdev);
3890 err = iavf_set_interrupt_capability(adapter);
3893 dev_err(&pdev->dev, "Cannot enable MSI-X interrupts.\n");
3896 err = iavf_request_misc_irq(adapter);
3899 dev_err(&pdev->dev, "Cannot get interrupt vector.\n");
3903 queue_work(iavf_wq, &adapter->reset_task);
3905 netif_device_attach(netdev);
3911 * iavf_remove - Device Removal Routine
3912 * @pdev: PCI device information struct
3914 * iavf_remove is called by the PCI subsystem to alert the driver
3915 * that it should release a PCI device. The could be caused by a
3916 * Hot-Plug event, or because the driver is going to be removed from
3919 static void iavf_remove(struct pci_dev *pdev)
3921 struct net_device *netdev = pci_get_drvdata(pdev);
3922 struct iavf_adapter *adapter = netdev_priv(netdev);
3923 struct iavf_fdir_fltr *fdir, *fdirtmp;
3924 struct iavf_vlan_filter *vlf, *vlftmp;
3925 struct iavf_adv_rss *rss, *rsstmp;
3926 struct iavf_mac_filter *f, *ftmp;
3927 struct iavf_cloud_filter *cf, *cftmp;
3928 struct iavf_hw *hw = &adapter->hw;
3930 /* Indicate we are in remove and not to run reset_task */
3931 mutex_lock(&adapter->remove_lock);
3932 cancel_delayed_work_sync(&adapter->init_task);
3933 cancel_work_sync(&adapter->reset_task);
3934 cancel_delayed_work_sync(&adapter->client_task);
3935 if (adapter->netdev_registered) {
3936 unregister_netdev(netdev);
3937 adapter->netdev_registered = false;
3939 if (CLIENT_ALLOWED(adapter)) {
3940 err = iavf_lan_del_device(adapter);
3942 dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
3946 iavf_request_reset(adapter);
3948 /* If the FW isn't responding, kick it once, but only once. */
3949 if (!iavf_asq_done(hw)) {
3950 iavf_request_reset(adapter);
3953 if (iavf_lock_timeout(&adapter->crit_lock, 5000))
3954 dev_warn(&adapter->pdev->dev, "failed to acquire crit_lock in %s\n", __FUNCTION__);
3956 /* Shut down all the garbage mashers on the detention level */
3957 adapter->state = __IAVF_REMOVE;
3958 adapter->aq_required = 0;
3959 adapter->flags &= ~IAVF_FLAG_REINIT_ITR_NEEDED;
3960 iavf_free_all_tx_resources(adapter);
3961 iavf_free_all_rx_resources(adapter);
3962 iavf_misc_irq_disable(adapter);
3963 iavf_free_misc_irq(adapter);
3964 iavf_reset_interrupt_capability(adapter);
3965 iavf_free_q_vectors(adapter);
3967 cancel_delayed_work_sync(&adapter->watchdog_task);
3969 cancel_work_sync(&adapter->adminq_task);
3971 iavf_free_rss(adapter);
3973 if (hw->aq.asq.count)
3974 iavf_shutdown_adminq(hw);
3976 /* destroy the locks only once, here */
3977 mutex_destroy(&hw->aq.arq_mutex);
3978 mutex_destroy(&hw->aq.asq_mutex);
3979 mutex_destroy(&adapter->client_lock);
3980 mutex_unlock(&adapter->crit_lock);
3981 mutex_destroy(&adapter->crit_lock);
3982 mutex_unlock(&adapter->remove_lock);
3983 mutex_destroy(&adapter->remove_lock);
3985 iounmap(hw->hw_addr);
3986 pci_release_regions(pdev);
3987 iavf_free_queues(adapter);
3988 kfree(adapter->vf_res);
3989 spin_lock_bh(&adapter->mac_vlan_list_lock);
3990 /* If we got removed before an up/down sequence, we've got a filter
3991 * hanging out there that we need to get rid of.
3993 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
3997 list_for_each_entry_safe(vlf, vlftmp, &adapter->vlan_filter_list,
3999 list_del(&vlf->list);
4003 spin_unlock_bh(&adapter->mac_vlan_list_lock);
4005 spin_lock_bh(&adapter->cloud_filter_list_lock);
4006 list_for_each_entry_safe(cf, cftmp, &adapter->cloud_filter_list, list) {
4007 list_del(&cf->list);
4010 spin_unlock_bh(&adapter->cloud_filter_list_lock);
4012 spin_lock_bh(&adapter->fdir_fltr_lock);
4013 list_for_each_entry_safe(fdir, fdirtmp, &adapter->fdir_list_head, list) {
4014 list_del(&fdir->list);
4017 spin_unlock_bh(&adapter->fdir_fltr_lock);
4019 spin_lock_bh(&adapter->adv_rss_lock);
4020 list_for_each_entry_safe(rss, rsstmp, &adapter->adv_rss_list_head,
4022 list_del(&rss->list);
4025 spin_unlock_bh(&adapter->adv_rss_lock);
4027 free_netdev(netdev);
4029 pci_disable_pcie_error_reporting(pdev);
4031 pci_disable_device(pdev);
4034 static SIMPLE_DEV_PM_OPS(iavf_pm_ops, iavf_suspend, iavf_resume);
4036 static struct pci_driver iavf_driver = {
4037 .name = iavf_driver_name,
4038 .id_table = iavf_pci_tbl,
4039 .probe = iavf_probe,
4040 .remove = iavf_remove,
4041 .driver.pm = &iavf_pm_ops,
4042 .shutdown = iavf_shutdown,
4046 * iavf_init_module - Driver Registration Routine
4048 * iavf_init_module is the first routine called when the driver is
4049 * loaded. All it does is register with the PCI subsystem.
4051 static int __init iavf_init_module(void)
4055 pr_info("iavf: %s\n", iavf_driver_string);
4057 pr_info("%s\n", iavf_copyright);
4059 iavf_wq = alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1,
4062 pr_err("%s: Failed to create workqueue\n", iavf_driver_name);
4065 ret = pci_register_driver(&iavf_driver);
4069 module_init(iavf_init_module);
4072 * iavf_exit_module - Driver Exit Cleanup Routine
4074 * iavf_exit_module is called just before the driver is removed
4077 static void __exit iavf_exit_module(void)
4079 pci_unregister_driver(&iavf_driver);
4080 destroy_workqueue(iavf_wq);
4083 module_exit(iavf_exit_module);