15ec8b7d1SJesse Brandeburg /* SPDX-License-Identifier: GPL-2.0 */
25ec8b7d1SJesse Brandeburg /* Copyright(c) 2013 - 2018 Intel Corporation. */
35ec8b7d1SJesse Brandeburg
45ec8b7d1SJesse Brandeburg #ifndef _IAVF_H_
55ec8b7d1SJesse Brandeburg #define _IAVF_H_
65ec8b7d1SJesse Brandeburg
75ec8b7d1SJesse Brandeburg #include <linux/module.h>
85ec8b7d1SJesse Brandeburg #include <linux/pci.h>
95ec8b7d1SJesse Brandeburg #include <linux/netdevice.h>
105ec8b7d1SJesse Brandeburg #include <linux/vmalloc.h>
115ec8b7d1SJesse Brandeburg #include <linux/interrupt.h>
125ec8b7d1SJesse Brandeburg #include <linux/ethtool.h>
135ec8b7d1SJesse Brandeburg #include <linux/if_vlan.h>
145ec8b7d1SJesse Brandeburg #include <linux/ip.h>
155ec8b7d1SJesse Brandeburg #include <linux/tcp.h>
165ec8b7d1SJesse Brandeburg #include <linux/sctp.h>
175ec8b7d1SJesse Brandeburg #include <linux/ipv6.h>
185ec8b7d1SJesse Brandeburg #include <linux/kernel.h>
195ec8b7d1SJesse Brandeburg #include <linux/bitops.h>
205ec8b7d1SJesse Brandeburg #include <linux/timer.h>
215ec8b7d1SJesse Brandeburg #include <linux/workqueue.h>
225ec8b7d1SJesse Brandeburg #include <linux/wait.h>
235ec8b7d1SJesse Brandeburg #include <linux/delay.h>
245ec8b7d1SJesse Brandeburg #include <linux/gfp.h>
255ec8b7d1SJesse Brandeburg #include <linux/skbuff.h>
265ec8b7d1SJesse Brandeburg #include <linux/dma-mapping.h>
275ec8b7d1SJesse Brandeburg #include <linux/etherdevice.h>
285ec8b7d1SJesse Brandeburg #include <linux/socket.h>
295ec8b7d1SJesse Brandeburg #include <linux/jiffies.h>
305ec8b7d1SJesse Brandeburg #include <net/ip6_checksum.h>
315ec8b7d1SJesse Brandeburg #include <net/pkt_cls.h>
329adafe2bSVladimir Oltean #include <net/pkt_sched.h>
335ec8b7d1SJesse Brandeburg #include <net/udp.h>
345ec8b7d1SJesse Brandeburg #include <net/tc_act/tc_gact.h>
355ec8b7d1SJesse Brandeburg #include <net/tc_act/tc_mirred.h>
365ec8b7d1SJesse Brandeburg
3766bc8e0fSJesse Brandeburg #include "iavf_type.h"
385ec8b7d1SJesse Brandeburg #include <linux/avf/virtchnl.h>
395ec8b7d1SJesse Brandeburg #include "iavf_txrx.h"
400dbfbabbSHaiyue Wang #include "iavf_fdir.h"
410aaeb4fbSHaiyue Wang #include "iavf_adv_rss.h"
4242930142SAkeem G Abodunrin #include <linux/bitmap.h>
435ec8b7d1SJesse Brandeburg
445ec8b7d1SJesse Brandeburg #define DEFAULT_DEBUG_LEVEL_SHIFT 3
455ec8b7d1SJesse Brandeburg #define PFX "iavf: "
465ec8b7d1SJesse Brandeburg
47bae569d0SMateusz Palczewski int iavf_status_to_errno(enum iavf_status status);
48bae569d0SMateusz Palczewski int virtchnl_status_to_errno(enum virtchnl_status_code v_status);
49bae569d0SMateusz Palczewski
505ec8b7d1SJesse Brandeburg /* VSI state flags shared with common code */
515ec8b7d1SJesse Brandeburg enum iavf_vsi_state_t {
5256184e01SJesse Brandeburg __IAVF_VSI_DOWN,
535ec8b7d1SJesse Brandeburg /* This must be last as it determines the size of the BITMAP */
5456184e01SJesse Brandeburg __IAVF_VSI_STATE_SIZE__,
555ec8b7d1SJesse Brandeburg };
565ec8b7d1SJesse Brandeburg
575ec8b7d1SJesse Brandeburg /* dummy struct to make common code less painful */
5856184e01SJesse Brandeburg struct iavf_vsi {
595ec8b7d1SJesse Brandeburg struct iavf_adapter *back;
605ec8b7d1SJesse Brandeburg struct net_device *netdev;
615ec8b7d1SJesse Brandeburg u16 seid;
625ec8b7d1SJesse Brandeburg u16 id;
6356184e01SJesse Brandeburg DECLARE_BITMAP(state, __IAVF_VSI_STATE_SIZE__);
645ec8b7d1SJesse Brandeburg int base_vector;
655ec8b7d1SJesse Brandeburg u16 qs_handle;
665ec8b7d1SJesse Brandeburg void *priv; /* client driver data reference. */
675ec8b7d1SJesse Brandeburg };
685ec8b7d1SJesse Brandeburg
695ec8b7d1SJesse Brandeburg /* How many Rx Buffers do we bundle into one write to the hardware ? */
705ec8b7d1SJesse Brandeburg #define IAVF_RX_BUFFER_WRITE 16 /* Must be power of 2 */
715ec8b7d1SJesse Brandeburg #define IAVF_DEFAULT_TXD 512
725ec8b7d1SJesse Brandeburg #define IAVF_DEFAULT_RXD 512
735ec8b7d1SJesse Brandeburg #define IAVF_MAX_TXD 4096
745ec8b7d1SJesse Brandeburg #define IAVF_MIN_TXD 64
755ec8b7d1SJesse Brandeburg #define IAVF_MAX_RXD 4096
765ec8b7d1SJesse Brandeburg #define IAVF_MIN_RXD 64
775ec8b7d1SJesse Brandeburg #define IAVF_REQ_DESCRIPTOR_MULTIPLE 32
785ec8b7d1SJesse Brandeburg #define IAVF_MAX_AQ_BUF_SIZE 4096
795ec8b7d1SJesse Brandeburg #define IAVF_AQ_LEN 32
805ec8b7d1SJesse Brandeburg #define IAVF_AQ_MAX_ERR 20 /* times to try before resetting AQ */
815ec8b7d1SJesse Brandeburg
825ec8b7d1SJesse Brandeburg #define MAXIMUM_ETHERNET_VLAN_SIZE (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN)
835ec8b7d1SJesse Brandeburg
8456184e01SJesse Brandeburg #define IAVF_RX_DESC(R, i) (&(((union iavf_32byte_rx_desc *)((R)->desc))[i]))
8556184e01SJesse Brandeburg #define IAVF_TX_DESC(R, i) (&(((struct iavf_tx_desc *)((R)->desc))[i]))
86f1cad2ceSJesse Brandeburg #define IAVF_TX_CTXTDESC(R, i) \
8756184e01SJesse Brandeburg (&(((struct iavf_tx_context_desc *)((R)->desc))[i]))
885520deb1SMitch Williams #define IAVF_MAX_REQ_QUEUES 16
895ec8b7d1SJesse Brandeburg
90f1cad2ceSJesse Brandeburg #define IAVF_HKEY_ARRAY_SIZE ((IAVF_VFQF_HKEY_MAX_INDEX + 1) * 4)
91f1cad2ceSJesse Brandeburg #define IAVF_HLUT_ARRAY_SIZE ((IAVF_VFQF_HLUT_MAX_INDEX + 1) * 4)
925ec8b7d1SJesse Brandeburg #define IAVF_MBPS_DIVISOR 125000 /* divisor to convert to Mbps */
93ec60d54cSPrzemyslaw Patynowski #define IAVF_MBPS_QUANTA 50
945ec8b7d1SJesse Brandeburg
955e7f59faSAlexander Lobakin #define IAVF_VIRTCHNL_VF_RESOURCE_SIZE \
965e7f59faSAlexander Lobakin virtchnl_struct_size((struct virtchnl_vf_resource *)NULL, \
975e7f59faSAlexander Lobakin vsi_res, IAVF_MAX_VF_VSI)
98e0ef26fbSBrett Creeley
995ec8b7d1SJesse Brandeburg /* MAX_MSIX_Q_VECTORS of these are allocated,
1005ec8b7d1SJesse Brandeburg * but we only use one per queue-specific vector.
1015ec8b7d1SJesse Brandeburg */
10256184e01SJesse Brandeburg struct iavf_q_vector {
1035ec8b7d1SJesse Brandeburg struct iavf_adapter *adapter;
10456184e01SJesse Brandeburg struct iavf_vsi *vsi;
1055ec8b7d1SJesse Brandeburg struct napi_struct napi;
10656184e01SJesse Brandeburg struct iavf_ring_container rx;
10756184e01SJesse Brandeburg struct iavf_ring_container tx;
1085ec8b7d1SJesse Brandeburg u32 ring_mask;
1095ec8b7d1SJesse Brandeburg u8 itr_countdown; /* when 0 should adjust adaptive ITR */
1105ec8b7d1SJesse Brandeburg u8 num_ringpairs; /* total number of ring pairs in vector */
1115ec8b7d1SJesse Brandeburg u16 v_idx; /* index in the vsi->q_vector array. */
1125ec8b7d1SJesse Brandeburg u16 reg_idx; /* register index of the interrupt */
1135ec8b7d1SJesse Brandeburg char name[IFNAMSIZ + 15];
1145ec8b7d1SJesse Brandeburg bool arm_wb_state;
1155ec8b7d1SJesse Brandeburg cpumask_t affinity_mask;
1165ec8b7d1SJesse Brandeburg struct irq_affinity_notify affinity_notify;
1175ec8b7d1SJesse Brandeburg };
1185ec8b7d1SJesse Brandeburg
1195ec8b7d1SJesse Brandeburg /* Helper macros to switch between ints/sec and what the register uses.
1205ec8b7d1SJesse Brandeburg * And yes, it's the same math going both ways. The lowest value
12153b79907SAlice Michael * supported by all of the iavf hardware is 8.
1225ec8b7d1SJesse Brandeburg */
1235ec8b7d1SJesse Brandeburg #define EITR_INTS_PER_SEC_TO_REG(_eitr) \
1245ec8b7d1SJesse Brandeburg ((_eitr) ? (1000000000 / ((_eitr) * 256)) : 8)
1255ec8b7d1SJesse Brandeburg #define EITR_REG_TO_INTS_PER_SEC EITR_INTS_PER_SEC_TO_REG
1265ec8b7d1SJesse Brandeburg
1275ec8b7d1SJesse Brandeburg #define IAVF_DESC_UNUSED(R) \
1285ec8b7d1SJesse Brandeburg ((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
1295ec8b7d1SJesse Brandeburg (R)->next_to_clean - (R)->next_to_use - 1)
1305ec8b7d1SJesse Brandeburg
1315ec8b7d1SJesse Brandeburg #define OTHER_VECTOR 1
1325ec8b7d1SJesse Brandeburg #define NONQ_VECS (OTHER_VECTOR)
1335ec8b7d1SJesse Brandeburg
1345ec8b7d1SJesse Brandeburg #define MIN_MSIX_Q_VECTORS 1
1355ec8b7d1SJesse Brandeburg #define MIN_MSIX_COUNT (MIN_MSIX_Q_VECTORS + NONQ_VECS)
1365ec8b7d1SJesse Brandeburg
1375ec8b7d1SJesse Brandeburg #define IAVF_QUEUE_END_OF_LIST 0x7FF
1385ec8b7d1SJesse Brandeburg #define IAVF_FREE_VECTOR 0x7FFF
1395ec8b7d1SJesse Brandeburg struct iavf_mac_filter {
1405ec8b7d1SJesse Brandeburg struct list_head list;
1415ec8b7d1SJesse Brandeburg u8 macaddr[ETH_ALEN];
1424d0dbd96SJedrzej Jagielski struct {
1434d0dbd96SJedrzej Jagielski u8 is_new_mac:1; /* filter is new, wait for PF decision */
1444d0dbd96SJedrzej Jagielski u8 remove:1; /* filter needs to be removed */
1454d0dbd96SJedrzej Jagielski u8 add:1; /* filter needs to be added */
1464d0dbd96SJedrzej Jagielski u8 is_primary:1; /* filter is a default VF MAC */
14735a2443dSMateusz Palczewski u8 add_handled:1; /* received response for filter add */
14835a2443dSMateusz Palczewski u8 padding:3;
1494d0dbd96SJedrzej Jagielski };
1505ec8b7d1SJesse Brandeburg };
1515ec8b7d1SJesse Brandeburg
15248ccc43eSBrett Creeley #define IAVF_VLAN(vid, tpid) ((struct iavf_vlan){ vid, tpid })
15348ccc43eSBrett Creeley struct iavf_vlan {
15448ccc43eSBrett Creeley u16 vid;
15548ccc43eSBrett Creeley u16 tpid;
15648ccc43eSBrett Creeley };
15748ccc43eSBrett Creeley
1580c0da0e9SAhmed Zaki enum iavf_vlan_state_t {
1590c0da0e9SAhmed Zaki IAVF_VLAN_INVALID,
1600c0da0e9SAhmed Zaki IAVF_VLAN_ADD, /* filter needs to be added */
1610c0da0e9SAhmed Zaki IAVF_VLAN_IS_NEW, /* filter is new, wait for PF answer */
1620c0da0e9SAhmed Zaki IAVF_VLAN_ACTIVE, /* filter is accepted by PF */
1639c85b7faSAhmed Zaki IAVF_VLAN_DISABLE, /* filter needs to be deleted by PF, then marked INACTIVE */
1649c85b7faSAhmed Zaki IAVF_VLAN_INACTIVE, /* filter is inactive, we are in IFF_DOWN */
1659c85b7faSAhmed Zaki IAVF_VLAN_REMOVE, /* filter needs to be removed from list */
1660c0da0e9SAhmed Zaki };
1670c0da0e9SAhmed Zaki
1685ec8b7d1SJesse Brandeburg struct iavf_vlan_filter {
1695ec8b7d1SJesse Brandeburg struct list_head list;
17048ccc43eSBrett Creeley struct iavf_vlan vlan;
1710c0da0e9SAhmed Zaki enum iavf_vlan_state_t state;
1725ec8b7d1SJesse Brandeburg };
1735ec8b7d1SJesse Brandeburg
1745ec8b7d1SJesse Brandeburg #define IAVF_MAX_TRAFFIC_CLASS 4
1755ec8b7d1SJesse Brandeburg /* State of traffic class creation */
1765ec8b7d1SJesse Brandeburg enum iavf_tc_state_t {
1775ec8b7d1SJesse Brandeburg __IAVF_TC_INVALID, /* no traffic class, default state */
1785ec8b7d1SJesse Brandeburg __IAVF_TC_RUNNING, /* traffic classes have been created */
1795ec8b7d1SJesse Brandeburg };
1805ec8b7d1SJesse Brandeburg
1815ec8b7d1SJesse Brandeburg /* channel info */
1825ec8b7d1SJesse Brandeburg struct iavf_channel_config {
1835ec8b7d1SJesse Brandeburg struct virtchnl_channel_info ch_info[IAVF_MAX_TRAFFIC_CLASS];
1845ec8b7d1SJesse Brandeburg enum iavf_tc_state_t state;
1855ec8b7d1SJesse Brandeburg u8 total_qps;
1865ec8b7d1SJesse Brandeburg };
1875ec8b7d1SJesse Brandeburg
1885ec8b7d1SJesse Brandeburg /* State of cloud filter */
1895ec8b7d1SJesse Brandeburg enum iavf_cloud_filter_state_t {
1905ec8b7d1SJesse Brandeburg __IAVF_CF_INVALID, /* cloud filter not added */
1915ec8b7d1SJesse Brandeburg __IAVF_CF_ADD_PENDING, /* cloud filter pending add by the PF */
1925ec8b7d1SJesse Brandeburg __IAVF_CF_DEL_PENDING, /* cloud filter pending del by the PF */
1935ec8b7d1SJesse Brandeburg __IAVF_CF_ACTIVE, /* cloud filter is active */
1945ec8b7d1SJesse Brandeburg };
1955ec8b7d1SJesse Brandeburg
1965ec8b7d1SJesse Brandeburg /* Driver state. The order of these is important! */
1975ec8b7d1SJesse Brandeburg enum iavf_state_t {
1985ec8b7d1SJesse Brandeburg __IAVF_STARTUP, /* driver loaded, probe complete */
1995ec8b7d1SJesse Brandeburg __IAVF_REMOVE, /* driver is being unloaded */
2005ec8b7d1SJesse Brandeburg __IAVF_INIT_VERSION_CHECK, /* aq msg sent, awaiting reply */
2015ec8b7d1SJesse Brandeburg __IAVF_INIT_GET_RESOURCES, /* aq msg sent, awaiting reply */
20287dba256SMateusz Palczewski __IAVF_INIT_EXTENDED_CAPS, /* process extended caps which require aq msg exchange */
203209f2f9cSBrett Creeley __IAVF_INIT_CONFIG_ADAPTER,
2045ec8b7d1SJesse Brandeburg __IAVF_INIT_SW, /* got resources, setting up structs */
20559756ad6SMateusz Palczewski __IAVF_INIT_FAILED, /* init failed, restarting procedure */
2065ec8b7d1SJesse Brandeburg __IAVF_RESETTING, /* in reset */
207bac84861SJan Sokolowski __IAVF_COMM_FAILED, /* communication with PF failed */
2085ec8b7d1SJesse Brandeburg /* Below here, watchdog is running */
2095ec8b7d1SJesse Brandeburg __IAVF_DOWN, /* ready, can be opened */
2105ec8b7d1SJesse Brandeburg __IAVF_DOWN_PENDING, /* descending, waiting for watchdog */
2115ec8b7d1SJesse Brandeburg __IAVF_TESTING, /* in ethtool self-test */
2125ec8b7d1SJesse Brandeburg __IAVF_RUNNING, /* opened, working */
2135ec8b7d1SJesse Brandeburg };
2145ec8b7d1SJesse Brandeburg
2153ccd54efSSlawomir Laba enum iavf_critical_section_t {
2163ccd54efSSlawomir Laba __IAVF_IN_REMOVE_TASK, /* device being removed */
2173ccd54efSSlawomir Laba };
2183ccd54efSSlawomir Laba
2195ec8b7d1SJesse Brandeburg #define IAVF_CLOUD_FIELD_OMAC 0x01
2205ec8b7d1SJesse Brandeburg #define IAVF_CLOUD_FIELD_IMAC 0x02
2215ec8b7d1SJesse Brandeburg #define IAVF_CLOUD_FIELD_IVLAN 0x04
2225ec8b7d1SJesse Brandeburg #define IAVF_CLOUD_FIELD_TEN_ID 0x08
2235ec8b7d1SJesse Brandeburg #define IAVF_CLOUD_FIELD_IIP 0x10
2245ec8b7d1SJesse Brandeburg
2255ec8b7d1SJesse Brandeburg #define IAVF_CF_FLAGS_OMAC IAVF_CLOUD_FIELD_OMAC
2265ec8b7d1SJesse Brandeburg #define IAVF_CF_FLAGS_IMAC IAVF_CLOUD_FIELD_IMAC
2275ec8b7d1SJesse Brandeburg #define IAVF_CF_FLAGS_IMAC_IVLAN (IAVF_CLOUD_FIELD_IMAC |\
2285ec8b7d1SJesse Brandeburg IAVF_CLOUD_FIELD_IVLAN)
2295ec8b7d1SJesse Brandeburg #define IAVF_CF_FLAGS_IMAC_TEN_ID (IAVF_CLOUD_FIELD_IMAC |\
2305ec8b7d1SJesse Brandeburg IAVF_CLOUD_FIELD_TEN_ID)
2315ec8b7d1SJesse Brandeburg #define IAVF_CF_FLAGS_OMAC_TEN_ID_IMAC (IAVF_CLOUD_FIELD_OMAC |\
2325ec8b7d1SJesse Brandeburg IAVF_CLOUD_FIELD_IMAC |\
2335ec8b7d1SJesse Brandeburg IAVF_CLOUD_FIELD_TEN_ID)
2345ec8b7d1SJesse Brandeburg #define IAVF_CF_FLAGS_IMAC_IVLAN_TEN_ID (IAVF_CLOUD_FIELD_IMAC |\
2355ec8b7d1SJesse Brandeburg IAVF_CLOUD_FIELD_IVLAN |\
2365ec8b7d1SJesse Brandeburg IAVF_CLOUD_FIELD_TEN_ID)
23756184e01SJesse Brandeburg #define IAVF_CF_FLAGS_IIP IAVF_CLOUD_FIELD_IIP
2385ec8b7d1SJesse Brandeburg
2395ec8b7d1SJesse Brandeburg /* bookkeeping of cloud filters */
2405ec8b7d1SJesse Brandeburg struct iavf_cloud_filter {
2415ec8b7d1SJesse Brandeburg enum iavf_cloud_filter_state_t state;
2425ec8b7d1SJesse Brandeburg struct list_head list;
2435ec8b7d1SJesse Brandeburg struct virtchnl_filter f;
2445ec8b7d1SJesse Brandeburg unsigned long cookie;
2455ec8b7d1SJesse Brandeburg bool del; /* filter needs to be deleted */
2465ec8b7d1SJesse Brandeburg bool add; /* filter needs to be added */
2475ec8b7d1SJesse Brandeburg };
2485ec8b7d1SJesse Brandeburg
2498e3e4b9dSPaul Greenwalt #define IAVF_RESET_WAIT_MS 10
2508e3e4b9dSPaul Greenwalt #define IAVF_RESET_WAIT_DETECTED_COUNT 500
2518e3e4b9dSPaul Greenwalt #define IAVF_RESET_WAIT_COMPLETE_COUNT 2000
2528e3e4b9dSPaul Greenwalt
2535ec8b7d1SJesse Brandeburg /* board specific private data structure */
2545ec8b7d1SJesse Brandeburg struct iavf_adapter {
2554411a608SMichal Schmidt struct workqueue_struct *wq;
2565ec8b7d1SJesse Brandeburg struct work_struct reset_task;
2575ec8b7d1SJesse Brandeburg struct work_struct adminq_task;
258d1639a17SAhmed Zaki struct work_struct finish_config;
2595ec8b7d1SJesse Brandeburg struct delayed_work client_task;
2605ec8b7d1SJesse Brandeburg wait_queue_head_t down_waitqueue;
261c2ed2403SMarcin Szycik wait_queue_head_t reset_waitqueue;
26235a2443dSMateusz Palczewski wait_queue_head_t vc_waitqueue;
26356184e01SJesse Brandeburg struct iavf_q_vector *q_vectors;
2645ec8b7d1SJesse Brandeburg struct list_head vlan_filter_list;
2659c85b7faSAhmed Zaki int num_vlan_filters;
2665ec8b7d1SJesse Brandeburg struct list_head mac_filter_list;
2675ac49f3cSStefan Assmann struct mutex crit_lock;
2685ac49f3cSStefan Assmann struct mutex client_lock;
2695ec8b7d1SJesse Brandeburg /* Lock to protect accesses to MAC and VLAN lists */
2705ec8b7d1SJesse Brandeburg spinlock_t mac_vlan_list_lock;
2715ec8b7d1SJesse Brandeburg char misc_vector_name[IFNAMSIZ + 9];
2725ec8b7d1SJesse Brandeburg int num_active_queues;
2735ec8b7d1SJesse Brandeburg int num_req_queues;
2745ec8b7d1SJesse Brandeburg
2755ec8b7d1SJesse Brandeburg /* TX */
27656184e01SJesse Brandeburg struct iavf_ring *tx_rings;
2775ec8b7d1SJesse Brandeburg u32 tx_timeout_count;
2785ec8b7d1SJesse Brandeburg u32 tx_desc_count;
2795ec8b7d1SJesse Brandeburg
2805ec8b7d1SJesse Brandeburg /* RX */
28156184e01SJesse Brandeburg struct iavf_ring *rx_rings;
2825ec8b7d1SJesse Brandeburg u64 hw_csum_rx_error;
2835ec8b7d1SJesse Brandeburg u32 rx_desc_count;
2845ec8b7d1SJesse Brandeburg int num_msix_vectors;
2852723f3b5SJesse Brandeburg int num_rdma_msix;
2862723f3b5SJesse Brandeburg int rdma_base_vector;
2875ec8b7d1SJesse Brandeburg u32 client_pending;
288cc0ea2dbSAlice Michael struct iavf_client_instance *cinst;
2895ec8b7d1SJesse Brandeburg struct msix_entry *msix_entries;
2905ec8b7d1SJesse Brandeburg
2915ec8b7d1SJesse Brandeburg u32 flags;
2925ec8b7d1SJesse Brandeburg #define IAVF_FLAG_RX_CSUM_ENABLED BIT(0)
2935ec8b7d1SJesse Brandeburg #define IAVF_FLAG_PF_COMMS_FAILED BIT(3)
2945ec8b7d1SJesse Brandeburg #define IAVF_FLAG_RESET_PENDING BIT(4)
2955ec8b7d1SJesse Brandeburg #define IAVF_FLAG_RESET_NEEDED BIT(5)
2965ec8b7d1SJesse Brandeburg #define IAVF_FLAG_WB_ON_ITR_CAPABLE BIT(6)
2975ec8b7d1SJesse Brandeburg #define IAVF_FLAG_SERVICE_CLIENT_REQUESTED BIT(9)
2985ec8b7d1SJesse Brandeburg #define IAVF_FLAG_CLIENT_NEEDS_OPEN BIT(10)
2995ec8b7d1SJesse Brandeburg #define IAVF_FLAG_CLIENT_NEEDS_CLOSE BIT(11)
3005ec8b7d1SJesse Brandeburg #define IAVF_FLAG_CLIENT_NEEDS_L2_PARAMS BIT(12)
3015ec8b7d1SJesse Brandeburg #define IAVF_FLAG_LEGACY_RX BIT(15)
3025ec8b7d1SJesse Brandeburg #define IAVF_FLAG_REINIT_ITR_NEEDED BIT(16)
3035ec8b7d1SJesse Brandeburg #define IAVF_FLAG_QUEUES_DISABLED BIT(17)
3040579fafdSSlawomir Laba #define IAVF_FLAG_SETUP_NETDEV_FEATURES BIT(18)
30557d03f56SMichal Maloszewski #define IAVF_FLAG_REINIT_MSIX_NEEDED BIT(20)
306*3beb9d66SPiotr Gardocki #define IAVF_FLAG_FDIR_ENABLED BIT(21)
3075ec8b7d1SJesse Brandeburg /* duplicates for common code */
30856184e01SJesse Brandeburg #define IAVF_FLAG_DCB_ENABLED 0
3095ec8b7d1SJesse Brandeburg /* flags for admin queue service task */
3108afadd1cSBrett Creeley u64 aq_required;
3118afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ENABLE_QUEUES BIT_ULL(0)
3128afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DISABLE_QUEUES BIT_ULL(1)
3138afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ADD_MAC_FILTER BIT_ULL(2)
3148afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ADD_VLAN_FILTER BIT_ULL(3)
3158afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DEL_MAC_FILTER BIT_ULL(4)
3168afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DEL_VLAN_FILTER BIT_ULL(5)
3178afadd1cSBrett Creeley #define IAVF_FLAG_AQ_CONFIGURE_QUEUES BIT_ULL(6)
3188afadd1cSBrett Creeley #define IAVF_FLAG_AQ_MAP_VECTORS BIT_ULL(7)
3198afadd1cSBrett Creeley #define IAVF_FLAG_AQ_HANDLE_RESET BIT_ULL(8)
3208afadd1cSBrett Creeley #define IAVF_FLAG_AQ_CONFIGURE_RSS BIT_ULL(9) /* direct AQ config */
3218afadd1cSBrett Creeley #define IAVF_FLAG_AQ_GET_CONFIG BIT_ULL(10)
3225ec8b7d1SJesse Brandeburg /* Newer style, RSS done by the PF so we can ignore hardware vagaries. */
3238afadd1cSBrett Creeley #define IAVF_FLAG_AQ_GET_HENA BIT_ULL(11)
3248afadd1cSBrett Creeley #define IAVF_FLAG_AQ_SET_HENA BIT_ULL(12)
3258afadd1cSBrett Creeley #define IAVF_FLAG_AQ_SET_RSS_KEY BIT_ULL(13)
3268afadd1cSBrett Creeley #define IAVF_FLAG_AQ_SET_RSS_LUT BIT_ULL(14)
3277e85cf09SBrett Creeley #define IAVF_FLAG_AQ_CONFIGURE_PROMISC_MODE BIT_ULL(15)
3288afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ENABLE_VLAN_STRIPPING BIT_ULL(19)
3298afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DISABLE_VLAN_STRIPPING BIT_ULL(20)
3308afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ENABLE_CHANNELS BIT_ULL(21)
3318afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DISABLE_CHANNELS BIT_ULL(22)
3328afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ADD_CLOUD_FILTER BIT_ULL(23)
3338afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DEL_CLOUD_FILTER BIT_ULL(24)
3348afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ADD_FDIR_FILTER BIT_ULL(25)
3358afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DEL_FDIR_FILTER BIT_ULL(26)
3368afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ADD_ADV_RSS_CFG BIT_ULL(27)
3378afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DEL_ADV_RSS_CFG BIT_ULL(28)
3388afadd1cSBrett Creeley #define IAVF_FLAG_AQ_REQUEST_STATS BIT_ULL(29)
3398afadd1cSBrett Creeley #define IAVF_FLAG_AQ_GET_OFFLOAD_VLAN_V2_CAPS BIT_ULL(30)
3408afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ENABLE_CTAG_VLAN_STRIPPING BIT_ULL(31)
3418afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DISABLE_CTAG_VLAN_STRIPPING BIT_ULL(32)
3428afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ENABLE_STAG_VLAN_STRIPPING BIT_ULL(33)
3438afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DISABLE_STAG_VLAN_STRIPPING BIT_ULL(34)
3448afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ENABLE_CTAG_VLAN_INSERTION BIT_ULL(35)
3458afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DISABLE_CTAG_VLAN_INSERTION BIT_ULL(36)
3468afadd1cSBrett Creeley #define IAVF_FLAG_AQ_ENABLE_STAG_VLAN_INSERTION BIT_ULL(37)
3478afadd1cSBrett Creeley #define IAVF_FLAG_AQ_DISABLE_STAG_VLAN_INSERTION BIT_ULL(38)
3485ec8b7d1SJesse Brandeburg
34987dba256SMateusz Palczewski /* flags for processing extended capability messages during
35087dba256SMateusz Palczewski * __IAVF_INIT_EXTENDED_CAPS. Each capability exchange requires
35187dba256SMateusz Palczewski * both a SEND and a RECV step, which must be processed in sequence.
35287dba256SMateusz Palczewski *
35387dba256SMateusz Palczewski * During the __IAVF_INIT_EXTENDED_CAPS state, the driver will
35487dba256SMateusz Palczewski * process one flag at a time during each state loop.
35587dba256SMateusz Palczewski */
35687dba256SMateusz Palczewski u64 extended_caps;
35787dba256SMateusz Palczewski #define IAVF_EXTENDED_CAP_SEND_VLAN_V2 BIT_ULL(0)
35887dba256SMateusz Palczewski #define IAVF_EXTENDED_CAP_RECV_VLAN_V2 BIT_ULL(1)
35987dba256SMateusz Palczewski
36087dba256SMateusz Palczewski #define IAVF_EXTENDED_CAPS \
36187dba256SMateusz Palczewski (IAVF_EXTENDED_CAP_SEND_VLAN_V2 | \
36287dba256SMateusz Palczewski IAVF_EXTENDED_CAP_RECV_VLAN_V2)
36387dba256SMateusz Palczewski
3647e85cf09SBrett Creeley /* Lock to prevent possible clobbering of
3657e85cf09SBrett Creeley * current_netdev_promisc_flags
3667e85cf09SBrett Creeley */
3677e85cf09SBrett Creeley spinlock_t current_netdev_promisc_flags_lock;
3687e85cf09SBrett Creeley netdev_features_t current_netdev_promisc_flags;
3697e85cf09SBrett Creeley
3705ec8b7d1SJesse Brandeburg /* OS defined structs */
3715ec8b7d1SJesse Brandeburg struct net_device *netdev;
3725ec8b7d1SJesse Brandeburg struct pci_dev *pdev;
3735ec8b7d1SJesse Brandeburg
37466bc8e0fSJesse Brandeburg struct iavf_hw hw; /* defined in iavf_type.h */
3755ec8b7d1SJesse Brandeburg
3765ec8b7d1SJesse Brandeburg enum iavf_state_t state;
37745eebd62SMateusz Palczewski enum iavf_state_t last_state;
3785ec8b7d1SJesse Brandeburg unsigned long crit_section;
3795ec8b7d1SJesse Brandeburg
380fdd4044fSJakub Pawlak struct delayed_work watchdog_task;
3815ec8b7d1SJesse Brandeburg bool netdev_registered;
3825ec8b7d1SJesse Brandeburg bool link_up;
3835ec8b7d1SJesse Brandeburg enum virtchnl_link_speed link_speed;
384e0ef26fbSBrett Creeley /* This is only populated if the VIRTCHNL_VF_CAP_ADV_LINK_SPEED is set
385e0ef26fbSBrett Creeley * in vf_res->vf_cap_flags. Use ADV_LINK_SUPPORT macro to determine if
386e0ef26fbSBrett Creeley * this field is valid. This field should be used going forward and the
387e0ef26fbSBrett Creeley * enum virtchnl_link_speed above should be considered the legacy way of
388e0ef26fbSBrett Creeley * storing/communicating link speeds.
389e0ef26fbSBrett Creeley */
390e0ef26fbSBrett Creeley u32 link_speed_mbps;
391e0ef26fbSBrett Creeley
3925ec8b7d1SJesse Brandeburg enum virtchnl_ops current_op;
3935ec8b7d1SJesse Brandeburg #define CLIENT_ALLOWED(_a) ((_a)->vf_res ? \
3945ec8b7d1SJesse Brandeburg (_a)->vf_res->vf_cap_flags & \
3952723f3b5SJesse Brandeburg VIRTCHNL_VF_OFFLOAD_RDMA : \
3965ec8b7d1SJesse Brandeburg 0)
3975ec8b7d1SJesse Brandeburg #define CLIENT_ENABLED(_a) ((_a)->cinst)
3985ec8b7d1SJesse Brandeburg /* RSS by the PF should be preferred over RSS via other methods. */
3995ec8b7d1SJesse Brandeburg #define RSS_PF(_a) ((_a)->vf_res->vf_cap_flags & \
4005ec8b7d1SJesse Brandeburg VIRTCHNL_VF_OFFLOAD_RSS_PF)
4015ec8b7d1SJesse Brandeburg #define RSS_AQ(_a) ((_a)->vf_res->vf_cap_flags & \
4025ec8b7d1SJesse Brandeburg VIRTCHNL_VF_OFFLOAD_RSS_AQ)
4035ec8b7d1SJesse Brandeburg #define RSS_REG(_a) (!((_a)->vf_res->vf_cap_flags & \
4045ec8b7d1SJesse Brandeburg (VIRTCHNL_VF_OFFLOAD_RSS_AQ | \
4055ec8b7d1SJesse Brandeburg VIRTCHNL_VF_OFFLOAD_RSS_PF)))
4065ec8b7d1SJesse Brandeburg #define VLAN_ALLOWED(_a) ((_a)->vf_res->vf_cap_flags & \
4075ec8b7d1SJesse Brandeburg VIRTCHNL_VF_OFFLOAD_VLAN)
408209f2f9cSBrett Creeley #define VLAN_V2_ALLOWED(_a) ((_a)->vf_res->vf_cap_flags & \
409209f2f9cSBrett Creeley VIRTCHNL_VF_OFFLOAD_VLAN_V2)
41048ccc43eSBrett Creeley #define VLAN_V2_FILTERING_ALLOWED(_a) \
41148ccc43eSBrett Creeley (VLAN_V2_ALLOWED((_a)) && \
41248ccc43eSBrett Creeley ((_a)->vlan_v2_caps.filtering.filtering_support.outer || \
41348ccc43eSBrett Creeley (_a)->vlan_v2_caps.filtering.filtering_support.inner))
41448ccc43eSBrett Creeley #define VLAN_FILTERING_ALLOWED(_a) \
41548ccc43eSBrett Creeley (VLAN_ALLOWED((_a)) || VLAN_V2_FILTERING_ALLOWED((_a)))
416e0ef26fbSBrett Creeley #define ADV_LINK_SUPPORT(_a) ((_a)->vf_res->vf_cap_flags & \
417e0ef26fbSBrett Creeley VIRTCHNL_VF_CAP_ADV_LINK_SPEED)
4180dbfbabbSHaiyue Wang #define FDIR_FLTR_SUPPORT(_a) ((_a)->vf_res->vf_cap_flags & \
4190dbfbabbSHaiyue Wang VIRTCHNL_VF_OFFLOAD_FDIR_PF)
4200aaeb4fbSHaiyue Wang #define ADV_RSS_SUPPORT(_a) ((_a)->vf_res->vf_cap_flags & \
4210aaeb4fbSHaiyue Wang VIRTCHNL_VF_OFFLOAD_ADV_RSS_PF)
4225ec8b7d1SJesse Brandeburg struct virtchnl_vf_resource *vf_res; /* incl. all VSIs */
4235ec8b7d1SJesse Brandeburg struct virtchnl_vsi_resource *vsi_res; /* our LAN VSI */
4245ec8b7d1SJesse Brandeburg struct virtchnl_version_info pf_version;
4255ec8b7d1SJesse Brandeburg #define PF_IS_V11(_a) (((_a)->pf_version.major == 1) && \
4265ec8b7d1SJesse Brandeburg ((_a)->pf_version.minor == 1))
427209f2f9cSBrett Creeley struct virtchnl_vlan_caps vlan_v2_caps;
4285ec8b7d1SJesse Brandeburg u16 msg_enable;
42956184e01SJesse Brandeburg struct iavf_eth_stats current_stats;
43056184e01SJesse Brandeburg struct iavf_vsi vsi;
4315ec8b7d1SJesse Brandeburg u32 aq_wait_count;
4325ec8b7d1SJesse Brandeburg /* RSS stuff */
4335ec8b7d1SJesse Brandeburg u64 hena;
4345ec8b7d1SJesse Brandeburg u16 rss_key_size;
4355ec8b7d1SJesse Brandeburg u16 rss_lut_size;
4365ec8b7d1SJesse Brandeburg u8 *rss_key;
4375ec8b7d1SJesse Brandeburg u8 *rss_lut;
4385ec8b7d1SJesse Brandeburg /* ADQ related members */
4395ec8b7d1SJesse Brandeburg struct iavf_channel_config ch_config;
4405ec8b7d1SJesse Brandeburg u8 num_tc;
4415ec8b7d1SJesse Brandeburg struct list_head cloud_filter_list;
44237ebb5faSRami Rosen /* lock to protect access to the cloud filter list */
4435ec8b7d1SJesse Brandeburg spinlock_t cloud_filter_list_lock;
4445ec8b7d1SJesse Brandeburg u16 num_cloud_filters;
44593cb804eSPrzemyslaw Patynowski /* snapshot of "num_active_queues" before setup_tc for qdisc add
44693cb804eSPrzemyslaw Patynowski * is invoked. This information is useful during qdisc del flow,
44793cb804eSPrzemyslaw Patynowski * to restore correct number of queues
44893cb804eSPrzemyslaw Patynowski */
44993cb804eSPrzemyslaw Patynowski int orig_num_active_queues;
4500dbfbabbSHaiyue Wang
4510dbfbabbSHaiyue Wang #define IAVF_MAX_FDIR_FILTERS 128 /* max allowed Flow Director filters */
4520dbfbabbSHaiyue Wang u16 fdir_active_fltr;
4530dbfbabbSHaiyue Wang struct list_head fdir_list_head;
4540dbfbabbSHaiyue Wang spinlock_t fdir_fltr_lock; /* protect the Flow Director filter list */
4550aaeb4fbSHaiyue Wang
4560aaeb4fbSHaiyue Wang struct list_head adv_rss_list_head;
4570aaeb4fbSHaiyue Wang spinlock_t adv_rss_lock; /* protect the RSS management list */
4585ec8b7d1SJesse Brandeburg };
4595ec8b7d1SJesse Brandeburg
4605ec8b7d1SJesse Brandeburg
4615ec8b7d1SJesse Brandeburg /* Ethtool Private Flags */
4625ec8b7d1SJesse Brandeburg
46356184e01SJesse Brandeburg /* lan device, used by client interface */
46453b79907SAlice Michael struct iavf_device {
4655ec8b7d1SJesse Brandeburg struct list_head list;
4665ec8b7d1SJesse Brandeburg struct iavf_adapter *vf;
4675ec8b7d1SJesse Brandeburg };
4685ec8b7d1SJesse Brandeburg
4695ec8b7d1SJesse Brandeburg /* needed by iavf_ethtool.c */
4705ec8b7d1SJesse Brandeburg extern char iavf_driver_name[];
4715ec8b7d1SJesse Brandeburg
iavf_state_str(enum iavf_state_t state)472605ca7c5SPrzemyslaw Patynowski static inline const char *iavf_state_str(enum iavf_state_t state)
473605ca7c5SPrzemyslaw Patynowski {
474605ca7c5SPrzemyslaw Patynowski switch (state) {
475605ca7c5SPrzemyslaw Patynowski case __IAVF_STARTUP:
476605ca7c5SPrzemyslaw Patynowski return "__IAVF_STARTUP";
477605ca7c5SPrzemyslaw Patynowski case __IAVF_REMOVE:
478605ca7c5SPrzemyslaw Patynowski return "__IAVF_REMOVE";
479605ca7c5SPrzemyslaw Patynowski case __IAVF_INIT_VERSION_CHECK:
480605ca7c5SPrzemyslaw Patynowski return "__IAVF_INIT_VERSION_CHECK";
481605ca7c5SPrzemyslaw Patynowski case __IAVF_INIT_GET_RESOURCES:
482605ca7c5SPrzemyslaw Patynowski return "__IAVF_INIT_GET_RESOURCES";
483d8fa2fd7SPrzemyslaw Patynowski case __IAVF_INIT_EXTENDED_CAPS:
484d8fa2fd7SPrzemyslaw Patynowski return "__IAVF_INIT_EXTENDED_CAPS";
485d8fa2fd7SPrzemyslaw Patynowski case __IAVF_INIT_CONFIG_ADAPTER:
486d8fa2fd7SPrzemyslaw Patynowski return "__IAVF_INIT_CONFIG_ADAPTER";
487605ca7c5SPrzemyslaw Patynowski case __IAVF_INIT_SW:
488605ca7c5SPrzemyslaw Patynowski return "__IAVF_INIT_SW";
489605ca7c5SPrzemyslaw Patynowski case __IAVF_INIT_FAILED:
490605ca7c5SPrzemyslaw Patynowski return "__IAVF_INIT_FAILED";
491605ca7c5SPrzemyslaw Patynowski case __IAVF_RESETTING:
492605ca7c5SPrzemyslaw Patynowski return "__IAVF_RESETTING";
493605ca7c5SPrzemyslaw Patynowski case __IAVF_COMM_FAILED:
494605ca7c5SPrzemyslaw Patynowski return "__IAVF_COMM_FAILED";
495605ca7c5SPrzemyslaw Patynowski case __IAVF_DOWN:
496605ca7c5SPrzemyslaw Patynowski return "__IAVF_DOWN";
497605ca7c5SPrzemyslaw Patynowski case __IAVF_DOWN_PENDING:
498605ca7c5SPrzemyslaw Patynowski return "__IAVF_DOWN_PENDING";
499605ca7c5SPrzemyslaw Patynowski case __IAVF_TESTING:
500605ca7c5SPrzemyslaw Patynowski return "__IAVF_TESTING";
501605ca7c5SPrzemyslaw Patynowski case __IAVF_RUNNING:
502605ca7c5SPrzemyslaw Patynowski return "__IAVF_RUNNING";
503605ca7c5SPrzemyslaw Patynowski default:
504605ca7c5SPrzemyslaw Patynowski return "__IAVF_UNKNOWN_STATE";
505605ca7c5SPrzemyslaw Patynowski }
506605ca7c5SPrzemyslaw Patynowski }
507605ca7c5SPrzemyslaw Patynowski
iavf_change_state(struct iavf_adapter * adapter,enum iavf_state_t state)50845eebd62SMateusz Palczewski static inline void iavf_change_state(struct iavf_adapter *adapter,
50945eebd62SMateusz Palczewski enum iavf_state_t state)
51045eebd62SMateusz Palczewski {
51145eebd62SMateusz Palczewski if (adapter->state != state) {
51245eebd62SMateusz Palczewski adapter->last_state = adapter->state;
51345eebd62SMateusz Palczewski adapter->state = state;
51445eebd62SMateusz Palczewski }
515605ca7c5SPrzemyslaw Patynowski dev_dbg(&adapter->pdev->dev,
516605ca7c5SPrzemyslaw Patynowski "state transition from:%s to:%s\n",
517605ca7c5SPrzemyslaw Patynowski iavf_state_str(adapter->last_state),
518605ca7c5SPrzemyslaw Patynowski iavf_state_str(adapter->state));
51945eebd62SMateusz Palczewski }
52045eebd62SMateusz Palczewski
5215ec8b7d1SJesse Brandeburg int iavf_up(struct iavf_adapter *adapter);
5225ec8b7d1SJesse Brandeburg void iavf_down(struct iavf_adapter *adapter);
5235ec8b7d1SJesse Brandeburg int iavf_process_config(struct iavf_adapter *adapter);
524209f2f9cSBrett Creeley int iavf_parse_vf_resource_msg(struct iavf_adapter *adapter);
525c34743daSAhmed Zaki void iavf_schedule_reset(struct iavf_adapter *adapter, u64 flags);
526ed4cad33SPetr Oros void iavf_schedule_aq_request(struct iavf_adapter *adapter, u64 flags);
527d1639a17SAhmed Zaki void iavf_schedule_finish_config(struct iavf_adapter *adapter);
5285ec8b7d1SJesse Brandeburg void iavf_reset(struct iavf_adapter *adapter);
5295ec8b7d1SJesse Brandeburg void iavf_set_ethtool_ops(struct net_device *netdev);
5305ec8b7d1SJesse Brandeburg void iavf_update_stats(struct iavf_adapter *adapter);
5315ec8b7d1SJesse Brandeburg void iavf_free_all_tx_resources(struct iavf_adapter *adapter);
5325ec8b7d1SJesse Brandeburg void iavf_free_all_rx_resources(struct iavf_adapter *adapter);
5335ec8b7d1SJesse Brandeburg
53456184e01SJesse Brandeburg void iavf_napi_add_all(struct iavf_adapter *adapter);
53556184e01SJesse Brandeburg void iavf_napi_del_all(struct iavf_adapter *adapter);
5365ec8b7d1SJesse Brandeburg
5375ec8b7d1SJesse Brandeburg int iavf_send_api_ver(struct iavf_adapter *adapter);
5385ec8b7d1SJesse Brandeburg int iavf_verify_api_ver(struct iavf_adapter *adapter);
5395ec8b7d1SJesse Brandeburg int iavf_send_vf_config_msg(struct iavf_adapter *adapter);
5405ec8b7d1SJesse Brandeburg int iavf_get_vf_config(struct iavf_adapter *adapter);
541209f2f9cSBrett Creeley int iavf_get_vf_vlan_v2_caps(struct iavf_adapter *adapter);
542209f2f9cSBrett Creeley int iavf_send_vf_offload_vlan_v2_msg(struct iavf_adapter *adapter);
543ccd219d2SBrett Creeley void iavf_set_queue_vlan_tag_loc(struct iavf_adapter *adapter);
544968996c0SPrzemyslaw Patynowski u16 iavf_get_num_vlans_added(struct iavf_adapter *adapter);
5455ec8b7d1SJesse Brandeburg void iavf_irq_enable(struct iavf_adapter *adapter, bool flush);
5465ec8b7d1SJesse Brandeburg void iavf_configure_queues(struct iavf_adapter *adapter);
5475ec8b7d1SJesse Brandeburg void iavf_deconfigure_queues(struct iavf_adapter *adapter);
5485ec8b7d1SJesse Brandeburg void iavf_enable_queues(struct iavf_adapter *adapter);
5495ec8b7d1SJesse Brandeburg void iavf_disable_queues(struct iavf_adapter *adapter);
5505ec8b7d1SJesse Brandeburg void iavf_map_queues(struct iavf_adapter *adapter);
5515ec8b7d1SJesse Brandeburg int iavf_request_queues(struct iavf_adapter *adapter, int num);
5525ec8b7d1SJesse Brandeburg void iavf_add_ether_addrs(struct iavf_adapter *adapter);
5535ec8b7d1SJesse Brandeburg void iavf_del_ether_addrs(struct iavf_adapter *adapter);
5545ec8b7d1SJesse Brandeburg void iavf_add_vlans(struct iavf_adapter *adapter);
5555ec8b7d1SJesse Brandeburg void iavf_del_vlans(struct iavf_adapter *adapter);
5567e85cf09SBrett Creeley void iavf_set_promiscuous(struct iavf_adapter *adapter);
5577e85cf09SBrett Creeley bool iavf_promiscuous_mode_changed(struct iavf_adapter *adapter);
5585ec8b7d1SJesse Brandeburg void iavf_request_stats(struct iavf_adapter *adapter);
559bae569d0SMateusz Palczewski int iavf_request_reset(struct iavf_adapter *adapter);
5605ec8b7d1SJesse Brandeburg void iavf_get_hena(struct iavf_adapter *adapter);
5615ec8b7d1SJesse Brandeburg void iavf_set_hena(struct iavf_adapter *adapter);
5625ec8b7d1SJesse Brandeburg void iavf_set_rss_key(struct iavf_adapter *adapter);
5635ec8b7d1SJesse Brandeburg void iavf_set_rss_lut(struct iavf_adapter *adapter);
5645ec8b7d1SJesse Brandeburg void iavf_enable_vlan_stripping(struct iavf_adapter *adapter);
5655ec8b7d1SJesse Brandeburg void iavf_disable_vlan_stripping(struct iavf_adapter *adapter);
5665ec8b7d1SJesse Brandeburg void iavf_virtchnl_completion(struct iavf_adapter *adapter,
5675ec8b7d1SJesse Brandeburg enum virtchnl_ops v_opcode,
56880754bbcSSergey Nemov enum iavf_status v_retval, u8 *msg, u16 msglen);
5695ec8b7d1SJesse Brandeburg int iavf_config_rss(struct iavf_adapter *adapter);
5705ec8b7d1SJesse Brandeburg int iavf_lan_add_device(struct iavf_adapter *adapter);
5715ec8b7d1SJesse Brandeburg int iavf_lan_del_device(struct iavf_adapter *adapter);
5725ec8b7d1SJesse Brandeburg void iavf_client_subtask(struct iavf_adapter *adapter);
57356184e01SJesse Brandeburg void iavf_notify_client_message(struct iavf_vsi *vsi, u8 *msg, u16 len);
57456184e01SJesse Brandeburg void iavf_notify_client_l2_params(struct iavf_vsi *vsi);
57556184e01SJesse Brandeburg void iavf_notify_client_open(struct iavf_vsi *vsi);
57656184e01SJesse Brandeburg void iavf_notify_client_close(struct iavf_vsi *vsi, bool reset);
5775ec8b7d1SJesse Brandeburg void iavf_enable_channels(struct iavf_adapter *adapter);
5785ec8b7d1SJesse Brandeburg void iavf_disable_channels(struct iavf_adapter *adapter);
5795ec8b7d1SJesse Brandeburg void iavf_add_cloud_filter(struct iavf_adapter *adapter);
5805ec8b7d1SJesse Brandeburg void iavf_del_cloud_filter(struct iavf_adapter *adapter);
5818afadd1cSBrett Creeley void iavf_enable_vlan_stripping_v2(struct iavf_adapter *adapter, u16 tpid);
5828afadd1cSBrett Creeley void iavf_disable_vlan_stripping_v2(struct iavf_adapter *adapter, u16 tpid);
5838afadd1cSBrett Creeley void iavf_enable_vlan_insertion_v2(struct iavf_adapter *adapter, u16 tpid);
5848afadd1cSBrett Creeley void iavf_disable_vlan_insertion_v2(struct iavf_adapter *adapter, u16 tpid);
5850dbfbabbSHaiyue Wang void iavf_add_fdir_filter(struct iavf_adapter *adapter);
5860dbfbabbSHaiyue Wang void iavf_del_fdir_filter(struct iavf_adapter *adapter);
5870aaeb4fbSHaiyue Wang void iavf_add_adv_rss_cfg(struct iavf_adapter *adapter);
5880aaeb4fbSHaiyue Wang void iavf_del_adv_rss_cfg(struct iavf_adapter *adapter);
5899e052291SStefan Assmann struct iavf_mac_filter *iavf_add_filter(struct iavf_adapter *adapter,
5909e052291SStefan Assmann const u8 *macaddr);
591c2ed2403SMarcin Szycik int iavf_wait_for_reset(struct iavf_adapter *adapter);
5925ec8b7d1SJesse Brandeburg #endif /* _IAVF_H_ */
593