common/cnxk: support NIX TM internal hierarchy
[dpdk.git] / drivers / common / cnxk / roc_nix_tm_ops.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4
5 #include "roc_api.h"
6 #include "roc_priv.h"
7
8 int
9 roc_nix_tm_sq_aura_fc(struct roc_nix_sq *sq, bool enable)
10 {
11         struct npa_aq_enq_req *req;
12         struct npa_aq_enq_rsp *rsp;
13         uint64_t aura_handle;
14         struct npa_lf *lf;
15         struct mbox *mbox;
16         int rc = -ENOSPC;
17
18         plt_tm_dbg("Setting SQ %u SQB aura FC to %s", sq->qid,
19                    enable ? "enable" : "disable");
20
21         lf = idev_npa_obj_get();
22         if (!lf)
23                 return NPA_ERR_DEVICE_NOT_BOUNDED;
24
25         mbox = lf->mbox;
26         /* Set/clear sqb aura fc_ena */
27         aura_handle = sq->aura_handle;
28         req = mbox_alloc_msg_npa_aq_enq(mbox);
29         if (req == NULL)
30                 return rc;
31
32         req->aura_id = roc_npa_aura_handle_to_aura(aura_handle);
33         req->ctype = NPA_AQ_CTYPE_AURA;
34         req->op = NPA_AQ_INSTOP_WRITE;
35         /* Below is not needed for aura writes but AF driver needs it */
36         /* AF will translate to associated poolctx */
37         req->aura.pool_addr = req->aura_id;
38
39         req->aura.fc_ena = enable;
40         req->aura_mask.fc_ena = 1;
41
42         rc = mbox_process(mbox);
43         if (rc)
44                 return rc;
45
46         /* Read back npa aura ctx */
47         req = mbox_alloc_msg_npa_aq_enq(mbox);
48         if (req == NULL)
49                 return -ENOSPC;
50
51         req->aura_id = roc_npa_aura_handle_to_aura(aura_handle);
52         req->ctype = NPA_AQ_CTYPE_AURA;
53         req->op = NPA_AQ_INSTOP_READ;
54
55         rc = mbox_process_msg(mbox, (void *)&rsp);
56         if (rc)
57                 return rc;
58
59         /* Init when enabled as there might be no triggers */
60         if (enable)
61                 *(volatile uint64_t *)sq->fc = rsp->aura.count;
62         else
63                 *(volatile uint64_t *)sq->fc = sq->nb_sqb_bufs;
64         /* Sync write barrier */
65         plt_wmb();
66         return 0;
67 }
68
69 int
70 roc_nix_tm_free_resources(struct roc_nix *roc_nix, bool hw_only)
71 {
72         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
73
74         if (nix->tm_flags & NIX_TM_HIERARCHY_ENA)
75                 return -EBUSY;
76
77         return nix_tm_free_resources(roc_nix, BIT(ROC_NIX_TM_USER), hw_only);
78 }
79
80 static int
81 nix_tm_shaper_profile_add(struct roc_nix *roc_nix,
82                           struct nix_tm_shaper_profile *profile, int skip_ins)
83 {
84         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
85         uint64_t commit_rate, commit_sz;
86         uint64_t peak_rate, peak_sz;
87         uint32_t id;
88
89         id = profile->id;
90         commit_rate = profile->commit.rate;
91         commit_sz = profile->commit.size;
92         peak_rate = profile->peak.rate;
93         peak_sz = profile->peak.size;
94
95         if (nix_tm_shaper_profile_search(nix, id) && !skip_ins)
96                 return NIX_ERR_TM_SHAPER_PROFILE_EXISTS;
97
98         if (profile->pkt_len_adj < NIX_TM_LENGTH_ADJUST_MIN ||
99             profile->pkt_len_adj > NIX_TM_LENGTH_ADJUST_MAX)
100                 return NIX_ERR_TM_SHAPER_PKT_LEN_ADJUST;
101
102         /* We cannot support both pkt length adjust and pkt mode */
103         if (profile->pkt_mode && profile->pkt_len_adj)
104                 return NIX_ERR_TM_SHAPER_PKT_LEN_ADJUST;
105
106         /* commit rate and burst size can be enabled/disabled */
107         if (commit_rate || commit_sz) {
108                 if (commit_sz < NIX_TM_MIN_SHAPER_BURST ||
109                     commit_sz > NIX_TM_MAX_SHAPER_BURST)
110                         return NIX_ERR_TM_INVALID_COMMIT_SZ;
111                 else if (!nix_tm_shaper_rate_conv(commit_rate, NULL, NULL,
112                                                   NULL))
113                         return NIX_ERR_TM_INVALID_COMMIT_RATE;
114         }
115
116         /* Peak rate and burst size can be enabled/disabled */
117         if (peak_sz || peak_rate) {
118                 if (peak_sz < NIX_TM_MIN_SHAPER_BURST ||
119                     peak_sz > NIX_TM_MAX_SHAPER_BURST)
120                         return NIX_ERR_TM_INVALID_PEAK_SZ;
121                 else if (!nix_tm_shaper_rate_conv(peak_rate, NULL, NULL, NULL))
122                         return NIX_ERR_TM_INVALID_PEAK_RATE;
123         }
124
125         if (!skip_ins)
126                 TAILQ_INSERT_TAIL(&nix->shaper_profile_list, profile, shaper);
127
128         plt_tm_dbg("Added TM shaper profile %u, "
129                    " pir %" PRIu64 " , pbs %" PRIu64 ", cir %" PRIu64
130                    ", cbs %" PRIu64 " , adj %u, pkt_mode %u",
131                    id, profile->peak.rate, profile->peak.size,
132                    profile->commit.rate, profile->commit.size,
133                    profile->pkt_len_adj, profile->pkt_mode);
134
135         /* Always use PIR for single rate shaping */
136         if (!peak_rate && commit_rate) {
137                 profile->peak.rate = profile->commit.rate;
138                 profile->peak.size = profile->commit.size;
139                 profile->commit.rate = 0;
140                 profile->commit.size = 0;
141         }
142
143         /* update min rate */
144         nix->tm_rate_min = nix_tm_shaper_profile_rate_min(nix);
145         return 0;
146 }
147
148 int
149 roc_nix_tm_shaper_profile_add(struct roc_nix *roc_nix,
150                               struct roc_nix_tm_shaper_profile *roc_profile)
151 {
152         struct nix_tm_shaper_profile *profile;
153
154         profile = (struct nix_tm_shaper_profile *)roc_profile->reserved;
155
156         profile->ref_cnt = 0;
157         profile->id = roc_profile->id;
158         if (roc_profile->pkt_mode) {
159                 /* Each packet accomulate single count, whereas HW
160                  * considers each unit as Byte, so we need convert
161                  * user pps to bps
162                  */
163                 profile->commit.rate = roc_profile->commit_rate * 8;
164                 profile->peak.rate = roc_profile->peak_rate * 8;
165         } else {
166                 profile->commit.rate = roc_profile->commit_rate;
167                 profile->peak.rate = roc_profile->peak_rate;
168         }
169         profile->commit.size = roc_profile->commit_sz;
170         profile->peak.size = roc_profile->peak_sz;
171         profile->pkt_len_adj = roc_profile->pkt_len_adj;
172         profile->pkt_mode = roc_profile->pkt_mode;
173         profile->free_fn = roc_profile->free_fn;
174
175         return nix_tm_shaper_profile_add(roc_nix, profile, 0);
176 }
177
178 int
179 roc_nix_tm_shaper_profile_update(struct roc_nix *roc_nix,
180                                  struct roc_nix_tm_shaper_profile *roc_profile)
181 {
182         struct nix_tm_shaper_profile *profile;
183
184         profile = (struct nix_tm_shaper_profile *)roc_profile->reserved;
185
186         if (roc_profile->pkt_mode) {
187                 /* Each packet accomulate single count, whereas HW
188                  * considers each unit as Byte, so we need convert
189                  * user pps to bps
190                  */
191                 profile->commit.rate = roc_profile->commit_rate * 8;
192                 profile->peak.rate = roc_profile->peak_rate * 8;
193         } else {
194                 profile->commit.rate = roc_profile->commit_rate;
195                 profile->peak.rate = roc_profile->peak_rate;
196         }
197         profile->commit.size = roc_profile->commit_sz;
198         profile->peak.size = roc_profile->peak_sz;
199
200         return nix_tm_shaper_profile_add(roc_nix, profile, 1);
201 }
202
203 int
204 roc_nix_tm_shaper_profile_delete(struct roc_nix *roc_nix, uint32_t id)
205 {
206         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
207         struct nix_tm_shaper_profile *profile;
208
209         profile = nix_tm_shaper_profile_search(nix, id);
210         if (!profile)
211                 return NIX_ERR_TM_INVALID_SHAPER_PROFILE;
212
213         if (profile->ref_cnt)
214                 return NIX_ERR_TM_SHAPER_PROFILE_IN_USE;
215
216         plt_tm_dbg("Removing TM shaper profile %u", id);
217         TAILQ_REMOVE(&nix->shaper_profile_list, profile, shaper);
218         nix_tm_shaper_profile_free(profile);
219
220         /* update min rate */
221         nix->tm_rate_min = nix_tm_shaper_profile_rate_min(nix);
222         return 0;
223 }
224
225 int
226 roc_nix_tm_node_add(struct roc_nix *roc_nix, struct roc_nix_tm_node *roc_node)
227 {
228         struct nix_tm_node *node;
229
230         node = (struct nix_tm_node *)&roc_node->reserved;
231         node->id = roc_node->id;
232         node->priority = roc_node->priority;
233         node->weight = roc_node->weight;
234         node->lvl = roc_node->lvl;
235         node->parent_id = roc_node->parent_id;
236         node->shaper_profile_id = roc_node->shaper_profile_id;
237         node->pkt_mode = roc_node->pkt_mode;
238         node->pkt_mode_set = roc_node->pkt_mode_set;
239         node->free_fn = roc_node->free_fn;
240         node->tree = ROC_NIX_TM_USER;
241
242         return nix_tm_node_add(roc_nix, node);
243 }
244
245 int
246 roc_nix_tm_node_pkt_mode_update(struct roc_nix *roc_nix, uint32_t node_id,
247                                 bool pkt_mode)
248 {
249         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
250         struct nix_tm_node *node, *child;
251         struct nix_tm_node_list *list;
252         int num_children = 0;
253
254         node = nix_tm_node_search(nix, node_id, ROC_NIX_TM_USER);
255         if (!node)
256                 return NIX_ERR_TM_INVALID_NODE;
257
258         if (node->pkt_mode == pkt_mode) {
259                 node->pkt_mode_set = true;
260                 return 0;
261         }
262
263         /* Check for any existing children, if there are any,
264          * then we cannot update the pkt mode as children's quantum
265          * are already taken in.
266          */
267         list = nix_tm_node_list(nix, ROC_NIX_TM_USER);
268         TAILQ_FOREACH(child, list, node) {
269                 if (child->parent == node)
270                         num_children++;
271         }
272
273         /* Cannot update mode if it has children or tree is enabled */
274         if ((nix->tm_flags & NIX_TM_HIERARCHY_ENA) && num_children)
275                 return -EBUSY;
276
277         if (node->pkt_mode_set && num_children)
278                 return NIX_ERR_TM_PKT_MODE_MISMATCH;
279
280         node->pkt_mode = pkt_mode;
281         node->pkt_mode_set = true;
282
283         return 0;
284 }
285
286 int
287 roc_nix_tm_node_name_get(struct roc_nix *roc_nix, uint32_t node_id, char *buf,
288                          size_t buflen)
289 {
290         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
291         struct nix_tm_node *node;
292
293         node = nix_tm_node_search(nix, node_id, ROC_NIX_TM_USER);
294         if (!node) {
295                 plt_strlcpy(buf, "???", buflen);
296                 return NIX_ERR_TM_INVALID_NODE;
297         }
298
299         if (node->hw_lvl == NIX_TXSCH_LVL_CNT)
300                 snprintf(buf, buflen, "SQ_%d", node->id);
301         else
302                 snprintf(buf, buflen, "%s_%d", nix_tm_hwlvl2str(node->hw_lvl),
303                          node->hw_id);
304         return 0;
305 }
306
307 int
308 roc_nix_tm_node_delete(struct roc_nix *roc_nix, uint32_t node_id, bool free)
309 {
310         return nix_tm_node_delete(roc_nix, node_id, ROC_NIX_TM_USER, free);
311 }
312
313 int
314 roc_nix_tm_hierarchy_disable(struct roc_nix *roc_nix)
315 {
316         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
317         uint16_t sqb_cnt, head_off, tail_off;
318         uint16_t sq_cnt = nix->nb_tx_queues;
319         struct mbox *mbox = (&nix->dev)->mbox;
320         struct nix_tm_node_list *list;
321         enum roc_nix_tm_tree tree;
322         struct nix_tm_node *node;
323         struct roc_nix_sq *sq;
324         uint64_t wdata, val;
325         uintptr_t regaddr;
326         int rc = -1, i;
327
328         if (!(nix->tm_flags & NIX_TM_HIERARCHY_ENA))
329                 return 0;
330
331         plt_tm_dbg("Disabling hierarchy on %s", nix->pci_dev->name);
332
333         tree = nix->tm_tree;
334         list = nix_tm_node_list(nix, tree);
335
336         /* Enable CGX RXTX to drain pkts */
337         if (!roc_nix->io_enabled) {
338                 /* Though it enables both RX MCAM Entries and CGX Link
339                  * we assume all the rx queues are stopped way back.
340                  */
341                 mbox_alloc_msg_nix_lf_start_rx(mbox);
342                 rc = mbox_process(mbox);
343                 if (rc) {
344                         plt_err("cgx start failed, rc=%d", rc);
345                         return rc;
346                 }
347         }
348
349         /* XON all SMQ's */
350         TAILQ_FOREACH(node, list, node) {
351                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
352                         continue;
353                 if (!(node->flags & NIX_TM_NODE_HWRES))
354                         continue;
355
356                 rc = nix_tm_smq_xoff(nix, node, false);
357                 if (rc) {
358                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
359                                 rc);
360                         goto cleanup;
361                 }
362         }
363
364         /* Flush all tx queues */
365         for (i = 0; i < sq_cnt; i++) {
366                 sq = nix->sqs[i];
367                 if (!sq)
368                         continue;
369
370                 rc = roc_nix_tm_sq_aura_fc(sq, false);
371                 if (rc) {
372                         plt_err("Failed to disable sqb aura fc, rc=%d", rc);
373                         goto cleanup;
374                 }
375
376                 /* Wait for sq entries to be flushed */
377                 rc = roc_nix_tm_sq_flush_spin(sq);
378                 if (rc) {
379                         plt_err("Failed to drain sq, rc=%d\n", rc);
380                         goto cleanup;
381                 }
382         }
383
384         /* XOFF & Flush all SMQ's. HRM mandates
385          * all SQ's empty before SMQ flush is issued.
386          */
387         TAILQ_FOREACH(node, list, node) {
388                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
389                         continue;
390                 if (!(node->flags & NIX_TM_NODE_HWRES))
391                         continue;
392
393                 rc = nix_tm_smq_xoff(nix, node, true);
394                 if (rc) {
395                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
396                                 rc);
397                         goto cleanup;
398                 }
399
400                 node->flags &= ~NIX_TM_NODE_ENABLED;
401         }
402
403         /* Verify sanity of all tx queues */
404         for (i = 0; i < sq_cnt; i++) {
405                 sq = nix->sqs[i];
406                 if (!sq)
407                         continue;
408
409                 wdata = ((uint64_t)sq->qid << 32);
410                 regaddr = nix->base + NIX_LF_SQ_OP_STATUS;
411                 val = roc_atomic64_add_nosync(wdata, (int64_t *)regaddr);
412
413                 sqb_cnt = val & 0xFFFF;
414                 head_off = (val >> 20) & 0x3F;
415                 tail_off = (val >> 28) & 0x3F;
416
417                 if (sqb_cnt > 1 || head_off != tail_off ||
418                     (*(uint64_t *)sq->fc != sq->nb_sqb_bufs))
419                         plt_err("Failed to gracefully flush sq %u", sq->qid);
420         }
421
422         nix->tm_flags &= ~NIX_TM_HIERARCHY_ENA;
423 cleanup:
424         /* Restore cgx state */
425         if (!roc_nix->io_enabled) {
426                 mbox_alloc_msg_nix_lf_stop_rx(mbox);
427                 rc |= mbox_process(mbox);
428         }
429         return rc;
430 }
431
432 int
433 roc_nix_tm_hierarchy_enable(struct roc_nix *roc_nix, enum roc_nix_tm_tree tree,
434                             bool xmit_enable)
435 {
436         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
437         struct nix_tm_node_list *list;
438         struct nix_tm_node *node;
439         struct roc_nix_sq *sq;
440         uint32_t tree_mask;
441         uint16_t sq_id;
442         int rc;
443
444         if (tree >= ROC_NIX_TM_TREE_MAX)
445                 return NIX_ERR_PARAM;
446
447         if (nix->tm_flags & NIX_TM_HIERARCHY_ENA) {
448                 if (nix->tm_tree != tree)
449                         return -EBUSY;
450                 return 0;
451         }
452
453         plt_tm_dbg("Enabling hierarchy on %s, xmit_ena %u, tree %u",
454                    nix->pci_dev->name, xmit_enable, tree);
455
456         /* Free hw resources of other trees */
457         tree_mask = NIX_TM_TREE_MASK_ALL;
458         tree_mask &= ~BIT(tree);
459
460         rc = nix_tm_free_resources(roc_nix, tree_mask, true);
461         if (rc) {
462                 plt_err("failed to free resources of other trees, rc=%d", rc);
463                 return rc;
464         }
465
466         /* Update active tree before starting to do anything */
467         nix->tm_tree = tree;
468
469         nix_tm_update_parent_info(nix, tree);
470
471         rc = nix_tm_alloc_txschq(nix, tree);
472         if (rc) {
473                 plt_err("TM failed to alloc tm resources=%d", rc);
474                 return rc;
475         }
476
477         rc = nix_tm_assign_resources(nix, tree);
478         if (rc) {
479                 plt_err("TM failed to assign tm resources=%d", rc);
480                 return rc;
481         }
482
483         rc = nix_tm_txsch_reg_config(nix, tree);
484         if (rc) {
485                 plt_err("TM failed to configure sched registers=%d", rc);
486                 return rc;
487         }
488
489         list = nix_tm_node_list(nix, tree);
490         /* Mark all non-leaf's as enabled */
491         TAILQ_FOREACH(node, list, node) {
492                 if (!nix_tm_is_leaf(nix, node->lvl))
493                         node->flags |= NIX_TM_NODE_ENABLED;
494         }
495
496         if (!xmit_enable)
497                 goto skip_sq_update;
498
499         /* Update SQ Sched Data while SQ is idle */
500         TAILQ_FOREACH(node, list, node) {
501                 if (!nix_tm_is_leaf(nix, node->lvl))
502                         continue;
503
504                 rc = nix_tm_sq_sched_conf(nix, node, false);
505                 if (rc) {
506                         plt_err("SQ %u sched update failed, rc=%d", node->id,
507                                 rc);
508                         return rc;
509                 }
510         }
511
512         /* Finally XON all SMQ's */
513         TAILQ_FOREACH(node, list, node) {
514                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
515                         continue;
516
517                 rc = nix_tm_smq_xoff(nix, node, false);
518                 if (rc) {
519                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
520                                 rc);
521                         return rc;
522                 }
523         }
524
525         /* Enable xmit as all the topology is ready */
526         TAILQ_FOREACH(node, list, node) {
527                 if (!nix_tm_is_leaf(nix, node->lvl))
528                         continue;
529
530                 sq_id = node->id;
531                 sq = nix->sqs[sq_id];
532
533                 rc = roc_nix_tm_sq_aura_fc(sq, true);
534                 if (rc) {
535                         plt_err("TM sw xon failed on SQ %u, rc=%d", node->id,
536                                 rc);
537                         return rc;
538                 }
539                 node->flags |= NIX_TM_NODE_ENABLED;
540         }
541
542 skip_sq_update:
543         nix->tm_flags |= NIX_TM_HIERARCHY_ENA;
544         return 0;
545 }
546
547 int
548 roc_nix_tm_init(struct roc_nix *roc_nix)
549 {
550         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
551         uint32_t tree_mask;
552         int rc;
553
554         if (nix->tm_flags & NIX_TM_HIERARCHY_ENA) {
555                 plt_err("Cannot init while existing hierarchy is enabled");
556                 return -EBUSY;
557         }
558
559         /* Free up all user resources already held */
560         tree_mask = NIX_TM_TREE_MASK_ALL;
561         rc = nix_tm_free_resources(roc_nix, tree_mask, false);
562         if (rc) {
563                 plt_err("Failed to freeup all nodes and resources, rc=%d", rc);
564                 return rc;
565         }
566
567         /* Prepare default tree */
568         rc = nix_tm_prepare_default_tree(roc_nix);
569         if (rc) {
570                 plt_err("failed to prepare default tm tree, rc=%d", rc);
571                 return rc;
572         }
573
574         /* Prepare rlimit tree */
575         rc = nix_tm_prepare_rate_limited_tree(roc_nix);
576         if (rc) {
577                 plt_err("failed to prepare rlimit tm tree, rc=%d", rc);
578                 return rc;
579         }
580
581         return rc;
582 }
583
584 int
585 roc_nix_tm_rlimit_sq(struct roc_nix *roc_nix, uint16_t qid, uint64_t rate)
586 {
587         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
588         struct nix_tm_shaper_profile profile;
589         struct mbox *mbox = (&nix->dev)->mbox;
590         struct nix_tm_node *node, *parent;
591
592         volatile uint64_t *reg, *regval;
593         struct nix_txschq_config *req;
594         uint16_t flags;
595         uint8_t k = 0;
596         int rc;
597
598         if (nix->tm_tree != ROC_NIX_TM_RLIMIT ||
599             !(nix->tm_flags & NIX_TM_HIERARCHY_ENA))
600                 return NIX_ERR_TM_INVALID_TREE;
601
602         node = nix_tm_node_search(nix, qid, ROC_NIX_TM_RLIMIT);
603
604         /* check if we found a valid leaf node */
605         if (!node || !nix_tm_is_leaf(nix, node->lvl) || !node->parent ||
606             node->parent->hw_id == NIX_TM_HW_ID_INVALID)
607                 return NIX_ERR_TM_INVALID_NODE;
608
609         parent = node->parent;
610         flags = parent->flags;
611
612         req = mbox_alloc_msg_nix_txschq_cfg(mbox);
613         req->lvl = NIX_TXSCH_LVL_MDQ;
614         reg = req->reg;
615         regval = req->regval;
616
617         if (rate == 0) {
618                 k += nix_tm_sw_xoff_prep(parent, true, &reg[k], &regval[k]);
619                 flags &= ~NIX_TM_NODE_ENABLED;
620                 goto exit;
621         }
622
623         if (!(flags & NIX_TM_NODE_ENABLED)) {
624                 k += nix_tm_sw_xoff_prep(parent, false, &reg[k], &regval[k]);
625                 flags |= NIX_TM_NODE_ENABLED;
626         }
627
628         /* Use only PIR for rate limit */
629         memset(&profile, 0, sizeof(profile));
630         profile.peak.rate = rate;
631         /* Minimum burst of ~4us Bytes of Tx */
632         profile.peak.size = PLT_MAX((uint64_t)roc_nix_max_pkt_len(roc_nix),
633                                     (4ul * rate) / ((uint64_t)1E6 * 8));
634         if (!nix->tm_rate_min || nix->tm_rate_min > rate)
635                 nix->tm_rate_min = rate;
636
637         k += nix_tm_shaper_reg_prep(parent, &profile, &reg[k], &regval[k]);
638 exit:
639         req->num_regs = k;
640         rc = mbox_process(mbox);
641         if (rc)
642                 return rc;
643
644         parent->flags = flags;
645         return 0;
646 }
647
648 void
649 roc_nix_tm_fini(struct roc_nix *roc_nix)
650 {
651         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
652         struct mbox *mbox = (&nix->dev)->mbox;
653         struct nix_txsch_free_req *req;
654         uint32_t tree_mask;
655         uint8_t hw_lvl;
656         int rc;
657
658         /* Xmit is assumed to be disabled */
659         /* Free up resources already held */
660         tree_mask = NIX_TM_TREE_MASK_ALL;
661         rc = nix_tm_free_resources(roc_nix, tree_mask, false);
662         if (rc)
663                 plt_err("Failed to freeup existing nodes or rsrcs, rc=%d", rc);
664
665         /* Free all other hw resources */
666         req = mbox_alloc_msg_nix_txsch_free(mbox);
667         if (req == NULL)
668                 return;
669
670         req->flags = TXSCHQ_FREE_ALL;
671         rc = mbox_process(mbox);
672         if (rc)
673                 plt_err("Failed to freeup all res, rc=%d", rc);
674
675         for (hw_lvl = 0; hw_lvl < NIX_TXSCH_LVL_CNT; hw_lvl++) {
676                 plt_bitmap_reset(nix->schq_bmp[hw_lvl]);
677                 plt_bitmap_reset(nix->schq_contig_bmp[hw_lvl]);
678                 nix->contig_rsvd[hw_lvl] = 0;
679                 nix->discontig_rsvd[hw_lvl] = 0;
680         }
681
682         /* Clear shaper profiles */
683         nix_tm_clear_shaper_profiles(nix);
684         nix->tm_tree = 0;
685         nix->tm_flags &= ~NIX_TM_HIERARCHY_ENA;
686 }