4 * Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
34 #ifndef _I40E_ETHDEV_H_
35 #define _I40E_ETHDEV_H_
37 #include <rte_eth_ctrl.h>
39 #define I40E_VLAN_TAG_SIZE 4
41 #define I40E_AQ_LEN 32
42 #define I40E_AQ_BUF_SZ 4096
43 /* Number of queues per TC should be one of 1, 2, 4, 8, 16, 32, 64 */
44 #define I40E_MAX_Q_PER_TC 64
45 #define I40E_NUM_DESC_DEFAULT 512
46 #define I40E_NUM_DESC_ALIGN 32
47 #define I40E_BUF_SIZE_MIN 1024
48 #define I40E_FRAME_SIZE_MAX 9728
49 #define I40E_QUEUE_BASE_ADDR_UNIT 128
50 /* number of VSIs and queue default setting */
51 #define I40E_MAX_QP_NUM_PER_VF 16
52 #define I40E_DEFAULT_QP_NUM_FDIR 1
53 #define I40E_UINT32_BIT_SIZE (CHAR_BIT * sizeof(uint32_t))
54 #define I40E_VFTA_SIZE (4096 / I40E_UINT32_BIT_SIZE)
56 * vlan_id is a 12 bit number.
57 * The VFTA array is actually a 4096 bit array, 128 of 32bit elements.
58 * 2^5 = 32. The val of lower 5 bits specifies the bit in the 32bit element.
59 * The higher 7 bit val specifies VFTA array index.
61 #define I40E_VFTA_BIT(vlan_id) (1 << ((vlan_id) & 0x1F))
62 #define I40E_VFTA_IDX(vlan_id) ((vlan_id) >> 5)
64 /* Default TC traffic in case DCB is not enabled */
65 #define I40E_DEFAULT_TCMAP 0x1
66 #define I40E_FDIR_QUEUE_ID 0
68 /* Always assign pool 0 to main VSI, VMDQ will start from 1 */
69 #define I40E_VMDQ_POOL_BASE 1
71 #define I40E_DEFAULT_RX_FREE_THRESH 32
72 #define I40E_DEFAULT_RX_PTHRESH 8
73 #define I40E_DEFAULT_RX_HTHRESH 8
74 #define I40E_DEFAULT_RX_WTHRESH 0
76 #define I40E_DEFAULT_TX_FREE_THRESH 32
77 #define I40E_DEFAULT_TX_PTHRESH 32
78 #define I40E_DEFAULT_TX_HTHRESH 0
79 #define I40E_DEFAULT_TX_WTHRESH 0
80 #define I40E_DEFAULT_TX_RSBIT_THRESH 32
82 /* Bit shift and mask */
83 #define I40E_4_BIT_WIDTH (CHAR_BIT / 2)
84 #define I40E_4_BIT_MASK RTE_LEN2MASK(I40E_4_BIT_WIDTH, uint8_t)
85 #define I40E_8_BIT_WIDTH CHAR_BIT
86 #define I40E_8_BIT_MASK UINT8_MAX
87 #define I40E_16_BIT_WIDTH (CHAR_BIT * 2)
88 #define I40E_16_BIT_MASK UINT16_MAX
89 #define I40E_32_BIT_WIDTH (CHAR_BIT * 4)
90 #define I40E_32_BIT_MASK UINT32_MAX
91 #define I40E_48_BIT_WIDTH (CHAR_BIT * 6)
92 #define I40E_48_BIT_MASK RTE_LEN2MASK(I40E_48_BIT_WIDTH, uint64_t)
94 /* index flex payload per layer */
95 enum i40e_flxpld_layer_idx {
96 I40E_FLXPLD_L2_IDX = 0,
97 I40E_FLXPLD_L3_IDX = 1,
98 I40E_FLXPLD_L4_IDX = 2,
99 I40E_MAX_FLXPLD_LAYER = 3,
101 #define I40E_MAX_FLXPLD_FIED 3 /* max number of flex payload fields */
102 #define I40E_FDIR_BITMASK_NUM_WORD 2 /* max number of bitmask words */
103 #define I40E_FDIR_MAX_FLEXWORD_NUM 8 /* max number of flexpayload words */
104 #define I40E_FDIR_MAX_FLEX_LEN 16 /* len in bytes of flex payload */
107 #define I40E_FLAG_RSS (1ULL << 0)
108 #define I40E_FLAG_DCB (1ULL << 1)
109 #define I40E_FLAG_VMDQ (1ULL << 2)
110 #define I40E_FLAG_SRIOV (1ULL << 3)
111 #define I40E_FLAG_HEADER_SPLIT_DISABLED (1ULL << 4)
112 #define I40E_FLAG_HEADER_SPLIT_ENABLED (1ULL << 5)
113 #define I40E_FLAG_FDIR (1ULL << 6)
114 #define I40E_FLAG_VXLAN (1ULL << 7)
115 #define I40E_FLAG_ALL (I40E_FLAG_RSS | \
119 I40E_FLAG_HEADER_SPLIT_DISABLED | \
120 I40E_FLAG_HEADER_SPLIT_ENABLED | \
124 #define I40E_RSS_OFFLOAD_ALL ( \
125 ETH_RSS_FRAG_IPV4 | \
126 ETH_RSS_NONFRAG_IPV4_TCP | \
127 ETH_RSS_NONFRAG_IPV4_UDP | \
128 ETH_RSS_NONFRAG_IPV4_SCTP | \
129 ETH_RSS_NONFRAG_IPV4_OTHER | \
130 ETH_RSS_FRAG_IPV6 | \
131 ETH_RSS_NONFRAG_IPV6_TCP | \
132 ETH_RSS_NONFRAG_IPV6_UDP | \
133 ETH_RSS_NONFRAG_IPV6_SCTP | \
134 ETH_RSS_NONFRAG_IPV6_OTHER | \
137 /* All bits of RSS hash enable */
138 #define I40E_RSS_HENA_ALL ( \
139 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_UDP) | \
140 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_TCP) | \
141 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_SCTP) | \
142 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER) | \
143 (1ULL << I40E_FILTER_PCTYPE_FRAG_IPV4) | \
144 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_UDP) | \
145 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_TCP) | \
146 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_SCTP) | \
147 (1ULL << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER) | \
148 (1ULL << I40E_FILTER_PCTYPE_FRAG_IPV6) | \
149 (1ULL << I40E_FILTER_PCTYPE_FCOE_OX) | \
150 (1ULL << I40E_FILTER_PCTYPE_FCOE_RX) | \
151 (1ULL << I40E_FILTER_PCTYPE_FCOE_OTHER) | \
152 (1ULL << I40E_FILTER_PCTYPE_L2_PAYLOAD))
157 * MAC filter structure
159 struct i40e_mac_filter_info {
160 enum rte_mac_filter_type filter_type;
161 struct ether_addr mac_addr;
164 TAILQ_HEAD(i40e_mac_filter_list, i40e_mac_filter);
166 /* MAC filter list structure */
167 struct i40e_mac_filter {
168 TAILQ_ENTRY(i40e_mac_filter) next;
169 struct i40e_mac_filter_info mac_info;
172 TAILQ_HEAD(i40e_vsi_list_head, i40e_vsi_list);
176 /* VSI list structure */
177 struct i40e_vsi_list {
178 TAILQ_ENTRY(i40e_vsi_list) list;
179 struct i40e_vsi *vsi;
182 struct i40e_rx_queue;
183 struct i40e_tx_queue;
185 /* Structure that defines a VEB */
187 struct i40e_vsi_list_head head;
188 struct i40e_vsi *associate_vsi; /* Associate VSI who owns the VEB */
189 uint16_t seid; /* The seid of VEB itself */
190 uint16_t uplink_seid; /* The uplink seid of this VEB */
192 struct i40e_eth_stats stats;
195 /* i40e MACVLAN filter structure */
196 struct i40e_macvlan_filter {
197 struct ether_addr macaddr;
198 enum rte_mac_filter_type filter_type;
203 * Structure that defines a VSI, associated with a adapter.
206 struct i40e_adapter *adapter; /* Backreference to associated adapter */
207 struct i40e_aqc_vsi_properties_data info; /* VSI properties */
209 struct i40e_eth_stats eth_stats_offset;
210 struct i40e_eth_stats eth_stats;
212 * When drivers loaded, only a default main VSI exists. In case new VSI
213 * needs to add, HW needs to know the layout that VSIs are organized.
214 * Besides that, VSI isan element and can't switch packets, which needs
215 * to add new component VEB to perform switching. So, a new VSI needs
216 * to specify the the uplink VSI (Parent VSI) before created. The
217 * uplink VSI will check whether it had a VEB to switch packets. If no,
218 * it will try to create one. Then, uplink VSI will move the new VSI
219 * into its' sib_vsi_list to manage all the downlink VSI.
220 * sib_vsi_list: the VSI list that shared the same uplink VSI.
221 * parent_vsi : the uplink VSI. It's NULL for main VSI.
222 * veb : the VEB associates with the VSI.
224 struct i40e_vsi_list sib_vsi_list; /* sibling vsi list */
225 struct i40e_vsi *parent_vsi;
226 struct i40e_veb *veb; /* Associated veb, could be null */
228 enum i40e_vsi_type type; /* VSI types */
229 uint16_t vlan_num; /* Total VLAN number */
230 uint16_t mac_num; /* Total mac number */
231 uint32_t vfta[I40E_VFTA_SIZE]; /* VLAN bitmap */
232 struct i40e_mac_filter_list mac_list; /* macvlan filter list */
233 /* specific VSI-defined parameters, SRIOV stored the vf_id */
235 uint16_t seid; /* The seid of VSI itself */
236 uint16_t uplink_seid; /* The uplink seid of this VSI */
237 uint16_t nb_qps; /* Number of queue pairs VSI can occupy */
238 uint16_t max_macaddrs; /* Maximum number of MAC addresses */
239 uint16_t base_queue; /* The first queue index of this VSI */
241 * The offset to visit VSI related register, assigned by HW when
245 uint16_t msix_intr; /* The MSIX interrupt binds to VSI */
246 uint8_t enabled_tc; /* The traffic class enabled */
250 LIST_ENTRY(pool_entry) next;
255 LIST_HEAD(res_list, pool_entry);
257 struct i40e_res_pool_info {
258 uint32_t base; /* Resource start index */
259 uint32_t num_alloc; /* Allocated resource number */
260 uint32_t num_free; /* Total available resource number */
261 struct res_list alloc_list; /* Allocated resource list */
262 struct res_list free_list; /* Available resource list */
266 I40E_VF_INACTIVE = 0,
273 * Structure to store private data for PF host.
277 struct i40e_vsi *vsi;
278 enum I40E_VF_STATE state; /* The number of queue pairs availiable */
279 uint16_t vf_idx; /* VF index in pf->vfs */
280 uint16_t lan_nb_qps; /* Actual queues allocated */
281 uint16_t reset_cnt; /* Total vf reset times */
285 * Structure to store private data for VMDQ instance
287 struct i40e_vmdq_info {
289 struct i40e_vsi *vsi;
293 * Structure to store flex pit for flow diretor.
295 struct i40e_fdir_flex_pit {
296 uint8_t src_offset; /* offset in words from the beginning of payload */
297 uint8_t size; /* size in words */
298 uint8_t dst_offset; /* offset in words of flexible payload */
301 struct i40e_fdir_flex_mask {
302 uint8_t word_mask; /**< Bit i enables word i of flexible payload */
306 } bitmask[I40E_FDIR_BITMASK_NUM_WORD];
309 #define I40E_FILTER_PCTYPE_MAX 64
311 * A structure used to define fields of a FDIR related info.
313 struct i40e_fdir_info {
314 struct i40e_vsi *fdir_vsi; /* pointer to fdir VSI structure */
315 uint16_t match_counter_index; /* Statistic counter index used for fdir*/
316 struct i40e_tx_queue *txq;
317 struct i40e_rx_queue *rxq;
318 void *prg_pkt; /* memory for fdir program packet */
319 uint64_t dma_addr; /* physic address of packet memory*/
321 * the rule how bytes stream is extracted as flexible payload
322 * for each payload layer, the setting can up to three elements
324 struct i40e_fdir_flex_pit flex_set[I40E_MAX_FLXPLD_LAYER * I40E_MAX_FLXPLD_FIED];
325 struct i40e_fdir_flex_mask flex_mask[I40E_FILTER_PCTYPE_MAX];
328 #define I40E_MIRROR_MAX_ENTRIES_PER_RULE 64
329 #define I40E_MAX_MIRROR_RULES 64
331 * Mirror rule structure
333 struct i40e_mirror_rule {
334 TAILQ_ENTRY(i40e_mirror_rule) rules;
336 uint16_t index; /* the sw index of mirror rule */
337 uint16_t id; /* the rule id assigned by firmware */
338 uint16_t dst_vsi_seid; /* destination vsi for this mirror rule. */
339 uint16_t num_entries;
340 /* the info stores depend on the rule type.
341 If type is I40E_MIRROR_TYPE_VLAN, vlan ids are stored here.
342 If type is I40E_MIRROR_TYPE_VPORT_*, vsi's seid are stored.
344 uint16_t entries[I40E_MIRROR_MAX_ENTRIES_PER_RULE];
347 TAILQ_HEAD(i40e_mirror_rule_list, i40e_mirror_rule);
350 * Structure to store private data specific for PF instance.
353 struct i40e_adapter *adapter; /* The adapter this PF associate to */
354 struct i40e_vsi *main_vsi; /* pointer to main VSI structure */
355 uint16_t mac_seid; /* The seid of the MAC of this PF */
356 uint16_t main_vsi_seid; /* The seid of the main VSI */
357 uint16_t max_num_vsi;
358 struct i40e_res_pool_info qp_pool; /*Queue pair pool */
359 struct i40e_res_pool_info msix_pool; /* MSIX interrupt pool */
361 struct i40e_hw_port_stats stats_offset;
362 struct i40e_hw_port_stats stats;
365 struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
366 struct ether_addr dev_addr; /* PF device mac address */
367 uint64_t flags; /* PF featuer flags */
368 /* All kinds of queue pair setting for different VSIs */
369 struct i40e_pf_vf *vfs;
371 /* Each of below queue pairs should be power of 2 since it's the
372 precondition after TC configuration applied */
373 uint16_t lan_nb_qps; /* The number of queue pairs of LAN */
374 uint16_t vmdq_nb_qps; /* The number of queue pairs of VMDq */
375 uint16_t vf_nb_qps; /* The number of queue pairs of VF */
376 uint16_t fdir_nb_qps; /* The number of queue pairs of Flow Director */
377 uint16_t hash_lut_size; /* The size of hash lookup table */
378 /* store VXLAN UDP ports */
379 uint16_t vxlan_ports[I40E_MAX_PF_UDP_OFFLOAD_PORTS];
380 uint16_t vxlan_bitmap; /* Vxlan bit mask */
382 /* VMDQ related info */
383 uint16_t max_nb_vmdq_vsi; /* Max number of VMDQ VSIs supported */
384 uint16_t nb_cfg_vmdq_vsi; /* number of VMDQ VSIs configured */
385 struct i40e_vmdq_info *vmdq;
387 struct i40e_fdir_info fdir; /* flow director info */
388 struct i40e_mirror_rule_list mirror_list;
389 uint16_t nb_mirror_rule; /* The number of mirror rules */
393 PFMSG_LINK_CHANGE = 0x1,
394 PFMSG_RESET_IMPENDING = 0x2,
395 PFMSG_DRIVER_CLOSE = 0x4,
398 struct i40e_vsi_vlan_pvid_info {
399 uint16_t on; /* Enable or disable pvid */
401 uint16_t pvid; /* Valid in case 'on' is set to set pvid */
403 /* Valid in case 'on' is cleared. 'tagged' will reject tagged packets,
404 * while 'untagged' will reject untagged packets.
412 struct i40e_vf_rx_queues {
413 uint64_t rx_dma_addr;
414 uint32_t rx_ring_len;
418 struct i40e_vf_tx_queues {
419 uint64_t tx_dma_addr;
420 uint32_t tx_ring_len;
424 * Structure to store private data specific for VF instance.
427 struct i40e_adapter *adapter; /* The adapter this VF associate to */
428 struct rte_eth_dev_data *dev_data; /* Pointer to the device data */
429 uint16_t num_queue_pairs;
430 uint16_t max_pkt_len; /* Maximum packet length */
431 bool promisc_unicast_enabled;
432 bool promisc_multicast_enabled;
434 uint32_t version_major; /* Major version number */
435 uint32_t version_minor; /* Minor version number */
436 uint16_t promisc_flags; /* Promiscuous setting */
437 uint32_t vlan[I40E_VFTA_SIZE]; /* VLAN bit map */
443 volatile uint32_t pend_cmd; /* pending command not finished yet */
444 u16 pend_msg; /* flags indicates events from pf not handled yet */
447 struct i40e_virtchnl_vf_resource *vf_res; /* All VSIs */
448 struct i40e_virtchnl_vsi_resource *vsi_res; /* LAN VSI */
453 * Structure to store private data for each PF/VF instance.
455 struct i40e_adapter {
456 /* Common for both PF and VF */
458 struct rte_eth_dev *eth_dev;
460 /* Specific for PF or VF */
467 int i40e_dev_switch_queues(struct i40e_pf *pf, bool on);
468 int i40e_vsi_release(struct i40e_vsi *vsi);
469 struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf,
470 enum i40e_vsi_type type,
471 struct i40e_vsi *uplink_vsi,
472 uint16_t user_param);
473 int i40e_switch_rx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
474 int i40e_switch_tx_queue(struct i40e_hw *hw, uint16_t q_idx, bool on);
475 int i40e_vsi_add_vlan(struct i40e_vsi *vsi, uint16_t vlan);
476 int i40e_vsi_delete_vlan(struct i40e_vsi *vsi, uint16_t vlan);
477 int i40e_vsi_add_mac(struct i40e_vsi *vsi, struct i40e_mac_filter_info *filter);
478 int i40e_vsi_delete_mac(struct i40e_vsi *vsi, struct ether_addr *addr);
479 void i40e_update_vsi_stats(struct i40e_vsi *vsi);
480 void i40e_pf_disable_irq0(struct i40e_hw *hw);
481 void i40e_pf_enable_irq0(struct i40e_hw *hw);
482 int i40e_dev_link_update(struct rte_eth_dev *dev,
483 __rte_unused int wait_to_complete);
484 void i40e_vsi_queues_bind_intr(struct i40e_vsi *vsi);
485 void i40e_vsi_queues_unbind_intr(struct i40e_vsi *vsi);
486 int i40e_vsi_vlan_pvid_set(struct i40e_vsi *vsi,
487 struct i40e_vsi_vlan_pvid_info *info);
488 int i40e_vsi_config_vlan_stripping(struct i40e_vsi *vsi, bool on);
489 uint64_t i40e_config_hena(uint64_t flags);
490 uint64_t i40e_parse_hena(uint64_t flags);
491 enum i40e_status_code i40e_fdir_setup_tx_resources(struct i40e_pf *pf);
492 enum i40e_status_code i40e_fdir_setup_rx_resources(struct i40e_pf *pf);
493 int i40e_fdir_setup(struct i40e_pf *pf);
494 const struct rte_memzone *i40e_memzone_reserve(const char *name,
497 int i40e_fdir_configure(struct rte_eth_dev *dev);
498 void i40e_fdir_teardown(struct i40e_pf *pf);
499 enum i40e_filter_pctype i40e_flowtype_to_pctype(uint16_t flow_type);
500 uint16_t i40e_pctype_to_flowtype(enum i40e_filter_pctype pctype);
501 int i40e_fdir_ctrl_func(struct rte_eth_dev *dev,
502 enum rte_filter_op filter_op,
505 /* I40E_DEV_PRIVATE_TO */
506 #define I40E_DEV_PRIVATE_TO_PF(adapter) \
507 (&((struct i40e_adapter *)adapter)->pf)
508 #define I40E_DEV_PRIVATE_TO_HW(adapter) \
509 (&((struct i40e_adapter *)adapter)->hw)
510 #define I40E_DEV_PRIVATE_TO_ADAPTER(adapter) \
511 ((struct i40e_adapter *)adapter)
513 /* I40EVF_DEV_PRIVATE_TO */
514 #define I40EVF_DEV_PRIVATE_TO_VF(adapter) \
515 (&((struct i40e_adapter *)adapter)->vf)
517 static inline struct i40e_vsi *
518 i40e_get_vsi_from_adapter(struct i40e_adapter *adapter)
525 hw = I40E_DEV_PRIVATE_TO_HW(adapter);
526 if (hw->mac.type == I40E_MAC_VF) {
527 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(adapter);
530 struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(adapter);
534 #define I40E_DEV_PRIVATE_TO_MAIN_VSI(adapter) \
535 i40e_get_vsi_from_adapter((struct i40e_adapter *)adapter)
538 #define I40E_VSI_TO_HW(vsi) \
539 (&(((struct i40e_vsi *)vsi)->adapter->hw))
540 #define I40E_VSI_TO_PF(vsi) \
541 (&(((struct i40e_vsi *)vsi)->adapter->pf))
542 #define I40E_VSI_TO_DEV_DATA(vsi) \
543 (((struct i40e_vsi *)vsi)->adapter->pf.dev_data)
544 #define I40E_VSI_TO_ETH_DEV(vsi) \
545 (((struct i40e_vsi *)vsi)->adapter->eth_dev)
548 #define I40E_PF_TO_HW(pf) \
549 (&(((struct i40e_pf *)pf)->adapter->hw))
550 #define I40E_PF_TO_ADAPTER(pf) \
551 ((struct i40e_adapter *)pf->adapter)
554 #define I40E_VF_TO_HW(vf) \
555 (&(((struct i40e_vf *)vf)->adapter->hw))
558 i40e_init_adminq_parameter(struct i40e_hw *hw)
560 hw->aq.num_arq_entries = I40E_AQ_LEN;
561 hw->aq.num_asq_entries = I40E_AQ_LEN;
562 hw->aq.arq_buf_size = I40E_AQ_BUF_SZ;
563 hw->aq.asq_buf_size = I40E_AQ_BUF_SZ;
567 i40e_align_floor(int n)
571 return 1 << (sizeof(n) * CHAR_BIT - 1 - __builtin_clz(n));
574 #define I40E_VALID_FLOW(flow_type) \
575 ((flow_type) == RTE_ETH_FLOW_FRAG_IPV4 || \
576 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_TCP || \
577 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_UDP || \
578 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_SCTP || \
579 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV4_OTHER || \
580 (flow_type) == RTE_ETH_FLOW_FRAG_IPV6 || \
581 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_TCP || \
582 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_UDP || \
583 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_SCTP || \
584 (flow_type) == RTE_ETH_FLOW_NONFRAG_IPV6_OTHER || \
585 (flow_type) == RTE_ETH_FLOW_L2_PAYLOAD)
587 #define I40E_VALID_PCTYPE(pctype) \
588 ((pctype) == I40E_FILTER_PCTYPE_FRAG_IPV4 || \
589 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_TCP || \
590 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_UDP || \
591 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_SCTP || \
592 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV4_OTHER || \
593 (pctype) == I40E_FILTER_PCTYPE_FRAG_IPV6 || \
594 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_UDP || \
595 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_TCP || \
596 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_SCTP || \
597 (pctype) == I40E_FILTER_PCTYPE_NONF_IPV6_OTHER || \
598 (pctype) == I40E_FILTER_PCTYPE_L2_PAYLOAD)
600 #endif /* _I40E_ETHDEV_H_ */