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