net/i40e: set VF MAC from VF
[dpdk.git] / drivers / net / i40e / i40e_ethdev.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 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 struct i40e_adapter;
255
256 /**
257  * MAC filter structure
258  */
259 struct i40e_mac_filter_info {
260         enum rte_mac_filter_type filter_type;
261         struct ether_addr mac_addr;
262 };
263
264 TAILQ_HEAD(i40e_mac_filter_list, i40e_mac_filter);
265
266 /* MAC filter list structure */
267 struct i40e_mac_filter {
268         TAILQ_ENTRY(i40e_mac_filter) next;
269         struct i40e_mac_filter_info mac_info;
270 };
271
272 TAILQ_HEAD(i40e_vsi_list_head, i40e_vsi_list);
273
274 struct i40e_vsi;
275
276 /* VSI list structure */
277 struct i40e_vsi_list {
278         TAILQ_ENTRY(i40e_vsi_list) list;
279         struct i40e_vsi *vsi;
280 };
281
282 struct i40e_rx_queue;
283 struct i40e_tx_queue;
284
285 /* Bandwidth limit information */
286 struct i40e_bw_info {
287         uint16_t bw_limit;      /* BW Limit (0 = disabled) */
288         uint8_t  bw_max;        /* Max BW limit if enabled */
289
290         /* Relative credits within same TC with respect to other VSIs or Comps */
291         uint8_t  bw_ets_share_credits[I40E_MAX_TRAFFIC_CLASS];
292         /* Bandwidth limit per TC */
293         uint8_t  bw_ets_credits[I40E_MAX_TRAFFIC_CLASS];
294         /* Max bandwidth limit per TC */
295         uint8_t  bw_ets_max[I40E_MAX_TRAFFIC_CLASS];
296 };
297
298 /* Structure that defines a VEB */
299 struct i40e_veb {
300         struct i40e_vsi_list_head head;
301         struct i40e_vsi *associate_vsi; /* Associate VSI who owns the VEB */
302         struct i40e_pf *associate_pf; /* Associate PF who owns the VEB */
303         uint16_t seid; /* The seid of VEB itself */
304         uint16_t uplink_seid; /* The uplink seid of this VEB */
305         uint16_t stats_idx;
306         struct i40e_eth_stats stats;
307         uint8_t enabled_tc;   /* The traffic class enabled */
308         struct i40e_bw_info bw_info; /* VEB bandwidth information */
309 };
310
311 /* i40e MACVLAN filter structure */
312 struct i40e_macvlan_filter {
313         struct ether_addr macaddr;
314         enum rte_mac_filter_type filter_type;
315         uint16_t vlan_id;
316 };
317
318 /*
319  * Structure that defines a VSI, associated with a adapter.
320  */
321 struct i40e_vsi {
322         struct i40e_adapter *adapter; /* Backreference to associated adapter */
323         struct i40e_aqc_vsi_properties_data info; /* VSI properties */
324
325         struct i40e_eth_stats eth_stats_offset;
326         struct i40e_eth_stats eth_stats;
327         /*
328          * When drivers loaded, only a default main VSI exists. In case new VSI
329          * needs to add, HW needs to know the layout that VSIs are organized.
330          * Besides that, VSI isan element and can't switch packets, which needs
331          * to add new component VEB to perform switching. So, a new VSI needs
332          * to specify the the uplink VSI (Parent VSI) before created. The
333          * uplink VSI will check whether it had a VEB to switch packets. If no,
334          * it will try to create one. Then, uplink VSI will move the new VSI
335          * into its' sib_vsi_list to manage all the downlink VSI.
336          *  sib_vsi_list: the VSI list that shared the same uplink VSI.
337          *  parent_vsi  : the uplink VSI. It's NULL for main VSI.
338          *  veb         : the VEB associates with the VSI.
339          */
340         struct i40e_vsi_list sib_vsi_list; /* sibling vsi list */
341         struct i40e_vsi *parent_vsi;
342         struct i40e_veb *veb;    /* Associated veb, could be null */
343         struct i40e_veb *floating_veb; /* Associated floating veb */
344         bool offset_loaded;
345         enum i40e_vsi_type type; /* VSI types */
346         uint16_t vlan_num;       /* Total VLAN number */
347         uint16_t mac_num;        /* Total mac number */
348         uint32_t vfta[I40E_VFTA_SIZE];        /* VLAN bitmap */
349         struct i40e_mac_filter_list mac_list; /* macvlan filter list */
350         /* specific VSI-defined parameters, SRIOV stored the vf_id */
351         uint32_t user_param;
352         uint16_t seid;           /* The seid of VSI itself */
353         uint16_t uplink_seid;    /* The uplink seid of this VSI */
354         uint16_t nb_qps;         /* Number of queue pairs VSI can occupy */
355         uint16_t nb_used_qps;    /* Number of queue pairs VSI uses */
356         uint16_t max_macaddrs;   /* Maximum number of MAC addresses */
357         uint16_t base_queue;     /* The first queue index of this VSI */
358         /*
359          * The offset to visit VSI related register, assigned by HW when
360          * creating VSI
361          */
362         uint16_t vsi_id;
363         uint16_t msix_intr; /* The MSIX interrupt binds to VSI */
364         uint16_t nb_msix;   /* The max number of msix vector */
365         uint8_t enabled_tc; /* The traffic class enabled */
366         uint8_t vlan_anti_spoof_on; /* The VLAN anti-spoofing enabled */
367         struct i40e_bw_info bw_info; /* VSI bandwidth information */
368 };
369
370 struct pool_entry {
371         LIST_ENTRY(pool_entry) next;
372         uint16_t base;
373         uint16_t len;
374 };
375
376 LIST_HEAD(res_list, pool_entry);
377
378 struct i40e_res_pool_info {
379         uint32_t base;              /* Resource start index */
380         uint32_t num_alloc;         /* Allocated resource number */
381         uint32_t num_free;          /* Total available resource number */
382         struct res_list alloc_list; /* Allocated resource list */
383         struct res_list free_list;  /* Available resource list */
384 };
385
386 enum I40E_VF_STATE {
387         I40E_VF_INACTIVE = 0,
388         I40E_VF_INRESET,
389         I40E_VF_ININIT,
390         I40E_VF_ACTIVE,
391 };
392
393 /*
394  * Structure to store private data for PF host.
395  */
396 struct i40e_pf_vf {
397         struct i40e_pf *pf;
398         struct i40e_vsi *vsi;
399         enum I40E_VF_STATE state; /* The number of queue pairs availiable */
400         uint16_t vf_idx; /* VF index in pf->vfs */
401         uint16_t lan_nb_qps; /* Actual queues allocated */
402         uint16_t reset_cnt; /* Total vf reset times */
403         struct ether_addr mac_addr;  /* Default MAC address */
404 };
405
406 /*
407  * Structure to store private data for flow control.
408  */
409 struct i40e_fc_conf {
410         uint16_t pause_time; /* Flow control pause timer */
411         /* FC high water 0-7 for pfc and 8 for lfc unit:kilobytes */
412         uint32_t high_water[I40E_MAX_TRAFFIC_CLASS + 1];
413         /* FC low water  0-7 for pfc and 8 for lfc unit:kilobytes */
414         uint32_t low_water[I40E_MAX_TRAFFIC_CLASS + 1];
415 };
416
417 /*
418  * Structure to store private data for VMDQ instance
419  */
420 struct i40e_vmdq_info {
421         struct i40e_pf *pf;
422         struct i40e_vsi *vsi;
423 };
424
425 /*
426  * Structure to store flex pit for flow diretor.
427  */
428 struct i40e_fdir_flex_pit {
429         uint8_t src_offset;    /* offset in words from the beginning of payload */
430         uint8_t size;          /* size in words */
431         uint8_t dst_offset;    /* offset in words of flexible payload */
432 };
433
434 struct i40e_fdir_flex_mask {
435         uint8_t word_mask;  /**< Bit i enables word i of flexible payload */
436         struct {
437                 uint8_t offset;
438                 uint16_t mask;
439         } bitmask[I40E_FDIR_BITMASK_NUM_WORD];
440 };
441
442 #define I40E_FILTER_PCTYPE_MAX 64
443 #define I40E_MAX_FDIR_FILTER_NUM (1024 * 8)
444
445 struct i40e_fdir_filter {
446         TAILQ_ENTRY(i40e_fdir_filter) rules;
447         struct rte_eth_fdir_filter fdir;
448 };
449
450 TAILQ_HEAD(i40e_fdir_filter_list, i40e_fdir_filter);
451 /*
452  *  A structure used to define fields of a FDIR related info.
453  */
454 struct i40e_fdir_info {
455         struct i40e_vsi *fdir_vsi;     /* pointer to fdir VSI structure */
456         uint16_t match_counter_index;  /* Statistic counter index used for fdir*/
457         struct i40e_tx_queue *txq;
458         struct i40e_rx_queue *rxq;
459         void *prg_pkt;                 /* memory for fdir program packet */
460         uint64_t dma_addr;             /* physic address of packet memory*/
461         /* input set bits for each pctype */
462         uint64_t input_set[I40E_FILTER_PCTYPE_MAX];
463         /*
464          * the rule how bytes stream is extracted as flexible payload
465          * for each payload layer, the setting can up to three elements
466          */
467         struct i40e_fdir_flex_pit flex_set[I40E_MAX_FLXPLD_LAYER * I40E_MAX_FLXPLD_FIED];
468         struct i40e_fdir_flex_mask flex_mask[I40E_FILTER_PCTYPE_MAX];
469
470         struct i40e_fdir_filter_list fdir_list;
471         struct i40e_fdir_filter **hash_map;
472         struct rte_hash *hash_table;
473 };
474
475 /* Ethertype filter number HW supports */
476 #define I40E_MAX_ETHERTYPE_FILTER_NUM 768
477
478 /* Ethertype filter struct */
479 struct i40e_ethertype_filter_input {
480         struct ether_addr mac_addr;   /* Mac address to match */
481         uint16_t ether_type;          /* Ether type to match */
482 };
483
484 struct i40e_ethertype_filter {
485         TAILQ_ENTRY(i40e_ethertype_filter) rules;
486         struct i40e_ethertype_filter_input input;
487         uint16_t flags;              /* Flags from RTE_ETHTYPE_FLAGS_* */
488         uint16_t queue;              /* Queue assigned to when match */
489 };
490
491 TAILQ_HEAD(i40e_ethertype_filter_list, i40e_ethertype_filter);
492
493 struct i40e_ethertype_rule {
494         struct i40e_ethertype_filter_list ethertype_list;
495         struct i40e_ethertype_filter  **hash_map;
496         struct rte_hash *hash_table;
497 };
498
499 /* Tunnel filter number HW supports */
500 #define I40E_MAX_TUNNEL_FILTER_NUM 400
501
502 /* Tunnel filter struct */
503 struct i40e_tunnel_filter_input {
504         uint8_t outer_mac[6];    /* Outer mac address to match */
505         uint8_t inner_mac[6];    /* Inner mac address to match */
506         uint16_t inner_vlan;     /* Inner vlan address to match */
507         uint16_t flags;          /* Filter type flag */
508         uint32_t tenant_id;      /* Tenant id to match */
509 };
510
511 struct i40e_tunnel_filter {
512         TAILQ_ENTRY(i40e_tunnel_filter) rules;
513         struct i40e_tunnel_filter_input input;
514         uint16_t queue; /* Queue assigned to when match */
515 };
516
517 TAILQ_HEAD(i40e_tunnel_filter_list, i40e_tunnel_filter);
518
519 struct i40e_tunnel_rule {
520         struct i40e_tunnel_filter_list tunnel_list;
521         struct i40e_tunnel_filter  **hash_map;
522         struct rte_hash *hash_table;
523 };
524
525 #define I40E_MIRROR_MAX_ENTRIES_PER_RULE   64
526 #define I40E_MAX_MIRROR_RULES           64
527 /*
528  * Mirror rule structure
529  */
530 struct i40e_mirror_rule {
531         TAILQ_ENTRY(i40e_mirror_rule) rules;
532         uint8_t rule_type;
533         uint16_t index;          /* the sw index of mirror rule */
534         uint16_t id;             /* the rule id assigned by firmware */
535         uint16_t dst_vsi_seid;   /* destination vsi for this mirror rule. */
536         uint16_t num_entries;
537         /* the info stores depend on the rule type.
538             If type is I40E_MIRROR_TYPE_VLAN, vlan ids are stored here.
539             If type is I40E_MIRROR_TYPE_VPORT_*, vsi's seid are stored.
540          */
541         uint16_t entries[I40E_MIRROR_MAX_ENTRIES_PER_RULE];
542 };
543
544 TAILQ_HEAD(i40e_mirror_rule_list, i40e_mirror_rule);
545
546 /*
547  * Struct to store flow created.
548  */
549 struct rte_flow {
550         TAILQ_ENTRY(rte_flow) node;
551         enum rte_filter_type filter_type;
552         void *rule;
553 };
554
555 TAILQ_HEAD(i40e_flow_list, rte_flow);
556
557 /*
558  * Structure to store private data specific for PF instance.
559  */
560 struct i40e_pf {
561         struct i40e_adapter *adapter; /* The adapter this PF associate to */
562         struct i40e_vsi *main_vsi; /* pointer to main VSI structure */
563         uint16_t mac_seid; /* The seid of the MAC of this PF */
564         uint16_t main_vsi_seid; /* The seid of the main VSI */
565         uint16_t max_num_vsi;
566         struct i40e_res_pool_info qp_pool;    /*Queue pair pool */
567         struct i40e_res_pool_info msix_pool;  /* MSIX interrupt pool */
568
569         struct i40e_hw_port_stats stats_offset;
570         struct i40e_hw_port_stats stats;
571         bool offset_loaded;
572
573         struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
574         struct ether_addr dev_addr; /* PF device mac address */
575         uint64_t flags; /* PF feature flags */
576         /* All kinds of queue pair setting for different VSIs */
577         struct i40e_pf_vf *vfs;
578         uint16_t vf_num;
579         /* Each of below queue pairs should be power of 2 since it's the
580            precondition after TC configuration applied */
581         uint16_t lan_nb_qp_max;
582         uint16_t lan_nb_qps; /* The number of queue pairs of LAN */
583         uint16_t lan_qp_offset;
584         uint16_t vmdq_nb_qp_max;
585         uint16_t vmdq_nb_qps; /* The number of queue pairs of VMDq */
586         uint16_t vmdq_qp_offset;
587         uint16_t vf_nb_qp_max;
588         uint16_t vf_nb_qps; /* The number of queue pairs of VF */
589         uint16_t vf_qp_offset;
590         uint16_t fdir_nb_qps; /* The number of queue pairs of Flow Director */
591         uint16_t fdir_qp_offset;
592
593         uint16_t hash_lut_size; /* The size of hash lookup table */
594         /* input set bits for each pctype */
595         uint64_t hash_input_set[I40E_FILTER_PCTYPE_MAX];
596         /* store VXLAN UDP ports */
597         uint16_t vxlan_ports[I40E_MAX_PF_UDP_OFFLOAD_PORTS];
598         uint16_t vxlan_bitmap; /* Vxlan bit mask */
599
600         /* VMDQ related info */
601         uint16_t max_nb_vmdq_vsi; /* Max number of VMDQ VSIs supported */
602         uint16_t nb_cfg_vmdq_vsi; /* number of VMDQ VSIs configured */
603         struct i40e_vmdq_info *vmdq;
604
605         struct i40e_fdir_info fdir; /* flow director info */
606         struct i40e_ethertype_rule ethertype; /* Ethertype filter rule */
607         struct i40e_tunnel_rule tunnel; /* Tunnel filter rule */
608         struct i40e_fc_conf fc_conf; /* Flow control conf */
609         struct i40e_mirror_rule_list mirror_list;
610         uint16_t nb_mirror_rule;   /* The number of mirror rules */
611         bool floating_veb; /* The flag to use the floating VEB */
612         /* The floating enable flag for the specific VF */
613         bool floating_veb_list[I40E_MAX_VF];
614         struct i40e_flow_list flow_list;
615 };
616
617 enum pending_msg {
618         PFMSG_LINK_CHANGE = 0x1,
619         PFMSG_RESET_IMPENDING = 0x2,
620         PFMSG_DRIVER_CLOSE = 0x4,
621 };
622
623 struct i40e_vsi_vlan_pvid_info {
624         uint16_t on;            /* Enable or disable pvid */
625         union {
626                 uint16_t pvid;  /* Valid in case 'on' is set to set pvid */
627                 struct {
628                 /*  Valid in case 'on' is cleared. 'tagged' will reject tagged packets,
629                  *  while 'untagged' will reject untagged packets.
630                  */
631                         uint8_t tagged;
632                         uint8_t untagged;
633                 } reject;
634         } config;
635 };
636
637 struct i40e_vf_rx_queues {
638         uint64_t rx_dma_addr;
639         uint32_t rx_ring_len;
640         uint32_t buff_size;
641 };
642
643 struct i40e_vf_tx_queues {
644         uint64_t tx_dma_addr;
645         uint32_t tx_ring_len;
646 };
647
648 /*
649  * Structure to store private data specific for VF instance.
650  */
651 struct i40e_vf {
652         struct i40e_adapter *adapter; /* The adapter this VF associate to */
653         struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
654         uint16_t num_queue_pairs;
655         uint16_t max_pkt_len; /* Maximum packet length */
656         bool promisc_unicast_enabled;
657         bool promisc_multicast_enabled;
658
659         uint32_t version_major; /* Major version number */
660         uint32_t version_minor; /* Minor version number */
661         uint16_t promisc_flags; /* Promiscuous setting */
662         uint32_t vlan[I40E_VFTA_SIZE]; /* VLAN bit map */
663
664         /* Event from pf */
665         bool dev_closed;
666         bool link_up;
667         enum i40e_aq_link_speed link_speed;
668         bool vf_reset;
669         volatile uint32_t pend_cmd; /* pending command not finished yet */
670         int32_t cmd_retval; /* return value of the cmd response from PF */
671         u16 pend_msg; /* flags indicates events from pf not handled yet */
672         uint8_t *aq_resp; /* buffer to store the adminq response from PF */
673
674         /* VSI info */
675         struct i40e_virtchnl_vf_resource *vf_res; /* All VSIs */
676         struct i40e_virtchnl_vsi_resource *vsi_res; /* LAN VSI */
677         struct i40e_vsi vsi;
678         uint64_t flags;
679 };
680
681 /*
682  * Structure to store private data for each PF/VF instance.
683  */
684 struct i40e_adapter {
685         /* Common for both PF and VF */
686         struct i40e_hw hw;
687         struct rte_eth_dev *eth_dev;
688
689         /* Specific for PF or VF */
690         union {
691                 struct i40e_pf pf;
692                 struct i40e_vf vf;
693         };
694
695         /* For vector PMD */
696         bool rx_bulk_alloc_allowed;
697         bool rx_vec_allowed;
698         bool tx_simple_allowed;
699         bool tx_vec_allowed;
700
701         /* For PTP */
702         struct rte_timecounter systime_tc;
703         struct rte_timecounter rx_tstamp_tc;
704         struct rte_timecounter tx_tstamp_tc;
705 };
706
707 extern const struct rte_flow_ops i40e_flow_ops;
708
709 union i40e_filter_t {
710         struct rte_eth_ethertype_filter ethertype_filter;
711         struct rte_eth_fdir_filter fdir_filter;
712         struct rte_eth_tunnel_filter_conf tunnel_filter;
713 };
714
715 typedef int (*parse_filter_t)(struct rte_eth_dev *dev,
716                               const struct rte_flow_attr *attr,
717                               const struct rte_flow_item pattern[],
718                               const struct rte_flow_action actions[],
719                               struct rte_flow_error *error,
720                               union i40e_filter_t *filter);
721 struct i40e_valid_pattern {
722         enum rte_flow_item_type *items;
723         parse_filter_t parse_filter;
724 };
725
726 int i40e_dev_switch_queues(struct i40e_pf *pf, bool on);
727 int i40e_vsi_release(struct i40e_vsi *vsi);
728 struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf,
729                                 enum i40e_vsi_type type,
730                                 struct i40e_vsi *uplink_vsi,
731                                 uint16_t user_param);
732 int i40e_switch_rx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
733 int i40e_switch_tx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
734 int i40e_vsi_add_vlan(struct i40e_vsi *vsi, uint16_t vlan);
735 int i40e_vsi_delete_vlan(struct i40e_vsi *vsi, uint16_t vlan);
736 int i40e_vsi_add_mac(struct i40e_vsi *vsi, struct i40e_mac_filter_info *filter);
737 int i40e_vsi_delete_mac(struct i40e_vsi *vsi, struct ether_addr *addr);
738 void i40e_update_vsi_stats(struct i40e_vsi *vsi);
739 void i40e_pf_disable_irq0(struct i40e_hw *hw);
740 void i40e_pf_enable_irq0(struct i40e_hw *hw);
741 int i40e_dev_link_update(struct rte_eth_dev *dev,
742                          __rte_unused int wait_to_complete);
743 void i40e_vsi_queues_bind_intr(struct i40e_vsi *vsi);
744 void i40e_vsi_queues_unbind_intr(struct i40e_vsi *vsi);
745 int i40e_vsi_vlan_pvid_set(struct i40e_vsi *vsi,
746                            struct i40e_vsi_vlan_pvid_info *info);
747 int i40e_vsi_config_vlan_stripping(struct i40e_vsi *vsi, bool on);
748 int i40e_vsi_config_vlan_filter(struct i40e_vsi *vsi, bool on);
749 uint64_t i40e_config_hena(uint64_t flags, enum i40e_mac_type type);
750 uint64_t i40e_parse_hena(uint64_t flags);
751 enum i40e_status_code i40e_fdir_setup_tx_resources(struct i40e_pf *pf);
752 enum i40e_status_code i40e_fdir_setup_rx_resources(struct i40e_pf *pf);
753 int i40e_fdir_setup(struct i40e_pf *pf);
754 const struct rte_memzone *i40e_memzone_reserve(const char *name,
755                                         uint32_t len,
756                                         int socket_id);
757 int i40e_fdir_configure(struct rte_eth_dev *dev);
758 void i40e_fdir_teardown(struct i40e_pf *pf);
759 enum i40e_filter_pctype i40e_flowtype_to_pctype(uint16_t flow_type);
760 uint16_t i40e_pctype_to_flowtype(enum i40e_filter_pctype pctype);
761 int i40e_fdir_ctrl_func(struct rte_eth_dev *dev,
762                           enum rte_filter_op filter_op,
763                           void *arg);
764 int i40e_select_filter_input_set(struct i40e_hw *hw,
765                                  struct rte_eth_input_set_conf *conf,
766                                  enum rte_filter_type filter);
767 void i40e_fdir_filter_restore(struct i40e_pf *pf);
768 int i40e_hash_filter_inset_select(struct i40e_hw *hw,
769                              struct rte_eth_input_set_conf *conf);
770 int i40e_fdir_filter_inset_select(struct i40e_pf *pf,
771                              struct rte_eth_input_set_conf *conf);
772 int i40e_pf_host_send_msg_to_vf(struct i40e_pf_vf *vf, uint32_t opcode,
773                                 uint32_t retval, uint8_t *msg,
774                                 uint16_t msglen);
775 void i40e_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
776         struct rte_eth_rxq_info *qinfo);
777 void i40e_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
778         struct rte_eth_txq_info *qinfo);
779 struct i40e_ethertype_filter *
780 i40e_sw_ethertype_filter_lookup(struct i40e_ethertype_rule *ethertype_rule,
781                         const struct i40e_ethertype_filter_input *input);
782 int i40e_sw_ethertype_filter_del(struct i40e_pf *pf,
783                                  struct i40e_ethertype_filter_input *input);
784 int i40e_sw_fdir_filter_del(struct i40e_pf *pf,
785                             struct rte_eth_fdir_input *input);
786 struct i40e_tunnel_filter *
787 i40e_sw_tunnel_filter_lookup(struct i40e_tunnel_rule *tunnel_rule,
788                              const struct i40e_tunnel_filter_input *input);
789 int i40e_sw_tunnel_filter_del(struct i40e_pf *pf,
790                               struct i40e_tunnel_filter_input *input);
791 uint64_t i40e_get_default_input_set(uint16_t pctype);
792 int i40e_ethertype_filter_set(struct i40e_pf *pf,
793                               struct rte_eth_ethertype_filter *filter,
794                               bool add);
795 int i40e_add_del_fdir_filter(struct rte_eth_dev *dev,
796                              const struct rte_eth_fdir_filter *filter,
797                              bool add);
798 int i40e_dev_tunnel_filter_set(struct i40e_pf *pf,
799                                struct rte_eth_tunnel_filter_conf *tunnel_filter,
800                                uint8_t add);
801 int i40e_fdir_flush(struct rte_eth_dev *dev);
802
803 #define I40E_DEV_TO_PCI(eth_dev) \
804         RTE_DEV_TO_PCI((eth_dev)->device)
805
806 /* I40E_DEV_PRIVATE_TO */
807 #define I40E_DEV_PRIVATE_TO_PF(adapter) \
808         (&((struct i40e_adapter *)adapter)->pf)
809 #define I40E_DEV_PRIVATE_TO_HW(adapter) \
810         (&((struct i40e_adapter *)adapter)->hw)
811 #define I40E_DEV_PRIVATE_TO_ADAPTER(adapter) \
812         ((struct i40e_adapter *)adapter)
813
814 /* I40EVF_DEV_PRIVATE_TO */
815 #define I40EVF_DEV_PRIVATE_TO_VF(adapter) \
816         (&((struct i40e_adapter *)adapter)->vf)
817
818 static inline struct i40e_vsi *
819 i40e_get_vsi_from_adapter(struct i40e_adapter *adapter)
820 {
821         struct i40e_hw *hw;
822
823         if (!adapter)
824                 return NULL;
825
826         hw = I40E_DEV_PRIVATE_TO_HW(adapter);
827         if (hw->mac.type == I40E_MAC_VF || hw->mac.type == I40E_MAC_X722_VF) {
828                 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(adapter);
829                 return &vf->vsi;
830         } else {
831                 struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(adapter);
832                 return pf->main_vsi;
833         }
834 }
835 #define I40E_DEV_PRIVATE_TO_MAIN_VSI(adapter) \
836         i40e_get_vsi_from_adapter((struct i40e_adapter *)adapter)
837
838 /* I40E_VSI_TO */
839 #define I40E_VSI_TO_HW(vsi) \
840         (&(((struct i40e_vsi *)vsi)->adapter->hw))
841 #define I40E_VSI_TO_PF(vsi) \
842         (&(((struct i40e_vsi *)vsi)->adapter->pf))
843 #define I40E_VSI_TO_VF(vsi) \
844         (&(((struct i40e_vsi *)vsi)->adapter->vf))
845 #define I40E_VSI_TO_DEV_DATA(vsi) \
846         (((struct i40e_vsi *)vsi)->adapter->pf.dev_data)
847 #define I40E_VSI_TO_ETH_DEV(vsi) \
848         (((struct i40e_vsi *)vsi)->adapter->eth_dev)
849
850 /* I40E_PF_TO */
851 #define I40E_PF_TO_HW(pf) \
852         (&(((struct i40e_pf *)pf)->adapter->hw))
853 #define I40E_PF_TO_ADAPTER(pf) \
854         ((struct i40e_adapter *)pf->adapter)
855
856 /* I40E_VF_TO */
857 #define I40E_VF_TO_HW(vf) \
858         (&(((struct i40e_vf *)vf)->adapter->hw))
859
860 static inline void
861 i40e_init_adminq_parameter(struct i40e_hw *hw)
862 {
863         hw->aq.num_arq_entries = I40E_AQ_LEN;
864         hw->aq.num_asq_entries = I40E_AQ_LEN;
865         hw->aq.arq_buf_size = I40E_AQ_BUF_SZ;
866         hw->aq.asq_buf_size = I40E_AQ_BUF_SZ;
867 }
868
869 static inline int
870 i40e_align_floor(int n)
871 {
872         if (n == 0)
873                 return 0;
874         return 1 << (sizeof(n) * CHAR_BIT - 1 - __builtin_clz(n));
875 }
876
877 static inline uint16_t
878 i40e_calc_itr_interval(int16_t interval)
879 {
880         if (interval < 0 || interval > I40E_QUEUE_ITR_INTERVAL_MAX)
881                 interval = I40E_QUEUE_ITR_INTERVAL_DEFAULT;
882
883         /* Convert to hardware count, as writing each 1 represents 2 us */
884         return interval / 2;
885 }
886
887 #define I40E_VALID_FLOW(flow_type) \
888         ((flow_type) == RTE_ETH_FLOW_FRAG_IPV4 || \
889         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_TCP || \
890         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_UDP || \
891         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_SCTP || \
892         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_OTHER || \
893         (flow_type) == RTE_ETH_FLOW_FRAG_IPV6 || \
894         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_TCP || \
895         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_UDP || \
896         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_SCTP || \
897         (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_OTHER || \
898         (flow_type) == RTE_ETH_FLOW_L2_PAYLOAD)
899
900 #define I40E_VALID_PCTYPE_X722(pctype) \
901         ((pctype) == I40E_FILTER_PCTYPE_FRAG_IPV4 || \
902         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP || \
903         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK || \
904         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_UDP || \
905         (pctype) == I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP || \
906         (pctype) == I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP || \
907         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_SCTP || \
908         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER || \
909         (pctype) == I40E_FILTER_PCTYPE_FRAG_IPV6 || \
910         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_UDP || \
911         (pctype) == I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP || \
912         (pctype) == I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP || \
913         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP || \
914         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK || \
915         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_SCTP || \
916         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_OTHER || \
917         (pctype) == I40E_FILTER_PCTYPE_L2_PAYLOAD)
918
919 #define I40E_VALID_PCTYPE(pctype) \
920         ((pctype) == I40E_FILTER_PCTYPE_FRAG_IPV4 || \
921         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP || \
922         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_UDP || \
923         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_SCTP || \
924         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER || \
925         (pctype) == I40E_FILTER_PCTYPE_FRAG_IPV6 || \
926         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_UDP || \
927         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP || \
928         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_SCTP || \
929         (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_OTHER || \
930         (pctype) == I40E_FILTER_PCTYPE_L2_PAYLOAD)
931
932 #define I40E_PHY_TYPE_SUPPORT_40G(phy_type) \
933         (((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_KR4) || \
934         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_CR4_CU) || \
935         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_AOC) || \
936         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_CR4) || \
937         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_SR4) || \
938         ((phy_type) & I40E_CAP_PHY_TYPE_40GBASE_LR4))
939
940 #define I40E_PHY_TYPE_SUPPORT_25G(phy_type) \
941         (((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_KR) || \
942         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_CR) || \
943         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_SR) || \
944         ((phy_type) & I40E_CAP_PHY_TYPE_25GBASE_LR))
945
946 #endif /* _I40E_ETHDEV_H_ */