1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2014-2018 Broadcom
8 #include <rte_malloc.h>
11 #include "bnxt_filter.h"
12 #include "bnxt_hwrm.h"
13 #include "bnxt_ring.h"
16 #include "bnxt_vnic.h"
17 #include "hsi_struct_def_dpdk.h"
23 void bnxt_free_rxq_stats(struct bnxt_rx_queue *rxq)
25 if (rxq && rxq->cp_ring && rxq->cp_ring->hw_stats)
26 rxq->cp_ring->hw_stats = NULL;
29 int bnxt_mq_rx_configure(struct bnxt *bp)
31 struct rte_eth_conf *dev_conf = &bp->eth_dev->data->dev_conf;
32 const struct rte_eth_vmdq_rx_conf *conf =
33 &dev_conf->rx_adv_conf.vmdq_rx_conf;
34 unsigned int i, j, nb_q_per_grp = 1, ring_idx = 0;
35 int start_grp_id, end_grp_id = 1, rc = 0;
36 struct bnxt_vnic_info *vnic;
37 struct bnxt_filter_info *filter;
38 enum rte_eth_nb_pools pools = 1, max_pools = 0;
39 struct bnxt_rx_queue *rxq;
43 /* Single queue mode */
44 if (bp->rx_cp_nr_rings < 2) {
45 vnic = &bp->vnic_info[0];
47 PMD_DRV_LOG(ERR, "VNIC alloc failed\n");
51 vnic->flags |= BNXT_VNIC_INFO_BCAST;
54 rxq = bp->eth_dev->data->rx_queues[0];
57 vnic->func_default = true;
58 vnic->start_grp_id = 0;
59 vnic->end_grp_id = vnic->start_grp_id;
60 filter = bnxt_alloc_filter(bp);
62 PMD_DRV_LOG(ERR, "L2 filter alloc failed\n");
66 filter->mac_index = 0;
67 filter->flags |= HWRM_CFA_L2_FILTER_ALLOC_INPUT_FLAGS_OUTERMOST;
68 STAILQ_INSERT_TAIL(&vnic->filter, filter, next);
72 /* Multi-queue mode */
73 if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_VMDQ_DCB_RSS) {
74 /* VMDq ONLY, VMDq+RSS, VMDq+DCB, VMDq+DCB+RSS */
76 switch (dev_conf->rxmode.mq_mode) {
77 case ETH_MQ_RX_VMDQ_RSS:
78 case ETH_MQ_RX_VMDQ_ONLY:
79 case ETH_MQ_RX_VMDQ_DCB_RSS:
82 pools = conf->nb_queue_pools;
83 /* For each pool, allocate MACVLAN CFA rule & VNIC */
84 max_pools = RTE_MIN(bp->max_vnics,
85 RTE_MIN(bp->max_l2_ctx,
86 RTE_MIN(bp->max_rsscos_ctx,
89 "pools = %u max_pools = %u\n",
91 if (pools > max_pools)
95 pools = bp->rx_cosq_cnt ? bp->rx_cosq_cnt : 1;
98 PMD_DRV_LOG(ERR, "Unsupported mq_mod %d\n",
99 dev_conf->rxmode.mq_mode);
103 } else if (!dev_conf->rxmode.mq_mode) {
104 pools = bp->rx_cosq_cnt ? bp->rx_cosq_cnt : pools;
107 pools = RTE_MIN(pools, bp->rx_cp_nr_rings);
108 nb_q_per_grp = bp->rx_cp_nr_rings / pools;
109 bp->rx_num_qs_per_vnic = nb_q_per_grp;
110 PMD_DRV_LOG(DEBUG, "pools = %u nb_q_per_grp = %u\n",
111 pools, nb_q_per_grp);
113 end_grp_id = nb_q_per_grp;
115 for (i = 0; i < pools; i++) {
116 vnic = &bp->vnic_info[i];
118 PMD_DRV_LOG(ERR, "VNIC alloc failed\n");
122 vnic->flags |= BNXT_VNIC_INFO_BCAST;
125 for (j = 0; j < nb_q_per_grp; j++, ring_idx++) {
126 rxq = bp->eth_dev->data->rx_queues[ring_idx];
129 "rxq[%d] = %p vnic[%d] = %p\n",
130 ring_idx, rxq, i, vnic);
133 if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_VMDQ_DCB) {
134 bp->eth_dev->data->promiscuous = 1;
135 vnic->flags |= BNXT_VNIC_INFO_PROMISC;
137 vnic->func_default = true;
139 vnic->start_grp_id = start_grp_id;
140 vnic->end_grp_id = end_grp_id;
143 if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_VMDQ_DCB ||
144 !(dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS))
145 vnic->rss_dflt_cr = true;
146 goto skip_filter_allocation;
148 filter = bnxt_alloc_filter(bp);
150 PMD_DRV_LOG(ERR, "L2 filter alloc failed\n");
154 filter->mac_index = 0;
155 filter->flags |= HWRM_CFA_L2_FILTER_ALLOC_INPUT_FLAGS_OUTERMOST;
157 * TODO: Configure & associate CFA rule for
158 * each VNIC for each VMDq with MACVLAN, MACVLAN+TC
160 STAILQ_INSERT_TAIL(&vnic->filter, filter, next);
162 skip_filter_allocation:
163 start_grp_id = end_grp_id;
164 end_grp_id += nb_q_per_grp;
168 if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) {
169 struct rte_eth_rss_conf *rss = &dev_conf->rx_adv_conf.rss_conf;
171 if (bp->flags & BNXT_FLAG_UPDATE_HASH) {
173 bp->flags &= ~BNXT_FLAG_UPDATE_HASH;
176 for (i = 0; i < bp->nr_vnics; i++) {
177 vnic = &bp->vnic_info[i];
179 bnxt_rte_to_hwrm_hash_types(rss->rss_hf);
182 * Use the supplied key if the key length is
183 * acceptable and the rss_key is not NULL
186 rss->rss_key_len <= HW_HASH_KEY_SIZE)
187 memcpy(vnic->rss_hash_key,
188 rss->rss_key, rss->rss_key_len);
195 /* Free allocated vnic/filters */
200 void bnxt_rx_queue_release_mbufs(struct bnxt_rx_queue *rxq)
202 struct bnxt_sw_rx_bd *sw_ring;
203 struct bnxt_tpa_info *tpa_info;
209 rte_spinlock_lock(&rxq->lock);
211 sw_ring = rxq->rx_ring->rx_buf_ring;
214 i < rxq->rx_ring->rx_ring_struct->ring_size; i++) {
215 if (sw_ring[i].mbuf) {
216 rte_pktmbuf_free_seg(sw_ring[i].mbuf);
217 sw_ring[i].mbuf = NULL;
221 /* Free up mbufs in Agg ring */
222 sw_ring = rxq->rx_ring->ag_buf_ring;
225 i < rxq->rx_ring->ag_ring_struct->ring_size; i++) {
226 if (sw_ring[i].mbuf) {
227 rte_pktmbuf_free_seg(sw_ring[i].mbuf);
228 sw_ring[i].mbuf = NULL;
233 /* Free up mbufs in TPA */
234 tpa_info = rxq->rx_ring->tpa_info;
236 int max_aggs = BNXT_TPA_MAX_AGGS(rxq->bp);
238 for (i = 0; i < max_aggs; i++) {
239 if (tpa_info[i].mbuf) {
240 rte_pktmbuf_free_seg(tpa_info[i].mbuf);
241 tpa_info[i].mbuf = NULL;
246 rte_spinlock_unlock(&rxq->lock);
249 void bnxt_free_rx_mbufs(struct bnxt *bp)
251 struct bnxt_rx_queue *rxq;
254 for (i = 0; i < (int)bp->rx_nr_rings; i++) {
255 rxq = bp->rx_queues[i];
256 bnxt_rx_queue_release_mbufs(rxq);
260 void bnxt_rx_queue_release_op(void *rx_queue)
262 struct bnxt_rx_queue *rxq = (struct bnxt_rx_queue *)rx_queue;
265 if (is_bnxt_in_error(rxq->bp))
268 bnxt_rx_queue_release_mbufs(rxq);
270 /* Free RX ring hardware descriptors */
271 bnxt_free_ring(rxq->rx_ring->rx_ring_struct);
272 /* Free RX Agg ring hardware descriptors */
273 bnxt_free_ring(rxq->rx_ring->ag_ring_struct);
275 /* Free RX completion ring hardware descriptors */
276 bnxt_free_ring(rxq->cp_ring->cp_ring_struct);
278 bnxt_free_rxq_stats(rxq);
279 rte_memzone_free(rxq->mz);
286 int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
289 unsigned int socket_id,
290 const struct rte_eth_rxconf *rx_conf,
291 struct rte_mempool *mp)
293 struct bnxt *bp = eth_dev->data->dev_private;
294 uint64_t rx_offloads = eth_dev->data->dev_conf.rxmode.offloads;
295 struct bnxt_rx_queue *rxq;
299 rc = is_bnxt_in_error(bp);
303 if (queue_idx >= BNXT_MAX_RINGS(bp)) {
305 "Cannot create Rx ring %d. Only %d rings available\n",
306 queue_idx, bp->max_rx_rings);
310 if (!nb_desc || nb_desc > MAX_RX_DESC_CNT) {
311 PMD_DRV_LOG(ERR, "nb_desc %d is invalid\n", nb_desc);
316 if (eth_dev->data->rx_queues) {
317 rxq = eth_dev->data->rx_queues[queue_idx];
319 bnxt_rx_queue_release_op(rxq);
321 rxq = rte_zmalloc_socket("bnxt_rx_queue", sizeof(struct bnxt_rx_queue),
322 RTE_CACHE_LINE_SIZE, socket_id);
324 PMD_DRV_LOG(ERR, "bnxt_rx_queue allocation failed!\n");
330 rxq->nb_rx_desc = nb_desc;
331 rxq->rx_free_thresh = rx_conf->rx_free_thresh;
333 PMD_DRV_LOG(DEBUG, "RX Buf MTU %d\n", eth_dev->data->mtu);
335 rc = bnxt_init_rx_ring_struct(rxq, socket_id);
339 PMD_DRV_LOG(DEBUG, "RX Buf size is %d\n", rxq->rx_buf_size);
340 rxq->queue_id = queue_idx;
341 rxq->port_id = eth_dev->data->port_id;
342 if (rx_offloads & DEV_RX_OFFLOAD_KEEP_CRC)
343 rxq->crc_len = RTE_ETHER_CRC_LEN;
347 eth_dev->data->rx_queues[queue_idx] = rxq;
348 /* Allocate RX ring hardware descriptors */
349 if (bnxt_alloc_rings(bp, queue_idx, NULL, rxq, rxq->cp_ring, NULL,
352 "ring_dma_zone_reserve for rx_ring failed!\n");
353 bnxt_rx_queue_release_op(rxq);
357 rte_atomic64_init(&rxq->rx_mbuf_alloc_fail);
359 /* rxq 0 must not be stopped when used as async CPR */
360 if (!BNXT_NUM_ASYNC_CPR(bp) && queue_idx == 0)
361 rxq->rx_deferred_start = false;
363 rxq->rx_deferred_start = rx_conf->rx_deferred_start;
365 if (rxq->rx_deferred_start) {
366 queue_state = RTE_ETH_QUEUE_STATE_STOPPED;
367 rxq->rx_started = false;
369 queue_state = RTE_ETH_QUEUE_STATE_STARTED;
370 rxq->rx_started = true;
372 eth_dev->data->rx_queue_state[queue_idx] = queue_state;
373 rte_spinlock_init(&rxq->lock);
375 /* Configure mtu if it is different from what was configured before */
377 bnxt_mtu_set_op(eth_dev, eth_dev->data->mtu);
384 bnxt_rx_queue_intr_enable_op(struct rte_eth_dev *eth_dev, uint16_t queue_id)
386 struct bnxt *bp = eth_dev->data->dev_private;
387 struct bnxt_rx_queue *rxq;
388 struct bnxt_cp_ring_info *cpr;
391 rc = is_bnxt_in_error(bp);
395 if (eth_dev->data->rx_queues) {
396 rxq = eth_dev->data->rx_queues[queue_id];
401 B_CP_DB_REARM(cpr, cpr->cp_raw_cons);
407 bnxt_rx_queue_intr_disable_op(struct rte_eth_dev *eth_dev, uint16_t queue_id)
409 struct bnxt *bp = eth_dev->data->dev_private;
410 struct bnxt_rx_queue *rxq;
411 struct bnxt_cp_ring_info *cpr;
414 rc = is_bnxt_in_error(bp);
418 if (eth_dev->data->rx_queues) {
419 rxq = eth_dev->data->rx_queues[queue_id];
429 int bnxt_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
431 struct bnxt *bp = dev->data->dev_private;
432 struct rte_eth_conf *dev_conf = &bp->eth_dev->data->dev_conf;
433 struct bnxt_rx_queue *rxq = bp->rx_queues[rx_queue_id];
434 struct bnxt_vnic_info *vnic = NULL;
437 rc = is_bnxt_in_error(bp);
442 PMD_DRV_LOG(ERR, "Invalid Rx queue %d\n", rx_queue_id);
446 /* Set the queue state to started here.
447 * We check the status of the queue while posting buffer.
448 * If queue is it started, we do not post buffers for Rx.
450 rxq->rx_started = true;
451 dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
453 bnxt_free_hwrm_rx_ring(bp, rx_queue_id);
454 rc = bnxt_alloc_hwrm_rx_ring(bp, rx_queue_id);
458 if (BNXT_CHIP_THOR(bp)) {
459 /* Reconfigure default receive ring and MRU. */
460 bnxt_hwrm_vnic_cfg(bp, rxq->vnic);
462 PMD_DRV_LOG(INFO, "Rx queue started %d\n", rx_queue_id);
464 if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) {
467 if (BNXT_HAS_RING_GRPS(bp)) {
468 if (vnic->fw_grp_ids[rx_queue_id] != INVALID_HW_RING_ID)
471 vnic->fw_grp_ids[rx_queue_id] =
472 bp->grp_info[rx_queue_id].fw_grp_id;
474 "vnic = %p fw_grp_id = %d\n",
475 vnic, bp->grp_info[rx_queue_id].fw_grp_id);
478 PMD_DRV_LOG(DEBUG, "Rx Queue Count %d\n", vnic->rx_queue_cnt);
479 rc = bnxt_vnic_rss_configure(bp, vnic);
483 dev->data->rx_queue_state[rx_queue_id] =
484 RTE_ETH_QUEUE_STATE_STOPPED;
485 rxq->rx_started = false;
489 "queue %d, rx_deferred_start %d, state %d!\n",
490 rx_queue_id, rxq->rx_deferred_start,
491 bp->eth_dev->data->rx_queue_state[rx_queue_id]);
496 int bnxt_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
498 struct bnxt *bp = dev->data->dev_private;
499 struct rte_eth_conf *dev_conf = &bp->eth_dev->data->dev_conf;
500 struct bnxt_vnic_info *vnic = NULL;
501 struct bnxt_rx_queue *rxq = NULL;
502 int active_queue_cnt = 0;
505 rc = is_bnxt_in_error(bp);
509 /* For the stingray platform and other platforms needing tighter
510 * control of resource utilization, Rx CQ 0 also works as
511 * Default CQ for async notifications
513 if (!BNXT_NUM_ASYNC_CPR(bp) && !rx_queue_id) {
514 PMD_DRV_LOG(ERR, "Cannot stop Rx queue id %d\n", rx_queue_id);
518 rxq = bp->rx_queues[rx_queue_id];
520 PMD_DRV_LOG(ERR, "Invalid Rx queue %d\n", rx_queue_id);
526 PMD_DRV_LOG(ERR, "VNIC not initialized for RxQ %d\n",
531 dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
532 rxq->rx_started = false;
533 PMD_DRV_LOG(DEBUG, "Rx queue stopped\n");
535 if (dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) {
536 if (BNXT_HAS_RING_GRPS(bp))
537 vnic->fw_grp_ids[rx_queue_id] = INVALID_HW_RING_ID;
539 PMD_DRV_LOG(DEBUG, "Rx Queue Count %d\n", vnic->rx_queue_cnt);
540 rc = bnxt_vnic_rss_configure(bp, vnic);
543 if (BNXT_CHIP_THOR(bp)) {
544 /* Compute current number of active receive queues. */
545 for (i = vnic->start_grp_id; i < vnic->end_grp_id; i++)
546 if (bp->rx_queues[i]->rx_started)
550 * For Thor, we need to ensure that the VNIC default receive
551 * ring corresponds to an active receive queue. When no queue
552 * is active, we need to temporarily set the MRU to zero so
553 * that packets are dropped early in the receive pipeline in
554 * order to prevent the VNIC default receive ring from being
557 if (active_queue_cnt == 0) {
558 uint16_t saved_mru = vnic->mru;
561 /* Reconfigure default receive ring and MRU. */
562 bnxt_hwrm_vnic_cfg(bp, vnic);
563 vnic->mru = saved_mru;
565 /* Reconfigure default receive ring. */
566 bnxt_hwrm_vnic_cfg(bp, vnic);
571 bnxt_rx_queue_release_mbufs(rxq);