2ff8282f7c10afa641cd3d382297b0a0cd067909
[deb_dpdk.git] / drivers / net / i40e / i40e_ethdev.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2017 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _I40E_ETHDEV_H_
35 #define _I40E_ETHDEV_H_
36
37 #include <rte_eth_ctrl.h>
38 #include <rte_time.h>
39 #include <rte_kvargs.h>
40 #include <rte_hash.h>
41 #include <rte_flow_driver.h>
42
43 #define I40E_VLAN_TAG_SIZE        4
44
45 #define I40E_AQ_LEN               32
46 #define I40E_AQ_BUF_SZ            4096
47 /* Number of queues per TC should be one of 1, 2, 4, 8, 16, 32, 64 */
48 #define I40E_MAX_Q_PER_TC         64
49 #define I40E_NUM_DESC_DEFAULT     512
50 #define I40E_NUM_DESC_ALIGN       32
51 #define I40E_BUF_SIZE_MIN         1024
52 #define I40E_FRAME_SIZE_MAX       9728
53 #define I40E_QUEUE_BASE_ADDR_UNIT 128
54 /* number of VSIs and queue default setting */
55 #define I40E_MAX_QP_NUM_PER_VF    16
56 #define I40E_DEFAULT_QP_NUM_FDIR  1
57 #define I40E_UINT32_BIT_SIZE      (CHAR_BIT * sizeof(uint32_t))
58 #define I40E_VFTA_SIZE            (4096 / I40E_UINT32_BIT_SIZE)
59 /* Maximun number of MAC addresses */
60 #define I40E_NUM_MACADDR_MAX       64
61 /* Maximum number of VFs */
62 #define I40E_MAX_VF               128
63
64 /*
65  * vlan_id is a 12 bit number.
66  * The VFTA array is actually a 4096 bit array, 128 of 32bit elements.
67  * 2^5 = 32. The val of lower 5 bits specifies the bit in the 32bit element.
68  * The higher 7 bit val specifies VFTA array index.
69  */
70 #define I40E_VFTA_BIT(vlan_id)    (1 << ((vlan_id) & 0x1F))
71 #define I40E_VFTA_IDX(vlan_id)    ((vlan_id) >> 5)
72
73 /* Default TC traffic in case DCB is not enabled */
74 #define I40E_DEFAULT_TCMAP        0x1
75 #define I40E_FDIR_QUEUE_ID        0
76
77 /* Always assign pool 0 to main VSI, VMDQ will start from 1 */
78 #define I40E_VMDQ_POOL_BASE       1
79
80 #define I40E_DEFAULT_RX_FREE_THRESH  32
81 #define I40E_DEFAULT_RX_PTHRESH      8
82 #define I40E_DEFAULT_RX_HTHRESH      8
83 #define I40E_DEFAULT_RX_WTHRESH      0
84
85 #define I40E_DEFAULT_TX_FREE_THRESH  32
86 #define I40E_DEFAULT_TX_PTHRESH      32
87 #define I40E_DEFAULT_TX_HTHRESH      0
88 #define I40E_DEFAULT_TX_WTHRESH      0
89 #define I40E_DEFAULT_TX_RSBIT_THRESH 32
90
91 /* Bit shift and mask */
92 #define I40E_4_BIT_WIDTH  (CHAR_BIT / 2)
93 #define I40E_4_BIT_MASK   RTE_LEN2MASK(I40E_4_BIT_WIDTH, uint8_t)
94 #define I40E_8_BIT_WIDTH  CHAR_BIT
95 #define I40E_8_BIT_MASK   UINT8_MAX
96 #define I40E_16_BIT_WIDTH (CHAR_BIT * 2)
97 #define I40E_16_BIT_MASK  UINT16_MAX
98 #define I40E_32_BIT_WIDTH (CHAR_BIT * 4)
99 #define I40E_32_BIT_MASK  UINT32_MAX
100 #define I40E_48_BIT_WIDTH (CHAR_BIT * 6)
101 #define I40E_48_BIT_MASK  RTE_LEN2MASK(I40E_48_BIT_WIDTH, uint64_t)
102
103 /* Linux PF host with virtchnl version 1.1 */
104 #define PF_IS_V11(vf) \
105         (((vf)->version_major == I40E_VIRTCHNL_VERSION_MAJOR) && \
106         ((vf)->version_minor == 1))
107
108 /* index flex payload per layer */
109 enum i40e_flxpld_layer_idx {
110         I40E_FLXPLD_L2_IDX    = 0,
111         I40E_FLXPLD_L3_IDX    = 1,
112         I40E_FLXPLD_L4_IDX    = 2,
113         I40E_MAX_FLXPLD_LAYER = 3,
114 };
115 #define I40E_MAX_FLXPLD_FIED        3  /* max number of flex payload fields */
116 #define I40E_FDIR_BITMASK_NUM_WORD  2  /* max number of bitmask words */
117 #define I40E_FDIR_MAX_FLEXWORD_NUM  8  /* max number of flexpayload words */
118 #define I40E_FDIR_MAX_FLEX_LEN      16 /* len in bytes of flex payload */
119 #define I40E_INSET_MASK_NUM_REG     2  /* number of input set mask registers */
120
121 /* i40e flags */
122 #define I40E_FLAG_RSS                   (1ULL << 0)
123 #define I40E_FLAG_DCB                   (1ULL << 1)
124 #define I40E_FLAG_VMDQ                  (1ULL << 2)
125 #define I40E_FLAG_SRIOV                 (1ULL << 3)
126 #define I40E_FLAG_HEADER_SPLIT_DISABLED (1ULL << 4)
127 #define I40E_FLAG_HEADER_SPLIT_ENABLED  (1ULL << 5)
128 #define I40E_FLAG_FDIR                  (1ULL << 6)
129 #define I40E_FLAG_VXLAN                 (1ULL << 7)
130 #define I40E_FLAG_RSS_AQ_CAPABLE        (1ULL << 8)
131 #define I40E_FLAG_VF_MAC_BY_PF          (1ULL << 9)
132 #define I40E_FLAG_ALL (I40E_FLAG_RSS | \
133                        I40E_FLAG_DCB | \
134                        I40E_FLAG_VMDQ | \
135                        I40E_FLAG_SRIOV | \
136                        I40E_FLAG_HEADER_SPLIT_DISABLED | \
137                        I40E_FLAG_HEADER_SPLIT_ENABLED | \
138                        I40E_FLAG_FDIR | \
139                        I40E_FLAG_VXLAN | \
140                        I40E_FLAG_RSS_AQ_CAPABLE | \
141                        I40E_FLAG_VF_MAC_BY_PF)
142
143 #define I40E_RSS_OFFLOAD_ALL ( \
144         ETH_RSS_FRAG_IPV4 | \
145         ETH_RSS_NONFRAG_IPV4_TCP | \
146         ETH_RSS_NONFRAG_IPV4_UDP | \
147         ETH_RSS_NONFRAG_IPV4_SCTP | \
148         ETH_RSS_NONFRAG_IPV4_OTHER | \
149         ETH_RSS_FRAG_IPV6 | \
150         ETH_RSS_NONFRAG_IPV6_TCP | \
151         ETH_RSS_NONFRAG_IPV6_UDP | \
152         ETH_RSS_NONFRAG_IPV6_SCTP | \
153         ETH_RSS_NONFRAG_IPV6_OTHER | \
154         ETH_RSS_L2_PAYLOAD)
155
156 /* All bits of RSS hash enable for X722*/
157 #define I40E_RSS_HENA_ALL_X722 ( \
158         (1ULL << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) | \
159         (1ULL << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) | \
160         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK) | \
161         (1ULL << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) | \
162         (1ULL << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) | \
163         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK) | \
164         I40E_RSS_HENA_ALL)
165
166 /* All bits of RSS hash enable */
167 #define I40E_RSS_HENA_ALL ( \
168         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_UDP) | \
169         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_TCP) | \
170         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) | \
171         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | \
172         (1ULL << I40E_FILTER_PCTYPE_FRAG_IPV4) | \
173         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_UDP) | \
174         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_TCP) | \
175         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) | \
176         (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | \
177         (1ULL << I40E_FILTER_PCTYPE_FRAG_IPV6) | \
178         (1ULL << I40E_FILTER_PCTYPE_FCOE_OX) | \
179         (1ULL << I40E_FILTER_PCTYPE_FCOE_RX) | \
180         (1ULL << I40E_FILTER_PCTYPE_FCOE_OTHER) | \
181         (1ULL << I40E_FILTER_PCTYPE_L2_PAYLOAD))
182
183 #define I40E_MISC_VEC_ID                RTE_INTR_VEC_ZERO_OFFSET
184 #define I40E_RX_VEC_START               RTE_INTR_VEC_RXTX_OFFSET
185
186 /* Default queue interrupt throttling time in microseconds */
187 #define I40E_ITR_INDEX_DEFAULT          0
188 #define I40E_QUEUE_ITR_INTERVAL_DEFAULT 32 /* 32 us */
189 #define I40E_QUEUE_ITR_INTERVAL_MAX     8160 /* 8160 us */
190
191 /* Special FW support this floating VEB feature */
192 #define FLOATING_VEB_SUPPORTED_FW_MAJ 5
193 #define FLOATING_VEB_SUPPORTED_FW_MIN 0
194
195 #define I40E_GL_SWT_L2TAGCTRL(_i)             (0x001C0A70 + ((_i) * 4))
196 #define I40E_GL_SWT_L2TAGCTRL_ETHERTYPE_SHIFT 16
197 #define I40E_GL_SWT_L2TAGCTRL_ETHERTYPE_MASK  \
198         I40E_MASK(0xFFFF, I40E_GL_SWT_L2TAGCTRL_ETHERTYPE_SHIFT)
199
200 #define I40E_INSET_NONE            0x00000000000000000ULL
201
202 /* bit0 ~ bit 7 */
203 #define I40E_INSET_DMAC            0x0000000000000001ULL
204 #define I40E_INSET_SMAC            0x0000000000000002ULL
205 #define I40E_INSET_VLAN_OUTER      0x0000000000000004ULL
206 #define I40E_INSET_VLAN_INNER      0x0000000000000008ULL
207 #define I40E_INSET_VLAN_TUNNEL     0x0000000000000010ULL
208
209 /* bit 8 ~ bit 15 */
210 #define I40E_INSET_IPV4_SRC        0x0000000000000100ULL
211 #define I40E_INSET_IPV4_DST        0x0000000000000200ULL
212 #define I40E_INSET_IPV6_SRC        0x0000000000000400ULL
213 #define I40E_INSET_IPV6_DST        0x0000000000000800ULL
214 #define I40E_INSET_SRC_PORT        0x0000000000001000ULL
215 #define I40E_INSET_DST_PORT        0x0000000000002000ULL
216 #define I40E_INSET_SCTP_VT         0x0000000000004000ULL
217
218 /* bit 16 ~ bit 31 */
219 #define I40E_INSET_IPV4_TOS        0x0000000000010000ULL
220 #define I40E_INSET_IPV4_PROTO      0x0000000000020000ULL
221 #define I40E_INSET_IPV4_TTL        0x0000000000040000ULL
222 #define I40E_INSET_IPV6_TC         0x0000000000080000ULL
223 #define I40E_INSET_IPV6_FLOW       0x0000000000100000ULL
224 #define I40E_INSET_IPV6_NEXT_HDR   0x0000000000200000ULL
225 #define I40E_INSET_IPV6_HOP_LIMIT  0x0000000000400000ULL
226 #define I40E_INSET_TCP_FLAGS       0x0000000000800000ULL
227
228 /* bit 32 ~ bit 47, tunnel fields */
229 #define I40E_INSET_TUNNEL_IPV4_DST       0x0000000100000000ULL
230 #define I40E_INSET_TUNNEL_IPV6_DST       0x0000000200000000ULL
231 #define I40E_INSET_TUNNEL_DMAC           0x0000000400000000ULL
232 #define I40E_INSET_TUNNEL_SRC_PORT       0x0000000800000000ULL
233 #define I40E_INSET_TUNNEL_DST_PORT       0x0000001000000000ULL
234 #define I40E_INSET_TUNNEL_ID             0x0000002000000000ULL
235
236 /* bit 48 ~ bit 55 */
237 #define I40E_INSET_LAST_ETHER_TYPE 0x0001000000000000ULL
238
239 /* bit 56 ~ bit 63, Flex Payload */
240 #define I40E_INSET_FLEX_PAYLOAD_W1 0x0100000000000000ULL
241 #define I40E_INSET_FLEX_PAYLOAD_W2 0x0200000000000000ULL
242 #define I40E_INSET_FLEX_PAYLOAD_W3 0x0400000000000000ULL
243 #define I40E_INSET_FLEX_PAYLOAD_W4 0x0800000000000000ULL
244 #define I40E_INSET_FLEX_PAYLOAD_W5 0x1000000000000000ULL
245 #define I40E_INSET_FLEX_PAYLOAD_W6 0x2000000000000000ULL
246 #define I40E_INSET_FLEX_PAYLOAD_W7 0x4000000000000000ULL
247 #define I40E_INSET_FLEX_PAYLOAD_W8 0x8000000000000000ULL
248 #define I40E_INSET_FLEX_PAYLOAD \
249         (I40E_INSET_FLEX_PAYLOAD_W1 | I40E_INSET_FLEX_PAYLOAD_W2 | \
250         I40E_INSET_FLEX_PAYLOAD_W3 | I40E_INSET_FLEX_PAYLOAD_W4 | \
251         I40E_INSET_FLEX_PAYLOAD_W5 | I40E_INSET_FLEX_PAYLOAD_W6 | \
252         I40E_INSET_FLEX_PAYLOAD_W7 | I40E_INSET_FLEX_PAYLOAD_W8)
253
254 /**
255  * The overhead from MTU to max frame size.
256  * Considering QinQ packet, the VLAN tag needs to be counted twice.
257  */
258 #define I40E_ETH_OVERHEAD \
259         (ETHER_HDR_LEN + ETHER_CRC_LEN + I40E_VLAN_TAG_SIZE * 2)
260
261 struct i40e_adapter;
262
263 /**
264  * MAC filter structure
265  */
266 struct i40e_mac_filter_info {
267         enum rte_mac_filter_type filter_type;
268         struct ether_addr mac_addr;
269 };
270
271 TAILQ_HEAD(i40e_mac_filter_list, i40e_mac_filter);
272
273 /* MAC filter list structure */
274 struct i40e_mac_filter {
275         TAILQ_ENTRY(i40e_mac_filter) next;
276         struct i40e_mac_filter_info mac_info;
277 };
278
279 TAILQ_HEAD(i40e_vsi_list_head, i40e_vsi_list);
280
281 struct i40e_vsi;
282
283 /* VSI list structure */
284 struct i40e_vsi_list {
285         TAILQ_ENTRY(i40e_vsi_list) list;
286         struct i40e_vsi *vsi;
287 };
288
289 struct i40e_rx_queue;
290 struct i40e_tx_queue;
291
292 /* Bandwidth limit information */
293 struct i40e_bw_info {
294         uint16_t bw_limit;      /* BW Limit (0 = disabled) */
295         uint8_t  bw_max;        /* Max BW limit if enabled */
296
297         /* Relative credits within same TC with respect to other VSIs or Comps */
298         uint8_t  bw_ets_share_credits[I40E_MAX_TRAFFIC_CLASS];
299         /* Bandwidth limit per TC */
300         uint16_t bw_ets_credits[I40E_MAX_TRAFFIC_CLASS];
301         /* Max bandwidth limit per TC */
302         uint8_t  bw_ets_max[I40E_MAX_TRAFFIC_CLASS];
303 };
304
305 /* Structure that defines a VEB */
306 struct i40e_veb {
307         struct i40e_vsi_list_head head;
308         struct i40e_vsi *associate_vsi; /* Associate VSI who owns the VEB */
309         struct i40e_pf *associate_pf; /* Associate PF who owns the VEB */
310         uint16_t seid; /* The seid of VEB itself */
311         uint16_t uplink_seid; /* The uplink seid of this VEB */
312         uint16_t stats_idx;
313         struct i40e_eth_stats stats;
314         uint8_t enabled_tc;   /* The traffic class enabled */
315         uint8_t strict_prio_tc; /* bit map of TCs set to strict priority mode */
316         struct i40e_bw_info bw_info; /* VEB bandwidth information */
317 };
318
319 /* i40e MACVLAN filter structure */
320 struct i40e_macvlan_filter {
321         struct ether_addr macaddr;
322         enum rte_mac_filter_type filter_type;
323         uint16_t vlan_id;
324 };
325
326 /*
327  * Structure that defines a VSI, associated with a adapter.
328  */
329 struct i40e_vsi {
330         struct i40e_adapter *adapter; /* Backreference to associated adapter */
331         struct i40e_aqc_vsi_properties_data info; /* VSI properties */
332
333         struct i40e_eth_stats eth_stats_offset;
334         struct i40e_eth_stats eth_stats;
335         /*
336          * When drivers loaded, only a default main VSI exists. In case new VSI
337          * needs to add, HW needs to know the layout that VSIs are organized.
338          * Besides that, VSI isan element and can't switch packets, which needs
339          * to add new component VEB to perform switching. So, a new VSI needs
340          * to specify the the uplink VSI (Parent VSI) before created. The
341          * uplink VSI will check whether it had a VEB to switch packets. If no,
342          * it will try to create one. Then, uplink VSI will move the new VSI
343          * into its' sib_vsi_list to manage all the downlink VSI.
344          *  sib_vsi_list: the VSI list that shared the same uplink VSI.
345          *  parent_vsi  : the uplink VSI. It's NULL for main VSI.
346          *  veb         : the VEB associates with the VSI.
347          */
348         struct i40e_vsi_list sib_vsi_list; /* sibling vsi list */
349         struct i40e_vsi *parent_vsi;
350         struct i40e_veb *veb;    /* Associated veb, could be null */
351         struct i40e_veb *floating_veb; /* Associated floating veb */
352         bool offset_loaded;
353         enum i40e_vsi_type type; /* VSI types */
354         uint16_t vlan_num;       /* Total VLAN number */
355         uint16_t mac_num;        /* Total mac number */
356         uint32_t vfta[I40E_VFTA_SIZE];        /* VLAN bitmap */
357         struct i40e_mac_filter_list mac_list; /* macvlan filter list */
358         /* specific VSI-defined parameters, SRIOV stored the vf_id */
359         uint32_t user_param;
360         uint16_t seid;           /* The seid of VSI itself */
361         uint16_t uplink_seid;    /* The uplink seid of this VSI */
362         uint16_t nb_qps;         /* Number of queue pairs VSI can occupy */
363         uint16_t nb_used_qps;    /* Number of queue pairs VSI uses */
364         uint16_t max_macaddrs;   /* Maximum number of MAC addresses */
365         uint16_t base_queue;     /* The first queue index of this VSI */
366         /*
367          * The offset to visit VSI related register, assigned by HW when
368          * creating VSI
369          */
370         uint16_t vsi_id;
371         uint16_t msix_intr; /* The MSIX interrupt binds to VSI */
372         uint16_t nb_msix;   /* The max number of msix vector */
373         uint8_t enabled_tc; /* The traffic class enabled */
374         uint8_t vlan_anti_spoof_on; /* The VLAN anti-spoofing enabled */
375         uint8_t vlan_filter_on; /* The VLAN filter enabled */
376         struct i40e_bw_info bw_info; /* VSI bandwidth information */
377 };
378
379 struct pool_entry {
380         LIST_ENTRY(pool_entry) next;
381         uint16_t base;
382         uint16_t len;
383 };
384
385 LIST_HEAD(res_list, pool_entry);
386
387 struct i40e_res_pool_info {
388         uint32_t base;              /* Resource start index */
389         uint32_t num_alloc;         /* Allocated resource number */
390         uint32_t num_free;          /* Total available resource number */
391         struct res_list alloc_list; /* Allocated resource list */
392         struct res_list free_list;  /* Available resource list */
393 };
394
395 enum I40E_VF_STATE {
396         I40E_VF_INACTIVE = 0,
397         I40E_VF_INRESET,
398         I40E_VF_ININIT,
399         I40E_VF_ACTIVE,
400 };
401
402 /*
403  * Structure to store private data for PF host.
404  */
405 struct i40e_pf_vf {
406         struct i40e_pf *pf;
407         struct i40e_vsi *vsi;
408         enum I40E_VF_STATE state; /* The number of queue pairs availiable */
409         uint16_t vf_idx; /* VF index in pf->vfs */
410         uint16_t lan_nb_qps; /* Actual queues allocated */
411         uint16_t reset_cnt; /* Total vf reset times */
412         struct ether_addr mac_addr;  /* Default MAC address */
413 };
414
415 /*
416  * Structure to store private data for flow control.
417  */
418 struct i40e_fc_conf {
419         uint16_t pause_time; /* Flow control pause timer */
420         /* FC high water 0-7 for pfc and 8 for lfc unit:kilobytes */
421         uint32_t high_water[I40E_MAX_TRAFFIC_CLASS + 1];
422         /* FC low water  0-7 for pfc and 8 for lfc unit:kilobytes */
423         uint32_t low_water[I40E_MAX_TRAFFIC_CLASS + 1];
424 };
425
426 /*
427  * Structure to store private data for VMDQ instance
428  */
429 struct i40e_vmdq_info {
430         struct i40e_pf *pf;
431         struct i40e_vsi *vsi;
432 };
433
434 /*
435  * Structure to store flex pit for flow diretor.
436  */
437 struct i40e_fdir_flex_pit {
438         uint8_t src_offset;    /* offset in words from the beginning of payload */
439         uint8_t size;          /* size in words */
440         uint8_t dst_offset;    /* offset in words of flexible payload */
441 };
442
443 struct i40e_fdir_flex_mask {
444         uint8_t word_mask;  /**< Bit i enables word i of flexible payload */
445         struct {
446                 uint8_t offset;
447                 uint16_t mask;
448         } bitmask[I40E_FDIR_BITMASK_NUM_WORD];
449 };
450
451 #define I40E_FILTER_PCTYPE_MAX 64
452 #define I40E_MAX_FDIR_FILTER_NUM (1024 * 8)
453
454 struct i40e_fdir_filter {
455         TAILQ_ENTRY(i40e_fdir_filter) rules;
456         struct rte_eth_fdir_filter fdir;
457 };
458
459 TAILQ_HEAD(i40e_fdir_filter_list, i40e_fdir_filter);
460 /*
461  *  A structure used to define fields of a FDIR related info.
462  */
463 struct i40e_fdir_info {
464         struct i40e_vsi *fdir_vsi;     /* pointer to fdir VSI structure */
465         uint16_t match_counter_index;  /* Statistic counter index used for fdir*/
466         struct i40e_tx_queue *txq;
467         struct i40e_rx_queue *rxq;
468         void *prg_pkt;                 /* memory for fdir program packet */
469         uint64_t dma_addr;             /* physic address of packet memory*/
470         /* input set bits for each pctype */
471         uint64_t input_set[I40E_FILTER_PCTYPE_MAX];
472         /*
473          * the rule how bytes stream is extracted as flexible payload
474          * for each payload layer, the setting can up to three elements
475          */
476         struct i40e_fdir_flex_pit flex_set[I40E_MAX_FLXPLD_LAYER * I40E_MAX_FLXPLD_FIED];
477         struct i40e_fdir_flex_mask flex_mask[I40E_FILTER_PCTYPE_MAX];
478
479         struct i40e_fdir_filter_list fdir_list;
480         struct i40e_fdir_filter **hash_map;
481         struct rte_hash *hash_table;
482 };
483
484 /* Ethertype filter number HW supports */
485 #define I40E_MAX_ETHERTYPE_FILTER_NUM 768
486
487 /* Ethertype filter struct */
488 struct i40e_ethertype_filter_input {
489         struct ether_addr mac_addr;   /* Mac address to match */
490         uint16_t ether_type;          /* Ether type to match */
491 };
492
493 struct i40e_ethertype_filter {
494         TAILQ_ENTRY(i40e_ethertype_filter) rules;
495         struct i40e_ethertype_filter_input input;
496         uint16_t flags;              /* Flags from RTE_ETHTYPE_FLAGS_* */
497         uint16_t queue;              /* Queue assigned to when match */
498 };
499
500 TAILQ_HEAD(i40e_ethertype_filter_list, i40e_ethertype_filter);
501
502 struct i40e_ethertype_rule {
503         struct i40e_ethertype_filter_list ethertype_list;
504         struct i40e_ethertype_filter  **hash_map;
505         struct rte_hash *hash_table;
506 };
507
508 /* Tunnel filter number HW supports */
509 #define I40E_MAX_TUNNEL_FILTER_NUM 400
510
511 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_TEID_WORD0 44
512 #define I40E_AQC_REPLACE_CLOUD_CMD_INPUT_FV_TEID_WORD1 45
513 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MPLSoUDP 8
514 #define I40E_AQC_ADD_CLOUD_TNL_TYPE_MPLSoGRE 9
515 #define I40E_AQC_ADD_CLOUD_FILTER_CUSTOM_QINQ 0x10
516 #define I40E_AQC_ADD_CLOUD_FILTER_TEID_MPLSoUDP 0x11
517 #define I40E_AQC_ADD_CLOUD_FILTER_TEID_MPLSoGRE 0x12
518 #define I40E_AQC_ADD_L1_FILTER_TEID_MPLS 0x11
519
520 enum i40e_tunnel_iptype {
521         I40E_TUNNEL_IPTYPE_IPV4,
522         I40E_TUNNEL_IPTYPE_IPV6,
523 };
524
525 /* Tunnel filter struct */
526 struct i40e_tunnel_filter_input {
527         uint8_t outer_mac[6];    /* Outer mac address to match */
528         uint8_t inner_mac[6];    /* Inner mac address to match */
529         uint16_t inner_vlan;     /* Inner vlan address to match */
530         enum i40e_tunnel_iptype ip_type;
531         uint16_t flags;          /* Filter type flag */
532         uint32_t tenant_id;      /* Tenant id to match */
533         uint16_t general_fields[32];  /* Big buffer */
534 };
535
536 struct i40e_tunnel_filter {
537         TAILQ_ENTRY(i40e_tunnel_filter) rules;
538         struct i40e_tunnel_filter_input input;
539         uint8_t is_to_vf; /* 0 - to PF, 1 - to VF */
540         uint16_t vf_id;   /* VF id, avaiblable when is_to_vf is 1. */
541         uint16_t queue; /* Queue assigned to when match */
542 };
543
544 TAILQ_HEAD(i40e_tunnel_filter_list, i40e_tunnel_filter);
545
546 struct i40e_tunnel_rule {
547         struct i40e_tunnel_filter_list tunnel_list;
548         struct i40e_tunnel_filter  **hash_map;
549         struct rte_hash *hash_table;
550 };
551
552 /**
553  * Tunnel type.
554  */
555 enum i40e_tunnel_type {
556         I40E_TUNNEL_TYPE_NONE = 0,
557         I40E_TUNNEL_TYPE_VXLAN,
558         I40E_TUNNEL_TYPE_GENEVE,
559         I40E_TUNNEL_TYPE_TEREDO,
560         I40E_TUNNEL_TYPE_NVGRE,
561         I40E_TUNNEL_TYPE_IP_IN_GRE,
562         I40E_L2_TUNNEL_TYPE_E_TAG,
563         I40E_TUNNEL_TYPE_MPLSoUDP,
564         I40E_TUNNEL_TYPE_MPLSoGRE,
565         I40E_TUNNEL_TYPE_QINQ,
566         I40E_TUNNEL_TYPE_MAX,
567 };
568
569 /**
570  * Tunneling Packet filter configuration.
571  */
572 struct i40e_tunnel_filter_conf {
573         struct ether_addr outer_mac;    /**< Outer MAC address to match. */
574         struct ether_addr inner_mac;    /**< Inner MAC address to match. */
575         uint16_t inner_vlan;            /**< Inner VLAN to match. */
576         uint32_t outer_vlan;            /**< Outer VLAN to match */
577         enum i40e_tunnel_iptype ip_type; /**< IP address type. */
578         /**
579          * Outer destination IP address to match if ETH_TUNNEL_FILTER_OIP
580          * is set in filter_type, or inner destination IP address to match
581          * if ETH_TUNNEL_FILTER_IIP is set in filter_type.
582          */
583         union {
584                 uint32_t ipv4_addr;     /**< IPv4 address in big endian. */
585                 uint32_t ipv6_addr[4];  /**< IPv6 address in big endian. */
586         } ip_addr;
587         /** Flags from ETH_TUNNEL_FILTER_XX - see above. */
588         uint16_t filter_type;
589         enum i40e_tunnel_type tunnel_type; /**< Tunnel Type. */
590         uint32_t tenant_id;     /**< Tenant ID to match. VNI, GRE key... */
591         uint16_t queue_id;      /**< Queue assigned to if match. */
592         uint8_t is_to_vf;       /**< 0 - to PF, 1 - to VF */
593         uint16_t vf_id;         /**< VF id, avaiblable when is_to_vf is 1. */
594 };
595
596 #define I40E_MIRROR_MAX_ENTRIES_PER_RULE   64
597 #define I40E_MAX_MIRROR_RULES           64
598 /*
599  * Mirror rule structure
600  */
601 struct i40e_mirror_rule {
602         TAILQ_ENTRY(i40e_mirror_rule) rules;
603         uint8_t rule_type;
604         uint16_t index;          /* the sw index of mirror rule */
605         uint16_t id;             /* the rule id assigned by firmware */
606         uint16_t dst_vsi_seid;   /* destination vsi for this mirror rule. */
607         uint16_t num_entries;
608         /* the info stores depend on the rule type.
609             If type is I40E_MIRROR_TYPE_VLAN, vlan ids are stored here.
610             If type is I40E_MIRROR_TYPE_VPORT_*, vsi's seid are stored.
611          */
612         uint16_t entries[I40E_MIRROR_MAX_ENTRIES_PER_RULE];
613 };
614
615 TAILQ_HEAD(i40e_mirror_rule_list, i40e_mirror_rule);
616
617 /*
618  * Struct to store flow created.
619  */
620 struct rte_flow {
621         TAILQ_ENTRY(rte_flow) node;
622         enum rte_filter_type filter_type;
623         void *rule;
624 };
625
626 TAILQ_HEAD(i40e_flow_list, rte_flow);
627
628 /*
629  * Structure to store private data specific for PF instance.
630  */
631 struct i40e_pf {
632         struct i40e_adapter *adapter; /* The adapter this PF associate to */
633         struct i40e_vsi *main_vsi; /* pointer to main VSI structure */
634         uint16_t mac_seid; /* The seid of the MAC of this PF */
635         uint16_t main_vsi_seid; /* The seid of the main VSI */
636         uint16_t max_num_vsi;
637         struct i40e_res_pool_info qp_pool;    /*Queue pair pool */
638         struct i40e_res_pool_info msix_pool;  /* MSIX interrupt pool */
639
640         struct i40e_hw_port_stats stats_offset;
641         struct i40e_hw_port_stats stats;
642         bool offset_loaded;
643
644         struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
645         struct ether_addr dev_addr; /* PF device mac address */
646         uint64_t flags; /* PF feature flags */
647         /* All kinds of queue pair setting for different VSIs */
648         struct i40e_pf_vf *vfs;
649         uint16_t vf_num;
650         /* Each of below queue pairs should be power of 2 since it's the
651            precondition after TC configuration applied */
652         uint16_t lan_nb_qp_max;
653         uint16_t lan_nb_qps; /* The number of queue pairs of LAN */
654         uint16_t lan_qp_offset;
655         uint16_t vmdq_nb_qp_max;
656         uint16_t vmdq_nb_qps; /* The number of queue pairs of VMDq */
657         uint16_t vmdq_qp_offset;
658         uint16_t vf_nb_qp_max;
659         uint16_t vf_nb_qps; /* The number of queue pairs of VF */
660         uint16_t vf_qp_offset;
661         uint16_t fdir_nb_qps; /* The number of queue pairs of Flow Director */
662         uint16_t fdir_qp_offset;
663
664         uint16_t hash_lut_size; /* The size of hash lookup table */
665         /* input set bits for each pctype */
666         uint64_t hash_input_set[I40E_FILTER_PCTYPE_MAX];
667         /* store VXLAN UDP ports */
668         uint16_t vxlan_ports[I40E_MAX_PF_UDP_OFFLOAD_PORTS];
669         uint16_t vxlan_bitmap; /* Vxlan bit mask */
670
671         /* VMDQ related info */
672         uint16_t max_nb_vmdq_vsi; /* Max number of VMDQ VSIs supported */
673         uint16_t nb_cfg_vmdq_vsi; /* number of VMDQ VSIs configured */
674         struct i40e_vmdq_info *vmdq;
675
676         struct i40e_fdir_info fdir; /* flow director info */
677         struct i40e_ethertype_rule ethertype; /* Ethertype filter rule */
678         struct i40e_tunnel_rule tunnel; /* Tunnel filter rule */
679         struct i40e_fc_conf fc_conf; /* Flow control conf */
680         struct i40e_mirror_rule_list mirror_list;
681         uint16_t nb_mirror_rule;   /* The number of mirror rules */
682         bool floating_veb; /* The flag to use the floating VEB */
683         /* The floating enable flag for the specific VF */
684         bool floating_veb_list[I40E_MAX_VF];
685         struct i40e_flow_list flow_list;
686         bool mpls_replace_flag;  /* 1 - MPLS filter replace is done */
687         bool qinq_replace_flag;  /* QINQ filter replace is done */
688 };
689
690 enum pending_msg {
691         PFMSG_LINK_CHANGE = 0x1,
692         PFMSG_RESET_IMPENDING = 0x2,
693         PFMSG_DRIVER_CLOSE = 0x4,
694 };
695
696 struct i40e_vsi_vlan_pvid_info {
697         uint16_t on;            /* Enable or disable pvid */
698         union {
699                 uint16_t pvid;  /* Valid in case 'on' is set to set pvid */
700                 struct {
701                 /*  Valid in case 'on' is cleared. 'tagged' will reject tagged packets,
702                  *  while 'untagged' will reject untagged packets.
703                  */
704                         uint8_t tagged;
705                         uint8_t untagged;
706                 } reject;
707         } config;
708 };
709
710 struct i40e_vf_rx_queues {
711         uint64_t rx_dma_addr;
712         uint32_t rx_ring_len;
713         uint32_t buff_size;
714 };
715
716 struct i40e_vf_tx_queues {
717         uint64_t tx_dma_addr;
718         uint32_t tx_ring_len;
719 };
720
721 /*
722  * Structure to store private data specific for VF instance.
723  */
724 struct i40e_vf {
725         struct i40e_adapter *adapter; /* The adapter this VF associate to */
726         struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
727         uint16_t num_queue_pairs;
728         uint16_t max_pkt_len; /* Maximum packet length */
729         bool promisc_unicast_enabled;
730         bool promisc_multicast_enabled;
731
732         uint32_t version_major; /* Major version number */
733         uint32_t version_minor; /* Minor version number */
734         uint16_t promisc_flags; /* Promiscuous setting */
735         uint32_t vlan[I40E_VFTA_SIZE]; /* VLAN bit map */
736
737         /* Event from pf */
738         bool dev_closed;
739         bool link_up;
740         enum i40e_aq_link_speed link_speed;
741         bool vf_reset;
742         volatile uint32_t pend_cmd; /* pending command not finished yet */
743         int32_t cmd_retval; /* return value of the cmd response from PF */
744         u16 pend_msg; /* flags indicates events from pf not handled yet */
745         uint8_t *aq_resp; /* buffer to store the adminq response from PF */
746
747         /* VSI info */
748         struct i40e_virtchnl_vf_resource *vf_res; /* All VSIs */
749         struct i40e_virtchnl_vsi_resource *vsi_res; /* LAN VSI */
750         struct i40e_vsi vsi;
751         uint64_t flags;
752 };
753
754 #define I40E_MAX_PKT_TYPE 256
755
756 /*
757  * Structure to store private data for each PF/VF instance.
758  */
759 struct i40e_adapter {
760         /* Common for both PF and VF */
761         struct i40e_hw hw;
762         struct rte_eth_dev *eth_dev;
763
764         /* Specific for PF or VF */
765         union {
766                 struct i40e_pf pf;
767                 struct i40e_vf vf;
768         };
769
770         /* For vector PMD */
771         bool rx_bulk_alloc_allowed;
772         bool rx_vec_allowed;
773         bool tx_simple_allowed;
774         bool tx_vec_allowed;
775
776         /* For PTP */
777         struct rte_timecounter systime_tc;
778         struct rte_timecounter rx_tstamp_tc;
779         struct rte_timecounter tx_tstamp_tc;
780
781         /* ptype mapping table */
782         uint32_t ptype_tbl[I40E_MAX_PKT_TYPE] __rte_cache_min_aligned;
783 };
784
785 extern const struct rte_flow_ops i40e_flow_ops;
786
787 union i40e_filter_t {
788         struct rte_eth_ethertype_filter ethertype_filter;
789         struct rte_eth_fdir_filter fdir_filter;
790         struct rte_eth_tunnel_filter_conf tunnel_filter;
791         struct i40e_tunnel_filter_conf consistent_tunnel_filter;
792 };
793
794 typedef int (*parse_filter_t)(struct rte_eth_dev *dev,
795                               const struct rte_flow_attr *attr,
796                               const struct rte_flow_item pattern[],
797                               const struct rte_flow_action actions[],
798                               struct rte_flow_error *error,
799                               union i40e_filter_t *filter);
800 struct i40e_valid_pattern {
801         enum rte_flow_item_type *items;
802         parse_filter_t parse_filter;
803 };
804
805 int i40e_dev_switch_queues(struct i40e_pf *pf, bool on);
806 int i40e_vsi_release(struct i40e_vsi *vsi);
807 struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf,
808                                 enum i40e_vsi_type type,
809                                 struct i40e_vsi *uplink_vsi,
810                                 uint16_t user_param);
811 int i40e_switch_rx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
812 int i40e_switch_tx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
813 int i40e_vsi_add_vlan(struct i40e_vsi *vsi, uint16_t vlan);
814 int i40e_vsi_delete_vlan(struct i40e_vsi *vsi, uint16_t vlan);
815 int i40e_vsi_add_mac(struct i40e_vsi *vsi, struct i40e_mac_filter_info *filter);
816 int i40e_vsi_delete_mac(struct i40e_vsi *vsi, struct ether_addr *addr);
817 void i40e_update_vsi_stats(struct i40e_vsi *vsi);
818 void i40e_pf_disable_irq0(struct i40e_hw *hw);
819 void i40e_pf_enable_irq0(struct i40e_hw *hw);
820 int i40e_dev_link_update(struct rte_eth_dev *dev,
821                          __rte_unused int wait_to_complete);
822 void i40e_vsi_queues_bind_intr(struct i40e_vsi *vsi);
823 void i40e_vsi_queues_unbind_intr(struct i40e_vsi *vsi);
824 int i40e_vsi_vlan_pvid_set(struct i40e_vsi *vsi,
825                            struct i40e_vsi_vlan_pvid_info *info);
826 int i40e_vsi_config_vlan_stripping(struct i40e_vsi *vsi, bool on);
827 int i40e_vsi_config_vlan_filter(struct i40e_vsi *vsi, bool on);
828 uint64_t i40e_config_hena(uint64_t flags, enum i40e_mac_type type);
829 uint64_t i40e_parse_hena(uint64_t flags);
830 enum i40e_status_code i40e_fdir_setup_tx_resources(struct i40e_pf *pf);
831 enum i40e_status_code i40e_fdir_setup_rx_resources(struct i40e_pf *pf);
832 int i40e_fdir_setup(struct i40e_pf *pf);
833 const struct rte_memzone *i40e_memzone_reserve(const char *name,
834                                         uint32_t len,
835                                         int socket_id);
836 int i40e_fdir_configure(struct rte_eth_dev *dev);
837 void i40e_fdir_teardown(struct i40e_pf *pf);
838 enum i40e_filter_pctype i40e_flowtype_to_pctype(uint16_t flow_type);
839 uint16_t i40e_pctype_to_flowtype(enum i40e_filter_pctype pctype);
840 int i40e_fdir_ctrl_func(struct rte_eth_dev *dev,
841                           enum rte_filter_op filter_op,
842                           void *arg);
843 int i40e_select_filter_input_set(struct i40e_hw *hw,
844                                  struct rte_eth_input_set_conf *conf,
845                                  enum rte_filter_type filter);
846 void i40e_fdir_filter_restore(struct i40e_pf *pf);
847 int i40e_hash_filter_inset_select(struct i40e_hw *hw,
848                              struct rte_eth_input_set_conf *conf);
849 int i40e_fdir_filter_inset_select(struct i40e_pf *pf,
850                              struct rte_eth_input_set_conf *conf);
851 int i40e_pf_host_send_msg_to_vf(struct i40e_pf_vf *vf, uint32_t opcode,
852                                 uint32_t retval, uint8_t *msg,
853                                 uint16_t msglen);
854 void i40e_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
855         struct rte_eth_rxq_info *qinfo);
856 void i40e_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
857         struct rte_eth_txq_info *qinfo);
858 struct i40e_ethertype_filter *
859 i40e_sw_ethertype_filter_lookup(struct i40e_ethertype_rule *ethertype_rule,
860                         const struct i40e_ethertype_filter_input *input);
861 int i40e_sw_ethertype_filter_del(struct i40e_pf *pf,
862                                  struct i40e_ethertype_filter_input *input);
863 int i40e_sw_fdir_filter_del(struct i40e_pf *pf,
864                             struct rte_eth_fdir_input *input);
865 struct i40e_tunnel_filter *
866 i40e_sw_tunnel_filter_lookup(struct i40e_tunnel_rule *tunnel_rule,
867                              const struct i40e_tunnel_filter_input *input);
868 int i40e_sw_tunnel_filter_del(struct i40e_pf *pf,
869                               struct i40e_tunnel_filter_input *input);
870 uint64_t i40e_get_default_input_set(uint16_t pctype);
871 int i40e_ethertype_filter_set(struct i40e_pf *pf,
872                               struct rte_eth_ethertype_filter *filter,
873                               bool add);
874 int i40e_add_del_fdir_filter(struct rte_eth_dev *dev,
875                              const struct rte_eth_fdir_filter *filter,
876                              bool add);
877 int i40e_dev_tunnel_filter_set(struct i40e_pf *pf,
878                                struct rte_eth_tunnel_filter_conf *tunnel_filter,
879                                uint8_t add);
880 int i40e_dev_consistent_tunnel_filter_set(struct i40e_pf *pf,
881                                   struct i40e_tunnel_filter_conf *tunnel_filter,
882                                   uint8_t add);
883 int i40e_fdir_flush(struct rte_eth_dev *dev);
884 int i40e_find_all_vlan_for_mac(struct i40e_vsi *vsi,
885                                struct i40e_macvlan_filter *mv_f,
886                                int num, struct ether_addr *addr);
887 int i40e_remove_macvlan_filters(struct i40e_vsi *vsi,
888                                 struct i40e_macvlan_filter *filter,
889                                 int total);
890 void i40e_set_vlan_filter(struct i40e_vsi *vsi, uint16_t vlan_id, bool on);
891 int i40e_add_macvlan_filters(struct i40e_vsi *vsi,
892                              struct i40e_macvlan_filter *filter,
893                              int total);
894 bool is_i40e_supported(struct rte_eth_dev *dev);
895
896 #define I40E_DEV_TO_PCI(eth_dev) \
897         RTE_DEV_TO_PCI((eth_dev)->device)
898
899 /* I40E_DEV_PRIVATE_TO */
900 #define I40E_DEV_PRIVATE_TO_PF(adapter) \
901         (&((struct i40e_adapter *)adapter)->pf)
902 #define I40E_DEV_PRIVATE_TO_HW(adapter) \
903         (&((struct i40e_adapter *)adapter)->hw)
904 #define I40E_DEV_PRIVATE_TO_ADAPTER(adapter) \
905         ((struct i40e_adapter *)adapter)
906
907 /* I40EVF_DEV_PRIVATE_TO */
908 #define I40EVF_DEV_PRIVATE_TO_VF(adapter) \
909         (&((struct i40e_adapter *)adapter)->vf)
910
911 static inline struct i40e_vsi *
912 i40e_get_vsi_from_adapter(struct i40e_adapter *adapter)
913 {
914         struct i40e_hw *hw;
915
916         if (!adapter)
917                 return NULL;
918
919         hw = I40E_DEV_PRIVATE_TO_HW(adapter);
920         if (hw->mac.type == I40E_MAC_VF || hw->mac.type == I40E_MAC_X722_VF) {
921                 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(adapter);
922                 return &vf->vsi;
923         } else {
924                 struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(adapter);
925                 return pf->main_vsi;
926         }
927 }
928 #define I40E_DEV_PRIVATE_TO_MAIN_VSI(adapter) \
929         i40e_get_vsi_from_adapter((struct i40e_adapter *)adapter)
930
931 /* I40E_VSI_TO */
932 #define I40E_VSI_TO_HW(vsi) \
933         (&(((struct i40e_vsi *)vsi)->adapter->hw))
934 #define I40E_VSI_TO_PF(vsi) \
935         (&(((struct i40e_vsi *)vsi)->adapter->pf))
936 #define I40E_VSI_TO_VF(vsi) \
937         (&(((struct i40e_vsi *)vsi)->adapter->vf))
938 #define I40E_VSI_TO_DEV_DATA(vsi) \
939         (((struct i40e_vsi *)vsi)->adapter->pf.dev_data)
940 #define I40E_VSI_TO_ETH_DEV(vsi) \
941         (((struct i40e_vsi *)vsi)->adapter->eth_dev)
942
943 /* I40E_PF_TO */
944 #define I40E_PF_TO_HW(pf) \
945         (&(((struct i40e_pf *)pf)->adapter->hw))
946 #define I40E_PF_TO_ADAPTER(pf) \
947         ((struct i40e_adapter *)pf->adapter)
948
949 /* I40E_VF_TO */
950 #define I40E_VF_TO_HW(vf) \
951         (&(((struct i40e_vf *)vf)->adapter->hw))
952
953 static inline void
954 i40e_init_adminq_parameter(struct i40e_hw *hw)
955 {
956         hw->aq.num_arq_entries = I40E_AQ_LEN;
957         hw->aq.num_asq_entries = I40E_AQ_LEN;
958         hw->aq.arq_buf_size = I40E_AQ_BUF_SZ;
959         hw->aq.asq_buf_size = I40E_AQ_BUF_SZ;
960 }
961
962 static inline int
963 i40e_align_floor(int n)
964 {
965         if (n == 0)
966                 return 0;
967         return 1 << (sizeof(n) * CHAR_BIT - 1 - __builtin_clz(n));
968 }
969
970 static inline uint16_t
971 i40e_calc_itr_interval(int16_t interval)
972 {
973         if (interval < 0 || interval > I40E_QUEUE_ITR_INTERVAL_MAX)
974                 interval = I40E_QUEUE_ITR_INTERVAL_DEFAULT;
975
976         /* Convert to hardware count, as writing each 1 represents 2 us */
977         return interval / 2;
978 }
979
980 #define I40E_VALID_FLOW(flow_type) \
981         ((flow_type) == RTE_ETH_FLOW_FRAG_IPV4 || \
982         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_TCP || \
983         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_UDP || \
984         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_SCTP || \
985         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_OTHER || \
986         (flow_type) == RTE_ETH_FLOW_FRAG_IPV6 || \
987         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_TCP || \
988         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_UDP || \
989         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_SCTP || \
990         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_OTHER || \
991         (flow_type) == RTE_ETH_FLOW_L2_PAYLOAD)
992
993 #define I40E_VALID_PCTYPE_X722(pctype) \
994         ((pctype) == I40E_FILTER_PCTYPE_FRAG_IPV4 || \
995         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP || \
996         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK || \
997         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_UDP || \
998         (pctype) == I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP || \
999         (pctype) == I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP || \
1000         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_SCTP || \
1001         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER || \
1002         (pctype) == I40E_FILTER_PCTYPE_FRAG_IPV6 || \
1003         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_UDP || \
1004         (pctype) == I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP || \
1005         (pctype) == I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP || \
1006         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP || \
1007         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK || \
1008         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_SCTP || \
1009         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_OTHER || \
1010         (pctype) == I40E_FILTER_PCTYPE_L2_PAYLOAD)
1011
1012 #define I40E_VALID_PCTYPE(pctype) \
1013         ((pctype) == I40E_FILTER_PCTYPE_FRAG_IPV4 || \
1014         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP || \
1015         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_UDP || \
1016         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_SCTP || \
1017         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER || \
1018         (pctype) == I40E_FILTER_PCTYPE_FRAG_IPV6 || \
1019         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_UDP || \
1020         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP || \
1021         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_SCTP || \
1022         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_OTHER || \
1023         (pctype) == I40E_FILTER_PCTYPE_L2_PAYLOAD)
1024
1025 #define I40E_PHY_TYPE_SUPPORT_40G(phy_type) \
1026         (((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_KR4) || \
1027         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU) || \
1028         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_AOC) || \
1029         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_CR4) || \
1030         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_SR4) || \
1031         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_LR4))
1032
1033 #define I40E_PHY_TYPE_SUPPORT_25G(phy_type) \
1034         (((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_KR) || \
1035         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_CR) || \
1036         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_SR) || \
1037         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_LR))
1038
1039 #endif /* _I40E_ETHDEV_H_ */