New upstream version 17.11.4
[deb_dpdk.git] / drivers / net / ixgbe / ixgbe_ethdev.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 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 _IXGBE_ETHDEV_H_
35 #define _IXGBE_ETHDEV_H_
36 #include "base/ixgbe_type.h"
37 #include "base/ixgbe_dcb.h"
38 #include "base/ixgbe_dcb_82599.h"
39 #include "base/ixgbe_dcb_82598.h"
40 #include "ixgbe_bypass.h"
41 #ifdef RTE_LIBRTE_SECURITY
42 #include "ixgbe_ipsec.h"
43 #endif
44 #include <rte_time.h>
45 #include <rte_hash.h>
46 #include <rte_pci.h>
47 #include <rte_bus_pci.h>
48 #include <rte_tm_driver.h>
49
50 /* need update link, bit flag */
51 #define IXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0)
52 #define IXGBE_FLAG_MAILBOX          (uint32_t)(1 << 1)
53 #define IXGBE_FLAG_PHY_INTERRUPT    (uint32_t)(1 << 2)
54 #define IXGBE_FLAG_MACSEC           (uint32_t)(1 << 3)
55 #define IXGBE_FLAG_NEED_LINK_CONFIG (uint32_t)(1 << 4)
56
57 /*
58  * Defines that were not part of ixgbe_type.h as they are not used by the
59  * FreeBSD driver.
60  */
61 #define IXGBE_ADVTXD_MAC_1588       0x00080000 /* IEEE1588 Timestamp packet */
62 #define IXGBE_RXD_STAT_TMST         0x10000    /* Timestamped Packet indication */
63 #define IXGBE_ADVTXD_TUCMD_L4T_RSV  0x00001800 /* L4 Packet TYPE, resvd  */
64 #define IXGBE_RXDADV_ERR_CKSUM_BIT  30
65 #define IXGBE_RXDADV_ERR_CKSUM_MSK  3
66 #define IXGBE_ADVTXD_MACLEN_SHIFT   9          /* Bit shift for l2_len */
67 #define IXGBE_NB_STAT_MAPPING_REGS  32
68 #define IXGBE_EXTENDED_VLAN       (uint32_t)(1 << 26) /* EXTENDED VLAN ENABLE */
69 #define IXGBE_VFTA_SIZE 128
70 #define IXGBE_VLAN_TAG_SIZE 4
71 #define IXGBE_MAX_RX_QUEUE_NUM  128
72 #define IXGBE_MAX_INTR_QUEUE_NUM        15
73 #define IXGBE_VMDQ_DCB_NB_QUEUES     IXGBE_MAX_RX_QUEUE_NUM
74 #define IXGBE_DCB_NB_QUEUES          IXGBE_MAX_RX_QUEUE_NUM
75 #define IXGBE_NONE_MODE_TX_NB_QUEUES 64
76
77 #ifndef NBBY
78 #define NBBY    8       /* number of bits in a byte */
79 #endif
80 #define IXGBE_HWSTRIP_BITMAP_SIZE (IXGBE_MAX_RX_QUEUE_NUM / (sizeof(uint32_t) * NBBY))
81
82 /* EITR Interval is in 2048ns uinits for 1G and 10G link */
83 #define IXGBE_EITR_INTERVAL_UNIT_NS     2048
84 #define IXGBE_EITR_ITR_INT_SHIFT       3
85 #define IXGBE_EITR_INTERVAL_US(us) \
86         (((us) * 1000 / IXGBE_EITR_INTERVAL_UNIT_NS << IXGBE_EITR_ITR_INT_SHIFT) & \
87                 IXGBE_EITR_ITR_INT_MASK)
88
89
90 /* Loopback operation modes */
91 /* 82599 specific loopback operation types */
92 #define IXGBE_LPBK_82599_NONE   0x0 /* Default value. Loopback is disabled. */
93 #define IXGBE_LPBK_82599_TX_RX  0x1 /* Tx->Rx loopback operation is enabled. */
94
95 #define IXGBE_MAX_JUMBO_FRAME_SIZE      0x2600 /* Maximum Jumbo frame size. */
96
97 #define IXGBE_RTTBCNRC_RF_INT_MASK_BASE 0x000003FF
98 #define IXGBE_RTTBCNRC_RF_INT_MASK_M \
99         (IXGBE_RTTBCNRC_RF_INT_MASK_BASE << IXGBE_RTTBCNRC_RF_INT_SHIFT)
100
101 #define IXGBE_MAX_QUEUE_NUM_PER_VF  8
102
103 #define IXGBE_SYN_FILTER_ENABLE         0x00000001 /* syn filter enable field */
104 #define IXGBE_SYN_FILTER_QUEUE          0x000000FE /* syn filter queue field */
105 #define IXGBE_SYN_FILTER_QUEUE_SHIFT    1          /* syn filter queue field shift */
106 #define IXGBE_SYN_FILTER_SYNQFP         0x80000000 /* syn filter SYNQFP */
107
108 #define IXGBE_ETQF_UP                   0x00070000 /* ethertype filter priority field */
109 #define IXGBE_ETQF_SHIFT                16
110 #define IXGBE_ETQF_UP_EN                0x00080000
111 #define IXGBE_ETQF_ETHERTYPE            0x0000FFFF /* ethertype filter ethertype field */
112 #define IXGBE_ETQF_MAX_PRI              7
113
114 #define IXGBE_SDPQF_DSTPORT             0xFFFF0000 /* dst port field */
115 #define IXGBE_SDPQF_DSTPORT_SHIFT       16         /* dst port field shift */
116 #define IXGBE_SDPQF_SRCPORT             0x0000FFFF /* src port field */
117
118 #define IXGBE_L34T_IMIR_SIZE_BP         0x00001000
119 #define IXGBE_L34T_IMIR_RESERVE         0x00080000 /* bit 13 to 19 must be set to 1000000b. */
120 #define IXGBE_L34T_IMIR_LLI             0x00100000
121 #define IXGBE_L34T_IMIR_QUEUE           0x0FE00000
122 #define IXGBE_L34T_IMIR_QUEUE_SHIFT     21
123 #define IXGBE_5TUPLE_MAX_PRI            7
124 #define IXGBE_5TUPLE_MIN_PRI            1
125
126 /* bit of VXLAN tunnel type | 7 bits of zeros  | 8 bits of zeros*/
127 #define IXGBE_FDIR_VXLAN_TUNNEL_TYPE    0x8000
128 /* bit of NVGRE tunnel type | 7 bits of zeros  | 8 bits of zeros*/
129 #define IXGBE_FDIR_NVGRE_TUNNEL_TYPE    0x0
130
131 #define IXGBE_RSS_OFFLOAD_ALL ( \
132         ETH_RSS_IPV4 | \
133         ETH_RSS_NONFRAG_IPV4_TCP | \
134         ETH_RSS_NONFRAG_IPV4_UDP | \
135         ETH_RSS_IPV6 | \
136         ETH_RSS_NONFRAG_IPV6_TCP | \
137         ETH_RSS_NONFRAG_IPV6_UDP | \
138         ETH_RSS_IPV6_EX | \
139         ETH_RSS_IPV6_TCP_EX | \
140         ETH_RSS_IPV6_UDP_EX)
141
142 #define IXGBE_VF_IRQ_ENABLE_MASK        3          /* vf irq enable mask */
143 #define IXGBE_VF_MAXMSIVECTOR           1
144
145 #define IXGBE_MISC_VEC_ID               RTE_INTR_VEC_ZERO_OFFSET
146 #define IXGBE_RX_VEC_START              RTE_INTR_VEC_RXTX_OFFSET
147
148 #define IXGBE_SECTX_MINSECIFG_MASK      0x0000000F
149
150 #define IXGBE_MACSEC_PNTHRSH            0xFFFFFE00
151
152 #define IXGBE_MAX_FDIR_FILTER_NUM       (1024 * 32)
153 #define IXGBE_MAX_L2_TN_FILTER_NUM      128
154
155 #define MAC_TYPE_FILTER_SUP_EXT(type)    do {\
156         if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540)\
157                 return -ENOTSUP;\
158 } while (0)
159
160 #define MAC_TYPE_FILTER_SUP(type)    do {\
161         if ((type) != ixgbe_mac_82599EB && (type) != ixgbe_mac_X540 &&\
162                 (type) != ixgbe_mac_X550 && (type) != ixgbe_mac_X550EM_x &&\
163                 (type) != ixgbe_mac_X550EM_a)\
164                 return -ENOTSUP;\
165 } while (0)
166
167 /* Link speed for X550 auto negotiation */
168 #define IXGBE_LINK_SPEED_X550_AUTONEG   (IXGBE_LINK_SPEED_100_FULL | \
169                                          IXGBE_LINK_SPEED_1GB_FULL | \
170                                          IXGBE_LINK_SPEED_2_5GB_FULL | \
171                                          IXGBE_LINK_SPEED_5GB_FULL | \
172                                          IXGBE_LINK_SPEED_10GB_FULL)
173
174 /*
175  * Information about the fdir mode.
176  */
177 struct ixgbe_hw_fdir_mask {
178         uint16_t vlan_tci_mask;
179         uint32_t src_ipv4_mask;
180         uint32_t dst_ipv4_mask;
181         uint16_t src_ipv6_mask;
182         uint16_t dst_ipv6_mask;
183         uint16_t src_port_mask;
184         uint16_t dst_port_mask;
185         uint16_t flex_bytes_mask;
186         uint8_t  mac_addr_byte_mask;
187         uint32_t tunnel_id_mask;
188         uint8_t  tunnel_type_mask;
189 };
190
191 struct ixgbe_fdir_filter {
192         TAILQ_ENTRY(ixgbe_fdir_filter) entries;
193         union ixgbe_atr_input ixgbe_fdir; /* key of fdir filter*/
194         uint32_t fdirflags; /* drop or forward */
195         uint32_t fdirhash; /* hash value for fdir */
196         uint8_t queue; /* assigned rx queue */
197 };
198
199 /* list of fdir filters */
200 TAILQ_HEAD(ixgbe_fdir_filter_list, ixgbe_fdir_filter);
201
202 struct ixgbe_fdir_rule {
203         struct ixgbe_hw_fdir_mask mask;
204         union ixgbe_atr_input ixgbe_fdir; /* key of fdir filter*/
205         bool b_spec; /* If TRUE, ixgbe_fdir, fdirflags, queue have meaning. */
206         bool b_mask; /* If TRUE, mask has meaning. */
207         enum rte_fdir_mode mode; /* IP, MAC VLAN, Tunnel */
208         uint32_t fdirflags; /* drop or forward */
209         uint32_t soft_id; /* an unique value for this rule */
210         uint8_t queue; /* assigned rx queue */
211         uint8_t flex_bytes_offset;
212 };
213
214 struct ixgbe_hw_fdir_info {
215         struct ixgbe_hw_fdir_mask mask;
216         uint8_t     flex_bytes_offset;
217         uint16_t    collision;
218         uint16_t    free;
219         uint16_t    maxhash;
220         uint8_t     maxlen;
221         uint64_t    add;
222         uint64_t    remove;
223         uint64_t    f_add;
224         uint64_t    f_remove;
225         struct ixgbe_fdir_filter_list fdir_list; /* filter list*/
226         /* store the pointers of the filters, index is the hash value. */
227         struct ixgbe_fdir_filter **hash_map;
228         struct rte_hash *hash_handle; /* cuckoo hash handler */
229         bool mask_added; /* If already got mask from consistent filter */
230 };
231
232 /* structure for interrupt relative data */
233 struct ixgbe_interrupt {
234         uint32_t flags;
235         uint32_t mask;
236         /*to save original mask during delayed handler */
237         uint32_t mask_original;
238 };
239
240 struct ixgbe_stat_mapping_registers {
241         uint32_t tqsm[IXGBE_NB_STAT_MAPPING_REGS];
242         uint32_t rqsmr[IXGBE_NB_STAT_MAPPING_REGS];
243 };
244
245 struct ixgbe_vfta {
246         uint32_t vfta[IXGBE_VFTA_SIZE];
247 };
248
249 struct ixgbe_hwstrip {
250         uint32_t bitmap[IXGBE_HWSTRIP_BITMAP_SIZE];
251 };
252
253 /*
254  * VF data which used by PF host only
255  */
256 #define IXGBE_MAX_VF_MC_ENTRIES         30
257 #define IXGBE_MAX_MR_RULE_ENTRIES       4 /* number of mirroring rules supported */
258 #define IXGBE_MAX_UTA                   128
259
260 struct ixgbe_uta_info {
261         uint8_t  uc_filter_type;
262         uint16_t uta_in_use;
263         uint32_t uta_shadow[IXGBE_MAX_UTA];
264 };
265
266 #define IXGBE_MAX_MIRROR_RULES 4  /* Maximum nb. of mirror rules. */
267
268 struct ixgbe_mirror_info {
269         struct rte_eth_mirror_conf mr_conf[IXGBE_MAX_MIRROR_RULES];
270         /**< store PF mirror rules configuration*/
271 };
272
273 struct ixgbe_vf_info {
274         uint8_t vf_mac_addresses[ETHER_ADDR_LEN];
275         uint16_t vf_mc_hashes[IXGBE_MAX_VF_MC_ENTRIES];
276         uint16_t num_vf_mc_hashes;
277         uint16_t default_vf_vlan_id;
278         uint16_t vlans_enabled;
279         bool clear_to_send;
280         uint16_t tx_rate[IXGBE_MAX_QUEUE_NUM_PER_VF];
281         uint16_t vlan_count;
282         uint8_t spoofchk_enabled;
283         uint8_t api_version;
284 };
285
286 /*
287  *  Possible l4type of 5tuple filters.
288  */
289 enum ixgbe_5tuple_protocol {
290         IXGBE_FILTER_PROTOCOL_TCP = 0,
291         IXGBE_FILTER_PROTOCOL_UDP,
292         IXGBE_FILTER_PROTOCOL_SCTP,
293         IXGBE_FILTER_PROTOCOL_NONE,
294 };
295
296 TAILQ_HEAD(ixgbe_5tuple_filter_list, ixgbe_5tuple_filter);
297
298 struct ixgbe_5tuple_filter_info {
299         uint32_t dst_ip;
300         uint32_t src_ip;
301         uint16_t dst_port;
302         uint16_t src_port;
303         enum ixgbe_5tuple_protocol proto;        /* l4 protocol. */
304         uint8_t priority;        /* seven levels (001b-111b), 111b is highest,
305                                       used when more than one filter matches. */
306         uint8_t dst_ip_mask:1,   /* if mask is 1b, do not compare dst ip. */
307                 src_ip_mask:1,   /* if mask is 1b, do not compare src ip. */
308                 dst_port_mask:1, /* if mask is 1b, do not compare dst port. */
309                 src_port_mask:1, /* if mask is 1b, do not compare src port. */
310                 proto_mask:1;    /* if mask is 1b, do not compare protocol. */
311 };
312
313 /* 5tuple filter structure */
314 struct ixgbe_5tuple_filter {
315         TAILQ_ENTRY(ixgbe_5tuple_filter) entries;
316         uint16_t index;       /* the index of 5tuple filter */
317         struct ixgbe_5tuple_filter_info filter_info;
318         uint16_t queue;       /* rx queue assigned to */
319 };
320
321 #define IXGBE_5TUPLE_ARRAY_SIZE \
322         (RTE_ALIGN(IXGBE_MAX_FTQF_FILTERS, (sizeof(uint32_t) * NBBY)) / \
323          (sizeof(uint32_t) * NBBY))
324
325 struct ixgbe_ethertype_filter {
326         uint16_t ethertype;
327         uint32_t etqf;
328         uint32_t etqs;
329         /**
330          * If this filter is added by configuration,
331          * it should not be removed.
332          */
333         bool     conf;
334 };
335
336 /*
337  * Structure to store filters' info.
338  */
339 struct ixgbe_filter_info {
340         uint8_t ethertype_mask;  /* Bit mask for every used ethertype filter */
341         /* store used ethertype filters*/
342         struct ixgbe_ethertype_filter ethertype_filters[IXGBE_MAX_ETQF_FILTERS];
343         /* Bit mask for every used 5tuple filter */
344         uint32_t fivetuple_mask[IXGBE_5TUPLE_ARRAY_SIZE];
345         struct ixgbe_5tuple_filter_list fivetuple_list;
346         /* store the SYN filter info */
347         uint32_t syn_info;
348 };
349
350 struct ixgbe_l2_tn_key {
351         enum rte_eth_tunnel_type          l2_tn_type;
352         uint32_t                          tn_id;
353 };
354
355 struct ixgbe_l2_tn_filter {
356         TAILQ_ENTRY(ixgbe_l2_tn_filter)    entries;
357         struct ixgbe_l2_tn_key             key;
358         uint32_t                           pool;
359 };
360
361 TAILQ_HEAD(ixgbe_l2_tn_filter_list, ixgbe_l2_tn_filter);
362
363 struct ixgbe_l2_tn_info {
364         struct ixgbe_l2_tn_filter_list      l2_tn_list;
365         struct ixgbe_l2_tn_filter         **hash_map;
366         struct rte_hash                    *hash_handle;
367         bool e_tag_en; /* e-tag enabled */
368         bool e_tag_fwd_en; /* e-tag based forwarding enabled */
369         bool e_tag_ether_type; /* ether type for e-tag */
370 };
371
372 struct rte_flow {
373         enum rte_filter_type filter_type;
374         void *rule;
375 };
376
377 /*
378  * Statistics counters collected by the MACsec
379  */
380 struct ixgbe_macsec_stats {
381         /* TX port statistics */
382         uint64_t out_pkts_untagged;
383         uint64_t out_pkts_encrypted;
384         uint64_t out_pkts_protected;
385         uint64_t out_octets_encrypted;
386         uint64_t out_octets_protected;
387
388         /* RX port statistics */
389         uint64_t in_pkts_untagged;
390         uint64_t in_pkts_badtag;
391         uint64_t in_pkts_nosci;
392         uint64_t in_pkts_unknownsci;
393         uint64_t in_octets_decrypted;
394         uint64_t in_octets_validated;
395
396         /* RX SC statistics */
397         uint64_t in_pkts_unchecked;
398         uint64_t in_pkts_delayed;
399         uint64_t in_pkts_late;
400
401         /* RX SA statistics */
402         uint64_t in_pkts_ok;
403         uint64_t in_pkts_invalid;
404         uint64_t in_pkts_notvalid;
405         uint64_t in_pkts_unusedsa;
406         uint64_t in_pkts_notusingsa;
407 };
408
409 /* The configuration of bandwidth */
410 struct ixgbe_bw_conf {
411         uint8_t tc_num; /* Number of TCs. */
412 };
413
414 /* Struct to store Traffic Manager shaper profile. */
415 struct ixgbe_tm_shaper_profile {
416         TAILQ_ENTRY(ixgbe_tm_shaper_profile) node;
417         uint32_t shaper_profile_id;
418         uint32_t reference_count;
419         struct rte_tm_shaper_params profile;
420 };
421
422 TAILQ_HEAD(ixgbe_shaper_profile_list, ixgbe_tm_shaper_profile);
423
424 /* node type of Traffic Manager */
425 enum ixgbe_tm_node_type {
426         IXGBE_TM_NODE_TYPE_PORT,
427         IXGBE_TM_NODE_TYPE_TC,
428         IXGBE_TM_NODE_TYPE_QUEUE,
429         IXGBE_TM_NODE_TYPE_MAX,
430 };
431
432 /* Struct to store Traffic Manager node configuration. */
433 struct ixgbe_tm_node {
434         TAILQ_ENTRY(ixgbe_tm_node) node;
435         uint32_t id;
436         uint32_t priority;
437         uint32_t weight;
438         uint32_t reference_count;
439         uint16_t no;
440         struct ixgbe_tm_node *parent;
441         struct ixgbe_tm_shaper_profile *shaper_profile;
442         struct rte_tm_node_params params;
443 };
444
445 TAILQ_HEAD(ixgbe_tm_node_list, ixgbe_tm_node);
446
447 /* The configuration of Traffic Manager */
448 struct ixgbe_tm_conf {
449         struct ixgbe_shaper_profile_list shaper_profile_list;
450         struct ixgbe_tm_node *root; /* root node - port */
451         struct ixgbe_tm_node_list tc_list; /* node list for all the TCs */
452         struct ixgbe_tm_node_list queue_list; /* node list for all the queues */
453         /**
454          * The number of added TC nodes.
455          * It should be no more than the TC number of this port.
456          */
457         uint32_t nb_tc_node;
458         /**
459          * The number of added queue nodes.
460          * It should be no more than the queue number of this port.
461          */
462         uint32_t nb_queue_node;
463         /**
464          * This flag is used to check if APP can change the TM node
465          * configuration.
466          * When it's true, means the configuration is applied to HW,
467          * APP should not change the configuration.
468          * As we don't support on-the-fly configuration, when starting
469          * the port, APP should call the hierarchy_commit API to set this
470          * flag to true. When stopping the port, this flag should be set
471          * to false.
472          */
473         bool committed;
474 };
475
476 /*
477  * Structure to store private data for each driver instance (for each port).
478  */
479 struct ixgbe_adapter {
480         struct ixgbe_hw             hw;
481         struct ixgbe_hw_stats       stats;
482         struct ixgbe_macsec_stats   macsec_stats;
483         struct ixgbe_hw_fdir_info   fdir;
484         struct ixgbe_interrupt      intr;
485         struct ixgbe_stat_mapping_registers stat_mappings;
486         struct ixgbe_vfta           shadow_vfta;
487         struct ixgbe_hwstrip            hwstrip;
488         struct ixgbe_dcb_config     dcb_config;
489         struct ixgbe_mirror_info    mr_data;
490         struct ixgbe_vf_info        *vfdata;
491         struct ixgbe_uta_info       uta_info;
492 #ifdef RTE_LIBRTE_IXGBE_BYPASS
493         struct ixgbe_bypass_info    bps;
494 #endif /* RTE_LIBRTE_IXGBE_BYPASS */
495         struct ixgbe_filter_info    filter;
496         struct ixgbe_l2_tn_info     l2_tn;
497         struct ixgbe_bw_conf        bw_conf;
498 #ifdef RTE_LIBRTE_SECURITY
499         struct ixgbe_ipsec          ipsec;
500 #endif
501         bool rx_bulk_alloc_allowed;
502         bool rx_vec_allowed;
503         struct rte_timecounter      systime_tc;
504         struct rte_timecounter      rx_tstamp_tc;
505         struct rte_timecounter      tx_tstamp_tc;
506         struct ixgbe_tm_conf        tm_conf;
507 };
508
509 #define IXGBE_DEV_PRIVATE_TO_HW(adapter)\
510         (&((struct ixgbe_adapter *)adapter)->hw)
511
512 #define IXGBE_DEV_PRIVATE_TO_STATS(adapter) \
513         (&((struct ixgbe_adapter *)adapter)->stats)
514
515 #define IXGBE_DEV_PRIVATE_TO_MACSEC_STATS(adapter) \
516         (&((struct ixgbe_adapter *)adapter)->macsec_stats)
517
518 #define IXGBE_DEV_PRIVATE_TO_INTR(adapter) \
519         (&((struct ixgbe_adapter *)adapter)->intr)
520
521 #define IXGBE_DEV_PRIVATE_TO_FDIR_INFO(adapter) \
522         (&((struct ixgbe_adapter *)adapter)->fdir)
523
524 #define IXGBE_DEV_PRIVATE_TO_STAT_MAPPINGS(adapter) \
525         (&((struct ixgbe_adapter *)adapter)->stat_mappings)
526
527 #define IXGBE_DEV_PRIVATE_TO_VFTA(adapter) \
528         (&((struct ixgbe_adapter *)adapter)->shadow_vfta)
529
530 #define IXGBE_DEV_PRIVATE_TO_HWSTRIP_BITMAP(adapter) \
531         (&((struct ixgbe_adapter *)adapter)->hwstrip)
532
533 #define IXGBE_DEV_PRIVATE_TO_DCB_CFG(adapter) \
534         (&((struct ixgbe_adapter *)adapter)->dcb_config)
535
536 #define IXGBE_DEV_PRIVATE_TO_P_VFDATA(adapter) \
537         (&((struct ixgbe_adapter *)adapter)->vfdata)
538
539 #define IXGBE_DEV_PRIVATE_TO_PFDATA(adapter) \
540         (&((struct ixgbe_adapter *)adapter)->mr_data)
541
542 #define IXGBE_DEV_PRIVATE_TO_UTA(adapter) \
543         (&((struct ixgbe_adapter *)adapter)->uta_info)
544
545 #define IXGBE_DEV_PRIVATE_TO_FILTER_INFO(adapter) \
546         (&((struct ixgbe_adapter *)adapter)->filter)
547
548 #define IXGBE_DEV_PRIVATE_TO_L2_TN_INFO(adapter) \
549         (&((struct ixgbe_adapter *)adapter)->l2_tn)
550
551 #define IXGBE_DEV_PRIVATE_TO_BW_CONF(adapter) \
552         (&((struct ixgbe_adapter *)adapter)->bw_conf)
553
554 #define IXGBE_DEV_PRIVATE_TO_TM_CONF(adapter) \
555         (&((struct ixgbe_adapter *)adapter)->tm_conf)
556
557 #define IXGBE_DEV_PRIVATE_TO_IPSEC(adapter)\
558         (&((struct ixgbe_adapter *)adapter)->ipsec)
559
560 /*
561  * RX/TX function prototypes
562  */
563 void ixgbe_dev_clear_queues(struct rte_eth_dev *dev);
564
565 void ixgbe_dev_free_queues(struct rte_eth_dev *dev);
566
567 void ixgbe_dev_rx_queue_release(void *rxq);
568
569 void ixgbe_dev_tx_queue_release(void *txq);
570
571 int  ixgbe_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
572                 uint16_t nb_rx_desc, unsigned int socket_id,
573                 const struct rte_eth_rxconf *rx_conf,
574                 struct rte_mempool *mb_pool);
575
576 int  ixgbe_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
577                 uint16_t nb_tx_desc, unsigned int socket_id,
578                 const struct rte_eth_txconf *tx_conf);
579
580 uint32_t ixgbe_dev_rx_queue_count(struct rte_eth_dev *dev,
581                 uint16_t rx_queue_id);
582
583 int ixgbe_dev_rx_descriptor_done(void *rx_queue, uint16_t offset);
584
585 int ixgbe_dev_rx_descriptor_status(void *rx_queue, uint16_t offset);
586 int ixgbe_dev_tx_descriptor_status(void *tx_queue, uint16_t offset);
587
588 int ixgbe_dev_rx_init(struct rte_eth_dev *dev);
589
590 void ixgbe_dev_tx_init(struct rte_eth_dev *dev);
591
592 int ixgbe_dev_rxtx_start(struct rte_eth_dev *dev);
593
594 int ixgbe_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id);
595
596 int ixgbe_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id);
597
598 int ixgbe_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id);
599
600 int ixgbe_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id);
601
602 void ixgbe_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
603         struct rte_eth_rxq_info *qinfo);
604
605 void ixgbe_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
606         struct rte_eth_txq_info *qinfo);
607
608 int ixgbevf_dev_rx_init(struct rte_eth_dev *dev);
609
610 void ixgbevf_dev_tx_init(struct rte_eth_dev *dev);
611
612 void ixgbevf_dev_rxtx_start(struct rte_eth_dev *dev);
613
614 uint16_t ixgbe_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
615                 uint16_t nb_pkts);
616
617 uint16_t ixgbe_recv_pkts_bulk_alloc(void *rx_queue, struct rte_mbuf **rx_pkts,
618                                     uint16_t nb_pkts);
619
620 uint16_t ixgbe_recv_pkts_lro_single_alloc(void *rx_queue,
621                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
622 uint16_t ixgbe_recv_pkts_lro_bulk_alloc(void *rx_queue,
623                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
624
625 uint16_t ixgbe_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
626                 uint16_t nb_pkts);
627
628 uint16_t ixgbe_xmit_pkts_simple(void *tx_queue, struct rte_mbuf **tx_pkts,
629                 uint16_t nb_pkts);
630
631 uint16_t ixgbe_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
632                 uint16_t nb_pkts);
633
634 int ixgbe_dev_rss_hash_update(struct rte_eth_dev *dev,
635                               struct rte_eth_rss_conf *rss_conf);
636
637 int ixgbe_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
638                                 struct rte_eth_rss_conf *rss_conf);
639
640 uint16_t ixgbe_reta_size_get(enum ixgbe_mac_type mac_type);
641
642 uint32_t ixgbe_reta_reg_get(enum ixgbe_mac_type mac_type, uint16_t reta_idx);
643
644 uint32_t ixgbe_mrqc_reg_get(enum ixgbe_mac_type mac_type);
645
646 uint32_t ixgbe_rssrk_reg_get(enum ixgbe_mac_type mac_type, uint8_t i);
647
648 bool ixgbe_rss_update_sp(enum ixgbe_mac_type mac_type);
649
650 int ixgbe_add_del_ntuple_filter(struct rte_eth_dev *dev,
651                         struct rte_eth_ntuple_filter *filter,
652                         bool add);
653 int ixgbe_add_del_ethertype_filter(struct rte_eth_dev *dev,
654                         struct rte_eth_ethertype_filter *filter,
655                         bool add);
656 int ixgbe_syn_filter_set(struct rte_eth_dev *dev,
657                         struct rte_eth_syn_filter *filter,
658                         bool add);
659 int
660 ixgbe_dev_l2_tunnel_filter_add(struct rte_eth_dev *dev,
661                                struct rte_eth_l2_tunnel_conf *l2_tunnel,
662                                bool restore);
663 int
664 ixgbe_dev_l2_tunnel_filter_del(struct rte_eth_dev *dev,
665                                struct rte_eth_l2_tunnel_conf *l2_tunnel);
666 void ixgbe_filterlist_init(void);
667 void ixgbe_filterlist_flush(void);
668 /*
669  * Flow director function prototypes
670  */
671 int ixgbe_fdir_configure(struct rte_eth_dev *dev);
672 int ixgbe_fdir_set_input_mask(struct rte_eth_dev *dev);
673 int ixgbe_fdir_set_flexbytes_offset(struct rte_eth_dev *dev,
674                                     uint16_t offset);
675 int ixgbe_fdir_filter_program(struct rte_eth_dev *dev,
676                               struct ixgbe_fdir_rule *rule,
677                               bool del, bool update);
678
679 void ixgbe_configure_dcb(struct rte_eth_dev *dev);
680
681 /*
682  * misc function prototypes
683  */
684 void ixgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev);
685
686 void ixgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev);
687
688 void ixgbe_vlan_hw_strip_enable_all(struct rte_eth_dev *dev);
689
690 void ixgbe_vlan_hw_strip_disable_all(struct rte_eth_dev *dev);
691
692 void ixgbe_pf_host_init(struct rte_eth_dev *eth_dev);
693
694 void ixgbe_pf_host_uninit(struct rte_eth_dev *eth_dev);
695
696 void ixgbe_pf_mbx_process(struct rte_eth_dev *eth_dev);
697
698 int ixgbe_pf_host_configure(struct rte_eth_dev *eth_dev);
699
700 uint32_t ixgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val);
701
702 int ixgbe_fdir_ctrl_func(struct rte_eth_dev *dev,
703                         enum rte_filter_op filter_op, void *arg);
704 void ixgbe_fdir_filter_restore(struct rte_eth_dev *dev);
705 int ixgbe_clear_all_fdir_filter(struct rte_eth_dev *dev);
706
707 extern const struct rte_flow_ops ixgbe_flow_ops;
708
709 void ixgbe_clear_all_ethertype_filter(struct rte_eth_dev *dev);
710 void ixgbe_clear_all_ntuple_filter(struct rte_eth_dev *dev);
711 void ixgbe_clear_syn_filter(struct rte_eth_dev *dev);
712 int ixgbe_clear_all_l2_tn_filter(struct rte_eth_dev *dev);
713
714 int ixgbe_disable_sec_tx_path_generic(struct ixgbe_hw *hw);
715
716 int ixgbe_enable_sec_tx_path_generic(struct ixgbe_hw *hw);
717
718 int ixgbe_vt_check(struct ixgbe_hw *hw);
719 int ixgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
720                             uint16_t tx_rate, uint64_t q_msk);
721 bool is_ixgbe_supported(struct rte_eth_dev *dev);
722 int ixgbe_tm_ops_get(struct rte_eth_dev *dev, void *ops);
723 void ixgbe_tm_conf_init(struct rte_eth_dev *dev);
724 void ixgbe_tm_conf_uninit(struct rte_eth_dev *dev);
725 int ixgbe_set_queue_rate_limit(struct rte_eth_dev *dev, uint16_t queue_idx,
726                                uint16_t tx_rate);
727
728 static inline int
729 ixgbe_ethertype_filter_lookup(struct ixgbe_filter_info *filter_info,
730                               uint16_t ethertype)
731 {
732         int i;
733
734         for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
735                 if (filter_info->ethertype_filters[i].ethertype == ethertype &&
736                     (filter_info->ethertype_mask & (1 << i)))
737                         return i;
738         }
739         return -1;
740 }
741
742 static inline int
743 ixgbe_ethertype_filter_insert(struct ixgbe_filter_info *filter_info,
744                               struct ixgbe_ethertype_filter *ethertype_filter)
745 {
746         int i;
747
748         for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
749                 if (!(filter_info->ethertype_mask & (1 << i))) {
750                         filter_info->ethertype_mask |= 1 << i;
751                         filter_info->ethertype_filters[i].ethertype =
752                                 ethertype_filter->ethertype;
753                         filter_info->ethertype_filters[i].etqf =
754                                 ethertype_filter->etqf;
755                         filter_info->ethertype_filters[i].etqs =
756                                 ethertype_filter->etqs;
757                         filter_info->ethertype_filters[i].conf =
758                                 ethertype_filter->conf;
759                         return i;
760                 }
761         }
762         return -1;
763 }
764
765 static inline int
766 ixgbe_ethertype_filter_remove(struct ixgbe_filter_info *filter_info,
767                               uint8_t idx)
768 {
769         if (idx >= IXGBE_MAX_ETQF_FILTERS)
770                 return -1;
771         filter_info->ethertype_mask &= ~(1 << idx);
772         filter_info->ethertype_filters[idx].ethertype = 0;
773         filter_info->ethertype_filters[idx].etqf = 0;
774         filter_info->ethertype_filters[idx].etqs = 0;
775         filter_info->ethertype_filters[idx].etqs = FALSE;
776         return idx;
777 }
778
779 #endif /* _IXGBE_ETHDEV_H_ */