1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(C) 2019 Marvell International Ltd.
5 #include <rte_malloc.h>
7 #include "otx2_ethdev.h"
10 /* Use last LVL_CNT nodes as default nodes */
11 #define NIX_DEFAULT_NODE_ID_START (RTE_TM_NODE_ID_NULL - NIX_TXSCH_LVL_CNT)
13 enum otx2_tm_node_level {
24 uint64_t shaper2regval(struct shaper_params *shaper)
26 return (shaper->burst_exponent << 37) | (shaper->burst_mantissa << 29) |
27 (shaper->div_exp << 13) | (shaper->exponent << 9) |
28 (shaper->mantissa << 1);
32 nix_get_link(struct otx2_eth_dev *dev)
34 int link = 13 /* SDP */;
38 lmac_chan = dev->tx_chan_base;
41 if (lmac_chan >= 0x800) {
42 map = lmac_chan & 0x7FF;
43 link = 4 * ((map >> 8) & 0xF) + ((map >> 4) & 0xF);
44 } else if (lmac_chan < 0x700) {
53 nix_get_relchan(struct otx2_eth_dev *dev)
55 return dev->tx_chan_base & 0xff;
59 nix_tm_have_tl1_access(struct otx2_eth_dev *dev)
61 bool is_lbk = otx2_dev_is_lbk(dev);
62 return otx2_dev_is_pf(dev) && !otx2_dev_is_Ax(dev) &&
63 !is_lbk && !dev->maxvf;
67 find_prio_anchor(struct otx2_eth_dev *dev, uint32_t node_id)
69 struct otx2_nix_tm_node *child_node;
71 TAILQ_FOREACH(child_node, &dev->node_list, node) {
72 if (!child_node->parent)
74 if (!(child_node->parent->id == node_id))
76 if (child_node->priority == child_node->parent->rr_prio)
78 return child_node->hw_id - child_node->priority;
84 static struct otx2_nix_tm_shaper_profile *
85 nix_tm_shaper_profile_search(struct otx2_eth_dev *dev, uint32_t shaper_id)
87 struct otx2_nix_tm_shaper_profile *tm_shaper_profile;
89 TAILQ_FOREACH(tm_shaper_profile, &dev->shaper_profile_list, shaper) {
90 if (tm_shaper_profile->shaper_profile_id == shaper_id)
91 return tm_shaper_profile;
96 static inline uint64_t
97 shaper_rate_to_nix(uint64_t cclk_hz, uint64_t cclk_ticks,
98 uint64_t value, uint64_t *exponent_p,
99 uint64_t *mantissa_p, uint64_t *div_exp_p)
101 uint64_t div_exp, exponent, mantissa;
103 /* Boundary checks */
104 if (value < MIN_SHAPER_RATE(cclk_hz, cclk_ticks) ||
105 value > MAX_SHAPER_RATE(cclk_hz, cclk_ticks))
108 if (value <= SHAPER_RATE(cclk_hz, cclk_ticks, 0, 0, 0)) {
109 /* Calculate rate div_exp and mantissa using
110 * the following formula:
112 * value = (cclk_hz * (256 + mantissa)
113 * / ((cclk_ticks << div_exp) * 256)
117 mantissa = MAX_RATE_MANTISSA;
119 while (value < (cclk_hz / (cclk_ticks << div_exp)))
123 ((cclk_hz * (256 + mantissa)) /
124 ((cclk_ticks << div_exp) * 256)))
127 /* Calculate rate exponent and mantissa using
128 * the following formula:
130 * value = (cclk_hz * ((256 + mantissa) << exponent)
131 * / (cclk_ticks * 256)
135 exponent = MAX_RATE_EXPONENT;
136 mantissa = MAX_RATE_MANTISSA;
138 while (value < (cclk_hz * (1 << exponent)) / cclk_ticks)
141 while (value < (cclk_hz * ((256 + mantissa) << exponent)) /
146 if (div_exp > MAX_RATE_DIV_EXP ||
147 exponent > MAX_RATE_EXPONENT || mantissa > MAX_RATE_MANTISSA)
151 *div_exp_p = div_exp;
153 *exponent_p = exponent;
155 *mantissa_p = mantissa;
157 /* Calculate real rate value */
158 return SHAPER_RATE(cclk_hz, cclk_ticks, exponent, mantissa, div_exp);
161 static inline uint64_t
162 lx_shaper_rate_to_nix(uint64_t cclk_hz, uint32_t hw_lvl,
163 uint64_t value, uint64_t *exponent,
164 uint64_t *mantissa, uint64_t *div_exp)
166 if (hw_lvl == NIX_TXSCH_LVL_TL1)
167 return shaper_rate_to_nix(cclk_hz, L1_TIME_WHEEL_CCLK_TICKS,
168 value, exponent, mantissa, div_exp);
170 return shaper_rate_to_nix(cclk_hz, LX_TIME_WHEEL_CCLK_TICKS,
171 value, exponent, mantissa, div_exp);
174 static inline uint64_t
175 shaper_burst_to_nix(uint64_t value, uint64_t *exponent_p,
176 uint64_t *mantissa_p)
178 uint64_t exponent, mantissa;
180 if (value < MIN_SHAPER_BURST || value > MAX_SHAPER_BURST)
183 /* Calculate burst exponent and mantissa using
184 * the following formula:
186 * value = (((256 + mantissa) << (exponent + 1)
190 exponent = MAX_BURST_EXPONENT;
191 mantissa = MAX_BURST_MANTISSA;
193 while (value < (1ull << (exponent + 1)))
196 while (value < ((256 + mantissa) << (exponent + 1)) / 256)
199 if (exponent > MAX_BURST_EXPONENT || mantissa > MAX_BURST_MANTISSA)
203 *exponent_p = exponent;
205 *mantissa_p = mantissa;
207 return SHAPER_BURST(exponent, mantissa);
211 configure_shaper_cir_pir_reg(struct otx2_eth_dev *dev,
212 struct otx2_nix_tm_node *tm_node,
213 struct shaper_params *cir,
214 struct shaper_params *pir)
216 uint32_t shaper_profile_id = RTE_TM_SHAPER_PROFILE_ID_NONE;
217 struct otx2_nix_tm_shaper_profile *shaper_profile = NULL;
218 struct rte_tm_shaper_params *param;
220 shaper_profile_id = tm_node->params.shaper_profile_id;
222 shaper_profile = nix_tm_shaper_profile_search(dev, shaper_profile_id);
223 if (shaper_profile) {
224 param = &shaper_profile->profile;
225 /* Calculate CIR exponent and mantissa */
226 if (param->committed.rate)
227 cir->rate = lx_shaper_rate_to_nix(CCLK_HZ,
229 param->committed.rate,
234 /* Calculate PIR exponent and mantissa */
235 if (param->peak.rate)
236 pir->rate = lx_shaper_rate_to_nix(CCLK_HZ,
243 /* Calculate CIR burst exponent and mantissa */
244 if (param->committed.size)
245 cir->burst = shaper_burst_to_nix(param->committed.size,
246 &cir->burst_exponent,
247 &cir->burst_mantissa);
249 /* Calculate PIR burst exponent and mantissa */
250 if (param->peak.size)
251 pir->burst = shaper_burst_to_nix(param->peak.size,
252 &pir->burst_exponent,
253 &pir->burst_mantissa);
260 send_tm_reqval(struct otx2_mbox *mbox, struct nix_txschq_config *req)
264 if (req->num_regs > MAX_REGS_PER_MBOX_MSG)
267 rc = otx2_mbox_process(mbox);
276 populate_tm_registers(struct otx2_eth_dev *dev,
277 struct otx2_nix_tm_node *tm_node)
279 uint64_t strict_schedul_prio, rr_prio;
280 struct otx2_mbox *mbox = dev->mbox;
281 volatile uint64_t *reg, *regval;
282 uint64_t parent = 0, child = 0;
283 struct shaper_params cir, pir;
284 struct nix_txschq_config *req;
290 memset(&cir, 0, sizeof(cir));
291 memset(&pir, 0, sizeof(pir));
293 /* Skip leaf nodes */
294 if (tm_node->hw_lvl_id == NIX_TXSCH_LVL_CNT)
297 /* Root node will not have a parent node */
298 if (tm_node->hw_lvl_id == dev->otx2_tm_root_lvl)
299 parent = tm_node->parent_hw_id;
301 parent = tm_node->parent->hw_id;
303 /* Do we need this trigger to configure TL1 */
304 if (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL2 &&
305 tm_node->hw_lvl_id == dev->otx2_tm_root_lvl) {
308 * Default config for TL1.
309 * For VF this is always ignored.
312 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
313 req->lvl = NIX_TXSCH_LVL_TL1;
315 /* Set DWRR quantum */
316 req->reg[0] = NIX_AF_TL1X_SCHEDULE(schq);
317 req->regval[0] = TXSCH_TL1_DFLT_RR_QTM;
320 req->reg[1] = NIX_AF_TL1X_TOPOLOGY(schq);
321 req->regval[1] = (TXSCH_TL1_DFLT_RR_PRIO << 1);
324 req->reg[2] = NIX_AF_TL1X_CIR(schq);
328 rc = send_tm_reqval(mbox, req);
333 if (tm_node->hw_lvl_id != NIX_TXSCH_LVL_SMQ)
334 child = find_prio_anchor(dev, tm_node->id);
336 rr_prio = tm_node->rr_prio;
337 hw_lvl = tm_node->hw_lvl_id;
338 strict_schedul_prio = tm_node->priority;
339 schq = tm_node->hw_id;
340 rr_quantum = (tm_node->weight * NIX_TM_RR_QUANTUM_MAX) /
343 configure_shaper_cir_pir_reg(dev, tm_node, &cir, &pir);
345 otx2_tm_dbg("Configure node %p, lvl %u hw_lvl %u, id %u, hw_id %u,"
346 "parent_hw_id %" PRIx64 ", pir %" PRIx64 ", cir %" PRIx64,
347 tm_node, tm_node->level_id, hw_lvl,
348 tm_node->id, schq, parent, pir.rate, cir.rate);
353 case NIX_TXSCH_LVL_SMQ:
354 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
357 regval = req->regval;
360 /* Set xoff which will be cleared later */
361 *reg++ = NIX_AF_SMQX_CFG(schq);
362 *regval++ = BIT_ULL(50) | ((uint64_t)NIX_MAX_VTAG_INS << 36) |
363 (NIX_MAX_HW_FRS << 8) | NIX_MIN_HW_FRS;
365 *reg++ = NIX_AF_MDQX_PARENT(schq);
366 *regval++ = parent << 16;
368 *reg++ = NIX_AF_MDQX_SCHEDULE(schq);
369 *regval++ = (strict_schedul_prio << 24) | rr_quantum;
371 if (pir.rate && pir.burst) {
372 *reg++ = NIX_AF_MDQX_PIR(schq);
373 *regval++ = shaper2regval(&pir) | 1;
377 if (cir.rate && cir.burst) {
378 *reg++ = NIX_AF_MDQX_CIR(schq);
379 *regval++ = shaper2regval(&cir) | 1;
383 rc = send_tm_reqval(mbox, req);
387 case NIX_TXSCH_LVL_TL4:
388 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
392 regval = req->regval;
394 *reg++ = NIX_AF_TL4X_PARENT(schq);
395 *regval++ = parent << 16;
397 *reg++ = NIX_AF_TL4X_TOPOLOGY(schq);
398 *regval++ = (child << 32) | (rr_prio << 1);
400 *reg++ = NIX_AF_TL4X_SCHEDULE(schq);
401 *regval++ = (strict_schedul_prio << 24) | rr_quantum;
403 if (pir.rate && pir.burst) {
404 *reg++ = NIX_AF_TL4X_PIR(schq);
405 *regval++ = shaper2regval(&pir) | 1;
408 if (cir.rate && cir.burst) {
409 *reg++ = NIX_AF_TL4X_CIR(schq);
410 *regval++ = shaper2regval(&cir) | 1;
414 rc = send_tm_reqval(mbox, req);
418 case NIX_TXSCH_LVL_TL3:
419 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
423 regval = req->regval;
425 *reg++ = NIX_AF_TL3X_PARENT(schq);
426 *regval++ = parent << 16;
428 *reg++ = NIX_AF_TL3X_TOPOLOGY(schq);
429 *regval++ = (child << 32) | (rr_prio << 1);
431 *reg++ = NIX_AF_TL3X_SCHEDULE(schq);
432 *regval++ = (strict_schedul_prio << 24) | rr_quantum;
434 if (pir.rate && pir.burst) {
435 *reg++ = NIX_AF_TL3X_PIR(schq);
436 *regval++ = shaper2regval(&pir) | 1;
439 if (cir.rate && cir.burst) {
440 *reg++ = NIX_AF_TL3X_CIR(schq);
441 *regval++ = shaper2regval(&cir) | 1;
445 rc = send_tm_reqval(mbox, req);
449 case NIX_TXSCH_LVL_TL2:
450 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
454 regval = req->regval;
456 *reg++ = NIX_AF_TL2X_PARENT(schq);
457 *regval++ = parent << 16;
459 *reg++ = NIX_AF_TL2X_TOPOLOGY(schq);
460 *regval++ = (child << 32) | (rr_prio << 1);
462 *reg++ = NIX_AF_TL2X_SCHEDULE(schq);
463 if (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL2)
464 *regval++ = (1 << 24) | rr_quantum;
466 *regval++ = (strict_schedul_prio << 24) | rr_quantum;
468 *reg++ = NIX_AF_TL3_TL2X_LINKX_CFG(schq, nix_get_link(dev));
469 *regval++ = BIT_ULL(12) | nix_get_relchan(dev);
471 if (pir.rate && pir.burst) {
472 *reg++ = NIX_AF_TL2X_PIR(schq);
473 *regval++ = shaper2regval(&pir) | 1;
476 if (cir.rate && cir.burst) {
477 *reg++ = NIX_AF_TL2X_CIR(schq);
478 *regval++ = shaper2regval(&cir) | 1;
482 rc = send_tm_reqval(mbox, req);
486 case NIX_TXSCH_LVL_TL1:
487 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
491 regval = req->regval;
493 *reg++ = NIX_AF_TL1X_SCHEDULE(schq);
494 *regval++ = rr_quantum;
496 *reg++ = NIX_AF_TL1X_TOPOLOGY(schq);
497 *regval++ = (child << 32) | (rr_prio << 1 /*RR_PRIO*/);
499 if (cir.rate && cir.burst) {
500 *reg++ = NIX_AF_TL1X_CIR(schq);
501 *regval++ = shaper2regval(&cir) | 1;
505 rc = send_tm_reqval(mbox, req);
513 otx2_err("Txschq cfg request failed for node %p, rc=%d", tm_node, rc);
519 nix_tm_txsch_reg_config(struct otx2_eth_dev *dev)
521 struct otx2_nix_tm_node *tm_node;
525 if (nix_get_link(dev) == 13)
528 for (lvl = 0; lvl < (uint32_t)dev->otx2_tm_root_lvl + 1; lvl++) {
529 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
530 if (tm_node->hw_lvl_id == lvl) {
531 rc = populate_tm_registers(dev, tm_node);
541 static struct otx2_nix_tm_node *
542 nix_tm_node_search(struct otx2_eth_dev *dev,
543 uint32_t node_id, bool user)
545 struct otx2_nix_tm_node *tm_node;
547 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
548 if (tm_node->id == node_id &&
549 (user == !!(tm_node->flags & NIX_TM_NODE_USER)))
556 check_rr(struct otx2_eth_dev *dev, uint32_t priority, uint32_t parent_id)
558 struct otx2_nix_tm_node *tm_node;
561 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
562 if (!tm_node->parent)
565 if (!(tm_node->parent->id == parent_id))
568 if (tm_node->priority == priority)
575 nix_tm_update_parent_info(struct otx2_eth_dev *dev)
577 struct otx2_nix_tm_node *tm_node_child;
578 struct otx2_nix_tm_node *tm_node;
579 struct otx2_nix_tm_node *parent;
583 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
584 if (!tm_node->parent)
586 /* Count group of children of same priority i.e are RR */
587 parent = tm_node->parent;
588 priority = tm_node->priority;
589 rr_num = check_rr(dev, priority, parent->id);
591 /* Assuming that multiple RR groups are
592 * not configured based on capability.
595 parent->rr_prio = priority;
596 parent->rr_num = rr_num;
599 /* Find out static priority children that are not in RR */
600 TAILQ_FOREACH(tm_node_child, &dev->node_list, node) {
601 if (!tm_node_child->parent)
603 if (parent->id != tm_node_child->parent->id)
605 if (parent->max_prio == UINT32_MAX &&
606 tm_node_child->priority != parent->rr_prio)
607 parent->max_prio = 0;
609 if (parent->max_prio < tm_node_child->priority &&
610 parent->rr_prio != tm_node_child->priority)
611 parent->max_prio = tm_node_child->priority;
619 nix_tm_node_add_to_list(struct otx2_eth_dev *dev, uint32_t node_id,
620 uint32_t parent_node_id, uint32_t priority,
621 uint32_t weight, uint16_t hw_lvl_id,
622 uint16_t level_id, bool user,
623 struct rte_tm_node_params *params)
625 struct otx2_nix_tm_shaper_profile *shaper_profile;
626 struct otx2_nix_tm_node *tm_node, *parent_node;
627 uint32_t shaper_profile_id;
629 shaper_profile_id = params->shaper_profile_id;
630 shaper_profile = nix_tm_shaper_profile_search(dev, shaper_profile_id);
632 parent_node = nix_tm_node_search(dev, parent_node_id, user);
634 tm_node = rte_zmalloc("otx2_nix_tm_node",
635 sizeof(struct otx2_nix_tm_node), 0);
639 tm_node->level_id = level_id;
640 tm_node->hw_lvl_id = hw_lvl_id;
642 tm_node->id = node_id;
643 tm_node->priority = priority;
644 tm_node->weight = weight;
645 tm_node->rr_prio = 0xf;
646 tm_node->max_prio = UINT32_MAX;
647 tm_node->hw_id = UINT32_MAX;
650 tm_node->flags = NIX_TM_NODE_USER;
651 rte_memcpy(&tm_node->params, params, sizeof(struct rte_tm_node_params));
654 shaper_profile->reference_count++;
655 tm_node->parent = parent_node;
656 tm_node->parent_hw_id = UINT32_MAX;
658 TAILQ_INSERT_TAIL(&dev->node_list, tm_node, node);
664 nix_tm_clear_shaper_profiles(struct otx2_eth_dev *dev)
666 struct otx2_nix_tm_shaper_profile *shaper_profile;
668 while ((shaper_profile = TAILQ_FIRST(&dev->shaper_profile_list))) {
669 if (shaper_profile->reference_count)
670 otx2_tm_dbg("Shaper profile %u has non zero references",
671 shaper_profile->shaper_profile_id);
672 TAILQ_REMOVE(&dev->shaper_profile_list, shaper_profile, shaper);
673 rte_free(shaper_profile);
680 nix_smq_xoff(struct otx2_eth_dev *dev, uint16_t smq, bool enable)
682 struct otx2_mbox *mbox = dev->mbox;
683 struct nix_txschq_config *req;
685 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
686 req->lvl = NIX_TXSCH_LVL_SMQ;
689 req->reg[0] = NIX_AF_SMQX_CFG(smq);
690 /* Unmodified fields */
691 req->regval[0] = ((uint64_t)NIX_MAX_VTAG_INS << 36) |
692 (NIX_MAX_HW_FRS << 8) | NIX_MIN_HW_FRS;
695 req->regval[0] |= BIT_ULL(50) | BIT_ULL(49);
699 return otx2_mbox_process(mbox);
703 otx2_nix_sq_sqb_aura_fc(void *__txq, bool enable)
705 struct otx2_eth_txq *txq = __txq;
706 struct npa_aq_enq_req *req;
707 struct npa_aq_enq_rsp *rsp;
708 struct otx2_npa_lf *lf;
709 struct otx2_mbox *mbox;
710 uint64_t aura_handle;
713 lf = otx2_npa_lf_obj_get();
717 /* Set/clear sqb aura fc_ena */
718 aura_handle = txq->sqb_pool->pool_id;
719 req = otx2_mbox_alloc_msg_npa_aq_enq(mbox);
721 req->aura_id = npa_lf_aura_handle_to_aura(aura_handle);
722 req->ctype = NPA_AQ_CTYPE_AURA;
723 req->op = NPA_AQ_INSTOP_WRITE;
724 /* Below is not needed for aura writes but AF driver needs it */
725 /* AF will translate to associated poolctx */
726 req->aura.pool_addr = req->aura_id;
728 req->aura.fc_ena = enable;
729 req->aura_mask.fc_ena = 1;
731 rc = otx2_mbox_process(mbox);
735 /* Read back npa aura ctx */
736 req = otx2_mbox_alloc_msg_npa_aq_enq(mbox);
738 req->aura_id = npa_lf_aura_handle_to_aura(aura_handle);
739 req->ctype = NPA_AQ_CTYPE_AURA;
740 req->op = NPA_AQ_INSTOP_READ;
742 rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
746 /* Init when enabled as there might be no triggers */
748 *(volatile uint64_t *)txq->fc_mem = rsp->aura.count;
750 *(volatile uint64_t *)txq->fc_mem = txq->nb_sqb_bufs;
751 /* Sync write barrier */
758 nix_txq_flush_sq_spin(struct otx2_eth_txq *txq)
760 uint16_t sqb_cnt, head_off, tail_off;
761 struct otx2_eth_dev *dev = txq->dev;
762 uint16_t sq = txq->sq;
767 reg = ((uint64_t)sq << 32);
768 regaddr = (int64_t *)(dev->base + NIX_LF_SQ_OP_PKTS);
769 val = otx2_atomic64_add_nosync(reg, regaddr);
771 regaddr = (int64_t *)(dev->base + NIX_LF_SQ_OP_STATUS);
772 val = otx2_atomic64_add_nosync(reg, regaddr);
773 sqb_cnt = val & 0xFFFF;
774 head_off = (val >> 20) & 0x3F;
775 tail_off = (val >> 28) & 0x3F;
777 /* SQ reached quiescent state */
778 if (sqb_cnt <= 1 && head_off == tail_off &&
779 (*txq->fc_mem == txq->nb_sqb_bufs)) {
788 otx2_nix_tm_sw_xoff(void *__txq, bool dev_started)
790 struct otx2_eth_txq *txq = __txq;
791 struct otx2_eth_dev *dev = txq->dev;
792 struct otx2_mbox *mbox = dev->mbox;
793 struct nix_aq_enq_req *req;
794 struct nix_aq_enq_rsp *rsp;
798 /* Get smq from sq */
799 req = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
801 req->ctype = NIX_AQ_CTYPE_SQ;
802 req->op = NIX_AQ_INSTOP_READ;
803 rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
805 otx2_err("Failed to get smq, rc=%d", rc);
809 /* Check if sq is enabled */
815 /* Enable CGX RXTX to drain pkts */
817 rc = otx2_cgx_rxtx_start(dev);
822 rc = otx2_nix_sq_sqb_aura_fc(txq, false);
824 otx2_err("Failed to disable sqb aura fc, rc=%d", rc);
828 /* Disable smq xoff for case it was enabled earlier */
829 rc = nix_smq_xoff(dev, smq, false);
831 otx2_err("Failed to enable smq for sq %u, rc=%d", txq->sq, rc);
835 /* Wait for sq entries to be flushed */
836 nix_txq_flush_sq_spin(txq);
838 /* Flush and enable smq xoff */
839 rc = nix_smq_xoff(dev, smq, true);
841 otx2_err("Failed to disable smq for sq %u, rc=%d", txq->sq, rc);
846 /* Restore cgx state */
848 rc |= otx2_cgx_rxtx_stop(dev);
854 nix_tm_sw_xon(struct otx2_eth_txq *txq,
855 uint16_t smq, uint32_t rr_quantum)
857 struct otx2_eth_dev *dev = txq->dev;
858 struct otx2_mbox *mbox = dev->mbox;
859 struct nix_aq_enq_req *req;
862 otx2_tm_dbg("Enabling sq(%u)->smq(%u), rr_quantum %u",
863 txq->sq, txq->sq, rr_quantum);
864 /* Set smq from sq */
865 req = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
867 req->ctype = NIX_AQ_CTYPE_SQ;
868 req->op = NIX_AQ_INSTOP_WRITE;
870 req->sq.smq_rr_quantum = rr_quantum;
871 req->sq_mask.smq = ~req->sq_mask.smq;
872 req->sq_mask.smq_rr_quantum = ~req->sq_mask.smq_rr_quantum;
874 rc = otx2_mbox_process(mbox);
876 otx2_err("Failed to set smq, rc=%d", rc);
880 /* Enable sqb_aura fc */
881 rc = otx2_nix_sq_sqb_aura_fc(txq, true);
883 otx2_err("Failed to enable sqb aura fc, rc=%d", rc);
887 /* Disable smq xoff */
888 rc = nix_smq_xoff(dev, smq, false);
890 otx2_err("Failed to enable smq for sq %u", txq->sq);
898 nix_tm_free_resources(struct otx2_eth_dev *dev, uint32_t flags_mask,
899 uint32_t flags, bool hw_only)
901 struct otx2_nix_tm_shaper_profile *shaper_profile;
902 struct otx2_nix_tm_node *tm_node, *next_node;
903 struct otx2_mbox *mbox = dev->mbox;
904 struct nix_txsch_free_req *req;
905 uint32_t shaper_profile_id;
906 bool skip_node = false;
909 next_node = TAILQ_FIRST(&dev->node_list);
912 next_node = TAILQ_NEXT(tm_node, node);
914 /* Check for only requested nodes */
915 if ((tm_node->flags & flags_mask) != flags)
918 if (nix_tm_have_tl1_access(dev) &&
919 tm_node->hw_lvl_id == NIX_TXSCH_LVL_TL1)
922 otx2_tm_dbg("Free hwres for node %u, hwlvl %u, hw_id %u (%p)",
923 tm_node->id, tm_node->hw_lvl_id,
924 tm_node->hw_id, tm_node);
925 /* Free specific HW resource if requested */
926 if (!skip_node && flags_mask &&
927 tm_node->flags & NIX_TM_NODE_HWRES) {
928 req = otx2_mbox_alloc_msg_nix_txsch_free(mbox);
930 req->schq_lvl = tm_node->hw_lvl_id;
931 req->schq = tm_node->hw_id;
932 rc = otx2_mbox_process(mbox);
938 tm_node->flags &= ~NIX_TM_NODE_HWRES;
940 /* Leave software elements if needed */
944 shaper_profile_id = tm_node->params.shaper_profile_id;
946 nix_tm_shaper_profile_search(dev, shaper_profile_id);
948 shaper_profile->reference_count--;
950 TAILQ_REMOVE(&dev->node_list, tm_node, node);
955 /* Free all hw resources */
956 req = otx2_mbox_alloc_msg_nix_txsch_free(mbox);
957 req->flags = TXSCHQ_FREE_ALL;
959 return otx2_mbox_process(mbox);
966 nix_tm_copy_rsp_to_dev(struct otx2_eth_dev *dev,
967 struct nix_txsch_alloc_rsp *rsp)
972 for (lvl = 0; lvl < NIX_TXSCH_LVL_CNT; lvl++) {
973 for (schq = 0; schq < MAX_TXSCHQ_PER_FUNC; schq++) {
974 dev->txschq_list[lvl][schq] = rsp->schq_list[lvl][schq];
975 dev->txschq_contig_list[lvl][schq] =
976 rsp->schq_contig_list[lvl][schq];
979 dev->txschq[lvl] = rsp->schq[lvl];
980 dev->txschq_contig[lvl] = rsp->schq_contig[lvl];
986 nix_tm_assign_id_to_node(struct otx2_eth_dev *dev,
987 struct otx2_nix_tm_node *child,
988 struct otx2_nix_tm_node *parent)
990 uint32_t hw_id, schq_con_index, prio_offset;
991 uint32_t l_id, schq_index;
993 otx2_tm_dbg("Assign hw id for child node %u, lvl %u, hw_lvl %u (%p)",
994 child->id, child->level_id, child->hw_lvl_id, child);
996 child->flags |= NIX_TM_NODE_HWRES;
998 /* Process root nodes */
999 if (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL2 &&
1000 child->hw_lvl_id == dev->otx2_tm_root_lvl && !parent) {
1002 uint32_t tschq_con_index;
1004 l_id = child->hw_lvl_id;
1005 tschq_con_index = dev->txschq_contig_index[l_id];
1006 hw_id = dev->txschq_contig_list[l_id][tschq_con_index];
1007 child->hw_id = hw_id;
1008 dev->txschq_contig_index[l_id]++;
1009 /* Update TL1 hw_id for its parent for config purpose */
1010 idx = dev->txschq_index[NIX_TXSCH_LVL_TL1]++;
1011 hw_id = dev->txschq_list[NIX_TXSCH_LVL_TL1][idx];
1012 child->parent_hw_id = hw_id;
1015 if (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL1 &&
1016 child->hw_lvl_id == dev->otx2_tm_root_lvl && !parent) {
1017 uint32_t tschq_con_index;
1019 l_id = child->hw_lvl_id;
1020 tschq_con_index = dev->txschq_index[l_id];
1021 hw_id = dev->txschq_list[l_id][tschq_con_index];
1022 child->hw_id = hw_id;
1023 dev->txschq_index[l_id]++;
1027 /* Process children with parents */
1028 l_id = child->hw_lvl_id;
1029 schq_index = dev->txschq_index[l_id];
1030 schq_con_index = dev->txschq_contig_index[l_id];
1032 if (child->priority == parent->rr_prio) {
1033 hw_id = dev->txschq_list[l_id][schq_index];
1034 child->hw_id = hw_id;
1035 child->parent_hw_id = parent->hw_id;
1036 dev->txschq_index[l_id]++;
1038 prio_offset = schq_con_index + child->priority;
1039 hw_id = dev->txschq_contig_list[l_id][prio_offset];
1040 child->hw_id = hw_id;
1046 nix_tm_assign_hw_id(struct otx2_eth_dev *dev)
1048 struct otx2_nix_tm_node *parent, *child;
1049 uint32_t child_hw_lvl, con_index_inc, i;
1051 for (i = NIX_TXSCH_LVL_TL1; i > 0; i--) {
1052 TAILQ_FOREACH(parent, &dev->node_list, node) {
1053 child_hw_lvl = parent->hw_lvl_id - 1;
1054 if (parent->hw_lvl_id != i)
1056 TAILQ_FOREACH(child, &dev->node_list, node) {
1059 if (child->parent->id != parent->id)
1061 nix_tm_assign_id_to_node(dev, child, parent);
1064 con_index_inc = parent->max_prio + 1;
1065 dev->txschq_contig_index[child_hw_lvl] += con_index_inc;
1068 * Explicitly assign id to parent node if it
1069 * doesn't have a parent
1071 if (parent->hw_lvl_id == dev->otx2_tm_root_lvl)
1072 nix_tm_assign_id_to_node(dev, parent, NULL);
1079 nix_tm_count_req_schq(struct otx2_eth_dev *dev,
1080 struct nix_txsch_alloc_req *req, uint8_t lvl)
1082 struct otx2_nix_tm_node *tm_node;
1083 uint8_t contig_count;
1085 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1086 if (lvl == tm_node->hw_lvl_id) {
1087 req->schq[lvl - 1] += tm_node->rr_num;
1088 if (tm_node->max_prio != UINT32_MAX) {
1089 contig_count = tm_node->max_prio + 1;
1090 req->schq_contig[lvl - 1] += contig_count;
1093 if (lvl == dev->otx2_tm_root_lvl &&
1094 dev->otx2_tm_root_lvl && lvl == NIX_TXSCH_LVL_TL2 &&
1095 tm_node->hw_lvl_id == dev->otx2_tm_root_lvl) {
1096 req->schq_contig[dev->otx2_tm_root_lvl]++;
1100 req->schq[NIX_TXSCH_LVL_TL1] = 1;
1101 req->schq_contig[NIX_TXSCH_LVL_TL1] = 0;
1107 nix_tm_prepare_txschq_req(struct otx2_eth_dev *dev,
1108 struct nix_txsch_alloc_req *req)
1112 for (i = NIX_TXSCH_LVL_TL1; i > 0; i--)
1113 nix_tm_count_req_schq(dev, req, i);
1115 for (i = 0; i < NIX_TXSCH_LVL_CNT; i++) {
1116 dev->txschq_index[i] = 0;
1117 dev->txschq_contig_index[i] = 0;
1123 nix_tm_send_txsch_alloc_msg(struct otx2_eth_dev *dev)
1125 struct otx2_mbox *mbox = dev->mbox;
1126 struct nix_txsch_alloc_req *req;
1127 struct nix_txsch_alloc_rsp *rsp;
1130 req = otx2_mbox_alloc_msg_nix_txsch_alloc(mbox);
1132 rc = nix_tm_prepare_txschq_req(dev, req);
1136 rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
1140 nix_tm_copy_rsp_to_dev(dev, rsp);
1142 nix_tm_assign_hw_id(dev);
1147 nix_tm_alloc_resources(struct rte_eth_dev *eth_dev, bool xmit_enable)
1149 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1150 struct otx2_nix_tm_node *tm_node;
1151 uint16_t sq, smq, rr_quantum;
1152 struct otx2_eth_txq *txq;
1155 nix_tm_update_parent_info(dev);
1157 rc = nix_tm_send_txsch_alloc_msg(dev);
1159 otx2_err("TM failed to alloc tm resources=%d", rc);
1163 rc = nix_tm_txsch_reg_config(dev);
1165 otx2_err("TM failed to configure sched registers=%d", rc);
1169 /* Enable xmit as all the topology is ready */
1170 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1171 if (tm_node->flags & NIX_TM_NODE_ENABLED)
1174 /* Enable xmit on sq */
1175 if (tm_node->level_id != OTX2_TM_LVL_QUEUE) {
1176 tm_node->flags |= NIX_TM_NODE_ENABLED;
1180 /* Don't enable SMQ or mark as enable */
1185 if (sq > eth_dev->data->nb_tx_queues) {
1190 txq = eth_dev->data->tx_queues[sq];
1192 smq = tm_node->parent->hw_id;
1193 rr_quantum = (tm_node->weight *
1194 NIX_TM_RR_QUANTUM_MAX) / MAX_SCHED_WEIGHT;
1196 rc = nix_tm_sw_xon(txq, smq, rr_quantum);
1199 tm_node->flags |= NIX_TM_NODE_ENABLED;
1203 otx2_err("TM failed to enable xmit on sq %u, rc=%d", sq, rc);
1209 nix_tm_prepare_default_tree(struct rte_eth_dev *eth_dev)
1211 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1212 uint32_t def = eth_dev->data->nb_tx_queues;
1213 struct rte_tm_node_params params;
1214 uint32_t leaf_parent, i;
1217 /* Default params */
1218 memset(¶ms, 0, sizeof(params));
1219 params.shaper_profile_id = RTE_TM_SHAPER_PROFILE_ID_NONE;
1221 if (nix_tm_have_tl1_access(dev)) {
1222 dev->otx2_tm_root_lvl = NIX_TXSCH_LVL_TL1;
1223 rc = nix_tm_node_add_to_list(dev, def, RTE_TM_NODE_ID_NULL, 0,
1226 OTX2_TM_LVL_ROOT, false, ¶ms);
1229 rc = nix_tm_node_add_to_list(dev, def + 1, def, 0,
1232 OTX2_TM_LVL_SCH1, false, ¶ms);
1236 rc = nix_tm_node_add_to_list(dev, def + 2, def + 1, 0,
1239 OTX2_TM_LVL_SCH2, false, ¶ms);
1243 rc = nix_tm_node_add_to_list(dev, def + 3, def + 2, 0,
1246 OTX2_TM_LVL_SCH3, false, ¶ms);
1250 rc = nix_tm_node_add_to_list(dev, def + 4, def + 3, 0,
1253 OTX2_TM_LVL_SCH4, false, ¶ms);
1257 leaf_parent = def + 4;
1259 dev->otx2_tm_root_lvl = NIX_TXSCH_LVL_TL2;
1260 rc = nix_tm_node_add_to_list(dev, def, RTE_TM_NODE_ID_NULL, 0,
1263 OTX2_TM_LVL_ROOT, false, ¶ms);
1267 rc = nix_tm_node_add_to_list(dev, def + 1, def, 0,
1270 OTX2_TM_LVL_SCH1, false, ¶ms);
1274 rc = nix_tm_node_add_to_list(dev, def + 2, def + 1, 0,
1277 OTX2_TM_LVL_SCH2, false, ¶ms);
1281 rc = nix_tm_node_add_to_list(dev, def + 3, def + 2, 0,
1284 OTX2_TM_LVL_SCH3, false, ¶ms);
1288 leaf_parent = def + 3;
1291 /* Add leaf nodes */
1292 for (i = 0; i < eth_dev->data->nb_tx_queues; i++) {
1293 rc = nix_tm_node_add_to_list(dev, i, leaf_parent, 0,
1296 OTX2_TM_LVL_QUEUE, false, ¶ms);
1305 void otx2_nix_tm_conf_init(struct rte_eth_dev *eth_dev)
1307 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1309 TAILQ_INIT(&dev->node_list);
1310 TAILQ_INIT(&dev->shaper_profile_list);
1313 int otx2_nix_tm_init_default(struct rte_eth_dev *eth_dev)
1315 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1316 uint16_t sq_cnt = eth_dev->data->nb_tx_queues;
1319 /* Free up all resources already held */
1320 rc = nix_tm_free_resources(dev, 0, 0, false);
1322 otx2_err("Failed to freeup existing resources,rc=%d", rc);
1326 /* Clear shaper profiles */
1327 nix_tm_clear_shaper_profiles(dev);
1328 dev->tm_flags = NIX_TM_DEFAULT_TREE;
1330 rc = nix_tm_prepare_default_tree(eth_dev);
1334 rc = nix_tm_alloc_resources(eth_dev, false);
1337 dev->tm_leaf_cnt = sq_cnt;
1343 otx2_nix_tm_fini(struct rte_eth_dev *eth_dev)
1345 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1348 /* Xmit is assumed to be disabled */
1349 /* Free up resources already held */
1350 rc = nix_tm_free_resources(dev, 0, 0, false);
1352 otx2_err("Failed to freeup existing resources,rc=%d", rc);
1356 /* Clear shaper profiles */
1357 nix_tm_clear_shaper_profiles(dev);
1364 otx2_nix_tm_get_leaf_data(struct otx2_eth_dev *dev, uint16_t sq,
1365 uint32_t *rr_quantum, uint16_t *smq)
1367 struct otx2_nix_tm_node *tm_node;
1370 /* 0..sq_cnt-1 are leaf nodes */
1371 if (sq >= dev->tm_leaf_cnt)
1374 /* Search for internal node first */
1375 tm_node = nix_tm_node_search(dev, sq, false);
1377 tm_node = nix_tm_node_search(dev, sq, true);
1379 /* Check if we found a valid leaf node */
1380 if (!tm_node || tm_node->level_id != OTX2_TM_LVL_QUEUE ||
1381 !tm_node->parent || tm_node->parent->hw_id == UINT32_MAX) {
1385 /* Get SMQ Id of leaf node's parent */
1386 *smq = tm_node->parent->hw_id;
1387 *rr_quantum = (tm_node->weight * NIX_TM_RR_QUANTUM_MAX)
1390 rc = nix_smq_xoff(dev, *smq, false);
1393 tm_node->flags |= NIX_TM_NODE_ENABLED;