net/i40e: fix DDP profile DEL operation
[dpdk.git] / drivers / net / i40e / i40e_ethdev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4
5 #ifndef _I40E_ETHDEV_H_
6 #define _I40E_ETHDEV_H_
7
8 #include <rte_eth_ctrl.h>
9 #include <rte_time.h>
10 #include <rte_kvargs.h>
11 #include <rte_hash.h>
12 #include <rte_flow_driver.h>
13 #include <rte_tm_driver.h>
14 #include "rte_pmd_i40e.h"
15
16 #define I40E_VLAN_TAG_SIZE        4
17
18 #define I40E_AQ_LEN               32
19 #define I40E_AQ_BUF_SZ            4096
20 /* Number of queues per TC should be one of 1, 2, 4, 8, 16, 32, 64 */
21 #define I40E_MAX_Q_PER_TC         64
22 #define I40E_NUM_DESC_DEFAULT     512
23 #define I40E_NUM_DESC_ALIGN       32
24 #define I40E_BUF_SIZE_MIN         1024
25 #define I40E_FRAME_SIZE_MAX       9728
26 #define I40E_QUEUE_BASE_ADDR_UNIT 128
27 /* number of VSIs and queue default setting */
28 #define I40E_MAX_QP_NUM_PER_VF    16
29 #define I40E_DEFAULT_QP_NUM_FDIR  1
30 #define I40E_UINT32_BIT_SIZE      (CHAR_BIT * sizeof(uint32_t))
31 #define I40E_VFTA_SIZE            (4096 / I40E_UINT32_BIT_SIZE)
32 /* Maximun number of MAC addresses */
33 #define I40E_NUM_MACADDR_MAX       64
34 /* Maximum number of VFs */
35 #define I40E_MAX_VF               128
36 /*flag of no loopback*/
37 #define I40E_AQ_LB_MODE_NONE      0x0
38 /*
39  * vlan_id is a 12 bit number.
40  * The VFTA array is actually a 4096 bit array, 128 of 32bit elements.
41  * 2^5 = 32. The val of lower 5 bits specifies the bit in the 32bit element.
42  * The higher 7 bit val specifies VFTA array index.
43  */
44 #define I40E_VFTA_BIT(vlan_id)    (1 << ((vlan_id) & 0x1F))
45 #define I40E_VFTA_IDX(vlan_id)    ((vlan_id) >> 5)
46
47 /* Default TC traffic in case DCB is not enabled */
48 #define I40E_DEFAULT_TCMAP        0x1
49 #define I40E_FDIR_QUEUE_ID        0
50
51 /* Always assign pool 0 to main VSI, VMDQ will start from 1 */
52 #define I40E_VMDQ_POOL_BASE       1
53
54 #define I40E_DEFAULT_RX_FREE_THRESH  32
55 #define I40E_DEFAULT_RX_PTHRESH      8
56 #define I40E_DEFAULT_RX_HTHRESH      8
57 #define I40E_DEFAULT_RX_WTHRESH      0
58
59 #define I40E_DEFAULT_TX_FREE_THRESH  32
60 #define I40E_DEFAULT_TX_PTHRESH      32
61 #define I40E_DEFAULT_TX_HTHRESH      0
62 #define I40E_DEFAULT_TX_WTHRESH      0
63 #define I40E_DEFAULT_TX_RSBIT_THRESH 32
64
65 /* Bit shift and mask */
66 #define I40E_4_BIT_WIDTH  (CHAR_BIT / 2)
67 #define I40E_4_BIT_MASK   RTE_LEN2MASK(I40E_4_BIT_WIDTH, uint8_t)
68 #define I40E_8_BIT_WIDTH  CHAR_BIT
69 #define I40E_8_BIT_MASK   UINT8_MAX
70 #define I40E_16_BIT_WIDTH (CHAR_BIT * 2)
71 #define I40E_16_BIT_MASK  UINT16_MAX
72 #define I40E_32_BIT_WIDTH (CHAR_BIT * 4)
73 #define I40E_32_BIT_MASK  UINT32_MAX
74 #define I40E_48_BIT_WIDTH (CHAR_BIT * 6)
75 #define I40E_48_BIT_MASK  RTE_LEN2MASK(I40E_48_BIT_WIDTH, uint64_t)
76
77 /* Linux PF host with virtchnl version 1.1 */
78 #define PF_IS_V11(vf) \
79         (((vf)->version_major == VIRTCHNL_VERSION_MAJOR) && \
80         ((vf)->version_minor == 1))
81
82 #define I40E_WRITE_GLB_REG(hw, reg, value)                              \
83         do {                                                            \
84                 I40E_PCI_REG_WRITE(I40E_PCI_REG_ADDR((hw),              \
85                                                      (reg)), (value));  \
86                 PMD_DRV_LOG(DEBUG, "Global register 0x%08x is modified " \
87                             "with value 0x%08x",                        \
88                             (reg), (value));                            \
89         } while (0)
90
91 /* index flex payload per layer */
92 enum i40e_flxpld_layer_idx {
93         I40E_FLXPLD_L2_IDX    = 0,
94         I40E_FLXPLD_L3_IDX    = 1,
95         I40E_FLXPLD_L4_IDX    = 2,
96         I40E_MAX_FLXPLD_LAYER = 3,
97 };
98 #define I40E_MAX_FLXPLD_FIED        3  /* max number of flex payload fields */
99 #define I40E_FDIR_BITMASK_NUM_WORD  2  /* max number of bitmask words */
100 #define I40E_FDIR_MAX_FLEXWORD_NUM  8  /* max number of flexpayload words */
101 #define I40E_FDIR_MAX_FLEX_LEN      16 /* len in bytes of flex payload */
102 #define I40E_INSET_MASK_NUM_REG     2  /* number of input set mask registers */
103
104 /* i40e flags */
105 #define I40E_FLAG_RSS                   (1ULL << 0)
106 #define I40E_FLAG_DCB                   (1ULL << 1)
107 #define I40E_FLAG_VMDQ                  (1ULL << 2)
108 #define I40E_FLAG_SRIOV                 (1ULL << 3)
109 #define I40E_FLAG_HEADER_SPLIT_DISABLED (1ULL << 4)
110 #define I40E_FLAG_HEADER_SPLIT_ENABLED  (1ULL << 5)
111 #define I40E_FLAG_FDIR                  (1ULL << 6)
112 #define I40E_FLAG_VXLAN                 (1ULL << 7)
113 #define I40E_FLAG_RSS_AQ_CAPABLE        (1ULL << 8)
114 #define I40E_FLAG_VF_MAC_BY_PF          (1ULL << 9)
115 #define I40E_FLAG_ALL (I40E_FLAG_RSS | \
116                        I40E_FLAG_DCB | \
117                        I40E_FLAG_VMDQ | \
118                        I40E_FLAG_SRIOV | \
119                        I40E_FLAG_HEADER_SPLIT_DISABLED | \
120                        I40E_FLAG_HEADER_SPLIT_ENABLED | \
121                        I40E_FLAG_FDIR | \
122                        I40E_FLAG_VXLAN | \
123                        I40E_FLAG_RSS_AQ_CAPABLE | \
124                        I40E_FLAG_VF_MAC_BY_PF)
125
126 #define I40E_RSS_OFFLOAD_ALL ( \
127         ETH_RSS_FRAG_IPV4 | \
128         ETH_RSS_NONFRAG_IPV4_TCP | \
129         ETH_RSS_NONFRAG_IPV4_UDP | \
130         ETH_RSS_NONFRAG_IPV4_SCTP | \
131         ETH_RSS_NONFRAG_IPV4_OTHER | \
132         ETH_RSS_FRAG_IPV6 | \
133         ETH_RSS_NONFRAG_IPV6_TCP | \
134         ETH_RSS_NONFRAG_IPV6_UDP | \
135         ETH_RSS_NONFRAG_IPV6_SCTP | \
136         ETH_RSS_NONFRAG_IPV6_OTHER | \
137         ETH_RSS_L2_PAYLOAD)
138
139 /* All bits of RSS hash enable for X722*/
140 #define I40E_RSS_HENA_ALL_X722 ( \
141         (1ULL << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | \
142         (1ULL << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) | \
143         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) | \
144         (1ULL << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | \
145         (1ULL << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) | \
146         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK) | \
147         I40E_RSS_HENA_ALL)
148
149 /* All bits of RSS hash enable */
150 #define I40E_RSS_HENA_ALL ( \
151         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_UDP) | \
152         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_TCP) | \
153         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) | \
154         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | \
155         (1ULL << I40E_FILTER_PCTYPE_FRAG_IPV4) | \
156         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_UDP) | \
157         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_TCP) | \
158         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) | \
159         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | \
160         (1ULL << I40E_FILTER_PCTYPE_FRAG_IPV6) | \
161         (1ULL << I40E_FILTER_PCTYPE_FCOE_OX) | \
162         (1ULL << I40E_FILTER_PCTYPE_FCOE_RX) | \
163         (1ULL << I40E_FILTER_PCTYPE_FCOE_OTHER) | \
164         (1ULL << I40E_FILTER_PCTYPE_L2_PAYLOAD))
165
166 #define I40E_MISC_VEC_ID                RTE_INTR_VEC_ZERO_OFFSET
167 #define I40E_RX_VEC_START               RTE_INTR_VEC_RXTX_OFFSET
168
169 /* Default queue interrupt throttling time in microseconds */
170 #define I40E_ITR_INDEX_DEFAULT          0
171 #define I40E_ITR_INDEX_NONE             3
172 #define I40E_QUEUE_ITR_INTERVAL_DEFAULT 32 /* 32 us */
173 #define I40E_QUEUE_ITR_INTERVAL_MAX     8160 /* 8160 us */
174 #define I40E_VF_QUEUE_ITR_INTERVAL_DEFAULT 8160 /* 8160 us */
175 /* Special FW support this floating VEB feature */
176 #define FLOATING_VEB_SUPPORTED_FW_MAJ 5
177 #define FLOATING_VEB_SUPPORTED_FW_MIN 0
178
179 #define I40E_GL_SWT_L2TAGCTRL(_i)             (0x001C0A70 + ((_i) * 4))
180 #define I40E_GL_SWT_L2TAGCTRL_ETHERTYPE_SHIFT 16
181 #define I40E_GL_SWT_L2TAGCTRL_ETHERTYPE_MASK  \
182         I40E_MASK(0xFFFF, I40E_GL_SWT_L2TAGCTRL_ETHERTYPE_SHIFT)
183
184 #define I40E_INSET_NONE            0x00000000000000000ULL
185
186 /* bit0 ~ bit 7 */
187 #define I40E_INSET_DMAC            0x0000000000000001ULL
188 #define I40E_INSET_SMAC            0x0000000000000002ULL
189 #define I40E_INSET_VLAN_OUTER      0x0000000000000004ULL
190 #define I40E_INSET_VLAN_INNER      0x0000000000000008ULL
191 #define I40E_INSET_VLAN_TUNNEL     0x0000000000000010ULL
192
193 /* bit 8 ~ bit 15 */
194 #define I40E_INSET_IPV4_SRC        0x0000000000000100ULL
195 #define I40E_INSET_IPV4_DST        0x0000000000000200ULL
196 #define I40E_INSET_IPV6_SRC        0x0000000000000400ULL
197 #define I40E_INSET_IPV6_DST        0x0000000000000800ULL
198 #define I40E_INSET_SRC_PORT        0x0000000000001000ULL
199 #define I40E_INSET_DST_PORT        0x0000000000002000ULL
200 #define I40E_INSET_SCTP_VT         0x0000000000004000ULL
201
202 /* bit 16 ~ bit 31 */
203 #define I40E_INSET_IPV4_TOS        0x0000000000010000ULL
204 #define I40E_INSET_IPV4_PROTO      0x0000000000020000ULL
205 #define I40E_INSET_IPV4_TTL        0x0000000000040000ULL
206 #define I40E_INSET_IPV6_TC         0x0000000000080000ULL
207 #define I40E_INSET_IPV6_FLOW       0x0000000000100000ULL
208 #define I40E_INSET_IPV6_NEXT_HDR   0x0000000000200000ULL
209 #define I40E_INSET_IPV6_HOP_LIMIT  0x0000000000400000ULL
210 #define I40E_INSET_TCP_FLAGS       0x0000000000800000ULL
211
212 /* bit 32 ~ bit 47, tunnel fields */
213 #define I40E_INSET_TUNNEL_IPV4_DST       0x0000000100000000ULL
214 #define I40E_INSET_TUNNEL_IPV6_DST       0x0000000200000000ULL
215 #define I40E_INSET_TUNNEL_DMAC           0x0000000400000000ULL
216 #define I40E_INSET_TUNNEL_SRC_PORT       0x0000000800000000ULL
217 #define I40E_INSET_TUNNEL_DST_PORT       0x0000001000000000ULL
218 #define I40E_INSET_TUNNEL_ID             0x0000002000000000ULL
219
220 /* bit 48 ~ bit 55 */
221 #define I40E_INSET_LAST_ETHER_TYPE 0x0001000000000000ULL
222
223 /* bit 56 ~ bit 63, Flex Payload */
224 #define I40E_INSET_FLEX_PAYLOAD_W1 0x0100000000000000ULL
225 #define I40E_INSET_FLEX_PAYLOAD_W2 0x0200000000000000ULL
226 #define I40E_INSET_FLEX_PAYLOAD_W3 0x0400000000000000ULL
227 #define I40E_INSET_FLEX_PAYLOAD_W4 0x0800000000000000ULL
228 #define I40E_INSET_FLEX_PAYLOAD_W5 0x1000000000000000ULL
229 #define I40E_INSET_FLEX_PAYLOAD_W6 0x2000000000000000ULL
230 #define I40E_INSET_FLEX_PAYLOAD_W7 0x4000000000000000ULL
231 #define I40E_INSET_FLEX_PAYLOAD_W8 0x8000000000000000ULL
232 #define I40E_INSET_FLEX_PAYLOAD \
233         (I40E_INSET_FLEX_PAYLOAD_W1 | I40E_INSET_FLEX_PAYLOAD_W2 | \
234         I40E_INSET_FLEX_PAYLOAD_W3 | I40E_INSET_FLEX_PAYLOAD_W4 | \
235         I40E_INSET_FLEX_PAYLOAD_W5 | I40E_INSET_FLEX_PAYLOAD_W6 | \
236         I40E_INSET_FLEX_PAYLOAD_W7 | I40E_INSET_FLEX_PAYLOAD_W8)
237
238 /* The max bandwidth of i40e is 40Gbps. */
239 #define I40E_QOS_BW_MAX 40000
240 /* The bandwidth should be the multiple of 50Mbps. */
241 #define I40E_QOS_BW_GRANULARITY 50
242 /* The min bandwidth weight is 1. */
243 #define I40E_QOS_BW_WEIGHT_MIN 1
244 /* The max bandwidth weight is 127. */
245 #define I40E_QOS_BW_WEIGHT_MAX 127
246 /* The max queue region index is 7. */
247 #define I40E_REGION_MAX_INDEX 7
248
249 #define I40E_MAX_PERCENT            100
250 #define I40E_DEFAULT_DCB_APP_NUM    1
251 #define I40E_DEFAULT_DCB_APP_PRIO   3
252
253 /**
254  * The overhead from MTU to max frame size.
255  * Considering QinQ packet, the VLAN tag needs to be counted twice.
256  */
257 #define I40E_ETH_OVERHEAD \
258         (ETHER_HDR_LEN + ETHER_CRC_LEN + I40E_VLAN_TAG_SIZE * 2)
259
260 struct i40e_adapter;
261
262 /**
263  * MAC filter structure
264  */
265 struct i40e_mac_filter_info {
266         enum rte_mac_filter_type filter_type;
267         struct ether_addr mac_addr;
268 };
269
270 TAILQ_HEAD(i40e_mac_filter_list, i40e_mac_filter);
271
272 /* MAC filter list structure */
273 struct i40e_mac_filter {
274         TAILQ_ENTRY(i40e_mac_filter) next;
275         struct i40e_mac_filter_info mac_info;
276 };
277
278 TAILQ_HEAD(i40e_vsi_list_head, i40e_vsi_list);
279
280 struct i40e_vsi;
281
282 /* VSI list structure */
283 struct i40e_vsi_list {
284         TAILQ_ENTRY(i40e_vsi_list) list;
285         struct i40e_vsi *vsi;
286 };
287
288 struct i40e_rx_queue;
289 struct i40e_tx_queue;
290
291 /* Bandwidth limit information */
292 struct i40e_bw_info {
293         uint16_t bw_limit;      /* BW Limit (0 = disabled) */
294         uint8_t  bw_max;        /* Max BW limit if enabled */
295
296         /* Relative credits within same TC with respect to other VSIs or Comps */
297         uint8_t  bw_ets_share_credits[I40E_MAX_TRAFFIC_CLASS];
298         /* Bandwidth limit per TC */
299         uint16_t bw_ets_credits[I40E_MAX_TRAFFIC_CLASS];
300         /* Max bandwidth limit per TC */
301         uint8_t  bw_ets_max[I40E_MAX_TRAFFIC_CLASS];
302 };
303
304 /* Structure that defines a VEB */
305 struct i40e_veb {
306         struct i40e_vsi_list_head head;
307         struct i40e_vsi *associate_vsi; /* Associate VSI who owns the VEB */
308         struct i40e_pf *associate_pf; /* Associate PF who owns the VEB */
309         uint16_t seid; /* The seid of VEB itself */
310         uint16_t uplink_seid; /* The uplink seid of this VEB */
311         uint16_t stats_idx;
312         struct i40e_eth_stats stats;
313         uint8_t enabled_tc;   /* The traffic class enabled */
314         uint8_t strict_prio_tc; /* bit map of TCs set to strict priority mode */
315         struct i40e_bw_info bw_info; /* VEB bandwidth information */
316 };
317
318 /* i40e MACVLAN filter structure */
319 struct i40e_macvlan_filter {
320         struct ether_addr macaddr;
321         enum rte_mac_filter_type filter_type;
322         uint16_t vlan_id;
323 };
324
325 /*
326  * Structure that defines a VSI, associated with a adapter.
327  */
328 struct i40e_vsi {
329         struct i40e_adapter *adapter; /* Backreference to associated adapter */
330         struct i40e_aqc_vsi_properties_data info; /* VSI properties */
331
332         struct i40e_eth_stats eth_stats_offset;
333         struct i40e_eth_stats eth_stats;
334         /*
335          * When drivers loaded, only a default main VSI exists. In case new VSI
336          * needs to add, HW needs to know the layout that VSIs are organized.
337          * Besides that, VSI isan element and can't switch packets, which needs
338          * to add new component VEB to perform switching. So, a new VSI needs
339          * to specify the uplink VSI (Parent VSI) before created. The
340          * uplink VSI will check whether it had a VEB to switch packets. If no,
341          * it will try to create one. Then, uplink VSI will move the new VSI
342          * into its' sib_vsi_list to manage all the downlink VSI.
343          *  sib_vsi_list: the VSI list that shared the same uplink VSI.
344          *  parent_vsi  : the uplink VSI. It's NULL for main VSI.
345          *  veb         : the VEB associates with the VSI.
346          */
347         struct i40e_vsi_list sib_vsi_list; /* sibling vsi list */
348         struct i40e_vsi *parent_vsi;
349         struct i40e_veb *veb;    /* Associated veb, could be null */
350         struct i40e_veb *floating_veb; /* Associated floating veb */
351         bool offset_loaded;
352         enum i40e_vsi_type type; /* VSI types */
353         uint16_t vlan_num;       /* Total VLAN number */
354         uint16_t mac_num;        /* Total mac number */
355         uint32_t vfta[I40E_VFTA_SIZE];        /* VLAN bitmap */
356         struct i40e_mac_filter_list mac_list; /* macvlan filter list */
357         /* specific VSI-defined parameters, SRIOV stored the vf_id */
358         uint32_t user_param;
359         uint16_t seid;           /* The seid of VSI itself */
360         uint16_t uplink_seid;    /* The uplink seid of this VSI */
361         uint16_t nb_qps;         /* Number of queue pairs VSI can occupy */
362         uint16_t nb_used_qps;    /* Number of queue pairs VSI uses */
363         uint16_t max_macaddrs;   /* Maximum number of MAC addresses */
364         uint16_t base_queue;     /* The first queue index of this VSI */
365         /*
366          * The offset to visit VSI related register, assigned by HW when
367          * creating VSI
368          */
369         uint16_t vsi_id;
370         uint16_t msix_intr; /* The MSIX interrupt binds to VSI */
371         uint16_t nb_msix;   /* The max number of msix vector */
372         uint8_t enabled_tc; /* The traffic class enabled */
373         uint8_t vlan_anti_spoof_on; /* The VLAN anti-spoofing enabled */
374         uint8_t vlan_filter_on; /* The VLAN filter enabled */
375         struct i40e_bw_info bw_info; /* VSI bandwidth information */
376 };
377
378 struct pool_entry {
379         LIST_ENTRY(pool_entry) next;
380         uint16_t base;
381         uint16_t len;
382 };
383
384 LIST_HEAD(res_list, pool_entry);
385
386 struct i40e_res_pool_info {
387         uint32_t base;              /* Resource start index */
388         uint32_t num_alloc;         /* Allocated resource number */
389         uint32_t num_free;          /* Total available resource number */
390         struct res_list alloc_list; /* Allocated resource list */
391         struct res_list free_list;  /* Available resource list */
392 };
393
394 enum I40E_VF_STATE {
395         I40E_VF_INACTIVE = 0,
396         I40E_VF_INRESET,
397         I40E_VF_ININIT,
398         I40E_VF_ACTIVE,
399 };
400
401 /*
402  * Structure to store private data for PF host.
403  */
404 struct i40e_pf_vf {
405         struct i40e_pf *pf;
406         struct i40e_vsi *vsi;
407         enum I40E_VF_STATE state; /* The number of queue pairs available */
408         uint16_t vf_idx; /* VF index in pf->vfs */
409         uint16_t lan_nb_qps; /* Actual queues allocated */
410         uint16_t reset_cnt; /* Total vf reset times */
411         struct ether_addr mac_addr;  /* Default MAC address */
412         /* version of the virtchnl from VF */
413         struct virtchnl_version_info version;
414         uint32_t request_caps; /* offload caps requested from VF */
415 };
416
417 /*
418  * Structure to store private data for flow control.
419  */
420 struct i40e_fc_conf {
421         uint16_t pause_time; /* Flow control pause timer */
422         /* FC high water 0-7 for pfc and 8 for lfc unit:kilobytes */
423         uint32_t high_water[I40E_MAX_TRAFFIC_CLASS + 1];
424         /* FC low water  0-7 for pfc and 8 for lfc unit:kilobytes */
425         uint32_t low_water[I40E_MAX_TRAFFIC_CLASS + 1];
426 };
427
428 /*
429  * Structure to store private data for VMDQ instance
430  */
431 struct i40e_vmdq_info {
432         struct i40e_pf *pf;
433         struct i40e_vsi *vsi;
434 };
435
436 #define I40E_FDIR_MAX_FLEXLEN      16  /**< Max length of flexbytes. */
437 #define I40E_MAX_FLX_SOURCE_OFF    480
438 #define NONUSE_FLX_PIT_DEST_OFF 63
439 #define NONUSE_FLX_PIT_FSIZE    1
440 #define I40E_FLX_OFFSET_IN_FIELD_VECTOR   50
441 #define MK_FLX_PIT(src_offset, fsize, dst_offset) ( \
442         (((src_offset) << I40E_PRTQF_FLX_PIT_SOURCE_OFF_SHIFT) & \
443                 I40E_PRTQF_FLX_PIT_SOURCE_OFF_MASK) | \
444         (((fsize) << I40E_PRTQF_FLX_PIT_FSIZE_SHIFT) & \
445                         I40E_PRTQF_FLX_PIT_FSIZE_MASK) | \
446         ((((dst_offset) == NONUSE_FLX_PIT_DEST_OFF ? \
447                         NONUSE_FLX_PIT_DEST_OFF : \
448                         ((dst_offset) + I40E_FLX_OFFSET_IN_FIELD_VECTOR)) << \
449                         I40E_PRTQF_FLX_PIT_DEST_OFF_SHIFT) & \
450                         I40E_PRTQF_FLX_PIT_DEST_OFF_MASK))
451 #define I40E_WORD(hi, lo) (uint16_t)((((hi) << 8) & 0xFF00) | ((lo) & 0xFF))
452 #define I40E_FLEX_WORD_MASK(off) (0x80 >> (off))
453 #define I40E_FDIR_IPv6_TC_OFFSET        20
454
455 /* A structure used to define the input for GTP flow */
456 struct i40e_gtp_flow {
457         struct rte_eth_udpv4_flow udp; /* IPv4 UDP fields to match. */
458         uint8_t msg_type;              /* Message type. */
459         uint32_t teid;                 /* TEID in big endian. */
460 };
461
462 /* A structure used to define the input for GTP IPV4 flow */
463 struct i40e_gtp_ipv4_flow {
464         struct i40e_gtp_flow gtp;
465         struct rte_eth_ipv4_flow ip4;
466 };
467
468 /* A structure used to define the input for GTP IPV6 flow */
469 struct i40e_gtp_ipv6_flow {
470         struct i40e_gtp_flow gtp;
471         struct rte_eth_ipv6_flow ip6;
472 };
473
474 /* A structure used to define the input for raw type flow */
475 struct i40e_raw_flow {
476         uint16_t pctype;
477         void *packet;
478         uint32_t length;
479 };
480
481 /*
482  * A union contains the inputs for all types of flow
483  * items in flows need to be in big endian
484  */
485 union i40e_fdir_flow {
486         struct rte_eth_l2_flow     l2_flow;
487         struct rte_eth_udpv4_flow  udp4_flow;
488         struct rte_eth_tcpv4_flow  tcp4_flow;
489         struct rte_eth_sctpv4_flow sctp4_flow;
490         struct rte_eth_ipv4_flow   ip4_flow;
491         struct rte_eth_udpv6_flow  udp6_flow;
492         struct rte_eth_tcpv6_flow  tcp6_flow;
493         struct rte_eth_sctpv6_flow sctp6_flow;
494         struct rte_eth_ipv6_flow   ipv6_flow;
495         struct i40e_gtp_flow       gtp_flow;
496         struct i40e_gtp_ipv4_flow  gtp_ipv4_flow;
497         struct i40e_gtp_ipv6_flow  gtp_ipv6_flow;
498         struct i40e_raw_flow       raw_flow;
499 };
500
501 enum i40e_fdir_ip_type {
502         I40E_FDIR_IPTYPE_IPV4,
503         I40E_FDIR_IPTYPE_IPV6,
504 };
505
506 /* A structure used to contain extend input of flow */
507 struct i40e_fdir_flow_ext {
508         uint16_t vlan_tci;
509         uint8_t flexbytes[RTE_ETH_FDIR_MAX_FLEXLEN];
510         /* It is filled by the flexible payload to match. */
511         uint8_t is_vf;   /* 1 for VF, 0 for port dev */
512         uint16_t dst_id; /* VF ID, available when is_vf is 1*/
513         bool inner_ip;   /* If there is inner ip */
514         enum i40e_fdir_ip_type iip_type; /* ip type for inner ip */
515         bool customized_pctype; /* If customized pctype is used */
516         bool pkt_template; /* If raw packet template is used */
517 };
518
519 /* A structure used to define the input for a flow director filter entry */
520 struct i40e_fdir_input {
521         enum i40e_filter_pctype pctype;
522         union i40e_fdir_flow flow;
523         /* Flow fields to match, dependent on flow_type */
524         struct i40e_fdir_flow_ext flow_ext;
525         /* Additional fields to match */
526 };
527
528 /* Behavior will be taken if FDIR match */
529 enum i40e_fdir_behavior {
530         I40E_FDIR_ACCEPT = 0,
531         I40E_FDIR_REJECT,
532         I40E_FDIR_PASSTHRU,
533 };
534
535 /* Flow director report status
536  * It defines what will be reported if FDIR entry is matched.
537  */
538 enum i40e_fdir_status {
539         I40E_FDIR_NO_REPORT_STATUS = 0, /* Report nothing. */
540         I40E_FDIR_REPORT_ID,            /* Only report FD ID. */
541         I40E_FDIR_REPORT_ID_FLEX_4,     /* Report FD ID and 4 flex bytes. */
542         I40E_FDIR_REPORT_FLEX_8,        /* Report 8 flex bytes. */
543 };
544
545 /* A structure used to define an action when match FDIR packet filter. */
546 struct i40e_fdir_action {
547         uint16_t rx_queue;        /* Queue assigned to if FDIR match. */
548         enum i40e_fdir_behavior behavior;     /* Behavior will be taken */
549         enum i40e_fdir_status report_status;  /* Status report option */
550         /* If report_status is I40E_FDIR_REPORT_ID_FLEX_4 or
551          * I40E_FDIR_REPORT_FLEX_8, flex_off specifies where the reported
552          * flex bytes start from in flexible payload.
553          */
554         uint8_t flex_off;
555 };
556
557 /* A structure used to define the flow director filter entry by filter_ctrl API
558  * It supports RTE_ETH_FILTER_FDIR with RTE_ETH_FILTER_ADD and
559  * RTE_ETH_FILTER_DELETE operations.
560  */
561 struct i40e_fdir_filter_conf {
562         uint32_t soft_id;
563         /* ID, an unique value is required when deal with FDIR entry */
564         struct i40e_fdir_input input;    /* Input set */
565         struct i40e_fdir_action action;  /* Action taken when match */
566 };
567
568 /*
569  * Structure to store flex pit for flow diretor.
570  */
571 struct i40e_fdir_flex_pit {
572         uint8_t src_offset;    /* offset in words from the beginning of payload */
573         uint8_t size;          /* size in words */
574         uint8_t dst_offset;    /* offset in words of flexible payload */
575 };
576
577 struct i40e_fdir_flex_mask {
578         uint8_t word_mask;  /**< Bit i enables word i of flexible payload */
579         uint8_t nb_bitmask;
580         struct {
581                 uint8_t offset;
582                 uint16_t mask;
583         } bitmask[I40E_FDIR_BITMASK_NUM_WORD];
584 };
585
586 #define I40E_FILTER_PCTYPE_INVALID 0
587 #define I40E_FILTER_PCTYPE_MAX     64
588 #define I40E_MAX_FDIR_FILTER_NUM   (1024 * 8)
589
590 struct i40e_fdir_filter {
591         TAILQ_ENTRY(i40e_fdir_filter) rules;
592         struct i40e_fdir_filter_conf fdir;
593 };
594
595 TAILQ_HEAD(i40e_fdir_filter_list, i40e_fdir_filter);
596 /*
597  *  A structure used to define fields of a FDIR related info.
598  */
599 struct i40e_fdir_info {
600         struct i40e_vsi *fdir_vsi;     /* pointer to fdir VSI structure */
601         uint16_t match_counter_index;  /* Statistic counter index used for fdir*/
602         struct i40e_tx_queue *txq;
603         struct i40e_rx_queue *rxq;
604         void *prg_pkt;                 /* memory for fdir program packet */
605         uint64_t dma_addr;             /* physic address of packet memory*/
606         /* input set bits for each pctype */
607         uint64_t input_set[I40E_FILTER_PCTYPE_MAX];
608         /*
609          * the rule how bytes stream is extracted as flexible payload
610          * for each payload layer, the setting can up to three elements
611          */
612         struct i40e_fdir_flex_pit flex_set[I40E_MAX_FLXPLD_LAYER * I40E_MAX_FLXPLD_FIED];
613         struct i40e_fdir_flex_mask flex_mask[I40E_FILTER_PCTYPE_MAX];
614
615         struct i40e_fdir_filter_list fdir_list;
616         struct i40e_fdir_filter **hash_map;
617         struct rte_hash *hash_table;
618
619         /* Mark if flex pit and mask is set */
620         bool flex_pit_flag[I40E_MAX_FLXPLD_LAYER];
621         bool flex_mask_flag[I40E_FILTER_PCTYPE_MAX];
622
623         bool inset_flag[I40E_FILTER_PCTYPE_MAX]; /* Mark if input set is set */
624 };
625
626 /* Ethertype filter number HW supports */
627 #define I40E_MAX_ETHERTYPE_FILTER_NUM 768
628
629 /* Ethertype filter struct */
630 struct i40e_ethertype_filter_input {
631         struct ether_addr mac_addr;   /* Mac address to match */
632         uint16_t ether_type;          /* Ether type to match */
633 };
634
635 struct i40e_ethertype_filter {
636         TAILQ_ENTRY(i40e_ethertype_filter) rules;
637         struct i40e_ethertype_filter_input input;
638         uint16_t flags;              /* Flags from RTE_ETHTYPE_FLAGS_* */
639         uint16_t queue;              /* Queue assigned to when match */
640 };
641
642 TAILQ_HEAD(i40e_ethertype_filter_list, i40e_ethertype_filter);
643
644 struct i40e_ethertype_rule {
645         struct i40e_ethertype_filter_list ethertype_list;
646         struct i40e_ethertype_filter  **hash_map;
647         struct rte_hash *hash_table;
648 };
649
650 /* queue region info */
651 struct i40e_queue_region_info {
652         /* the region id for this configuration */
653         uint8_t region_id;
654         /* the start queue index for this region */
655         uint8_t queue_start_index;
656         /* the total queue number of this queue region */
657         uint8_t queue_num;
658         /* the total number of user priority for this region */
659         uint8_t user_priority_num;
660         /* the packet's user priority for this region */
661         uint8_t user_priority[I40E_MAX_USER_PRIORITY];
662         /* the total number of flowtype for this region */
663         uint8_t flowtype_num;
664         /**
665          * the pctype or hardware flowtype of packet,
666          * the specific index for each type has been defined
667          * in file i40e_type.h as enum i40e_filter_pctype.
668          */
669         uint8_t hw_flowtype[I40E_FILTER_PCTYPE_MAX];
670 };
671
672 struct i40e_queue_regions {
673         /* the total number of queue region for this port */
674         uint16_t queue_region_number;
675         struct i40e_queue_region_info region[I40E_REGION_MAX_INDEX + 1];
676 };
677
678 /* Tunnel filter number HW supports */
679 #define I40E_MAX_TUNNEL_FILTER_NUM 400
680
681 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_TEID_WORD0 44
682 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_TEID_WORD1 45
683 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MPLSOUDP    8
684 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MPLSOGRE    9
685 #define I40E_AQC_ADD_CLOUD_FILTER_0X10          0x10
686 #define I40E_AQC_ADD_CLOUD_FILTER_0X11          0x11
687 #define I40E_AQC_ADD_CLOUD_FILTER_0X12          0x12
688 #define I40E_AQC_ADD_L1_FILTER_0X11             0x11
689 #define I40E_AQC_ADD_L1_FILTER_0X12             0x12
690 #define I40E_AQC_ADD_L1_FILTER_0X13             0x13
691 #define I40E_AQC_NEW_TR_21                      21
692 #define I40E_AQC_NEW_TR_22                      22
693
694 enum i40e_tunnel_iptype {
695         I40E_TUNNEL_IPTYPE_IPV4,
696         I40E_TUNNEL_IPTYPE_IPV6,
697 };
698
699 /* Tunnel filter struct */
700 struct i40e_tunnel_filter_input {
701         uint8_t outer_mac[6];    /* Outer mac address to match */
702         uint8_t inner_mac[6];    /* Inner mac address to match */
703         uint16_t inner_vlan;     /* Inner vlan address to match */
704         enum i40e_tunnel_iptype ip_type;
705         uint16_t flags;          /* Filter type flag */
706         uint32_t tenant_id;      /* Tenant id to match */
707         uint16_t general_fields[32];  /* Big buffer */
708 };
709
710 struct i40e_tunnel_filter {
711         TAILQ_ENTRY(i40e_tunnel_filter) rules;
712         struct i40e_tunnel_filter_input input;
713         uint8_t is_to_vf; /* 0 - to PF, 1 - to VF */
714         uint16_t vf_id;   /* VF id, avaiblable when is_to_vf is 1. */
715         uint16_t queue; /* Queue assigned to when match */
716 };
717
718 TAILQ_HEAD(i40e_tunnel_filter_list, i40e_tunnel_filter);
719
720 struct i40e_tunnel_rule {
721         struct i40e_tunnel_filter_list tunnel_list;
722         struct i40e_tunnel_filter  **hash_map;
723         struct rte_hash *hash_table;
724 };
725
726 /**
727  * Tunnel type.
728  */
729 enum i40e_tunnel_type {
730         I40E_TUNNEL_TYPE_NONE = 0,
731         I40E_TUNNEL_TYPE_VXLAN,
732         I40E_TUNNEL_TYPE_GENEVE,
733         I40E_TUNNEL_TYPE_TEREDO,
734         I40E_TUNNEL_TYPE_NVGRE,
735         I40E_TUNNEL_TYPE_IP_IN_GRE,
736         I40E_L2_TUNNEL_TYPE_E_TAG,
737         I40E_TUNNEL_TYPE_MPLSoUDP,
738         I40E_TUNNEL_TYPE_MPLSoGRE,
739         I40E_TUNNEL_TYPE_QINQ,
740         I40E_TUNNEL_TYPE_GTPC,
741         I40E_TUNNEL_TYPE_GTPU,
742         I40E_TUNNEL_TYPE_MAX,
743 };
744
745 /**
746  * Tunneling Packet filter configuration.
747  */
748 struct i40e_tunnel_filter_conf {
749         struct ether_addr outer_mac;    /**< Outer MAC address to match. */
750         struct ether_addr inner_mac;    /**< Inner MAC address to match. */
751         uint16_t inner_vlan;            /**< Inner VLAN to match. */
752         uint32_t outer_vlan;            /**< Outer VLAN to match */
753         enum i40e_tunnel_iptype ip_type; /**< IP address type. */
754         /**
755          * Outer destination IP address to match if ETH_TUNNEL_FILTER_OIP
756          * is set in filter_type, or inner destination IP address to match
757          * if ETH_TUNNEL_FILTER_IIP is set in filter_type.
758          */
759         union {
760                 uint32_t ipv4_addr;     /**< IPv4 address in big endian. */
761                 uint32_t ipv6_addr[4];  /**< IPv6 address in big endian. */
762         } ip_addr;
763         /** Flags from ETH_TUNNEL_FILTER_XX - see above. */
764         uint16_t filter_type;
765         enum i40e_tunnel_type tunnel_type; /**< Tunnel Type. */
766         uint32_t tenant_id;     /**< Tenant ID to match. VNI, GRE key... */
767         uint16_t queue_id;      /**< Queue assigned to if match. */
768         uint8_t is_to_vf;       /**< 0 - to PF, 1 - to VF */
769         uint16_t vf_id;         /**< VF id, avaiblable when is_to_vf is 1. */
770 };
771
772 #define I40E_MIRROR_MAX_ENTRIES_PER_RULE   64
773 #define I40E_MAX_MIRROR_RULES           64
774 /*
775  * Mirror rule structure
776  */
777 struct i40e_mirror_rule {
778         TAILQ_ENTRY(i40e_mirror_rule) rules;
779         uint8_t rule_type;
780         uint16_t index;          /* the sw index of mirror rule */
781         uint16_t id;             /* the rule id assigned by firmware */
782         uint16_t dst_vsi_seid;   /* destination vsi for this mirror rule. */
783         uint16_t num_entries;
784         /* the info stores depend on the rule type.
785             If type is I40E_MIRROR_TYPE_VLAN, vlan ids are stored here.
786             If type is I40E_MIRROR_TYPE_VPORT_*, vsi's seid are stored.
787          */
788         uint16_t entries[I40E_MIRROR_MAX_ENTRIES_PER_RULE];
789 };
790
791 TAILQ_HEAD(i40e_mirror_rule_list, i40e_mirror_rule);
792
793 /*
794  * Struct to store flow created.
795  */
796 struct rte_flow {
797         TAILQ_ENTRY(rte_flow) node;
798         enum rte_filter_type filter_type;
799         void *rule;
800 };
801
802 TAILQ_HEAD(i40e_flow_list, rte_flow);
803
804 /* Struct to store Traffic Manager shaper profile. */
805 struct i40e_tm_shaper_profile {
806         TAILQ_ENTRY(i40e_tm_shaper_profile) node;
807         uint32_t shaper_profile_id;
808         uint32_t reference_count;
809         struct rte_tm_shaper_params profile;
810 };
811
812 TAILQ_HEAD(i40e_shaper_profile_list, i40e_tm_shaper_profile);
813
814 /* node type of Traffic Manager */
815 enum i40e_tm_node_type {
816         I40E_TM_NODE_TYPE_PORT,
817         I40E_TM_NODE_TYPE_TC,
818         I40E_TM_NODE_TYPE_QUEUE,
819         I40E_TM_NODE_TYPE_MAX,
820 };
821
822 /* Struct to store Traffic Manager node configuration. */
823 struct i40e_tm_node {
824         TAILQ_ENTRY(i40e_tm_node) node;
825         uint32_t id;
826         uint32_t priority;
827         uint32_t weight;
828         uint32_t reference_count;
829         struct i40e_tm_node *parent;
830         struct i40e_tm_shaper_profile *shaper_profile;
831         struct rte_tm_node_params params;
832 };
833
834 TAILQ_HEAD(i40e_tm_node_list, i40e_tm_node);
835
836 /* Struct to store all the Traffic Manager configuration. */
837 struct i40e_tm_conf {
838         struct i40e_shaper_profile_list shaper_profile_list;
839         struct i40e_tm_node *root; /* root node - port */
840         struct i40e_tm_node_list tc_list; /* node list for all the TCs */
841         struct i40e_tm_node_list queue_list; /* node list for all the queues */
842         /**
843          * The number of added TC nodes.
844          * It should be no more than the TC number of this port.
845          */
846         uint32_t nb_tc_node;
847         /**
848          * The number of added queue nodes.
849          * It should be no more than the queue number of this port.
850          */
851         uint32_t nb_queue_node;
852         /**
853          * This flag is used to check if APP can change the TM node
854          * configuration.
855          * When it's true, means the configuration is applied to HW,
856          * APP should not change the configuration.
857          * As we don't support on-the-fly configuration, when starting
858          * the port, APP should call the hierarchy_commit API to set this
859          * flag to true. When stopping the port, this flag should be set
860          * to false.
861          */
862         bool committed;
863 };
864
865 enum i40e_new_pctype {
866         I40E_CUSTOMIZED_GTPC = 0,
867         I40E_CUSTOMIZED_GTPU_IPV4,
868         I40E_CUSTOMIZED_GTPU_IPV6,
869         I40E_CUSTOMIZED_GTPU,
870         I40E_CUSTOMIZED_MAX,
871 };
872
873 #define I40E_FILTER_PCTYPE_INVALID     0
874 struct i40e_customized_pctype {
875         enum i40e_new_pctype index;  /* Indicate which customized pctype */
876         uint8_t pctype;   /* New pctype value */
877         bool valid;   /* Check if it's valid */
878 };
879
880 struct i40e_rte_flow_rss_conf {
881         struct rte_eth_rss_conf rss_conf; /**< RSS parameters. */
882         uint16_t queue_region_conf; /**< Queue region config flag */
883         uint16_t num; /**< Number of entries in queue[]. */
884         uint16_t queue[I40E_MAX_Q_PER_TC]; /**< Queues indices to use. */
885 };
886
887 /*
888  * Structure to store private data specific for PF instance.
889  */
890 struct i40e_pf {
891         struct i40e_adapter *adapter; /* The adapter this PF associate to */
892         struct i40e_vsi *main_vsi; /* pointer to main VSI structure */
893         uint16_t mac_seid; /* The seid of the MAC of this PF */
894         uint16_t main_vsi_seid; /* The seid of the main VSI */
895         uint16_t max_num_vsi;
896         struct i40e_res_pool_info qp_pool;    /*Queue pair pool */
897         struct i40e_res_pool_info msix_pool;  /* MSIX interrupt pool */
898
899         struct i40e_hw_port_stats stats_offset;
900         struct i40e_hw_port_stats stats;
901         /* internal packet statistics, it should be excluded from the total */
902         struct i40e_eth_stats internal_stats_offset;
903         struct i40e_eth_stats internal_stats;
904         bool offset_loaded;
905
906         struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
907         struct ether_addr dev_addr; /* PF device mac address */
908         uint64_t flags; /* PF feature flags */
909         /* All kinds of queue pair setting for different VSIs */
910         struct i40e_pf_vf *vfs;
911         uint16_t vf_num;
912         /* Each of below queue pairs should be power of 2 since it's the
913            precondition after TC configuration applied */
914         uint16_t lan_nb_qp_max;
915         uint16_t lan_nb_qps; /* The number of queue pairs of LAN */
916         uint16_t lan_qp_offset;
917         uint16_t vmdq_nb_qp_max;
918         uint16_t vmdq_nb_qps; /* The number of queue pairs of VMDq */
919         uint16_t vmdq_qp_offset;
920         uint16_t vf_nb_qp_max;
921         uint16_t vf_nb_qps; /* The number of queue pairs of VF */
922         uint16_t vf_qp_offset;
923         uint16_t fdir_nb_qps; /* The number of queue pairs of Flow Director */
924         uint16_t fdir_qp_offset;
925
926         uint16_t hash_lut_size; /* The size of hash lookup table */
927         /* input set bits for each pctype */
928         uint64_t hash_input_set[I40E_FILTER_PCTYPE_MAX];
929         /* store VXLAN UDP ports */
930         uint16_t vxlan_ports[I40E_MAX_PF_UDP_OFFLOAD_PORTS];
931         uint16_t vxlan_bitmap; /* Vxlan bit mask */
932
933         /* VMDQ related info */
934         uint16_t max_nb_vmdq_vsi; /* Max number of VMDQ VSIs supported */
935         uint16_t nb_cfg_vmdq_vsi; /* number of VMDQ VSIs configured */
936         struct i40e_vmdq_info *vmdq;
937
938         struct i40e_fdir_info fdir; /* flow director info */
939         struct i40e_ethertype_rule ethertype; /* Ethertype filter rule */
940         struct i40e_tunnel_rule tunnel; /* Tunnel filter rule */
941         struct i40e_rte_flow_rss_conf rss_info; /* rss info */
942         struct i40e_queue_regions queue_region; /* queue region info */
943         struct i40e_fc_conf fc_conf; /* Flow control conf */
944         struct i40e_mirror_rule_list mirror_list;
945         uint16_t nb_mirror_rule;   /* The number of mirror rules */
946         bool floating_veb; /* The flag to use the floating VEB */
947         /* The floating enable flag for the specific VF */
948         bool floating_veb_list[I40E_MAX_VF];
949         struct i40e_flow_list flow_list;
950         bool mpls_replace_flag;  /* 1 - MPLS filter replace is done */
951         bool gtp_replace_flag;   /* 1 - GTP-C/U filter replace is done */
952         bool qinq_replace_flag;  /* QINQ filter replace is done */
953         struct i40e_tm_conf tm_conf;
954         bool support_multi_driver; /* 1 - support multiple driver */
955
956         /* Dynamic Device Personalization */
957         bool gtp_support; /* 1 - support GTP-C and GTP-U */
958         /* customer customized pctype */
959         struct i40e_customized_pctype customized_pctype[I40E_CUSTOMIZED_MAX];
960 };
961
962 enum pending_msg {
963         PFMSG_LINK_CHANGE = 0x1,
964         PFMSG_RESET_IMPENDING = 0x2,
965         PFMSG_DRIVER_CLOSE = 0x4,
966 };
967
968 struct i40e_vsi_vlan_pvid_info {
969         uint16_t on;            /* Enable or disable pvid */
970         union {
971                 uint16_t pvid;  /* Valid in case 'on' is set to set pvid */
972                 struct {
973                 /*  Valid in case 'on' is cleared. 'tagged' will reject tagged packets,
974                  *  while 'untagged' will reject untagged packets.
975                  */
976                         uint8_t tagged;
977                         uint8_t untagged;
978                 } reject;
979         } config;
980 };
981
982 struct i40e_vf_rx_queues {
983         uint64_t rx_dma_addr;
984         uint32_t rx_ring_len;
985         uint32_t buff_size;
986 };
987
988 struct i40e_vf_tx_queues {
989         uint64_t tx_dma_addr;
990         uint32_t tx_ring_len;
991 };
992
993 /*
994  * Structure to store private data specific for VF instance.
995  */
996 struct i40e_vf {
997         struct i40e_adapter *adapter; /* The adapter this VF associate to */
998         struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
999         uint16_t num_queue_pairs;
1000         uint16_t max_pkt_len; /* Maximum packet length */
1001         bool promisc_unicast_enabled;
1002         bool promisc_multicast_enabled;
1003
1004         uint32_t version_major; /* Major version number */
1005         uint32_t version_minor; /* Minor version number */
1006         uint16_t promisc_flags; /* Promiscuous setting */
1007         uint32_t vlan[I40E_VFTA_SIZE]; /* VLAN bit map */
1008
1009         struct ether_addr mc_addrs[I40E_NUM_MACADDR_MAX]; /* Multicast addrs */
1010         uint16_t mc_addrs_num;   /* Multicast mac addresses number */
1011
1012         /* Event from pf */
1013         bool dev_closed;
1014         bool link_up;
1015         enum virtchnl_link_speed link_speed;
1016         bool vf_reset;
1017         volatile uint32_t pend_cmd; /* pending command not finished yet */
1018         int32_t cmd_retval; /* return value of the cmd response from PF */
1019         u16 pend_msg; /* flags indicates events from pf not handled yet */
1020         uint8_t *aq_resp; /* buffer to store the adminq response from PF */
1021
1022         /* VSI info */
1023         struct virtchnl_vf_resource *vf_res; /* All VSIs */
1024         struct virtchnl_vsi_resource *vsi_res; /* LAN VSI */
1025         struct i40e_vsi vsi;
1026         uint64_t flags;
1027 };
1028
1029 #define I40E_MAX_PKT_TYPE  256
1030 #define I40E_FLOW_TYPE_MAX 64
1031
1032 /*
1033  * Structure to store private data for each PF/VF instance.
1034  */
1035 struct i40e_adapter {
1036         /* Common for both PF and VF */
1037         struct i40e_hw hw;
1038         struct rte_eth_dev *eth_dev;
1039
1040         /* Specific for PF or VF */
1041         union {
1042                 struct i40e_pf pf;
1043                 struct i40e_vf vf;
1044         };
1045
1046         /* For vector PMD */
1047         bool rx_bulk_alloc_allowed;
1048         bool rx_vec_allowed;
1049         bool tx_simple_allowed;
1050         bool tx_vec_allowed;
1051
1052         /* For PTP */
1053         struct rte_timecounter systime_tc;
1054         struct rte_timecounter rx_tstamp_tc;
1055         struct rte_timecounter tx_tstamp_tc;
1056
1057         /* ptype mapping table */
1058         uint32_t ptype_tbl[I40E_MAX_PKT_TYPE] __rte_cache_min_aligned;
1059         /* flow type to pctype mapping table */
1060         uint64_t pctypes_tbl[I40E_FLOW_TYPE_MAX] __rte_cache_min_aligned;
1061         uint64_t flow_types_mask;
1062         uint64_t pctypes_mask;
1063 };
1064
1065 extern const struct rte_flow_ops i40e_flow_ops;
1066
1067 union i40e_filter_t {
1068         struct rte_eth_ethertype_filter ethertype_filter;
1069         struct i40e_fdir_filter_conf fdir_filter;
1070         struct rte_eth_tunnel_filter_conf tunnel_filter;
1071         struct i40e_tunnel_filter_conf consistent_tunnel_filter;
1072         struct i40e_rte_flow_rss_conf rss_conf;
1073 };
1074
1075 typedef int (*parse_filter_t)(struct rte_eth_dev *dev,
1076                               const struct rte_flow_attr *attr,
1077                               const struct rte_flow_item pattern[],
1078                               const struct rte_flow_action actions[],
1079                               struct rte_flow_error *error,
1080                               union i40e_filter_t *filter);
1081 struct i40e_valid_pattern {
1082         enum rte_flow_item_type *items;
1083         parse_filter_t parse_filter;
1084 };
1085
1086 enum I40E_WARNING_IDX {
1087         I40E_WARNING_DIS_FLX_PLD,
1088         I40E_WARNING_ENA_FLX_PLD,
1089         I40E_WARNING_QINQ_PARSER,
1090         I40E_WARNING_QINQ_CLOUD_FILTER,
1091         I40E_WARNING_TPID,
1092         I40E_WARNING_FLOW_CTL,
1093         I40E_WARNING_GRE_KEY_LEN,
1094         I40E_WARNING_QF_CTL,
1095         I40E_WARNING_HASH_INSET,
1096         I40E_WARNING_HSYM,
1097         I40E_WARNING_HASH_MSK,
1098         I40E_WARNING_FD_MSK,
1099         I40E_WARNING_RPL_CLD_FILTER,
1100 };
1101
1102 int i40e_dev_switch_queues(struct i40e_pf *pf, bool on);
1103 int i40e_vsi_release(struct i40e_vsi *vsi);
1104 struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf,
1105                                 enum i40e_vsi_type type,
1106                                 struct i40e_vsi *uplink_vsi,
1107                                 uint16_t user_param);
1108 int i40e_switch_rx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
1109 int i40e_switch_tx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
1110 int i40e_vsi_add_vlan(struct i40e_vsi *vsi, uint16_t vlan);
1111 int i40e_vsi_delete_vlan(struct i40e_vsi *vsi, uint16_t vlan);
1112 int i40e_vsi_add_mac(struct i40e_vsi *vsi, struct i40e_mac_filter_info *filter);
1113 int i40e_vsi_delete_mac(struct i40e_vsi *vsi, struct ether_addr *addr);
1114 void i40e_update_vsi_stats(struct i40e_vsi *vsi);
1115 void i40e_pf_disable_irq0(struct i40e_hw *hw);
1116 void i40e_pf_enable_irq0(struct i40e_hw *hw);
1117 int i40e_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete);
1118 void i40e_vsi_queues_bind_intr(struct i40e_vsi *vsi, uint16_t itr_idx);
1119 void i40e_vsi_queues_unbind_intr(struct i40e_vsi *vsi);
1120 int i40e_vsi_vlan_pvid_set(struct i40e_vsi *vsi,
1121                            struct i40e_vsi_vlan_pvid_info *info);
1122 int i40e_vsi_config_vlan_stripping(struct i40e_vsi *vsi, bool on);
1123 int i40e_vsi_config_vlan_filter(struct i40e_vsi *vsi, bool on);
1124 uint64_t i40e_config_hena(const struct i40e_adapter *adapter, uint64_t flags);
1125 uint64_t i40e_parse_hena(const struct i40e_adapter *adapter, uint64_t flags);
1126 enum i40e_status_code i40e_fdir_setup_tx_resources(struct i40e_pf *pf);
1127 enum i40e_status_code i40e_fdir_setup_rx_resources(struct i40e_pf *pf);
1128 int i40e_fdir_setup(struct i40e_pf *pf);
1129 const struct rte_memzone *i40e_memzone_reserve(const char *name,
1130                                         uint32_t len,
1131                                         int socket_id);
1132 int i40e_fdir_configure(struct rte_eth_dev *dev);
1133 void i40e_fdir_teardown(struct i40e_pf *pf);
1134 enum i40e_filter_pctype
1135         i40e_flowtype_to_pctype(const struct i40e_adapter *adapter,
1136                                 uint16_t flow_type);
1137 uint16_t i40e_pctype_to_flowtype(const struct i40e_adapter *adapter,
1138                                  enum i40e_filter_pctype pctype);
1139 int i40e_fdir_ctrl_func(struct rte_eth_dev *dev,
1140                           enum rte_filter_op filter_op,
1141                           void *arg);
1142 int i40e_select_filter_input_set(struct i40e_hw *hw,
1143                                  struct rte_eth_input_set_conf *conf,
1144                                  enum rte_filter_type filter);
1145 void i40e_fdir_filter_restore(struct i40e_pf *pf);
1146 int i40e_hash_filter_inset_select(struct i40e_hw *hw,
1147                              struct rte_eth_input_set_conf *conf);
1148 int i40e_fdir_filter_inset_select(struct i40e_pf *pf,
1149                              struct rte_eth_input_set_conf *conf);
1150 int i40e_pf_host_send_msg_to_vf(struct i40e_pf_vf *vf, uint32_t opcode,
1151                                 uint32_t retval, uint8_t *msg,
1152                                 uint16_t msglen);
1153 void i40e_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
1154         struct rte_eth_rxq_info *qinfo);
1155 void i40e_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
1156         struct rte_eth_txq_info *qinfo);
1157 struct i40e_ethertype_filter *
1158 i40e_sw_ethertype_filter_lookup(struct i40e_ethertype_rule *ethertype_rule,
1159                         const struct i40e_ethertype_filter_input *input);
1160 int i40e_sw_ethertype_filter_del(struct i40e_pf *pf,
1161                                  struct i40e_ethertype_filter_input *input);
1162 int i40e_sw_fdir_filter_del(struct i40e_pf *pf,
1163                             struct i40e_fdir_input *input);
1164 struct i40e_tunnel_filter *
1165 i40e_sw_tunnel_filter_lookup(struct i40e_tunnel_rule *tunnel_rule,
1166                              const struct i40e_tunnel_filter_input *input);
1167 int i40e_sw_tunnel_filter_del(struct i40e_pf *pf,
1168                               struct i40e_tunnel_filter_input *input);
1169 uint64_t i40e_get_default_input_set(uint16_t pctype);
1170 int i40e_ethertype_filter_set(struct i40e_pf *pf,
1171                               struct rte_eth_ethertype_filter *filter,
1172                               bool add);
1173 int i40e_add_del_fdir_filter(struct rte_eth_dev *dev,
1174                              const struct rte_eth_fdir_filter *filter,
1175                              bool add);
1176 int i40e_flow_add_del_fdir_filter(struct rte_eth_dev *dev,
1177                                   const struct i40e_fdir_filter_conf *filter,
1178                                   bool add);
1179 int i40e_dev_tunnel_filter_set(struct i40e_pf *pf,
1180                                struct rte_eth_tunnel_filter_conf *tunnel_filter,
1181                                uint8_t add);
1182 int i40e_dev_consistent_tunnel_filter_set(struct i40e_pf *pf,
1183                                   struct i40e_tunnel_filter_conf *tunnel_filter,
1184                                   uint8_t add);
1185 int i40e_fdir_flush(struct rte_eth_dev *dev);
1186 int i40e_find_all_vlan_for_mac(struct i40e_vsi *vsi,
1187                                struct i40e_macvlan_filter *mv_f,
1188                                int num, struct ether_addr *addr);
1189 int i40e_remove_macvlan_filters(struct i40e_vsi *vsi,
1190                                 struct i40e_macvlan_filter *filter,
1191                                 int total);
1192 void i40e_set_vlan_filter(struct i40e_vsi *vsi, uint16_t vlan_id, bool on);
1193 int i40e_add_macvlan_filters(struct i40e_vsi *vsi,
1194                              struct i40e_macvlan_filter *filter,
1195                              int total);
1196 bool is_i40e_supported(struct rte_eth_dev *dev);
1197
1198 int i40e_validate_input_set(enum i40e_filter_pctype pctype,
1199                             enum rte_filter_type filter, uint64_t inset);
1200 int i40e_generate_inset_mask_reg(uint64_t inset, uint32_t *mask,
1201                                  uint8_t nb_elem);
1202 uint64_t i40e_translate_input_set_reg(enum i40e_mac_type type, uint64_t input);
1203 void i40e_check_write_reg(struct i40e_hw *hw, uint32_t addr, uint32_t val);
1204 void i40e_check_write_global_reg(struct i40e_hw *hw,
1205                                  uint32_t addr, uint32_t val);
1206
1207 int i40e_tm_ops_get(struct rte_eth_dev *dev, void *ops);
1208 void i40e_tm_conf_init(struct rte_eth_dev *dev);
1209 void i40e_tm_conf_uninit(struct rte_eth_dev *dev);
1210 struct i40e_customized_pctype*
1211 i40e_find_customized_pctype(struct i40e_pf *pf, uint8_t index);
1212 void i40e_update_customized_info(struct rte_eth_dev *dev, uint8_t *pkg,
1213                                  uint32_t pkg_size,
1214                                  enum rte_pmd_i40e_package_op op);
1215 int i40e_dcb_init_configure(struct rte_eth_dev *dev, bool sw_dcb);
1216 int i40e_flush_queue_region_all_conf(struct rte_eth_dev *dev,
1217                 struct i40e_hw *hw, struct i40e_pf *pf, uint16_t on);
1218 void i40e_init_queue_region_conf(struct rte_eth_dev *dev);
1219 void i40e_flex_payload_reg_set_default(struct i40e_hw *hw);
1220 int i40e_set_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t key_len);
1221 int i40e_set_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size);
1222 int i40e_config_rss_filter(struct i40e_pf *pf,
1223                 struct i40e_rte_flow_rss_conf *conf, bool add);
1224
1225 #define I40E_DEV_TO_PCI(eth_dev) \
1226         RTE_DEV_TO_PCI((eth_dev)->device)
1227
1228 /* I40E_DEV_PRIVATE_TO */
1229 #define I40E_DEV_PRIVATE_TO_PF(adapter) \
1230         (&((struct i40e_adapter *)adapter)->pf)
1231 #define I40E_DEV_PRIVATE_TO_HW(adapter) \
1232         (&((struct i40e_adapter *)adapter)->hw)
1233 #define I40E_DEV_PRIVATE_TO_ADAPTER(adapter) \
1234         ((struct i40e_adapter *)adapter)
1235
1236 /* I40EVF_DEV_PRIVATE_TO */
1237 #define I40EVF_DEV_PRIVATE_TO_VF(adapter) \
1238         (&((struct i40e_adapter *)adapter)->vf)
1239
1240 static inline struct i40e_vsi *
1241 i40e_get_vsi_from_adapter(struct i40e_adapter *adapter)
1242 {
1243         struct i40e_hw *hw;
1244
1245         if (!adapter)
1246                 return NULL;
1247
1248         hw = I40E_DEV_PRIVATE_TO_HW(adapter);
1249         if (hw->mac.type == I40E_MAC_VF || hw->mac.type == I40E_MAC_X722_VF) {
1250                 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(adapter);
1251                 return &vf->vsi;
1252         } else {
1253                 struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(adapter);
1254                 return pf->main_vsi;
1255         }
1256 }
1257 #define I40E_DEV_PRIVATE_TO_MAIN_VSI(adapter) \
1258         i40e_get_vsi_from_adapter((struct i40e_adapter *)adapter)
1259
1260 /* I40E_VSI_TO */
1261 #define I40E_VSI_TO_HW(vsi) \
1262         (&(((struct i40e_vsi *)vsi)->adapter->hw))
1263 #define I40E_VSI_TO_PF(vsi) \
1264         (&(((struct i40e_vsi *)vsi)->adapter->pf))
1265 #define I40E_VSI_TO_VF(vsi) \
1266         (&(((struct i40e_vsi *)vsi)->adapter->vf))
1267 #define I40E_VSI_TO_DEV_DATA(vsi) \
1268         (((struct i40e_vsi *)vsi)->adapter->pf.dev_data)
1269 #define I40E_VSI_TO_ETH_DEV(vsi) \
1270         (((struct i40e_vsi *)vsi)->adapter->eth_dev)
1271
1272 /* I40E_PF_TO */
1273 #define I40E_PF_TO_HW(pf) \
1274         (&(((struct i40e_pf *)pf)->adapter->hw))
1275 #define I40E_PF_TO_ADAPTER(pf) \
1276         ((struct i40e_adapter *)pf->adapter)
1277
1278 /* I40E_VF_TO */
1279 #define I40E_VF_TO_HW(vf) \
1280         (&(((struct i40e_vf *)vf)->adapter->hw))
1281
1282 static inline void
1283 i40e_init_adminq_parameter(struct i40e_hw *hw)
1284 {
1285         hw->aq.num_arq_entries = I40E_AQ_LEN;
1286         hw->aq.num_asq_entries = I40E_AQ_LEN;
1287         hw->aq.arq_buf_size = I40E_AQ_BUF_SZ;
1288         hw->aq.asq_buf_size = I40E_AQ_BUF_SZ;
1289 }
1290
1291 static inline int
1292 i40e_align_floor(int n)
1293 {
1294         if (n == 0)
1295                 return 0;
1296         return 1 << (sizeof(n) * CHAR_BIT - 1 - __builtin_clz(n));
1297 }
1298
1299 static inline uint16_t
1300 i40e_calc_itr_interval(int16_t interval, bool is_pf, bool is_multi_drv)
1301 {
1302         if (interval < 0 || interval > I40E_QUEUE_ITR_INTERVAL_MAX) {
1303                 if (is_multi_drv) {
1304                         interval = I40E_QUEUE_ITR_INTERVAL_MAX;
1305                 } else {
1306                         if (is_pf)
1307                                 interval = I40E_QUEUE_ITR_INTERVAL_DEFAULT;
1308                         else
1309                                 interval = I40E_VF_QUEUE_ITR_INTERVAL_DEFAULT;
1310                 }
1311         }
1312
1313         /* Convert to hardware count, as writing each 1 represents 2 us */
1314         return interval / 2;
1315 }
1316
1317 static inline void
1318 i40e_global_cfg_warning(enum I40E_WARNING_IDX idx)
1319 {
1320         const char *warning;
1321         static const char *const warning_list[] = {
1322                 [I40E_WARNING_DIS_FLX_PLD] = "disable FDIR flexible payload",
1323                 [I40E_WARNING_ENA_FLX_PLD] = "enable FDIR flexible payload",
1324                 [I40E_WARNING_QINQ_PARSER] = "support QinQ parser",
1325                 [I40E_WARNING_QINQ_CLOUD_FILTER] = "support QinQ cloud filter",
1326                 [I40E_WARNING_TPID] = "support TPID configuration",
1327                 [I40E_WARNING_FLOW_CTL] = "configure water marker",
1328                 [I40E_WARNING_GRE_KEY_LEN] = "support GRE key length setting",
1329                 [I40E_WARNING_QF_CTL] = "support hash function setting",
1330                 [I40E_WARNING_HASH_INSET] = "configure hash input set",
1331                 [I40E_WARNING_HSYM] = "set symmetric hash",
1332                 [I40E_WARNING_HASH_MSK] = "configure hash mask",
1333                 [I40E_WARNING_FD_MSK] = "configure fdir mask",
1334                 [I40E_WARNING_RPL_CLD_FILTER] = "replace cloud filter",
1335         };
1336
1337         warning = warning_list[idx];
1338
1339         RTE_LOG(WARNING, PMD,
1340                 "Global register is changed during %s\n",
1341                 warning);
1342 }
1343
1344 #define I40E_VALID_FLOW(flow_type) \
1345         ((flow_type) == RTE_ETH_FLOW_FRAG_IPV4 || \
1346         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_TCP || \
1347         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_UDP || \
1348         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_SCTP || \
1349         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_OTHER || \
1350         (flow_type) == RTE_ETH_FLOW_FRAG_IPV6 || \
1351         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_TCP || \
1352         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_UDP || \
1353         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_SCTP || \
1354         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_OTHER || \
1355         (flow_type) == RTE_ETH_FLOW_L2_PAYLOAD)
1356
1357 #define I40E_VALID_PCTYPE_X722(pctype) \
1358         ((pctype) == I40E_FILTER_PCTYPE_FRAG_IPV4 || \
1359         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP || \
1360         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK || \
1361         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_UDP || \
1362         (pctype) == I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP || \
1363         (pctype) == I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP || \
1364         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_SCTP || \
1365         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER || \
1366         (pctype) == I40E_FILTER_PCTYPE_FRAG_IPV6 || \
1367         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_UDP || \
1368         (pctype) == I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP || \
1369         (pctype) == I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP || \
1370         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP || \
1371         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK || \
1372         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_SCTP || \
1373         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_OTHER || \
1374         (pctype) == I40E_FILTER_PCTYPE_L2_PAYLOAD)
1375
1376 #define I40E_VALID_PCTYPE(pctype) \
1377         ((pctype) == I40E_FILTER_PCTYPE_FRAG_IPV4 || \
1378         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP || \
1379         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_UDP || \
1380         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_SCTP || \
1381         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER || \
1382         (pctype) == I40E_FILTER_PCTYPE_FRAG_IPV6 || \
1383         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_UDP || \
1384         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP || \
1385         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_SCTP || \
1386         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_OTHER || \
1387         (pctype) == I40E_FILTER_PCTYPE_L2_PAYLOAD)
1388
1389 #define I40E_PHY_TYPE_SUPPORT_40G(phy_type) \
1390         (((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_KR4) || \
1391         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU) || \
1392         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_AOC) || \
1393         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_CR4) || \
1394         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_SR4) || \
1395         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_LR4))
1396
1397 #define I40E_PHY_TYPE_SUPPORT_25G(phy_type) \
1398         (((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_KR) || \
1399         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_CR) || \
1400         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_SR) || \
1401         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_LR))
1402
1403 #endif /* _I40E_ETHDEV_H_ */