4 * Copyright(c) 2014-2015 Broadcom Corporation.
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 Broadcom 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.
36 #include <rte_memzone.h>
37 #include <rte_malloc.h>
40 #include "bnxt_vnic.h"
41 #include "hsi_struct_def_dpdk.h"
47 static void prandom_bytes(void *dest_ptr, size_t len)
49 char *dest = (char *)dest_ptr;
59 memcpy(dest, &rb, len);
66 void bnxt_init_vnics(struct bnxt *bp)
68 struct bnxt_vnic_info *vnic;
72 max_vnics = bp->max_vnics;
73 STAILQ_INIT(&bp->free_vnic_list);
74 for (i = 0; i < max_vnics; i++) {
75 vnic = &bp->vnic_info[i];
76 vnic->fw_vnic_id = (uint16_t)HWRM_NA_SIGNATURE;
77 vnic->rss_rule = (uint16_t)HWRM_NA_SIGNATURE;
78 vnic->cos_rule = (uint16_t)HWRM_NA_SIGNATURE;
79 vnic->lb_rule = (uint16_t)HWRM_NA_SIGNATURE;
81 for (j = 0; j < MAX_QUEUES_PER_VNIC; j++)
82 vnic->fw_grp_ids[j] = (uint16_t)HWRM_NA_SIGNATURE;
84 prandom_bytes(vnic->rss_hash_key, HW_HASH_KEY_SIZE);
85 STAILQ_INIT(&vnic->filter);
86 STAILQ_INIT(&vnic->flow_list);
87 STAILQ_INSERT_TAIL(&bp->free_vnic_list, vnic, next);
89 for (i = 0; i < MAX_FF_POOLS; i++)
90 STAILQ_INIT(&bp->ff_pool[i]);
93 int bnxt_free_vnic(struct bnxt *bp, struct bnxt_vnic_info *vnic,
96 struct bnxt_vnic_info *temp;
98 temp = STAILQ_FIRST(&bp->ff_pool[pool]);
101 STAILQ_REMOVE(&bp->ff_pool[pool], vnic,
102 bnxt_vnic_info, next);
103 vnic->fw_vnic_id = (uint16_t)HWRM_NA_SIGNATURE;
104 STAILQ_INSERT_TAIL(&bp->free_vnic_list, vnic,
108 temp = STAILQ_NEXT(temp, next);
110 RTE_LOG(ERR, PMD, "VNIC %p is not found in pool[%d]\n", vnic, pool);
114 struct bnxt_vnic_info *bnxt_alloc_vnic(struct bnxt *bp)
116 struct bnxt_vnic_info *vnic;
118 /* Find the 1st unused vnic from the free_vnic_list pool*/
119 vnic = STAILQ_FIRST(&bp->free_vnic_list);
121 RTE_LOG(ERR, PMD, "No more free VNIC resources\n");
124 STAILQ_REMOVE_HEAD(&bp->free_vnic_list, next);
128 void bnxt_free_all_vnics(struct bnxt *bp)
130 struct bnxt_vnic_info *temp, *next;
133 for (i = 0; i < MAX_FF_POOLS; i++) {
134 temp = STAILQ_FIRST(&bp->ff_pool[i]);
136 next = STAILQ_NEXT(temp, next);
137 STAILQ_REMOVE(&bp->ff_pool[i], temp, bnxt_vnic_info,
139 STAILQ_INSERT_TAIL(&bp->free_vnic_list, temp, next);
145 void bnxt_free_vnic_attributes(struct bnxt *bp)
147 struct bnxt_vnic_info *vnic;
149 STAILQ_FOREACH(vnic, &bp->free_vnic_list, next) {
150 if (vnic->rss_table) {
151 /* 'Unreserve' the rss_table */
154 vnic->rss_table = NULL;
157 if (vnic->rss_hash_key) {
158 /* 'Unreserve' the rss_hash_key */
161 vnic->rss_hash_key = NULL;
166 int bnxt_alloc_vnic_attributes(struct bnxt *bp)
168 struct bnxt_vnic_info *vnic;
169 struct rte_pci_device *pdev = bp->pdev;
170 const struct rte_memzone *mz;
171 char mz_name[RTE_MEMZONE_NAMESIZE];
172 uint32_t entry_length = RTE_CACHE_LINE_ROUNDUP(
173 HW_HASH_INDEX_SIZE * sizeof(*vnic->rss_table) +
175 BNXT_MAX_MC_ADDRS * ETHER_ADDR_LEN);
178 phys_addr_t mz_phys_addr;
180 max_vnics = bp->max_vnics;
181 snprintf(mz_name, RTE_MEMZONE_NAMESIZE,
182 "bnxt_%04x:%02x:%02x:%02x_vnicattr", pdev->addr.domain,
183 pdev->addr.bus, pdev->addr.devid, pdev->addr.function);
184 mz_name[RTE_MEMZONE_NAMESIZE - 1] = 0;
185 mz = rte_memzone_lookup(mz_name);
187 mz = rte_memzone_reserve(mz_name,
188 entry_length * max_vnics,
191 RTE_MEMZONE_SIZE_HINT_ONLY);
195 mz_phys_addr = mz->iova;
196 if ((unsigned long)mz->addr == mz_phys_addr) {
197 RTE_LOG(WARNING, PMD,
198 "Memzone physical address same as virtual.\n");
199 RTE_LOG(WARNING, PMD,
200 "Using rte_mem_virt2iova()\n");
201 mz_phys_addr = rte_mem_virt2iova(mz->addr);
202 if (mz_phys_addr == 0) {
204 "unable to map vnic address to physical memory\n");
209 for (i = 0; i < max_vnics; i++) {
210 vnic = &bp->vnic_info[i];
212 /* Allocate rss table and hash key */
214 (void *)((char *)mz->addr + (entry_length * i));
215 memset(vnic->rss_table, -1, entry_length);
217 vnic->rss_table_dma_addr = mz_phys_addr + (entry_length * i);
218 vnic->rss_hash_key = (void *)((char *)vnic->rss_table +
219 HW_HASH_INDEX_SIZE * sizeof(*vnic->rss_table));
221 vnic->rss_hash_key_dma_addr = vnic->rss_table_dma_addr +
222 HW_HASH_INDEX_SIZE * sizeof(*vnic->rss_table);
223 vnic->mc_list = (void *)((char *)vnic->rss_hash_key +
225 vnic->mc_list_dma_addr = vnic->rss_hash_key_dma_addr +
232 void bnxt_free_vnic_mem(struct bnxt *bp)
234 struct bnxt_vnic_info *vnic;
235 uint16_t max_vnics, i;
237 if (bp->vnic_info == NULL)
240 max_vnics = bp->max_vnics;
241 for (i = 0; i < max_vnics; i++) {
242 vnic = &bp->vnic_info[i];
243 if (vnic->fw_vnic_id != (uint16_t)HWRM_NA_SIGNATURE) {
244 RTE_LOG(ERR, PMD, "VNIC is not freed yet!\n");
245 /* TODO Call HWRM to free VNIC */
249 rte_free(bp->vnic_info);
250 bp->vnic_info = NULL;
253 int bnxt_alloc_vnic_mem(struct bnxt *bp)
255 struct bnxt_vnic_info *vnic_mem;
258 max_vnics = bp->max_vnics;
259 /* Allocate memory for VNIC pool and filter pool */
260 vnic_mem = rte_zmalloc("bnxt_vnic_info",
261 max_vnics * sizeof(struct bnxt_vnic_info), 0);
262 if (vnic_mem == NULL) {
263 RTE_LOG(ERR, PMD, "Failed to alloc memory for %d VNICs",
267 bp->vnic_info = vnic_mem;