1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2014-2018 Broadcom
12 #define INVALID_VNIC_ID ((uint16_t)-1)
14 struct bnxt_vnic_info {
15 STAILQ_ENTRY(bnxt_vnic_info) next;
18 uint16_t fw_vnic_id; /* returned by Chimp during alloc */
20 uint16_t start_grp_id;
23 uint16_t num_lb_ctxts;
24 uint16_t dflt_ring_grp;
28 rte_iova_t rss_table_dma_addr;
30 rte_iova_t rss_hash_key_dma_addr;
32 rte_iova_t mc_list_dma_addr;
35 #define BNXT_MAX_MC_ADDRS 16
37 #define BNXT_VNIC_INFO_PROMISC (1 << 0)
38 #define BNXT_VNIC_INFO_ALLMULTI (1 << 1)
39 #define BNXT_VNIC_INFO_BCAST (1 << 2)
40 #define BNXT_VNIC_INFO_UCAST (1 << 3)
41 #define BNXT_VNIC_INFO_MCAST (1 << 4)
42 #define BNXT_VNIC_INFO_TAGGED (1 << 5)
43 #define BNXT_VNIC_INFO_UNTAGGED (1 << 6)
47 uint16_t rx_queue_cnt;
48 uint16_t cos_queue_id;
56 STAILQ_HEAD(, bnxt_filter_info) filter;
57 STAILQ_HEAD(, rte_flow) flow_list;
61 int bnxt_free_vnic(struct bnxt *bp, struct bnxt_vnic_info *vnic,
63 struct bnxt_vnic_info *bnxt_alloc_vnic(struct bnxt *bp);
64 void bnxt_free_all_vnics(struct bnxt *bp);
65 void bnxt_free_vnic_attributes(struct bnxt *bp);
66 int bnxt_alloc_vnic_attributes(struct bnxt *bp);
67 void bnxt_free_vnic_mem(struct bnxt *bp);
68 int bnxt_alloc_vnic_mem(struct bnxt *bp);
69 int bnxt_vnic_grp_alloc(struct bnxt *bp, struct bnxt_vnic_info *vnic);
70 void prandom_bytes(void *dest_ptr, size_t len);
71 uint16_t bnxt_rte_to_hwrm_hash_types(uint64_t rte_type);