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