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