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) && !is_lbk;
66 nix_tm_is_leaf(struct otx2_eth_dev *dev, int lvl)
68 if (nix_tm_have_tl1_access(dev))
69 return (lvl == OTX2_TM_LVL_QUEUE);
71 return (lvl == OTX2_TM_LVL_SCH4);
75 find_prio_anchor(struct otx2_eth_dev *dev, uint32_t node_id)
77 struct otx2_nix_tm_node *child_node;
79 TAILQ_FOREACH(child_node, &dev->node_list, node) {
80 if (!child_node->parent)
82 if (!(child_node->parent->id == node_id))
84 if (child_node->priority == child_node->parent->rr_prio)
86 return child_node->hw_id - child_node->priority;
92 static struct otx2_nix_tm_shaper_profile *
93 nix_tm_shaper_profile_search(struct otx2_eth_dev *dev, uint32_t shaper_id)
95 struct otx2_nix_tm_shaper_profile *tm_shaper_profile;
97 TAILQ_FOREACH(tm_shaper_profile, &dev->shaper_profile_list, shaper) {
98 if (tm_shaper_profile->shaper_profile_id == shaper_id)
99 return tm_shaper_profile;
104 static inline uint64_t
105 shaper_rate_to_nix(uint64_t value, uint64_t *exponent_p,
106 uint64_t *mantissa_p, uint64_t *div_exp_p)
108 uint64_t div_exp, exponent, mantissa;
110 /* Boundary checks */
111 if (value < MIN_SHAPER_RATE ||
112 value > MAX_SHAPER_RATE)
115 if (value <= SHAPER_RATE(0, 0, 0)) {
116 /* Calculate rate div_exp and mantissa using
117 * the following formula:
119 * value = (2E6 * (256 + mantissa)
120 * / ((1 << div_exp) * 256))
124 mantissa = MAX_RATE_MANTISSA;
126 while (value < (NIX_SHAPER_RATE_CONST / (1 << div_exp)))
130 ((NIX_SHAPER_RATE_CONST * (256 + mantissa)) /
131 ((1 << div_exp) * 256)))
134 /* Calculate rate exponent and mantissa using
135 * the following formula:
137 * value = (2E6 * ((256 + mantissa) << exponent)) / 256
141 exponent = MAX_RATE_EXPONENT;
142 mantissa = MAX_RATE_MANTISSA;
144 while (value < (NIX_SHAPER_RATE_CONST * (1 << exponent)))
147 while (value < ((NIX_SHAPER_RATE_CONST *
148 ((256 + mantissa) << exponent)) / 256))
152 if (div_exp > MAX_RATE_DIV_EXP ||
153 exponent > MAX_RATE_EXPONENT || mantissa > MAX_RATE_MANTISSA)
157 *div_exp_p = div_exp;
159 *exponent_p = exponent;
161 *mantissa_p = mantissa;
163 /* Calculate real rate value */
164 return SHAPER_RATE(exponent, mantissa, div_exp);
167 static inline uint64_t
168 shaper_burst_to_nix(uint64_t value, uint64_t *exponent_p,
169 uint64_t *mantissa_p)
171 uint64_t exponent, mantissa;
173 if (value < MIN_SHAPER_BURST || value > MAX_SHAPER_BURST)
176 /* Calculate burst exponent and mantissa using
177 * the following formula:
179 * value = (((256 + mantissa) << (exponent + 1)
183 exponent = MAX_BURST_EXPONENT;
184 mantissa = MAX_BURST_MANTISSA;
186 while (value < (1ull << (exponent + 1)))
189 while (value < ((256 + mantissa) << (exponent + 1)) / 256)
192 if (exponent > MAX_BURST_EXPONENT || mantissa > MAX_BURST_MANTISSA)
196 *exponent_p = exponent;
198 *mantissa_p = mantissa;
200 return SHAPER_BURST(exponent, mantissa);
204 shaper_config_to_nix(struct otx2_nix_tm_shaper_profile *profile,
205 struct shaper_params *cir,
206 struct shaper_params *pir)
208 struct rte_tm_shaper_params *param = &profile->params;
213 /* Calculate CIR exponent and mantissa */
214 if (param->committed.rate)
215 cir->rate = shaper_rate_to_nix(param->committed.rate,
220 /* Calculate PIR exponent and mantissa */
221 if (param->peak.rate)
222 pir->rate = shaper_rate_to_nix(param->peak.rate,
227 /* Calculate CIR burst exponent and mantissa */
228 if (param->committed.size)
229 cir->burst = shaper_burst_to_nix(param->committed.size,
230 &cir->burst_exponent,
231 &cir->burst_mantissa);
233 /* Calculate PIR burst exponent and mantissa */
234 if (param->peak.size)
235 pir->burst = shaper_burst_to_nix(param->peak.size,
236 &pir->burst_exponent,
237 &pir->burst_mantissa);
241 populate_tm_tl1_default(struct otx2_eth_dev *dev, uint32_t schq)
243 struct otx2_mbox *mbox = dev->mbox;
244 struct nix_txschq_config *req;
247 * Default config for TL1.
248 * For VF this is always ignored.
251 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
252 req->lvl = NIX_TXSCH_LVL_TL1;
254 /* Set DWRR quantum */
255 req->reg[0] = NIX_AF_TL1X_SCHEDULE(schq);
256 req->regval[0] = TXSCH_TL1_DFLT_RR_QTM;
259 req->reg[1] = NIX_AF_TL1X_TOPOLOGY(schq);
260 req->regval[1] = (TXSCH_TL1_DFLT_RR_PRIO << 1);
263 req->reg[2] = NIX_AF_TL1X_CIR(schq);
267 return otx2_mbox_process(mbox);
271 prepare_tm_sched_reg(struct otx2_eth_dev *dev,
272 struct otx2_nix_tm_node *tm_node,
273 volatile uint64_t *reg, volatile uint64_t *regval)
275 uint64_t strict_prio = tm_node->priority;
276 uint32_t hw_lvl = tm_node->hw_lvl;
277 uint32_t schq = tm_node->hw_id;
281 rr_quantum = NIX_TM_WEIGHT_TO_RR_QUANTUM(tm_node->weight);
283 /* For children to root, strict prio is default if either
284 * device root is TL2 or TL1 Static Priority is disabled.
286 if (hw_lvl == NIX_TXSCH_LVL_TL2 &&
287 (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL2 ||
288 dev->tm_flags & NIX_TM_TL1_NO_SP))
289 strict_prio = TXSCH_TL1_DFLT_RR_PRIO;
291 otx2_tm_dbg("Schedule config node %s(%u) lvl %u id %u, "
292 "prio 0x%" PRIx64 ", rr_quantum 0x%" PRIx64 " (%p)",
293 nix_hwlvl2str(tm_node->hw_lvl), schq, tm_node->lvl,
294 tm_node->id, strict_prio, rr_quantum, tm_node);
297 case NIX_TXSCH_LVL_SMQ:
298 reg[k] = NIX_AF_MDQX_SCHEDULE(schq);
299 regval[k] = (strict_prio << 24) | rr_quantum;
303 case NIX_TXSCH_LVL_TL4:
304 reg[k] = NIX_AF_TL4X_SCHEDULE(schq);
305 regval[k] = (strict_prio << 24) | rr_quantum;
309 case NIX_TXSCH_LVL_TL3:
310 reg[k] = NIX_AF_TL3X_SCHEDULE(schq);
311 regval[k] = (strict_prio << 24) | rr_quantum;
315 case NIX_TXSCH_LVL_TL2:
316 reg[k] = NIX_AF_TL2X_SCHEDULE(schq);
317 regval[k] = (strict_prio << 24) | rr_quantum;
321 case NIX_TXSCH_LVL_TL1:
322 reg[k] = NIX_AF_TL1X_SCHEDULE(schq);
323 regval[k] = rr_quantum;
333 prepare_tm_shaper_reg(struct otx2_nix_tm_node *tm_node,
334 struct otx2_nix_tm_shaper_profile *profile,
335 volatile uint64_t *reg, volatile uint64_t *regval)
337 struct shaper_params cir, pir;
338 uint32_t schq = tm_node->hw_id;
341 memset(&cir, 0, sizeof(cir));
342 memset(&pir, 0, sizeof(pir));
343 shaper_config_to_nix(profile, &cir, &pir);
345 otx2_tm_dbg("Shaper config node %s(%u) lvl %u id %u, "
346 "pir %" PRIu64 "(%" PRIu64 "B),"
347 " cir %" PRIu64 "(%" PRIu64 "B) (%p)",
348 nix_hwlvl2str(tm_node->hw_lvl), schq, tm_node->lvl,
349 tm_node->id, pir.rate, pir.burst,
350 cir.rate, cir.burst, tm_node);
352 switch (tm_node->hw_lvl) {
353 case NIX_TXSCH_LVL_SMQ:
354 /* Configure PIR, CIR */
355 reg[k] = NIX_AF_MDQX_PIR(schq);
356 regval[k] = (pir.rate && pir.burst) ?
357 (shaper2regval(&pir) | 1) : 0;
360 reg[k] = NIX_AF_MDQX_CIR(schq);
361 regval[k] = (cir.rate && cir.burst) ?
362 (shaper2regval(&cir) | 1) : 0;
365 /* Configure RED ALG */
366 reg[k] = NIX_AF_MDQX_SHAPE(schq);
367 regval[k] = ((uint64_t)tm_node->red_algo << 9);
370 case NIX_TXSCH_LVL_TL4:
371 /* Configure PIR, CIR */
372 reg[k] = NIX_AF_TL4X_PIR(schq);
373 regval[k] = (pir.rate && pir.burst) ?
374 (shaper2regval(&pir) | 1) : 0;
377 reg[k] = NIX_AF_TL4X_CIR(schq);
378 regval[k] = (cir.rate && cir.burst) ?
379 (shaper2regval(&cir) | 1) : 0;
382 /* Configure RED algo */
383 reg[k] = NIX_AF_TL4X_SHAPE(schq);
384 regval[k] = ((uint64_t)tm_node->red_algo << 9);
387 case NIX_TXSCH_LVL_TL3:
388 /* Configure PIR, CIR */
389 reg[k] = NIX_AF_TL3X_PIR(schq);
390 regval[k] = (pir.rate && pir.burst) ?
391 (shaper2regval(&pir) | 1) : 0;
394 reg[k] = NIX_AF_TL3X_CIR(schq);
395 regval[k] = (cir.rate && cir.burst) ?
396 (shaper2regval(&cir) | 1) : 0;
399 /* Configure RED algo */
400 reg[k] = NIX_AF_TL3X_SHAPE(schq);
401 regval[k] = ((uint64_t)tm_node->red_algo << 9);
405 case NIX_TXSCH_LVL_TL2:
406 /* Configure PIR, CIR */
407 reg[k] = NIX_AF_TL2X_PIR(schq);
408 regval[k] = (pir.rate && pir.burst) ?
409 (shaper2regval(&pir) | 1) : 0;
412 reg[k] = NIX_AF_TL2X_CIR(schq);
413 regval[k] = (cir.rate && cir.burst) ?
414 (shaper2regval(&cir) | 1) : 0;
417 /* Configure RED algo */
418 reg[k] = NIX_AF_TL2X_SHAPE(schq);
419 regval[k] = ((uint64_t)tm_node->red_algo << 9);
423 case NIX_TXSCH_LVL_TL1:
425 reg[k] = NIX_AF_TL1X_CIR(schq);
426 regval[k] = (cir.rate && cir.burst) ?
427 (shaper2regval(&cir) | 1) : 0;
436 prepare_tm_sw_xoff(struct otx2_nix_tm_node *tm_node, bool enable,
437 volatile uint64_t *reg, volatile uint64_t *regval)
439 uint32_t hw_lvl = tm_node->hw_lvl;
440 uint32_t schq = tm_node->hw_id;
443 otx2_tm_dbg("sw xoff config node %s(%u) lvl %u id %u, enable %u (%p)",
444 nix_hwlvl2str(hw_lvl), schq, tm_node->lvl,
445 tm_node->id, enable, tm_node);
450 case NIX_TXSCH_LVL_MDQ:
451 reg[k] = NIX_AF_MDQX_SW_XOFF(schq);
454 case NIX_TXSCH_LVL_TL4:
455 reg[k] = NIX_AF_TL4X_SW_XOFF(schq);
458 case NIX_TXSCH_LVL_TL3:
459 reg[k] = NIX_AF_TL3X_SW_XOFF(schq);
462 case NIX_TXSCH_LVL_TL2:
463 reg[k] = NIX_AF_TL2X_SW_XOFF(schq);
466 case NIX_TXSCH_LVL_TL1:
467 reg[k] = NIX_AF_TL1X_SW_XOFF(schq);
478 populate_tm_reg(struct otx2_eth_dev *dev,
479 struct otx2_nix_tm_node *tm_node)
481 struct otx2_nix_tm_shaper_profile *profile;
482 uint64_t regval_mask[MAX_REGS_PER_MBOX_MSG];
483 uint64_t regval[MAX_REGS_PER_MBOX_MSG];
484 uint64_t reg[MAX_REGS_PER_MBOX_MSG];
485 struct otx2_mbox *mbox = dev->mbox;
486 uint64_t parent = 0, child = 0;
487 uint32_t hw_lvl, rr_prio, schq;
488 struct nix_txschq_config *req;
492 memset(regval_mask, 0, sizeof(regval_mask));
493 profile = nix_tm_shaper_profile_search(dev,
494 tm_node->params.shaper_profile_id);
495 rr_prio = tm_node->rr_prio;
496 hw_lvl = tm_node->hw_lvl;
497 schq = tm_node->hw_id;
499 /* Root node will not have a parent node */
500 if (hw_lvl == dev->otx2_tm_root_lvl)
501 parent = tm_node->parent_hw_id;
503 parent = tm_node->parent->hw_id;
505 /* Do we need this trigger to configure TL1 */
506 if (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL2 &&
507 hw_lvl == dev->otx2_tm_root_lvl) {
508 rc = populate_tm_tl1_default(dev, parent);
513 if (hw_lvl != NIX_TXSCH_LVL_SMQ)
514 child = find_prio_anchor(dev, tm_node->id);
516 /* Override default rr_prio when TL1
517 * Static Priority is disabled
519 if (hw_lvl == NIX_TXSCH_LVL_TL1 &&
520 dev->tm_flags & NIX_TM_TL1_NO_SP) {
521 rr_prio = TXSCH_TL1_DFLT_RR_PRIO;
525 otx2_tm_dbg("Topology config node %s(%u)->%s(%"PRIu64") lvl %u, id %u"
526 " prio_anchor %"PRIu64" rr_prio %u (%p)",
527 nix_hwlvl2str(hw_lvl), schq, nix_hwlvl2str(hw_lvl + 1),
528 parent, tm_node->lvl, tm_node->id, child, rr_prio, tm_node);
530 /* Prepare Topology and Link config */
532 case NIX_TXSCH_LVL_SMQ:
534 /* Set xoff which will be cleared later */
535 reg[k] = NIX_AF_SMQX_CFG(schq);
536 regval[k] = BIT_ULL(50);
537 regval_mask[k] = ~BIT_ULL(50);
540 /* Parent and schedule conf */
541 reg[k] = NIX_AF_MDQX_PARENT(schq);
542 regval[k] = parent << 16;
546 case NIX_TXSCH_LVL_TL4:
547 /* Parent and schedule conf */
548 reg[k] = NIX_AF_TL4X_PARENT(schq);
549 regval[k] = parent << 16;
552 reg[k] = NIX_AF_TL4X_TOPOLOGY(schq);
553 regval[k] = (child << 32) | (rr_prio << 1);
556 /* Configure TL4 to send to SDP channel instead of CGX/LBK */
557 if (otx2_dev_is_sdp(dev)) {
558 reg[k] = NIX_AF_TL4X_SDP_LINK_CFG(schq);
559 regval[k] = BIT_ULL(12);
563 case NIX_TXSCH_LVL_TL3:
564 /* Parent and schedule conf */
565 reg[k] = NIX_AF_TL3X_PARENT(schq);
566 regval[k] = parent << 16;
569 reg[k] = NIX_AF_TL3X_TOPOLOGY(schq);
570 regval[k] = (child << 32) | (rr_prio << 1);
573 /* Link configuration */
574 if (!otx2_dev_is_sdp(dev) &&
575 dev->link_cfg_lvl == NIX_TXSCH_LVL_TL3) {
576 reg[k] = NIX_AF_TL3_TL2X_LINKX_CFG(schq,
578 regval[k] = BIT_ULL(12) | nix_get_relchan(dev);
583 case NIX_TXSCH_LVL_TL2:
584 /* Parent and schedule conf */
585 reg[k] = NIX_AF_TL2X_PARENT(schq);
586 regval[k] = parent << 16;
589 reg[k] = NIX_AF_TL2X_TOPOLOGY(schq);
590 regval[k] = (child << 32) | (rr_prio << 1);
593 /* Link configuration */
594 if (!otx2_dev_is_sdp(dev) &&
595 dev->link_cfg_lvl == NIX_TXSCH_LVL_TL2) {
596 reg[k] = NIX_AF_TL3_TL2X_LINKX_CFG(schq,
598 regval[k] = BIT_ULL(12) | nix_get_relchan(dev);
603 case NIX_TXSCH_LVL_TL1:
604 reg[k] = NIX_AF_TL1X_TOPOLOGY(schq);
605 regval[k] = (child << 32) | (rr_prio << 1 /*RR_PRIO*/);
611 /* Prepare schedule config */
612 k += prepare_tm_sched_reg(dev, tm_node, ®[k], ®val[k]);
614 /* Prepare shaping config */
615 k += prepare_tm_shaper_reg(tm_node, profile, ®[k], ®val[k]);
620 /* Copy and send config mbox */
621 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
625 otx2_mbox_memcpy(req->reg, reg, sizeof(uint64_t) * k);
626 otx2_mbox_memcpy(req->regval, regval, sizeof(uint64_t) * k);
627 otx2_mbox_memcpy(req->regval_mask, regval_mask, sizeof(uint64_t) * k);
629 rc = otx2_mbox_process(mbox);
635 otx2_err("Txschq cfg request failed for node %p, rc=%d", tm_node, rc);
641 nix_tm_txsch_reg_config(struct otx2_eth_dev *dev)
643 struct otx2_nix_tm_node *tm_node;
647 for (hw_lvl = 0; hw_lvl <= dev->otx2_tm_root_lvl; hw_lvl++) {
648 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
649 if (tm_node->hw_lvl == hw_lvl &&
650 tm_node->hw_lvl != NIX_TXSCH_LVL_CNT) {
651 rc = populate_tm_reg(dev, tm_node);
661 static struct otx2_nix_tm_node *
662 nix_tm_node_search(struct otx2_eth_dev *dev,
663 uint32_t node_id, bool user)
665 struct otx2_nix_tm_node *tm_node;
667 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
668 if (tm_node->id == node_id &&
669 (user == !!(tm_node->flags & NIX_TM_NODE_USER)))
676 check_rr(struct otx2_eth_dev *dev, uint32_t priority, uint32_t parent_id)
678 struct otx2_nix_tm_node *tm_node;
681 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
682 if (!tm_node->parent)
685 if (!(tm_node->parent->id == parent_id))
688 if (tm_node->priority == priority)
695 nix_tm_update_parent_info(struct otx2_eth_dev *dev)
697 struct otx2_nix_tm_node *tm_node_child;
698 struct otx2_nix_tm_node *tm_node;
699 struct otx2_nix_tm_node *parent;
703 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
704 if (!tm_node->parent)
706 /* Count group of children of same priority i.e are RR */
707 parent = tm_node->parent;
708 priority = tm_node->priority;
709 rr_num = check_rr(dev, priority, parent->id);
711 /* Assuming that multiple RR groups are
712 * not configured based on capability.
715 parent->rr_prio = priority;
716 parent->rr_num = rr_num;
719 /* Find out static priority children that are not in RR */
720 TAILQ_FOREACH(tm_node_child, &dev->node_list, node) {
721 if (!tm_node_child->parent)
723 if (parent->id != tm_node_child->parent->id)
725 if (parent->max_prio == UINT32_MAX &&
726 tm_node_child->priority != parent->rr_prio)
727 parent->max_prio = 0;
729 if (parent->max_prio < tm_node_child->priority &&
730 parent->rr_prio != tm_node_child->priority)
731 parent->max_prio = tm_node_child->priority;
739 nix_tm_node_add_to_list(struct otx2_eth_dev *dev, uint32_t node_id,
740 uint32_t parent_node_id, uint32_t priority,
741 uint32_t weight, uint16_t hw_lvl,
742 uint16_t lvl, bool user,
743 struct rte_tm_node_params *params)
745 struct otx2_nix_tm_shaper_profile *profile;
746 struct otx2_nix_tm_node *tm_node, *parent_node;
747 struct shaper_params cir, pir;
750 profile_id = params->shaper_profile_id;
751 profile = nix_tm_shaper_profile_search(dev, profile_id);
753 parent_node = nix_tm_node_search(dev, parent_node_id, user);
755 tm_node = rte_zmalloc("otx2_nix_tm_node",
756 sizeof(struct otx2_nix_tm_node), 0);
761 tm_node->hw_lvl = hw_lvl;
763 /* Maintain minimum weight */
767 tm_node->id = node_id;
768 tm_node->priority = priority;
769 tm_node->weight = weight;
770 tm_node->rr_prio = 0xf;
771 tm_node->max_prio = UINT32_MAX;
772 tm_node->hw_id = UINT32_MAX;
775 tm_node->flags = NIX_TM_NODE_USER;
776 rte_memcpy(&tm_node->params, params, sizeof(struct rte_tm_node_params));
779 profile->reference_count++;
781 memset(&cir, 0, sizeof(cir));
782 memset(&pir, 0, sizeof(pir));
783 shaper_config_to_nix(profile, &cir, &pir);
785 tm_node->parent = parent_node;
786 tm_node->parent_hw_id = UINT32_MAX;
787 /* C0 doesn't support STALL when both PIR & CIR are enabled */
788 if (lvl < OTX2_TM_LVL_QUEUE &&
789 otx2_dev_is_96xx_Cx(dev) &&
790 pir.rate && cir.rate)
791 tm_node->red_algo = NIX_REDALG_DISCARD;
793 tm_node->red_algo = NIX_REDALG_STD;
795 TAILQ_INSERT_TAIL(&dev->node_list, tm_node, node);
801 nix_tm_clear_shaper_profiles(struct otx2_eth_dev *dev)
803 struct otx2_nix_tm_shaper_profile *shaper_profile;
805 while ((shaper_profile = TAILQ_FIRST(&dev->shaper_profile_list))) {
806 if (shaper_profile->reference_count)
807 otx2_tm_dbg("Shaper profile %u has non zero references",
808 shaper_profile->shaper_profile_id);
809 TAILQ_REMOVE(&dev->shaper_profile_list, shaper_profile, shaper);
810 rte_free(shaper_profile);
817 nix_clear_path_xoff(struct otx2_eth_dev *dev,
818 struct otx2_nix_tm_node *tm_node)
820 struct nix_txschq_config *req;
821 struct otx2_nix_tm_node *p;
824 /* Manipulating SW_XOFF not supported on Ax */
825 if (otx2_dev_is_Ax(dev))
828 /* Enable nodes in path for flush to succeed */
829 if (!nix_tm_is_leaf(dev, tm_node->lvl))
834 if (!(p->flags & NIX_TM_NODE_ENABLED) &&
835 (p->flags & NIX_TM_NODE_HWRES)) {
836 req = otx2_mbox_alloc_msg_nix_txschq_cfg(dev->mbox);
837 req->lvl = p->hw_lvl;
838 req->num_regs = prepare_tm_sw_xoff(p, false, req->reg,
840 rc = otx2_mbox_process(dev->mbox);
844 p->flags |= NIX_TM_NODE_ENABLED;
853 nix_smq_xoff(struct otx2_eth_dev *dev,
854 struct otx2_nix_tm_node *tm_node,
857 struct otx2_mbox *mbox = dev->mbox;
858 struct nix_txschq_config *req;
862 smq = tm_node->hw_id;
863 otx2_tm_dbg("Setting SMQ %u XOFF/FLUSH to %s", smq,
864 enable ? "enable" : "disable");
866 rc = nix_clear_path_xoff(dev, tm_node);
870 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
871 req->lvl = NIX_TXSCH_LVL_SMQ;
874 req->reg[0] = NIX_AF_SMQX_CFG(smq);
875 req->regval[0] = enable ? (BIT_ULL(50) | BIT_ULL(49)) : 0;
876 req->regval_mask[0] = enable ?
877 ~(BIT_ULL(50) | BIT_ULL(49)) : ~BIT_ULL(50);
879 return otx2_mbox_process(mbox);
883 otx2_nix_sq_sqb_aura_fc(void *__txq, bool enable)
885 struct otx2_eth_txq *txq = __txq;
886 struct npa_aq_enq_req *req;
887 struct npa_aq_enq_rsp *rsp;
888 struct otx2_npa_lf *lf;
889 struct otx2_mbox *mbox;
890 uint64_t aura_handle;
893 otx2_tm_dbg("Setting SQ %u SQB aura FC to %s", txq->sq,
894 enable ? "enable" : "disable");
896 lf = otx2_npa_lf_obj_get();
900 /* Set/clear sqb aura fc_ena */
901 aura_handle = txq->sqb_pool->pool_id;
902 req = otx2_mbox_alloc_msg_npa_aq_enq(mbox);
904 req->aura_id = npa_lf_aura_handle_to_aura(aura_handle);
905 req->ctype = NPA_AQ_CTYPE_AURA;
906 req->op = NPA_AQ_INSTOP_WRITE;
907 /* Below is not needed for aura writes but AF driver needs it */
908 /* AF will translate to associated poolctx */
909 req->aura.pool_addr = req->aura_id;
911 req->aura.fc_ena = enable;
912 req->aura_mask.fc_ena = 1;
914 rc = otx2_mbox_process(mbox);
918 /* Read back npa aura ctx */
919 req = otx2_mbox_alloc_msg_npa_aq_enq(mbox);
921 req->aura_id = npa_lf_aura_handle_to_aura(aura_handle);
922 req->ctype = NPA_AQ_CTYPE_AURA;
923 req->op = NPA_AQ_INSTOP_READ;
925 rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
929 /* Init when enabled as there might be no triggers */
931 *(volatile uint64_t *)txq->fc_mem = rsp->aura.count;
933 *(volatile uint64_t *)txq->fc_mem = txq->nb_sqb_bufs;
934 /* Sync write barrier */
941 nix_txq_flush_sq_spin(struct otx2_eth_txq *txq)
943 uint16_t sqb_cnt, head_off, tail_off;
944 struct otx2_eth_dev *dev = txq->dev;
945 uint64_t wdata, val, prev;
946 uint16_t sq = txq->sq;
948 uint64_t timeout;/* 10's of usec */
950 /* Wait for enough time based on shaper min rate */
951 timeout = (txq->qconf.nb_desc * NIX_MAX_HW_FRS * 8 * 1E5);
952 timeout = timeout / dev->tm_rate_min;
956 wdata = ((uint64_t)sq << 32);
957 regaddr = (int64_t *)(dev->base + NIX_LF_SQ_OP_STATUS);
958 val = otx2_atomic64_add_nosync(wdata, regaddr);
960 /* Spin multiple iterations as "txq->fc_cache_pkts" can still
961 * have space to send pkts even though fc_mem is disabled
967 val = otx2_atomic64_add_nosync(wdata, regaddr);
968 /* Continue on error */
969 if (val & BIT_ULL(63))
975 sqb_cnt = val & 0xFFFF;
976 head_off = (val >> 20) & 0x3F;
977 tail_off = (val >> 28) & 0x3F;
979 /* SQ reached quiescent state */
980 if (sqb_cnt <= 1 && head_off == tail_off &&
981 (*txq->fc_mem == txq->nb_sqb_bufs)) {
996 /* Flush and disable tx queue and its parent SMQ */
997 int otx2_nix_sq_flush_pre(void *_txq, bool dev_started)
999 struct otx2_nix_tm_node *tm_node, *sibling;
1000 struct otx2_eth_txq *txq;
1001 struct otx2_eth_dev *dev;
1010 user = !!(dev->tm_flags & NIX_TM_COMMITTED);
1012 /* Find the node for this SQ */
1013 tm_node = nix_tm_node_search(dev, sq, user);
1014 if (!tm_node || !(tm_node->flags & NIX_TM_NODE_ENABLED)) {
1015 otx2_err("Invalid node/state for sq %u", sq);
1019 /* Enable CGX RXTX to drain pkts */
1021 /* Though it enables both RX MCAM Entries and CGX Link
1022 * we assume all the rx queues are stopped way back.
1024 otx2_mbox_alloc_msg_nix_lf_start_rx(dev->mbox);
1025 rc = otx2_mbox_process(dev->mbox);
1027 otx2_err("cgx start failed, rc=%d", rc);
1032 /* Disable smq xoff for case it was enabled earlier */
1033 rc = nix_smq_xoff(dev, tm_node->parent, false);
1035 otx2_err("Failed to enable smq %u, rc=%d",
1036 tm_node->parent->hw_id, rc);
1040 /* As per HRM, to disable an SQ, all other SQ's
1041 * that feed to same SMQ must be paused before SMQ flush.
1043 TAILQ_FOREACH(sibling, &dev->node_list, node) {
1044 if (sibling->parent != tm_node->parent)
1046 if (!(sibling->flags & NIX_TM_NODE_ENABLED))
1050 txq = dev->eth_dev->data->tx_queues[sq];
1054 rc = otx2_nix_sq_sqb_aura_fc(txq, false);
1056 otx2_err("Failed to disable sqb aura fc, rc=%d", rc);
1060 /* Wait for sq entries to be flushed */
1061 rc = nix_txq_flush_sq_spin(txq);
1063 otx2_err("Failed to drain sq %u, rc=%d\n", txq->sq, rc);
1068 tm_node->flags &= ~NIX_TM_NODE_ENABLED;
1070 /* Disable and flush */
1071 rc = nix_smq_xoff(dev, tm_node->parent, true);
1073 otx2_err("Failed to disable smq %u, rc=%d",
1074 tm_node->parent->hw_id, rc);
1078 /* Restore cgx state */
1080 otx2_mbox_alloc_msg_nix_lf_stop_rx(dev->mbox);
1081 rc |= otx2_mbox_process(dev->mbox);
1087 int otx2_nix_sq_flush_post(void *_txq)
1089 struct otx2_nix_tm_node *tm_node, *sibling;
1090 struct otx2_eth_txq *txq = _txq;
1091 struct otx2_eth_txq *s_txq;
1092 struct otx2_eth_dev *dev;
1100 user = !!(dev->tm_flags & NIX_TM_COMMITTED);
1102 /* Find the node for this SQ */
1103 tm_node = nix_tm_node_search(dev, sq, user);
1105 otx2_err("Invalid node for sq %u", sq);
1109 /* Enable all the siblings back */
1110 TAILQ_FOREACH(sibling, &dev->node_list, node) {
1111 if (sibling->parent != tm_node->parent)
1114 if (sibling->id == sq)
1117 if (!(sibling->flags & NIX_TM_NODE_ENABLED))
1121 s_txq = dev->eth_dev->data->tx_queues[s_sq];
1126 /* Enable back if any SQ is still present */
1127 rc = nix_smq_xoff(dev, tm_node->parent, false);
1129 otx2_err("Failed to enable smq %u, rc=%d",
1130 tm_node->parent->hw_id, rc);
1136 rc = otx2_nix_sq_sqb_aura_fc(s_txq, true);
1138 otx2_err("Failed to enable sqb aura fc, rc=%d", rc);
1147 nix_sq_sched_data(struct otx2_eth_dev *dev,
1148 struct otx2_nix_tm_node *tm_node,
1149 bool rr_quantum_only)
1151 struct rte_eth_dev *eth_dev = dev->eth_dev;
1152 struct otx2_mbox *mbox = dev->mbox;
1153 uint16_t sq = tm_node->id, smq;
1154 struct nix_aq_enq_req *req;
1155 uint64_t rr_quantum;
1158 smq = tm_node->parent->hw_id;
1159 rr_quantum = NIX_TM_WEIGHT_TO_RR_QUANTUM(tm_node->weight);
1161 if (rr_quantum_only)
1162 otx2_tm_dbg("Update sq(%u) rr_quantum 0x%"PRIx64, sq, rr_quantum);
1164 otx2_tm_dbg("Enabling sq(%u)->smq(%u), rr_quantum 0x%"PRIx64,
1165 sq, smq, rr_quantum);
1167 if (sq > eth_dev->data->nb_tx_queues)
1170 req = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
1172 req->ctype = NIX_AQ_CTYPE_SQ;
1173 req->op = NIX_AQ_INSTOP_WRITE;
1175 /* smq update only when needed */
1176 if (!rr_quantum_only) {
1178 req->sq_mask.smq = ~req->sq_mask.smq;
1180 req->sq.smq_rr_quantum = rr_quantum;
1181 req->sq_mask.smq_rr_quantum = ~req->sq_mask.smq_rr_quantum;
1183 rc = otx2_mbox_process(mbox);
1185 otx2_err("Failed to set smq, rc=%d", rc);
1189 int otx2_nix_sq_enable(void *_txq)
1191 struct otx2_eth_txq *txq = _txq;
1194 /* Enable sqb_aura fc */
1195 rc = otx2_nix_sq_sqb_aura_fc(txq, true);
1197 otx2_err("Failed to enable sqb aura fc, rc=%d", rc);
1205 nix_tm_free_resources(struct otx2_eth_dev *dev, uint32_t flags_mask,
1206 uint32_t flags, bool hw_only)
1208 struct otx2_nix_tm_shaper_profile *profile;
1209 struct otx2_nix_tm_node *tm_node, *next_node;
1210 struct otx2_mbox *mbox = dev->mbox;
1211 struct nix_txsch_free_req *req;
1212 uint32_t profile_id;
1215 next_node = TAILQ_FIRST(&dev->node_list);
1217 tm_node = next_node;
1218 next_node = TAILQ_NEXT(tm_node, node);
1220 /* Check for only requested nodes */
1221 if ((tm_node->flags & flags_mask) != flags)
1224 if (!nix_tm_is_leaf(dev, tm_node->lvl) &&
1225 tm_node->hw_lvl != NIX_TXSCH_LVL_TL1 &&
1226 tm_node->flags & NIX_TM_NODE_HWRES) {
1227 /* Free specific HW resource */
1228 otx2_tm_dbg("Free hwres %s(%u) lvl %u id %u (%p)",
1229 nix_hwlvl2str(tm_node->hw_lvl),
1230 tm_node->hw_id, tm_node->lvl,
1231 tm_node->id, tm_node);
1233 rc = nix_clear_path_xoff(dev, tm_node);
1237 req = otx2_mbox_alloc_msg_nix_txsch_free(mbox);
1239 req->schq_lvl = tm_node->hw_lvl;
1240 req->schq = tm_node->hw_id;
1241 rc = otx2_mbox_process(mbox);
1244 tm_node->flags &= ~NIX_TM_NODE_HWRES;
1247 /* Leave software elements if needed */
1251 otx2_tm_dbg("Free node lvl %u id %u (%p)",
1252 tm_node->lvl, tm_node->id, tm_node);
1254 profile_id = tm_node->params.shaper_profile_id;
1255 profile = nix_tm_shaper_profile_search(dev, profile_id);
1257 profile->reference_count--;
1259 TAILQ_REMOVE(&dev->node_list, tm_node, node);
1264 /* Free all hw resources */
1265 req = otx2_mbox_alloc_msg_nix_txsch_free(mbox);
1266 req->flags = TXSCHQ_FREE_ALL;
1268 return otx2_mbox_process(mbox);
1275 nix_tm_copy_rsp_to_dev(struct otx2_eth_dev *dev,
1276 struct nix_txsch_alloc_rsp *rsp)
1281 for (lvl = 0; lvl < NIX_TXSCH_LVL_CNT; lvl++) {
1282 for (schq = 0; schq < MAX_TXSCHQ_PER_FUNC; schq++) {
1283 dev->txschq_list[lvl][schq] = rsp->schq_list[lvl][schq];
1284 dev->txschq_contig_list[lvl][schq] =
1285 rsp->schq_contig_list[lvl][schq];
1288 dev->txschq[lvl] = rsp->schq[lvl];
1289 dev->txschq_contig[lvl] = rsp->schq_contig[lvl];
1295 nix_tm_assign_id_to_node(struct otx2_eth_dev *dev,
1296 struct otx2_nix_tm_node *child,
1297 struct otx2_nix_tm_node *parent)
1299 uint32_t hw_id, schq_con_index, prio_offset;
1300 uint32_t l_id, schq_index;
1302 otx2_tm_dbg("Assign hw id for child node %s lvl %u id %u (%p)",
1303 nix_hwlvl2str(child->hw_lvl), child->lvl, child->id, child);
1305 child->flags |= NIX_TM_NODE_HWRES;
1307 /* Process root nodes */
1308 if (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL2 &&
1309 child->hw_lvl == dev->otx2_tm_root_lvl && !parent) {
1311 uint32_t tschq_con_index;
1313 l_id = child->hw_lvl;
1314 tschq_con_index = dev->txschq_contig_index[l_id];
1315 hw_id = dev->txschq_contig_list[l_id][tschq_con_index];
1316 child->hw_id = hw_id;
1317 dev->txschq_contig_index[l_id]++;
1318 /* Update TL1 hw_id for its parent for config purpose */
1319 idx = dev->txschq_index[NIX_TXSCH_LVL_TL1]++;
1320 hw_id = dev->txschq_list[NIX_TXSCH_LVL_TL1][idx];
1321 child->parent_hw_id = hw_id;
1324 if (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL1 &&
1325 child->hw_lvl == dev->otx2_tm_root_lvl && !parent) {
1326 uint32_t tschq_con_index;
1328 l_id = child->hw_lvl;
1329 tschq_con_index = dev->txschq_index[l_id];
1330 hw_id = dev->txschq_list[l_id][tschq_con_index];
1331 child->hw_id = hw_id;
1332 dev->txschq_index[l_id]++;
1336 /* Process children with parents */
1337 l_id = child->hw_lvl;
1338 schq_index = dev->txschq_index[l_id];
1339 schq_con_index = dev->txschq_contig_index[l_id];
1341 if (child->priority == parent->rr_prio) {
1342 hw_id = dev->txschq_list[l_id][schq_index];
1343 child->hw_id = hw_id;
1344 child->parent_hw_id = parent->hw_id;
1345 dev->txschq_index[l_id]++;
1347 prio_offset = schq_con_index + child->priority;
1348 hw_id = dev->txschq_contig_list[l_id][prio_offset];
1349 child->hw_id = hw_id;
1355 nix_tm_assign_hw_id(struct otx2_eth_dev *dev)
1357 struct otx2_nix_tm_node *parent, *child;
1358 uint32_t child_hw_lvl, con_index_inc, i;
1360 for (i = NIX_TXSCH_LVL_TL1; i > 0; i--) {
1361 TAILQ_FOREACH(parent, &dev->node_list, node) {
1362 child_hw_lvl = parent->hw_lvl - 1;
1363 if (parent->hw_lvl != i)
1365 TAILQ_FOREACH(child, &dev->node_list, node) {
1368 if (child->parent->id != parent->id)
1370 nix_tm_assign_id_to_node(dev, child, parent);
1373 con_index_inc = parent->max_prio + 1;
1374 dev->txschq_contig_index[child_hw_lvl] += con_index_inc;
1377 * Explicitly assign id to parent node if it
1378 * doesn't have a parent
1380 if (parent->hw_lvl == dev->otx2_tm_root_lvl)
1381 nix_tm_assign_id_to_node(dev, parent, NULL);
1388 nix_tm_count_req_schq(struct otx2_eth_dev *dev,
1389 struct nix_txsch_alloc_req *req, uint8_t lvl)
1391 struct otx2_nix_tm_node *tm_node;
1392 uint8_t contig_count;
1394 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1395 if (lvl == tm_node->hw_lvl) {
1396 req->schq[lvl - 1] += tm_node->rr_num;
1397 if (tm_node->max_prio != UINT32_MAX) {
1398 contig_count = tm_node->max_prio + 1;
1399 req->schq_contig[lvl - 1] += contig_count;
1402 if (lvl == dev->otx2_tm_root_lvl &&
1403 dev->otx2_tm_root_lvl && lvl == NIX_TXSCH_LVL_TL2 &&
1404 tm_node->hw_lvl == dev->otx2_tm_root_lvl) {
1405 req->schq_contig[dev->otx2_tm_root_lvl]++;
1409 req->schq[NIX_TXSCH_LVL_TL1] = 1;
1410 req->schq_contig[NIX_TXSCH_LVL_TL1] = 0;
1416 nix_tm_prepare_txschq_req(struct otx2_eth_dev *dev,
1417 struct nix_txsch_alloc_req *req)
1421 for (i = NIX_TXSCH_LVL_TL1; i > 0; i--)
1422 nix_tm_count_req_schq(dev, req, i);
1424 for (i = 0; i < NIX_TXSCH_LVL_CNT; i++) {
1425 dev->txschq_index[i] = 0;
1426 dev->txschq_contig_index[i] = 0;
1432 nix_tm_send_txsch_alloc_msg(struct otx2_eth_dev *dev)
1434 struct otx2_mbox *mbox = dev->mbox;
1435 struct nix_txsch_alloc_req *req;
1436 struct nix_txsch_alloc_rsp *rsp;
1439 req = otx2_mbox_alloc_msg_nix_txsch_alloc(mbox);
1441 rc = nix_tm_prepare_txschq_req(dev, req);
1445 rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
1449 nix_tm_copy_rsp_to_dev(dev, rsp);
1450 dev->link_cfg_lvl = rsp->link_cfg_lvl;
1452 nix_tm_assign_hw_id(dev);
1457 nix_tm_alloc_resources(struct rte_eth_dev *eth_dev, bool xmit_enable)
1459 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1460 struct otx2_nix_tm_node *tm_node;
1461 struct otx2_eth_txq *txq;
1465 nix_tm_update_parent_info(dev);
1467 rc = nix_tm_send_txsch_alloc_msg(dev);
1469 otx2_err("TM failed to alloc tm resources=%d", rc);
1473 rc = nix_tm_txsch_reg_config(dev);
1475 otx2_err("TM failed to configure sched registers=%d", rc);
1479 /* Trigger MTU recalculate as SMQ needs MTU conf */
1480 if (eth_dev->data->dev_started && eth_dev->data->nb_rx_queues) {
1481 rc = otx2_nix_recalc_mtu(eth_dev);
1483 otx2_err("TM MTU update failed, rc=%d", rc);
1488 /* Mark all non-leaf's as enabled */
1489 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1490 if (!nix_tm_is_leaf(dev, tm_node->lvl))
1491 tm_node->flags |= NIX_TM_NODE_ENABLED;
1497 /* Update SQ Sched Data while SQ is idle */
1498 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1499 if (!nix_tm_is_leaf(dev, tm_node->lvl))
1502 rc = nix_sq_sched_data(dev, tm_node, false);
1504 otx2_err("SQ %u sched update failed, rc=%d",
1510 /* Finally XON all SMQ's */
1511 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1512 if (tm_node->hw_lvl != NIX_TXSCH_LVL_SMQ)
1515 rc = nix_smq_xoff(dev, tm_node, false);
1517 otx2_err("Failed to enable smq %u, rc=%d",
1518 tm_node->hw_id, rc);
1523 /* Enable xmit as all the topology is ready */
1524 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1525 if (!nix_tm_is_leaf(dev, tm_node->lvl))
1529 txq = eth_dev->data->tx_queues[sq];
1531 rc = otx2_nix_sq_enable(txq);
1533 otx2_err("TM sw xon failed on SQ %u, rc=%d",
1537 tm_node->flags |= NIX_TM_NODE_ENABLED;
1544 send_tm_reqval(struct otx2_mbox *mbox,
1545 struct nix_txschq_config *req,
1546 struct rte_tm_error *error)
1550 if (!req->num_regs ||
1551 req->num_regs > MAX_REGS_PER_MBOX_MSG) {
1552 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
1553 error->message = "invalid config";
1557 rc = otx2_mbox_process(mbox);
1559 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
1560 error->message = "unexpected fatal error";
1566 nix_tm_lvl2nix(struct otx2_eth_dev *dev, uint32_t lvl)
1568 if (nix_tm_have_tl1_access(dev)) {
1570 case OTX2_TM_LVL_ROOT:
1571 return NIX_TXSCH_LVL_TL1;
1572 case OTX2_TM_LVL_SCH1:
1573 return NIX_TXSCH_LVL_TL2;
1574 case OTX2_TM_LVL_SCH2:
1575 return NIX_TXSCH_LVL_TL3;
1576 case OTX2_TM_LVL_SCH3:
1577 return NIX_TXSCH_LVL_TL4;
1578 case OTX2_TM_LVL_SCH4:
1579 return NIX_TXSCH_LVL_SMQ;
1581 return NIX_TXSCH_LVL_CNT;
1585 case OTX2_TM_LVL_ROOT:
1586 return NIX_TXSCH_LVL_TL2;
1587 case OTX2_TM_LVL_SCH1:
1588 return NIX_TXSCH_LVL_TL3;
1589 case OTX2_TM_LVL_SCH2:
1590 return NIX_TXSCH_LVL_TL4;
1591 case OTX2_TM_LVL_SCH3:
1592 return NIX_TXSCH_LVL_SMQ;
1594 return NIX_TXSCH_LVL_CNT;
1600 nix_max_prio(struct otx2_eth_dev *dev, uint16_t hw_lvl)
1602 if (hw_lvl >= NIX_TXSCH_LVL_CNT)
1605 /* MDQ doesn't support SP */
1606 if (hw_lvl == NIX_TXSCH_LVL_MDQ)
1609 /* PF's TL1 with VF's enabled doesn't support SP */
1610 if (hw_lvl == NIX_TXSCH_LVL_TL1 &&
1611 (dev->otx2_tm_root_lvl == NIX_TXSCH_LVL_TL2 ||
1612 (dev->tm_flags & NIX_TM_TL1_NO_SP)))
1615 return TXSCH_TLX_SP_PRIO_MAX - 1;
1620 validate_prio(struct otx2_eth_dev *dev, uint32_t lvl,
1621 uint32_t parent_id, uint32_t priority,
1622 struct rte_tm_error *error)
1624 uint8_t priorities[TXSCH_TLX_SP_PRIO_MAX];
1625 struct otx2_nix_tm_node *tm_node;
1626 uint32_t rr_num = 0;
1629 /* Validate priority against max */
1630 if (priority > nix_max_prio(dev, nix_tm_lvl2nix(dev, lvl - 1))) {
1631 error->type = RTE_TM_ERROR_TYPE_CAPABILITIES;
1632 error->message = "unsupported priority value";
1636 if (parent_id == RTE_TM_NODE_ID_NULL)
1639 memset(priorities, 0, TXSCH_TLX_SP_PRIO_MAX);
1640 priorities[priority] = 1;
1642 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1643 if (!tm_node->parent)
1646 if (!(tm_node->flags & NIX_TM_NODE_USER))
1649 if (tm_node->parent->id != parent_id)
1652 priorities[tm_node->priority]++;
1655 for (i = 0; i < TXSCH_TLX_SP_PRIO_MAX; i++)
1656 if (priorities[i] > 1)
1659 /* At max, one rr groups per parent */
1661 error->type = RTE_TM_ERROR_TYPE_NODE_PRIORITY;
1662 error->message = "multiple DWRR node priority";
1666 /* Check for previous priority to avoid holes in priorities */
1667 if (priority && !priorities[priority - 1]) {
1668 error->type = RTE_TM_ERROR_TYPE_NODE_PRIORITY;
1669 error->message = "priority not in order";
1677 read_tm_reg(struct otx2_mbox *mbox, uint64_t reg,
1678 uint64_t *regval, uint32_t hw_lvl)
1680 volatile struct nix_txschq_config *req;
1681 struct nix_txschq_config *rsp;
1684 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
1690 rc = otx2_mbox_process_msg(mbox, (void **)&rsp);
1693 *regval = rsp->regval[0];
1697 /* Search for min rate in topology */
1699 nix_tm_shaper_profile_update_min(struct otx2_eth_dev *dev)
1701 struct otx2_nix_tm_shaper_profile *profile;
1702 uint64_t rate_min = 1E9; /* 1 Gbps */
1704 TAILQ_FOREACH(profile, &dev->shaper_profile_list, shaper) {
1705 if (profile->params.peak.rate &&
1706 profile->params.peak.rate < rate_min)
1707 rate_min = profile->params.peak.rate;
1709 if (profile->params.committed.rate &&
1710 profile->params.committed.rate < rate_min)
1711 rate_min = profile->params.committed.rate;
1714 dev->tm_rate_min = rate_min;
1718 nix_xmit_disable(struct rte_eth_dev *eth_dev)
1720 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1721 uint16_t sq_cnt = eth_dev->data->nb_tx_queues;
1722 uint16_t sqb_cnt, head_off, tail_off;
1723 struct otx2_nix_tm_node *tm_node;
1724 struct otx2_eth_txq *txq;
1725 uint64_t wdata, val;
1728 otx2_tm_dbg("Disabling xmit on %s", eth_dev->data->name);
1730 /* Enable CGX RXTX to drain pkts */
1731 if (!eth_dev->data->dev_started) {
1732 otx2_mbox_alloc_msg_nix_lf_start_rx(dev->mbox);
1733 rc = otx2_mbox_process(dev->mbox);
1739 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1740 if (tm_node->hw_lvl != NIX_TXSCH_LVL_SMQ)
1742 if (!(tm_node->flags & NIX_TM_NODE_HWRES))
1745 rc = nix_smq_xoff(dev, tm_node, false);
1747 otx2_err("Failed to enable smq %u, rc=%d",
1748 tm_node->hw_id, rc);
1753 /* Flush all tx queues */
1754 for (i = 0; i < sq_cnt; i++) {
1755 txq = eth_dev->data->tx_queues[i];
1757 rc = otx2_nix_sq_sqb_aura_fc(txq, false);
1759 otx2_err("Failed to disable sqb aura fc, rc=%d", rc);
1763 /* Wait for sq entries to be flushed */
1764 rc = nix_txq_flush_sq_spin(txq);
1766 otx2_err("Failed to drain sq, rc=%d\n", rc);
1771 /* XOFF & Flush all SMQ's. HRM mandates
1772 * all SQ's empty before SMQ flush is issued.
1774 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
1775 if (tm_node->hw_lvl != NIX_TXSCH_LVL_SMQ)
1777 if (!(tm_node->flags & NIX_TM_NODE_HWRES))
1780 rc = nix_smq_xoff(dev, tm_node, true);
1782 otx2_err("Failed to enable smq %u, rc=%d",
1783 tm_node->hw_id, rc);
1788 /* Verify sanity of all tx queues */
1789 for (i = 0; i < sq_cnt; i++) {
1790 txq = eth_dev->data->tx_queues[i];
1792 wdata = ((uint64_t)txq->sq << 32);
1793 val = otx2_atomic64_add_nosync(wdata,
1794 (int64_t *)(dev->base + NIX_LF_SQ_OP_STATUS));
1796 sqb_cnt = val & 0xFFFF;
1797 head_off = (val >> 20) & 0x3F;
1798 tail_off = (val >> 28) & 0x3F;
1800 if (sqb_cnt > 1 || head_off != tail_off ||
1801 (*txq->fc_mem != txq->nb_sqb_bufs))
1802 otx2_err("Failed to gracefully flush sq %u", txq->sq);
1806 /* restore cgx state */
1807 if (!eth_dev->data->dev_started) {
1808 otx2_mbox_alloc_msg_nix_lf_stop_rx(dev->mbox);
1809 rc |= otx2_mbox_process(dev->mbox);
1816 otx2_nix_tm_node_type_get(struct rte_eth_dev *eth_dev, uint32_t node_id,
1817 int *is_leaf, struct rte_tm_error *error)
1819 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1820 struct otx2_nix_tm_node *tm_node;
1822 if (is_leaf == NULL) {
1823 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
1827 tm_node = nix_tm_node_search(dev, node_id, true);
1828 if (node_id == RTE_TM_NODE_ID_NULL || !tm_node) {
1829 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
1832 if (nix_tm_is_leaf(dev, tm_node->lvl))
1841 otx2_nix_tm_shaper_profile_add(struct rte_eth_dev *eth_dev,
1842 uint32_t profile_id,
1843 struct rte_tm_shaper_params *params,
1844 struct rte_tm_error *error)
1846 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1847 struct otx2_nix_tm_shaper_profile *profile;
1849 profile = nix_tm_shaper_profile_search(dev, profile_id);
1851 error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_ID;
1852 error->message = "shaper profile ID exist";
1856 /* Committed rate and burst size can be enabled/disabled */
1857 if (params->committed.size || params->committed.rate) {
1858 if (params->committed.size < MIN_SHAPER_BURST ||
1859 params->committed.size > MAX_SHAPER_BURST) {
1861 RTE_TM_ERROR_TYPE_SHAPER_PROFILE_COMMITTED_SIZE;
1863 } else if (!shaper_rate_to_nix(params->committed.rate * 8,
1864 NULL, NULL, NULL)) {
1866 RTE_TM_ERROR_TYPE_SHAPER_PROFILE_COMMITTED_RATE;
1867 error->message = "shaper committed rate invalid";
1872 /* Peak rate and burst size can be enabled/disabled */
1873 if (params->peak.size || params->peak.rate) {
1874 if (params->peak.size < MIN_SHAPER_BURST ||
1875 params->peak.size > MAX_SHAPER_BURST) {
1877 RTE_TM_ERROR_TYPE_SHAPER_PROFILE_PEAK_SIZE;
1879 } else if (!shaper_rate_to_nix(params->peak.rate * 8,
1880 NULL, NULL, NULL)) {
1882 RTE_TM_ERROR_TYPE_SHAPER_PROFILE_COMMITTED_RATE;
1883 error->message = "shaper peak rate invalid";
1888 profile = rte_zmalloc("otx2_nix_tm_shaper_profile",
1889 sizeof(struct otx2_nix_tm_shaper_profile), 0);
1893 profile->shaper_profile_id = profile_id;
1894 rte_memcpy(&profile->params, params,
1895 sizeof(struct rte_tm_shaper_params));
1896 TAILQ_INSERT_TAIL(&dev->shaper_profile_list, profile, shaper);
1898 otx2_tm_dbg("Added TM shaper profile %u, "
1899 " pir %" PRIu64 " , pbs %" PRIu64 ", cir %" PRIu64
1900 ", cbs %" PRIu64 " , adj %u",
1902 params->peak.rate * 8,
1904 params->committed.rate * 8,
1905 params->committed.size,
1906 params->pkt_length_adjust);
1908 /* Translate rate as bits per second */
1909 profile->params.peak.rate = profile->params.peak.rate * 8;
1910 profile->params.committed.rate = profile->params.committed.rate * 8;
1911 /* Always use PIR for single rate shaping */
1912 if (!params->peak.rate && params->committed.rate) {
1913 profile->params.peak = profile->params.committed;
1914 memset(&profile->params.committed, 0,
1915 sizeof(profile->params.committed));
1918 /* update min rate */
1919 nix_tm_shaper_profile_update_min(dev);
1924 otx2_nix_tm_shaper_profile_delete(struct rte_eth_dev *eth_dev,
1925 uint32_t profile_id,
1926 struct rte_tm_error *error)
1928 struct otx2_nix_tm_shaper_profile *profile;
1929 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1931 profile = nix_tm_shaper_profile_search(dev, profile_id);
1934 error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_ID;
1935 error->message = "shaper profile ID not exist";
1939 if (profile->reference_count) {
1940 error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE;
1941 error->message = "shaper profile in use";
1945 otx2_tm_dbg("Removing TM shaper profile %u", profile_id);
1946 TAILQ_REMOVE(&dev->shaper_profile_list, profile, shaper);
1949 /* update min rate */
1950 nix_tm_shaper_profile_update_min(dev);
1955 otx2_nix_tm_node_add(struct rte_eth_dev *eth_dev, uint32_t node_id,
1956 uint32_t parent_node_id, uint32_t priority,
1957 uint32_t weight, uint32_t lvl,
1958 struct rte_tm_node_params *params,
1959 struct rte_tm_error *error)
1961 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1962 struct otx2_nix_tm_node *parent_node;
1963 int rc, clear_on_fail = 0;
1964 uint32_t exp_next_lvl;
1967 /* we don't support dynamic updates */
1968 if (dev->tm_flags & NIX_TM_COMMITTED) {
1969 error->type = RTE_TM_ERROR_TYPE_CAPABILITIES;
1970 error->message = "dynamic update not supported";
1974 /* Leaf nodes have to be same priority */
1975 if (nix_tm_is_leaf(dev, lvl) && priority != 0) {
1976 error->type = RTE_TM_ERROR_TYPE_CAPABILITIES;
1977 error->message = "queue shapers must be priority 0";
1981 parent_node = nix_tm_node_search(dev, parent_node_id, true);
1983 /* find the right level */
1984 if (lvl == RTE_TM_NODE_LEVEL_ID_ANY) {
1985 if (parent_node_id == RTE_TM_NODE_ID_NULL) {
1986 lvl = OTX2_TM_LVL_ROOT;
1987 } else if (parent_node) {
1988 lvl = parent_node->lvl + 1;
1990 /* Neigher proper parent nor proper level id given */
1991 error->type = RTE_TM_ERROR_TYPE_NODE_PARENT_NODE_ID;
1992 error->message = "invalid parent node id";
1997 /* Translate rte_tm level id's to nix hw level id's */
1998 hw_lvl = nix_tm_lvl2nix(dev, lvl);
1999 if (hw_lvl == NIX_TXSCH_LVL_CNT &&
2000 !nix_tm_is_leaf(dev, lvl)) {
2001 error->type = RTE_TM_ERROR_TYPE_LEVEL_ID;
2002 error->message = "invalid level id";
2006 if (node_id < dev->tm_leaf_cnt)
2007 exp_next_lvl = NIX_TXSCH_LVL_SMQ;
2009 exp_next_lvl = hw_lvl + 1;
2011 /* Check if there is no parent node yet */
2012 if (hw_lvl != dev->otx2_tm_root_lvl &&
2013 (!parent_node || parent_node->hw_lvl != exp_next_lvl)) {
2014 error->type = RTE_TM_ERROR_TYPE_NODE_PARENT_NODE_ID;
2015 error->message = "invalid parent node id";
2019 /* Check if a node already exists */
2020 if (nix_tm_node_search(dev, node_id, true)) {
2021 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2022 error->message = "node already exists";
2026 /* Check if shaper profile exists for non leaf node */
2027 if (!nix_tm_is_leaf(dev, lvl) &&
2028 params->shaper_profile_id != RTE_TM_SHAPER_PROFILE_ID_NONE &&
2029 !nix_tm_shaper_profile_search(dev, params->shaper_profile_id)) {
2030 error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_ID;
2031 error->message = "invalid shaper profile";
2035 /* Check if there is second DWRR already in siblings or holes in prio */
2036 if (validate_prio(dev, lvl, parent_node_id, priority, error))
2039 if (weight > MAX_SCHED_WEIGHT) {
2040 error->type = RTE_TM_ERROR_TYPE_NODE_WEIGHT;
2041 error->message = "max weight exceeded";
2045 rc = nix_tm_node_add_to_list(dev, node_id, parent_node_id,
2046 priority, weight, hw_lvl,
2049 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2050 /* cleanup user added nodes */
2052 nix_tm_free_resources(dev, NIX_TM_NODE_USER,
2053 NIX_TM_NODE_USER, false);
2054 error->message = "failed to add node";
2057 error->type = RTE_TM_ERROR_TYPE_NONE;
2062 otx2_nix_tm_node_delete(struct rte_eth_dev *eth_dev, uint32_t node_id,
2063 struct rte_tm_error *error)
2065 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2066 struct otx2_nix_tm_node *tm_node, *child_node;
2067 struct otx2_nix_tm_shaper_profile *profile;
2068 uint32_t profile_id;
2070 /* we don't support dynamic updates yet */
2071 if (dev->tm_flags & NIX_TM_COMMITTED) {
2072 error->type = RTE_TM_ERROR_TYPE_CAPABILITIES;
2073 error->message = "hierarchy exists";
2077 if (node_id == RTE_TM_NODE_ID_NULL) {
2078 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2079 error->message = "invalid node id";
2083 tm_node = nix_tm_node_search(dev, node_id, true);
2085 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2086 error->message = "no such node";
2090 /* Check for any existing children */
2091 TAILQ_FOREACH(child_node, &dev->node_list, node) {
2092 if (child_node->parent == tm_node) {
2093 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2094 error->message = "children exist";
2099 /* Remove shaper profile reference */
2100 profile_id = tm_node->params.shaper_profile_id;
2101 profile = nix_tm_shaper_profile_search(dev, profile_id);
2102 profile->reference_count--;
2104 TAILQ_REMOVE(&dev->node_list, tm_node, node);
2110 nix_tm_node_suspend_resume(struct rte_eth_dev *eth_dev, uint32_t node_id,
2111 struct rte_tm_error *error, bool suspend)
2113 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2114 struct otx2_mbox *mbox = dev->mbox;
2115 struct otx2_nix_tm_node *tm_node;
2116 struct nix_txschq_config *req;
2120 tm_node = nix_tm_node_search(dev, node_id, true);
2122 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2123 error->message = "no such node";
2127 if (!(dev->tm_flags & NIX_TM_COMMITTED)) {
2128 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2129 error->message = "hierarchy doesn't exist";
2133 flags = tm_node->flags;
2134 flags = suspend ? (flags & ~NIX_TM_NODE_ENABLED) :
2135 (flags | NIX_TM_NODE_ENABLED);
2137 if (tm_node->flags == flags)
2140 /* send mbox for state change */
2141 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
2143 req->lvl = tm_node->hw_lvl;
2144 req->num_regs = prepare_tm_sw_xoff(tm_node, suspend,
2145 req->reg, req->regval);
2146 rc = send_tm_reqval(mbox, req, error);
2148 tm_node->flags = flags;
2153 otx2_nix_tm_node_suspend(struct rte_eth_dev *eth_dev, uint32_t node_id,
2154 struct rte_tm_error *error)
2156 return nix_tm_node_suspend_resume(eth_dev, node_id, error, true);
2160 otx2_nix_tm_node_resume(struct rte_eth_dev *eth_dev, uint32_t node_id,
2161 struct rte_tm_error *error)
2163 return nix_tm_node_suspend_resume(eth_dev, node_id, error, false);
2167 otx2_nix_tm_hierarchy_commit(struct rte_eth_dev *eth_dev,
2169 struct rte_tm_error *error)
2171 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2172 struct otx2_nix_tm_node *tm_node;
2173 uint32_t leaf_cnt = 0;
2176 if (dev->tm_flags & NIX_TM_COMMITTED) {
2177 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2178 error->message = "hierarchy exists";
2182 /* Check if we have all the leaf nodes */
2183 TAILQ_FOREACH(tm_node, &dev->node_list, node) {
2184 if (tm_node->flags & NIX_TM_NODE_USER &&
2185 tm_node->id < dev->tm_leaf_cnt)
2189 if (leaf_cnt != dev->tm_leaf_cnt) {
2190 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2191 error->message = "incomplete hierarchy";
2196 * Disable xmit will be enabled when
2197 * new topology is available.
2199 rc = nix_xmit_disable(eth_dev);
2201 otx2_err("failed to disable TX, rc=%d", rc);
2205 /* Delete default/ratelimit tree */
2206 if (dev->tm_flags & (NIX_TM_DEFAULT_TREE)) {
2207 rc = nix_tm_free_resources(dev, NIX_TM_NODE_USER, 0, false);
2209 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2210 error->message = "failed to free default resources";
2213 dev->tm_flags &= ~(NIX_TM_DEFAULT_TREE);
2216 /* Free up user alloc'ed resources */
2217 rc = nix_tm_free_resources(dev, NIX_TM_NODE_USER,
2218 NIX_TM_NODE_USER, true);
2220 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2221 error->message = "failed to free user resources";
2225 rc = nix_tm_alloc_resources(eth_dev, true);
2227 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2228 error->message = "alloc resources failed";
2229 /* TODO should we restore default config ? */
2231 nix_tm_free_resources(dev, 0, 0, false);
2235 error->type = RTE_TM_ERROR_TYPE_NONE;
2236 dev->tm_flags |= NIX_TM_COMMITTED;
2241 otx2_nix_tm_node_shaper_update(struct rte_eth_dev *eth_dev,
2243 uint32_t profile_id,
2244 struct rte_tm_error *error)
2246 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2247 struct otx2_nix_tm_shaper_profile *profile = NULL;
2248 struct otx2_mbox *mbox = dev->mbox;
2249 struct otx2_nix_tm_node *tm_node;
2250 struct nix_txschq_config *req;
2254 tm_node = nix_tm_node_search(dev, node_id, true);
2255 if (!tm_node || nix_tm_is_leaf(dev, tm_node->lvl)) {
2256 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2257 error->message = "invalid node";
2261 if (profile_id == tm_node->params.shaper_profile_id)
2264 if (profile_id != RTE_TM_SHAPER_PROFILE_ID_NONE) {
2265 profile = nix_tm_shaper_profile_search(dev, profile_id);
2267 error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_ID;
2268 error->message = "shaper profile ID not exist";
2273 tm_node->params.shaper_profile_id = profile_id;
2275 /* Nothing to do if not yet committed */
2276 if (!(dev->tm_flags & NIX_TM_COMMITTED))
2279 tm_node->flags &= ~NIX_TM_NODE_ENABLED;
2281 /* Flush the specific node with SW_XOFF */
2282 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
2283 req->lvl = tm_node->hw_lvl;
2284 k = prepare_tm_sw_xoff(tm_node, true, req->reg, req->regval);
2287 rc = send_tm_reqval(mbox, req, error);
2291 /* Update the PIR/CIR and clear SW XOFF */
2292 req = otx2_mbox_alloc_msg_nix_txschq_cfg(mbox);
2293 req->lvl = tm_node->hw_lvl;
2295 k = prepare_tm_shaper_reg(tm_node, profile, req->reg, req->regval);
2297 k += prepare_tm_sw_xoff(tm_node, false, &req->reg[k], &req->regval[k]);
2300 rc = send_tm_reqval(mbox, req, error);
2302 tm_node->flags |= NIX_TM_NODE_ENABLED;
2307 otx2_nix_tm_node_parent_update(struct rte_eth_dev *eth_dev,
2308 uint32_t node_id, uint32_t new_parent_id,
2309 uint32_t priority, uint32_t weight,
2310 struct rte_tm_error *error)
2312 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2313 struct otx2_nix_tm_node *tm_node, *sibling;
2314 struct otx2_nix_tm_node *new_parent;
2315 struct nix_txschq_config *req;
2319 if (!(dev->tm_flags & NIX_TM_COMMITTED)) {
2320 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2321 error->message = "hierarchy doesn't exist";
2325 tm_node = nix_tm_node_search(dev, node_id, true);
2327 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2328 error->message = "no such node";
2332 /* Parent id valid only for non root nodes */
2333 if (tm_node->hw_lvl != dev->otx2_tm_root_lvl) {
2334 new_parent = nix_tm_node_search(dev, new_parent_id, true);
2336 error->type = RTE_TM_ERROR_TYPE_NODE_PARENT_NODE_ID;
2337 error->message = "no such parent node";
2341 /* Current support is only for dynamic weight update */
2342 if (tm_node->parent != new_parent ||
2343 tm_node->priority != priority) {
2344 error->type = RTE_TM_ERROR_TYPE_NODE_PARENT_NODE_ID;
2345 error->message = "only weight update supported";
2350 /* Skip if no change */
2351 if (tm_node->weight == weight)
2354 tm_node->weight = weight;
2356 /* For leaf nodes, SQ CTX needs update */
2357 if (nix_tm_is_leaf(dev, tm_node->lvl)) {
2358 /* Update SQ quantum data on the fly */
2359 rc = nix_sq_sched_data(dev, tm_node, true);
2361 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2362 error->message = "sq sched data update failed";
2366 /* XOFF Parent node */
2367 req = otx2_mbox_alloc_msg_nix_txschq_cfg(dev->mbox);
2368 req->lvl = tm_node->parent->hw_lvl;
2369 req->num_regs = prepare_tm_sw_xoff(tm_node->parent, true,
2370 req->reg, req->regval);
2371 rc = send_tm_reqval(dev->mbox, req, error);
2375 /* XOFF this node and all other siblings */
2376 req = otx2_mbox_alloc_msg_nix_txschq_cfg(dev->mbox);
2377 req->lvl = tm_node->hw_lvl;
2380 TAILQ_FOREACH(sibling, &dev->node_list, node) {
2381 if (sibling->parent != tm_node->parent)
2383 k += prepare_tm_sw_xoff(sibling, true, &req->reg[k],
2387 rc = send_tm_reqval(dev->mbox, req, error);
2391 /* Update new weight for current node */
2392 req = otx2_mbox_alloc_msg_nix_txschq_cfg(dev->mbox);
2393 req->lvl = tm_node->hw_lvl;
2394 req->num_regs = prepare_tm_sched_reg(dev, tm_node,
2395 req->reg, req->regval);
2396 rc = send_tm_reqval(dev->mbox, req, error);
2400 /* XON this node and all other siblings */
2401 req = otx2_mbox_alloc_msg_nix_txschq_cfg(dev->mbox);
2402 req->lvl = tm_node->hw_lvl;
2405 TAILQ_FOREACH(sibling, &dev->node_list, node) {
2406 if (sibling->parent != tm_node->parent)
2408 k += prepare_tm_sw_xoff(sibling, false, &req->reg[k],
2412 rc = send_tm_reqval(dev->mbox, req, error);
2416 /* XON Parent node */
2417 req = otx2_mbox_alloc_msg_nix_txschq_cfg(dev->mbox);
2418 req->lvl = tm_node->parent->hw_lvl;
2419 req->num_regs = prepare_tm_sw_xoff(tm_node->parent, false,
2420 req->reg, req->regval);
2421 rc = send_tm_reqval(dev->mbox, req, error);
2429 otx2_nix_tm_node_stats_read(struct rte_eth_dev *eth_dev, uint32_t node_id,
2430 struct rte_tm_node_stats *stats,
2431 uint64_t *stats_mask, int clear,
2432 struct rte_tm_error *error)
2434 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2435 struct otx2_nix_tm_node *tm_node;
2440 tm_node = nix_tm_node_search(dev, node_id, true);
2442 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2443 error->message = "no such node";
2447 /* Stats support only for leaf node or TL1 root */
2448 if (nix_tm_is_leaf(dev, tm_node->lvl)) {
2449 reg = (((uint64_t)tm_node->id) << 32);
2452 addr = (int64_t *)(dev->base + NIX_LF_SQ_OP_PKTS);
2453 val = otx2_atomic64_add_nosync(reg, addr);
2456 stats->n_pkts = val - tm_node->last_pkts;
2459 addr = (int64_t *)(dev->base + NIX_LF_SQ_OP_OCTS);
2460 val = otx2_atomic64_add_nosync(reg, addr);
2463 stats->n_bytes = val - tm_node->last_bytes;
2466 tm_node->last_pkts = stats->n_pkts;
2467 tm_node->last_bytes = stats->n_bytes;
2470 *stats_mask = RTE_TM_STATS_N_PKTS | RTE_TM_STATS_N_BYTES;
2472 } else if (tm_node->hw_lvl == NIX_TXSCH_LVL_TL1) {
2473 error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
2474 error->message = "stats read error";
2476 /* RED Drop packets */
2477 reg = NIX_AF_TL1X_DROPPED_PACKETS(tm_node->hw_id);
2478 rc = read_tm_reg(dev->mbox, reg, &val, NIX_TXSCH_LVL_TL1);
2481 stats->leaf.n_pkts_dropped[RTE_COLOR_RED] =
2482 val - tm_node->last_pkts;
2484 /* RED Drop bytes */
2485 reg = NIX_AF_TL1X_DROPPED_BYTES(tm_node->hw_id);
2486 rc = read_tm_reg(dev->mbox, reg, &val, NIX_TXSCH_LVL_TL1);
2489 stats->leaf.n_bytes_dropped[RTE_COLOR_RED] =
2490 val - tm_node->last_bytes;
2494 tm_node->last_pkts =
2495 stats->leaf.n_pkts_dropped[RTE_COLOR_RED];
2496 tm_node->last_bytes =
2497 stats->leaf.n_bytes_dropped[RTE_COLOR_RED];
2500 *stats_mask = RTE_TM_STATS_N_PKTS_RED_DROPPED |
2501 RTE_TM_STATS_N_BYTES_RED_DROPPED;
2504 error->type = RTE_TM_ERROR_TYPE_NODE_ID;
2505 error->message = "unsupported node";
2513 const struct rte_tm_ops otx2_tm_ops = {
2514 .node_type_get = otx2_nix_tm_node_type_get,
2516 .shaper_profile_add = otx2_nix_tm_shaper_profile_add,
2517 .shaper_profile_delete = otx2_nix_tm_shaper_profile_delete,
2519 .node_add = otx2_nix_tm_node_add,
2520 .node_delete = otx2_nix_tm_node_delete,
2521 .node_suspend = otx2_nix_tm_node_suspend,
2522 .node_resume = otx2_nix_tm_node_resume,
2523 .hierarchy_commit = otx2_nix_tm_hierarchy_commit,
2525 .node_shaper_update = otx2_nix_tm_node_shaper_update,
2526 .node_parent_update = otx2_nix_tm_node_parent_update,
2527 .node_stats_read = otx2_nix_tm_node_stats_read,
2531 nix_tm_prepare_default_tree(struct rte_eth_dev *eth_dev)
2533 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2534 uint32_t def = eth_dev->data->nb_tx_queues;
2535 struct rte_tm_node_params params;
2536 uint32_t leaf_parent, i;
2537 int rc = 0, leaf_level;
2539 /* Default params */
2540 memset(¶ms, 0, sizeof(params));
2541 params.shaper_profile_id = RTE_TM_SHAPER_PROFILE_ID_NONE;
2543 if (nix_tm_have_tl1_access(dev)) {
2544 dev->otx2_tm_root_lvl = NIX_TXSCH_LVL_TL1;
2545 rc = nix_tm_node_add_to_list(dev, def, RTE_TM_NODE_ID_NULL, 0,
2548 OTX2_TM_LVL_ROOT, false, ¶ms);
2551 rc = nix_tm_node_add_to_list(dev, def + 1, def, 0,
2554 OTX2_TM_LVL_SCH1, false, ¶ms);
2558 rc = nix_tm_node_add_to_list(dev, def + 2, def + 1, 0,
2561 OTX2_TM_LVL_SCH2, false, ¶ms);
2565 rc = nix_tm_node_add_to_list(dev, def + 3, def + 2, 0,
2568 OTX2_TM_LVL_SCH3, false, ¶ms);
2572 rc = nix_tm_node_add_to_list(dev, def + 4, def + 3, 0,
2575 OTX2_TM_LVL_SCH4, false, ¶ms);
2579 leaf_parent = def + 4;
2580 leaf_level = OTX2_TM_LVL_QUEUE;
2582 dev->otx2_tm_root_lvl = NIX_TXSCH_LVL_TL2;
2583 rc = nix_tm_node_add_to_list(dev, def, RTE_TM_NODE_ID_NULL, 0,
2586 OTX2_TM_LVL_ROOT, false, ¶ms);
2590 rc = nix_tm_node_add_to_list(dev, def + 1, def, 0,
2593 OTX2_TM_LVL_SCH1, false, ¶ms);
2597 rc = nix_tm_node_add_to_list(dev, def + 2, def + 1, 0,
2600 OTX2_TM_LVL_SCH2, false, ¶ms);
2604 rc = nix_tm_node_add_to_list(dev, def + 3, def + 2, 0,
2607 OTX2_TM_LVL_SCH3, false, ¶ms);
2611 leaf_parent = def + 3;
2612 leaf_level = OTX2_TM_LVL_SCH4;
2615 /* Add leaf nodes */
2616 for (i = 0; i < eth_dev->data->nb_tx_queues; i++) {
2617 rc = nix_tm_node_add_to_list(dev, i, leaf_parent, 0,
2620 leaf_level, false, ¶ms);
2629 void otx2_nix_tm_conf_init(struct rte_eth_dev *eth_dev)
2631 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2633 TAILQ_INIT(&dev->node_list);
2634 TAILQ_INIT(&dev->shaper_profile_list);
2635 dev->tm_rate_min = 1E9; /* 1Gbps */
2638 int otx2_nix_tm_init_default(struct rte_eth_dev *eth_dev)
2640 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
2641 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2642 uint16_t sq_cnt = eth_dev->data->nb_tx_queues;
2645 /* Free up all resources already held */
2646 rc = nix_tm_free_resources(dev, 0, 0, false);
2648 otx2_err("Failed to freeup existing resources,rc=%d", rc);
2652 /* Clear shaper profiles */
2653 nix_tm_clear_shaper_profiles(dev);
2654 dev->tm_flags = NIX_TM_DEFAULT_TREE;
2656 /* Disable TL1 Static Priority when VF's are enabled
2657 * as otherwise VF's TL2 reallocation will be needed
2658 * runtime to support a specific topology of PF.
2660 if (pci_dev->max_vfs)
2661 dev->tm_flags |= NIX_TM_TL1_NO_SP;
2663 rc = nix_tm_prepare_default_tree(eth_dev);
2667 rc = nix_tm_alloc_resources(eth_dev, false);
2670 dev->tm_leaf_cnt = sq_cnt;
2676 otx2_nix_tm_fini(struct rte_eth_dev *eth_dev)
2678 struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
2681 /* Xmit is assumed to be disabled */
2682 /* Free up resources already held */
2683 rc = nix_tm_free_resources(dev, 0, 0, false);
2685 otx2_err("Failed to freeup existing resources,rc=%d", rc);
2689 /* Clear shaper profiles */
2690 nix_tm_clear_shaper_profiles(dev);
2697 otx2_nix_tm_get_leaf_data(struct otx2_eth_dev *dev, uint16_t sq,
2698 uint32_t *rr_quantum, uint16_t *smq)
2700 struct otx2_nix_tm_node *tm_node;
2703 /* 0..sq_cnt-1 are leaf nodes */
2704 if (sq >= dev->tm_leaf_cnt)
2707 /* Search for internal node first */
2708 tm_node = nix_tm_node_search(dev, sq, false);
2710 tm_node = nix_tm_node_search(dev, sq, true);
2712 /* Check if we found a valid leaf node */
2713 if (!tm_node || !nix_tm_is_leaf(dev, tm_node->lvl) ||
2714 !tm_node->parent || tm_node->parent->hw_id == UINT32_MAX) {
2718 /* Get SMQ Id of leaf node's parent */
2719 *smq = tm_node->parent->hw_id;
2720 *rr_quantum = NIX_TM_WEIGHT_TO_RR_QUANTUM(tm_node->weight);
2722 rc = nix_smq_xoff(dev, tm_node->parent, false);
2725 tm_node->flags |= NIX_TM_NODE_ENABLED;