3d81247a12d9a4c25df90c9b3ffeacc07e8f2ef4
[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         if (roc_model_is_cn9k() || roc_model_is_cn10ka_a0()) {
42                 req->aura.fc_stype = 0x0;      /* STF */
43                 req->aura_mask.fc_stype = 0x0; /* STF */
44         } else {
45                 req->aura.fc_stype = 0x3;      /* STSTP */
46                 req->aura_mask.fc_stype = 0x3; /* STSTP */
47         }
48
49         rc = mbox_process(mbox);
50         if (rc)
51                 return rc;
52
53         /* Read back npa aura ctx */
54         req = mbox_alloc_msg_npa_aq_enq(mbox);
55         if (req == NULL)
56                 return -ENOSPC;
57
58         req->aura_id = roc_npa_aura_handle_to_aura(aura_handle);
59         req->ctype = NPA_AQ_CTYPE_AURA;
60         req->op = NPA_AQ_INSTOP_READ;
61
62         rc = mbox_process_msg(mbox, (void *)&rsp);
63         if (rc)
64                 return rc;
65
66         /* Init when enabled as there might be no triggers */
67         if (enable)
68                 *(volatile uint64_t *)sq->fc = rsp->aura.count;
69         else
70                 *(volatile uint64_t *)sq->fc = sq->nb_sqb_bufs;
71         /* Sync write barrier */
72         plt_wmb();
73         return 0;
74 }
75
76 int
77 roc_nix_tm_free_resources(struct roc_nix *roc_nix, bool hw_only)
78 {
79         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
80
81         if (nix->tm_flags & NIX_TM_HIERARCHY_ENA)
82                 return -EBUSY;
83
84         return nix_tm_free_resources(roc_nix, BIT(ROC_NIX_TM_USER), hw_only);
85 }
86
87 static int
88 nix_tm_adjust_shaper_pps_rate(struct nix_tm_shaper_profile *profile)
89 {
90         uint64_t min_rate = profile->commit.rate;
91
92         if (!profile->pkt_mode)
93                 return 0;
94
95         profile->pkt_mode_adj = 1;
96
97         if (profile->commit.rate &&
98             (profile->commit.rate < NIX_TM_MIN_SHAPER_PPS_RATE ||
99              profile->commit.rate > NIX_TM_MAX_SHAPER_PPS_RATE))
100                 return NIX_ERR_TM_INVALID_COMMIT_RATE;
101
102         if (profile->peak.rate &&
103             (profile->peak.rate < NIX_TM_MIN_SHAPER_PPS_RATE ||
104              profile->peak.rate > NIX_TM_MAX_SHAPER_PPS_RATE))
105                 return NIX_ERR_TM_INVALID_PEAK_RATE;
106
107         if (profile->peak.rate && min_rate > profile->peak.rate)
108                 min_rate = profile->peak.rate;
109
110         /* Each packet accumulate single count, whereas HW
111          * considers each unit as Byte, so we need convert
112          * user pps to bps
113          */
114         profile->commit.rate = profile->commit.rate * 8;
115         profile->peak.rate = profile->peak.rate * 8;
116         min_rate = min_rate * 8;
117
118         if (min_rate && (min_rate < NIX_TM_MIN_SHAPER_RATE)) {
119                 int adjust = NIX_TM_MIN_SHAPER_RATE / min_rate;
120
121                 if (adjust > NIX_TM_LENGTH_ADJUST_MAX)
122                         return NIX_ERR_TM_SHAPER_PKT_LEN_ADJUST;
123
124                 profile->pkt_mode_adj += adjust;
125                 profile->commit.rate += (adjust * profile->commit.rate);
126                 profile->peak.rate += (adjust * profile->peak.rate);
127                 /* Number of tokens freed after scheduling was proportional
128                  * to adjust value
129                  */
130                 profile->commit.size *= adjust;
131                 profile->peak.size *= adjust;
132         }
133
134         return 0;
135 }
136
137 static int
138 nix_tm_shaper_profile_add(struct roc_nix *roc_nix,
139                           struct nix_tm_shaper_profile *profile, int skip_ins)
140 {
141         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
142         uint64_t commit_rate, commit_sz;
143         uint64_t min_burst, max_burst;
144         uint64_t peak_rate, peak_sz;
145         uint32_t id;
146         int rc;
147
148         id = profile->id;
149         rc = nix_tm_adjust_shaper_pps_rate(profile);
150         if (rc)
151                 return rc;
152
153         commit_rate = profile->commit.rate;
154         commit_sz = profile->commit.size;
155         peak_rate = profile->peak.rate;
156         peak_sz = profile->peak.size;
157
158         min_burst = NIX_TM_MIN_SHAPER_BURST;
159         max_burst = roc_nix_tm_max_shaper_burst_get();
160
161         if (nix_tm_shaper_profile_search(nix, id) && !skip_ins)
162                 return NIX_ERR_TM_SHAPER_PROFILE_EXISTS;
163
164         if (profile->pkt_len_adj < NIX_TM_LENGTH_ADJUST_MIN ||
165             profile->pkt_len_adj > NIX_TM_LENGTH_ADJUST_MAX)
166                 return NIX_ERR_TM_SHAPER_PKT_LEN_ADJUST;
167
168         /* We cannot support both pkt length adjust and pkt mode */
169         if (profile->pkt_mode && profile->pkt_len_adj)
170                 return NIX_ERR_TM_SHAPER_PKT_LEN_ADJUST;
171
172         /* commit rate and burst size can be enabled/disabled */
173         if (commit_rate || commit_sz) {
174                 if (commit_sz < min_burst || commit_sz > max_burst)
175                         return NIX_ERR_TM_INVALID_COMMIT_SZ;
176                 else if (!nix_tm_shaper_rate_conv(commit_rate, NULL, NULL,
177                                                   NULL))
178                         return NIX_ERR_TM_INVALID_COMMIT_RATE;
179         }
180
181         /* Peak rate and burst size can be enabled/disabled */
182         if (peak_sz || peak_rate) {
183                 if (peak_sz < min_burst || peak_sz > max_burst)
184                         return NIX_ERR_TM_INVALID_PEAK_SZ;
185                 else if (!nix_tm_shaper_rate_conv(peak_rate, NULL, NULL, NULL))
186                         return NIX_ERR_TM_INVALID_PEAK_RATE;
187         }
188
189         /* If PIR and CIR are requested, PIR should always be larger than CIR */
190         if (peak_rate && commit_rate && (commit_rate > peak_rate))
191                 return NIX_ERR_TM_INVALID_PEAK_RATE;
192
193         if (!skip_ins)
194                 TAILQ_INSERT_TAIL(&nix->shaper_profile_list, profile, shaper);
195
196         plt_tm_dbg("Added TM shaper profile %u, "
197                    " pir %" PRIu64 " , pbs %" PRIu64 ", cir %" PRIu64
198                    ", cbs %" PRIu64 " , adj %u, pkt_mode %u",
199                    id, profile->peak.rate, profile->peak.size,
200                    profile->commit.rate, profile->commit.size,
201                    profile->pkt_len_adj, profile->pkt_mode);
202
203         /* Always use PIR for single rate shaping */
204         if (!peak_rate && commit_rate) {
205                 profile->peak.rate = profile->commit.rate;
206                 profile->peak.size = profile->commit.size;
207                 profile->commit.rate = 0;
208                 profile->commit.size = 0;
209         }
210
211         /* update min rate */
212         nix->tm_rate_min = nix_tm_shaper_profile_rate_min(nix);
213         return 0;
214 }
215
216 int
217 roc_nix_tm_shaper_profile_add(struct roc_nix *roc_nix,
218                               struct roc_nix_tm_shaper_profile *roc_profile)
219 {
220         struct nix_tm_shaper_profile *profile;
221
222         profile = (struct nix_tm_shaper_profile *)roc_profile->reserved;
223
224         profile->ref_cnt = 0;
225         profile->id = roc_profile->id;
226         profile->commit.rate = roc_profile->commit_rate;
227         profile->peak.rate = roc_profile->peak_rate;
228         profile->commit.size = roc_profile->commit_sz;
229         profile->peak.size = roc_profile->peak_sz;
230         profile->pkt_len_adj = roc_profile->pkt_len_adj;
231         profile->pkt_mode = roc_profile->pkt_mode;
232         profile->free_fn = roc_profile->free_fn;
233
234         return nix_tm_shaper_profile_add(roc_nix, profile, 0);
235 }
236
237 int
238 roc_nix_tm_shaper_profile_update(struct roc_nix *roc_nix,
239                                  struct roc_nix_tm_shaper_profile *roc_profile)
240 {
241         struct nix_tm_shaper_profile *profile;
242
243         profile = (struct nix_tm_shaper_profile *)roc_profile->reserved;
244
245         profile->commit.rate = roc_profile->commit_rate;
246         profile->peak.rate = roc_profile->peak_rate;
247         profile->commit.size = roc_profile->commit_sz;
248         profile->peak.size = roc_profile->peak_sz;
249
250         return nix_tm_shaper_profile_add(roc_nix, profile, 1);
251 }
252
253 int
254 roc_nix_tm_shaper_profile_delete(struct roc_nix *roc_nix, uint32_t id)
255 {
256         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
257         struct nix_tm_shaper_profile *profile;
258
259         profile = nix_tm_shaper_profile_search(nix, id);
260         if (!profile)
261                 return NIX_ERR_TM_INVALID_SHAPER_PROFILE;
262
263         if (profile->ref_cnt)
264                 return NIX_ERR_TM_SHAPER_PROFILE_IN_USE;
265
266         plt_tm_dbg("Removing TM shaper profile %u", id);
267         TAILQ_REMOVE(&nix->shaper_profile_list, profile, shaper);
268         nix_tm_shaper_profile_free(profile);
269
270         /* update min rate */
271         nix->tm_rate_min = nix_tm_shaper_profile_rate_min(nix);
272         return 0;
273 }
274
275 int
276 roc_nix_tm_node_add(struct roc_nix *roc_nix, struct roc_nix_tm_node *roc_node)
277 {
278         struct nix_tm_node *node;
279
280         node = (struct nix_tm_node *)&roc_node->reserved;
281         node->id = roc_node->id;
282         node->priority = roc_node->priority;
283         node->weight = roc_node->weight;
284         node->lvl = roc_node->lvl;
285         node->parent_id = roc_node->parent_id;
286         node->shaper_profile_id = roc_node->shaper_profile_id;
287         node->pkt_mode = roc_node->pkt_mode;
288         node->pkt_mode_set = roc_node->pkt_mode_set;
289         node->free_fn = roc_node->free_fn;
290         node->tree = ROC_NIX_TM_USER;
291
292         return nix_tm_node_add(roc_nix, node);
293 }
294
295 int
296 roc_nix_tm_node_pkt_mode_update(struct roc_nix *roc_nix, uint32_t node_id,
297                                 bool pkt_mode)
298 {
299         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
300         struct nix_tm_node *node, *child;
301         struct nix_tm_node_list *list;
302         int num_children = 0;
303
304         node = nix_tm_node_search(nix, node_id, ROC_NIX_TM_USER);
305         if (!node)
306                 return NIX_ERR_TM_INVALID_NODE;
307
308         if (node->pkt_mode == pkt_mode) {
309                 node->pkt_mode_set = true;
310                 return 0;
311         }
312
313         /* Check for any existing children, if there are any,
314          * then we cannot update the pkt mode as children's quantum
315          * are already taken in.
316          */
317         list = nix_tm_node_list(nix, ROC_NIX_TM_USER);
318         TAILQ_FOREACH(child, list, node) {
319                 if (child->parent == node)
320                         num_children++;
321         }
322
323         /* Cannot update mode if it has children or tree is enabled */
324         if ((nix->tm_flags & NIX_TM_HIERARCHY_ENA) && num_children)
325                 return -EBUSY;
326
327         if (node->pkt_mode_set && num_children)
328                 return NIX_ERR_TM_PKT_MODE_MISMATCH;
329
330         node->pkt_mode = pkt_mode;
331         node->pkt_mode_set = true;
332
333         return 0;
334 }
335
336 int
337 roc_nix_tm_node_name_get(struct roc_nix *roc_nix, uint32_t node_id, char *buf,
338                          size_t buflen)
339 {
340         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
341         struct nix_tm_node *node;
342
343         node = nix_tm_node_search(nix, node_id, ROC_NIX_TM_USER);
344         if (!node) {
345                 plt_strlcpy(buf, "???", buflen);
346                 return NIX_ERR_TM_INVALID_NODE;
347         }
348
349         if (node->hw_lvl == NIX_TXSCH_LVL_CNT)
350                 snprintf(buf, buflen, "SQ_%d", node->id);
351         else
352                 snprintf(buf, buflen, "%s_%d", nix_tm_hwlvl2str(node->hw_lvl),
353                          node->hw_id);
354         return 0;
355 }
356
357 int
358 roc_nix_tm_node_delete(struct roc_nix *roc_nix, uint32_t node_id, bool free)
359 {
360         return nix_tm_node_delete(roc_nix, node_id, ROC_NIX_TM_USER, free);
361 }
362
363 int
364 roc_nix_smq_flush(struct roc_nix *roc_nix)
365 {
366         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
367         struct nix_tm_node_list *list;
368         enum roc_nix_tm_tree tree;
369         struct nix_tm_node *node;
370         int rc = 0;
371
372         if (!(nix->tm_flags & NIX_TM_HIERARCHY_ENA))
373                 return 0;
374
375         tree = nix->tm_tree;
376         list = nix_tm_node_list(nix, tree);
377
378         /* XOFF & Flush all SMQ's. HRM mandates
379          * all SQ's empty before SMQ flush is issued.
380          */
381         TAILQ_FOREACH(node, list, node) {
382                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
383                         continue;
384                 if (!(node->flags & NIX_TM_NODE_HWRES))
385                         continue;
386
387                 rc = nix_tm_smq_xoff(nix, node, true);
388                 if (rc) {
389                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
390                                 rc);
391                         goto exit;
392                 }
393         }
394
395         /* XON all SMQ's */
396         TAILQ_FOREACH(node, list, node) {
397                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
398                         continue;
399                 if (!(node->flags & NIX_TM_NODE_HWRES))
400                         continue;
401
402                 rc = nix_tm_smq_xoff(nix, node, false);
403                 if (rc) {
404                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
405                                 rc);
406                         goto exit;
407                 }
408         }
409 exit:
410         return rc;
411 }
412
413 int
414 roc_nix_tm_hierarchy_disable(struct roc_nix *roc_nix)
415 {
416         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
417         uint16_t sqb_cnt, head_off, tail_off;
418         uint16_t sq_cnt = nix->nb_tx_queues;
419         struct mbox *mbox = (&nix->dev)->mbox;
420         struct nix_tm_node_list *list;
421         enum roc_nix_tm_tree tree;
422         struct nix_tm_node *node;
423         struct roc_nix_sq *sq;
424         uint64_t wdata, val;
425         uintptr_t regaddr;
426         int rc = -1, i;
427
428         if (!(nix->tm_flags & NIX_TM_HIERARCHY_ENA))
429                 return 0;
430
431         plt_tm_dbg("Disabling hierarchy on %s", nix->pci_dev->name);
432
433         tree = nix->tm_tree;
434         list = nix_tm_node_list(nix, tree);
435
436         /* Enable CGX RXTX to drain pkts */
437         if (!roc_nix->io_enabled) {
438                 /* Though it enables both RX MCAM Entries and CGX Link
439                  * we assume all the rx queues are stopped way back.
440                  */
441                 mbox_alloc_msg_nix_lf_start_rx(mbox);
442                 rc = mbox_process(mbox);
443                 if (rc) {
444                         plt_err("cgx start failed, rc=%d", rc);
445                         return rc;
446                 }
447         }
448
449         /* XON all SMQ's */
450         TAILQ_FOREACH(node, list, node) {
451                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
452                         continue;
453                 if (!(node->flags & NIX_TM_NODE_HWRES))
454                         continue;
455
456                 rc = nix_tm_smq_xoff(nix, node, false);
457                 if (rc) {
458                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
459                                 rc);
460                         goto cleanup;
461                 }
462         }
463
464         /* Disable backpressure, it will be enabled back if needed on
465          * hierarchy enable
466          */
467         rc = nix_tm_bp_config_set(roc_nix, false);
468         if (rc) {
469                 plt_err("Failed to disable backpressure for flush, rc=%d", rc);
470                 goto cleanup;
471         }
472
473         /* Flush all tx queues */
474         for (i = 0; i < sq_cnt; i++) {
475                 sq = nix->sqs[i];
476                 if (!sq)
477                         continue;
478
479                 rc = roc_nix_tm_sq_aura_fc(sq, false);
480                 if (rc) {
481                         plt_err("Failed to disable sqb aura fc, rc=%d", rc);
482                         goto cleanup;
483                 }
484
485                 /* Wait for sq entries to be flushed */
486                 rc = roc_nix_tm_sq_flush_spin(sq);
487                 if (rc) {
488                         plt_err("Failed to drain sq, rc=%d\n", rc);
489                         goto cleanup;
490                 }
491         }
492
493         /* XOFF & Flush all SMQ's. HRM mandates
494          * all SQ's empty before SMQ flush is issued.
495          */
496         TAILQ_FOREACH(node, list, node) {
497                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
498                         continue;
499                 if (!(node->flags & NIX_TM_NODE_HWRES))
500                         continue;
501
502                 rc = nix_tm_smq_xoff(nix, node, true);
503                 if (rc) {
504                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
505                                 rc);
506                         goto cleanup;
507                 }
508
509                 node->flags &= ~NIX_TM_NODE_ENABLED;
510         }
511
512         /* Verify sanity of all tx queues */
513         for (i = 0; i < sq_cnt; i++) {
514                 sq = nix->sqs[i];
515                 if (!sq)
516                         continue;
517
518                 wdata = ((uint64_t)sq->qid << 32);
519                 regaddr = nix->base + NIX_LF_SQ_OP_STATUS;
520                 val = roc_atomic64_add_nosync(wdata, (int64_t *)regaddr);
521
522                 sqb_cnt = val & 0xFFFF;
523                 head_off = (val >> 20) & 0x3F;
524                 tail_off = (val >> 28) & 0x3F;
525
526                 if (sqb_cnt > 1 || head_off != tail_off ||
527                     (*(uint64_t *)sq->fc != sq->nb_sqb_bufs))
528                         plt_err("Failed to gracefully flush sq %u", sq->qid);
529         }
530
531         nix->tm_flags &= ~NIX_TM_HIERARCHY_ENA;
532 cleanup:
533         /* Restore cgx state */
534         if (!roc_nix->io_enabled) {
535                 mbox_alloc_msg_nix_lf_stop_rx(mbox);
536                 rc |= mbox_process(mbox);
537         }
538         return rc;
539 }
540
541 int
542 roc_nix_tm_hierarchy_enable(struct roc_nix *roc_nix, enum roc_nix_tm_tree tree,
543                             bool xmit_enable)
544 {
545         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
546         struct nix_tm_node_list *list;
547         struct nix_tm_node *node;
548         struct roc_nix_sq *sq;
549         uint32_t tree_mask;
550         uint16_t sq_id;
551         int rc;
552
553         if (tree >= ROC_NIX_TM_TREE_MAX)
554                 return NIX_ERR_PARAM;
555
556         if (nix->tm_flags & NIX_TM_HIERARCHY_ENA) {
557                 if (nix->tm_tree != tree)
558                         return -EBUSY;
559                 return 0;
560         }
561
562         plt_tm_dbg("Enabling hierarchy on %s, xmit_ena %u, tree %u",
563                    nix->pci_dev->name, xmit_enable, tree);
564
565         /* Free hw resources of other trees */
566         tree_mask = NIX_TM_TREE_MASK_ALL;
567         tree_mask &= ~BIT(tree);
568
569         rc = nix_tm_free_resources(roc_nix, tree_mask, true);
570         if (rc) {
571                 plt_err("failed to free resources of other trees, rc=%d", rc);
572                 return rc;
573         }
574
575         /* Update active tree before starting to do anything */
576         nix->tm_tree = tree;
577
578         nix_tm_update_parent_info(nix, tree);
579
580         rc = nix_tm_alloc_txschq(nix, tree);
581         if (rc) {
582                 plt_err("TM failed to alloc tm resources=%d", rc);
583                 return rc;
584         }
585
586         rc = nix_tm_assign_resources(nix, tree);
587         if (rc) {
588                 plt_err("TM failed to assign tm resources=%d", rc);
589                 return rc;
590         }
591
592         rc = nix_tm_txsch_reg_config(nix, tree);
593         if (rc) {
594                 plt_err("TM failed to configure sched registers=%d", rc);
595                 return rc;
596         }
597
598         list = nix_tm_node_list(nix, tree);
599         /* Mark all non-leaf's as enabled */
600         TAILQ_FOREACH(node, list, node) {
601                 if (!nix_tm_is_leaf(nix, node->lvl))
602                         node->flags |= NIX_TM_NODE_ENABLED;
603         }
604
605         if (!xmit_enable)
606                 goto skip_sq_update;
607
608         /* Update SQ Sched Data while SQ is idle */
609         TAILQ_FOREACH(node, list, node) {
610                 if (!nix_tm_is_leaf(nix, node->lvl))
611                         continue;
612
613                 rc = nix_tm_sq_sched_conf(nix, node, false);
614                 if (rc) {
615                         plt_err("SQ %u sched update failed, rc=%d", node->id,
616                                 rc);
617                         return rc;
618                 }
619         }
620
621         /* Finally XON all SMQ's */
622         TAILQ_FOREACH(node, list, node) {
623                 if (node->hw_lvl != NIX_TXSCH_LVL_SMQ)
624                         continue;
625
626                 rc = nix_tm_smq_xoff(nix, node, false);
627                 if (rc) {
628                         plt_err("Failed to enable smq %u, rc=%d", node->hw_id,
629                                 rc);
630                         return rc;
631                 }
632         }
633
634         /* Enable xmit as all the topology is ready */
635         TAILQ_FOREACH(node, list, node) {
636                 if (!nix_tm_is_leaf(nix, node->lvl))
637                         continue;
638
639                 sq_id = node->id;
640                 sq = nix->sqs[sq_id];
641
642                 rc = roc_nix_tm_sq_aura_fc(sq, true);
643                 if (rc) {
644                         plt_err("TM sw xon failed on SQ %u, rc=%d", node->id,
645                                 rc);
646                         return rc;
647                 }
648                 node->flags |= NIX_TM_NODE_ENABLED;
649         }
650
651 skip_sq_update:
652         nix->tm_flags |= NIX_TM_HIERARCHY_ENA;
653         return 0;
654 }
655
656 int
657 roc_nix_tm_node_suspend_resume(struct roc_nix *roc_nix, uint32_t node_id,
658                                bool suspend)
659 {
660         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
661         struct mbox *mbox = (&nix->dev)->mbox;
662         struct nix_txschq_config *req;
663         struct nix_tm_node *node;
664         uint16_t flags;
665         int rc;
666
667         node = nix_tm_node_search(nix, node_id, ROC_NIX_TM_USER);
668         if (!node)
669                 return NIX_ERR_TM_INVALID_NODE;
670
671         flags = node->flags;
672         flags = suspend ? (flags & ~NIX_TM_NODE_ENABLED) :
673                                 (flags | NIX_TM_NODE_ENABLED);
674
675         if (node->flags == flags)
676                 return 0;
677
678         /* send mbox for state change */
679         req = mbox_alloc_msg_nix_txschq_cfg(mbox);
680
681         req->lvl = node->hw_lvl;
682         req->num_regs =
683                 nix_tm_sw_xoff_prep(node, suspend, req->reg, req->regval);
684         rc = mbox_process(mbox);
685         if (!rc)
686                 node->flags = flags;
687         return rc;
688 }
689
690 int
691 roc_nix_tm_prealloc_res(struct roc_nix *roc_nix, uint8_t lvl,
692                         uint16_t discontig, uint16_t contig)
693 {
694         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
695         struct mbox *mbox = (&nix->dev)->mbox;
696         struct nix_txsch_alloc_req *req;
697         struct nix_txsch_alloc_rsp *rsp;
698         uint8_t hw_lvl;
699         int rc = -ENOSPC;
700
701         hw_lvl = nix_tm_lvl2nix(nix, lvl);
702         if (hw_lvl == NIX_TXSCH_LVL_CNT)
703                 return -EINVAL;
704
705         /* Preallocate contiguous */
706         if (nix->contig_rsvd[hw_lvl] < contig) {
707                 req = mbox_alloc_msg_nix_txsch_alloc(mbox);
708                 if (req == NULL)
709                         return rc;
710                 req->schq_contig[hw_lvl] = contig - nix->contig_rsvd[hw_lvl];
711
712                 rc = mbox_process_msg(mbox, (void *)&rsp);
713                 if (rc)
714                         return rc;
715
716                 nix_tm_copy_rsp_to_nix(nix, rsp);
717         }
718
719         /* Preallocate contiguous */
720         if (nix->discontig_rsvd[hw_lvl] < discontig) {
721                 req = mbox_alloc_msg_nix_txsch_alloc(mbox);
722                 if (req == NULL)
723                         return -ENOSPC;
724                 req->schq[hw_lvl] = discontig - nix->discontig_rsvd[hw_lvl];
725
726                 rc = mbox_process_msg(mbox, (void *)&rsp);
727                 if (rc)
728                         return rc;
729
730                 nix_tm_copy_rsp_to_nix(nix, rsp);
731         }
732
733         /* Save thresholds */
734         nix->contig_rsvd[hw_lvl] = contig;
735         nix->discontig_rsvd[hw_lvl] = discontig;
736         /* Release anything present above thresholds */
737         nix_tm_release_resources(nix, hw_lvl, true, true);
738         nix_tm_release_resources(nix, hw_lvl, false, true);
739         return 0;
740 }
741
742 int
743 roc_nix_tm_node_shaper_update(struct roc_nix *roc_nix, uint32_t node_id,
744                               uint32_t profile_id, bool force_update)
745 {
746         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
747         struct nix_tm_shaper_profile *profile = NULL;
748         struct mbox *mbox = (&nix->dev)->mbox;
749         struct nix_txschq_config *req;
750         struct nix_tm_node *node;
751         uint8_t k;
752         int rc;
753
754         /* Shaper updates valid only for user nodes */
755         node = nix_tm_node_search(nix, node_id, ROC_NIX_TM_USER);
756         if (!node || nix_tm_is_leaf(nix, node->lvl))
757                 return NIX_ERR_TM_INVALID_NODE;
758
759         if (profile_id != ROC_NIX_TM_SHAPER_PROFILE_NONE) {
760                 profile = nix_tm_shaper_profile_search(nix, profile_id);
761                 if (!profile)
762                         return NIX_ERR_TM_INVALID_SHAPER_PROFILE;
763         }
764
765         /* Pkt mode should match existing node's pkt mode */
766         if (profile && profile->pkt_mode != node->pkt_mode)
767                 return NIX_ERR_TM_PKT_MODE_MISMATCH;
768
769         if ((profile_id == node->shaper_profile_id) && !force_update) {
770                 return 0;
771         } else if (profile_id != node->shaper_profile_id) {
772                 struct nix_tm_shaper_profile *old;
773
774                 /* Find old shaper profile and reduce ref count */
775                 old = nix_tm_shaper_profile_search(nix,
776                                                    node->shaper_profile_id);
777                 if (old)
778                         old->ref_cnt--;
779
780                 if (profile)
781                         profile->ref_cnt++;
782
783                 /* Reduce older shaper ref count and increase new one */
784                 node->shaper_profile_id = profile_id;
785         }
786
787         /* Nothing to do if hierarchy not yet enabled */
788         if (!(nix->tm_flags & NIX_TM_HIERARCHY_ENA))
789                 return 0;
790
791         node->flags &= ~NIX_TM_NODE_ENABLED;
792
793         /* Flush the specific node with SW_XOFF */
794         req = mbox_alloc_msg_nix_txschq_cfg(mbox);
795         req->lvl = node->hw_lvl;
796         k = nix_tm_sw_xoff_prep(node, true, req->reg, req->regval);
797         req->num_regs = k;
798
799         rc = mbox_process(mbox);
800         if (rc)
801                 return rc;
802
803         /* Update the PIR/CIR and clear SW XOFF */
804         req = mbox_alloc_msg_nix_txschq_cfg(mbox);
805         req->lvl = node->hw_lvl;
806
807         k = nix_tm_shaper_reg_prep(node, profile, req->reg, req->regval);
808
809         k += nix_tm_sw_xoff_prep(node, false, &req->reg[k], &req->regval[k]);
810
811         req->num_regs = k;
812         rc = mbox_process(mbox);
813         if (!rc)
814                 node->flags |= NIX_TM_NODE_ENABLED;
815         return rc;
816 }
817
818 int
819 roc_nix_tm_node_parent_update(struct roc_nix *roc_nix, uint32_t node_id,
820                               uint32_t new_parent_id, uint32_t priority,
821                               uint32_t weight)
822 {
823         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
824         struct mbox *mbox = (&nix->dev)->mbox;
825         struct nix_tm_node *node, *sibling;
826         struct nix_tm_node *new_parent;
827         struct nix_txschq_config *req;
828         struct nix_tm_node_list *list;
829         uint8_t k;
830         int rc;
831
832         node = nix_tm_node_search(nix, node_id, ROC_NIX_TM_USER);
833         if (!node)
834                 return NIX_ERR_TM_INVALID_NODE;
835
836         /* Parent id valid only for non root nodes */
837         if (node->hw_lvl != nix->tm_root_lvl) {
838                 new_parent =
839                         nix_tm_node_search(nix, new_parent_id, ROC_NIX_TM_USER);
840                 if (!new_parent)
841                         return NIX_ERR_TM_INVALID_PARENT;
842
843                 /* Current support is only for dynamic weight update */
844                 if (node->parent != new_parent || node->priority != priority)
845                         return NIX_ERR_TM_PARENT_PRIO_UPDATE;
846         }
847
848         list = nix_tm_node_list(nix, ROC_NIX_TM_USER);
849         /* Skip if no change */
850         if (node->weight == weight)
851                 return 0;
852
853         node->weight = weight;
854
855         /* Nothing to do if hierarchy not yet enabled */
856         if (!(nix->tm_flags & NIX_TM_HIERARCHY_ENA))
857                 return 0;
858
859         /* For leaf nodes, SQ CTX needs update */
860         if (nix_tm_is_leaf(nix, node->lvl)) {
861                 /* Update SQ quantum data on the fly */
862                 rc = nix_tm_sq_sched_conf(nix, node, true);
863                 if (rc)
864                         return NIX_ERR_TM_SQ_UPDATE_FAIL;
865         } else {
866                 /* XOFF Parent node */
867                 req = mbox_alloc_msg_nix_txschq_cfg(mbox);
868                 req->lvl = node->parent->hw_lvl;
869                 req->num_regs = nix_tm_sw_xoff_prep(node->parent, true,
870                                                     req->reg, req->regval);
871                 rc = mbox_process(mbox);
872                 if (rc)
873                         return rc;
874
875                 /* XOFF this node and all other siblings */
876                 req = mbox_alloc_msg_nix_txschq_cfg(mbox);
877                 req->lvl = node->hw_lvl;
878
879                 k = 0;
880                 TAILQ_FOREACH(sibling, list, node) {
881                         if (sibling->parent != node->parent)
882                                 continue;
883                         k += nix_tm_sw_xoff_prep(sibling, true, &req->reg[k],
884                                                  &req->regval[k]);
885                 }
886                 req->num_regs = k;
887                 rc = mbox_process(mbox);
888                 if (rc)
889                         return rc;
890
891                 /* Update new weight for current node */
892                 req = mbox_alloc_msg_nix_txschq_cfg(mbox);
893                 req->lvl = node->hw_lvl;
894                 req->num_regs =
895                         nix_tm_sched_reg_prep(nix, node, req->reg, req->regval);
896                 rc = mbox_process(mbox);
897                 if (rc)
898                         return rc;
899
900                 /* XON this node and all other siblings */
901                 req = mbox_alloc_msg_nix_txschq_cfg(mbox);
902                 req->lvl = node->hw_lvl;
903
904                 k = 0;
905                 TAILQ_FOREACH(sibling, list, node) {
906                         if (sibling->parent != node->parent)
907                                 continue;
908                         k += nix_tm_sw_xoff_prep(sibling, false, &req->reg[k],
909                                                  &req->regval[k]);
910                 }
911                 req->num_regs = k;
912                 rc = mbox_process(mbox);
913                 if (rc)
914                         return rc;
915
916                 /* XON Parent node */
917                 req = mbox_alloc_msg_nix_txschq_cfg(mbox);
918                 req->lvl = node->parent->hw_lvl;
919                 req->num_regs = nix_tm_sw_xoff_prep(node->parent, false,
920                                                     req->reg, req->regval);
921                 rc = mbox_process(mbox);
922                 if (rc)
923                         return rc;
924         }
925         return 0;
926 }
927
928 int
929 roc_nix_tm_init(struct roc_nix *roc_nix)
930 {
931         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
932         uint32_t tree_mask;
933         int rc;
934
935         if (nix->tm_flags & NIX_TM_HIERARCHY_ENA) {
936                 plt_err("Cannot init while existing hierarchy is enabled");
937                 return -EBUSY;
938         }
939
940         /* Free up all user resources already held */
941         tree_mask = NIX_TM_TREE_MASK_ALL;
942         rc = nix_tm_free_resources(roc_nix, tree_mask, false);
943         if (rc) {
944                 plt_err("Failed to freeup all nodes and resources, rc=%d", rc);
945                 return rc;
946         }
947
948         /* Prepare default tree */
949         rc = nix_tm_prepare_default_tree(roc_nix);
950         if (rc) {
951                 plt_err("failed to prepare default tm tree, rc=%d", rc);
952                 return rc;
953         }
954
955         return rc;
956 }
957
958 int
959 roc_nix_tm_rlimit_sq(struct roc_nix *roc_nix, uint16_t qid, uint64_t rate)
960 {
961         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
962         struct nix_tm_shaper_profile profile;
963         struct mbox *mbox = (&nix->dev)->mbox;
964         struct nix_tm_node *node, *parent;
965
966         volatile uint64_t *reg, *regval;
967         struct nix_txschq_config *req;
968         uint16_t flags;
969         uint8_t k = 0;
970         int rc;
971
972         if ((nix->tm_tree == ROC_NIX_TM_USER) ||
973             !(nix->tm_flags & NIX_TM_HIERARCHY_ENA))
974                 return NIX_ERR_TM_INVALID_TREE;
975
976         node = nix_tm_node_search(nix, qid, nix->tm_tree);
977
978         /* check if we found a valid leaf node */
979         if (!node || !nix_tm_is_leaf(nix, node->lvl) || !node->parent ||
980             node->parent->hw_id == NIX_TM_HW_ID_INVALID)
981                 return NIX_ERR_TM_INVALID_NODE;
982
983         parent = node->parent;
984         flags = parent->flags;
985
986         req = mbox_alloc_msg_nix_txschq_cfg(mbox);
987         req->lvl = NIX_TXSCH_LVL_MDQ;
988         reg = req->reg;
989         regval = req->regval;
990
991         if (rate == 0) {
992                 k += nix_tm_sw_xoff_prep(parent, true, &reg[k], &regval[k]);
993                 flags &= ~NIX_TM_NODE_ENABLED;
994                 goto exit;
995         }
996
997         if (!(flags & NIX_TM_NODE_ENABLED)) {
998                 k += nix_tm_sw_xoff_prep(parent, false, &reg[k], &regval[k]);
999                 flags |= NIX_TM_NODE_ENABLED;
1000         }
1001
1002         /* Use only PIR for rate limit */
1003         memset(&profile, 0, sizeof(profile));
1004         profile.peak.rate = rate;
1005         /* Minimum burst of ~4us Bytes of Tx */
1006         profile.peak.size = PLT_MAX((uint64_t)roc_nix_max_pkt_len(roc_nix),
1007                                     (4ul * rate) / ((uint64_t)1E6 * 8));
1008         if (!nix->tm_rate_min || nix->tm_rate_min > rate)
1009                 nix->tm_rate_min = rate;
1010
1011         k += nix_tm_shaper_reg_prep(parent, &profile, &reg[k], &regval[k]);
1012 exit:
1013         req->num_regs = k;
1014         rc = mbox_process(mbox);
1015         if (rc)
1016                 return rc;
1017
1018         parent->flags = flags;
1019         return 0;
1020 }
1021
1022 void
1023 roc_nix_tm_fini(struct roc_nix *roc_nix)
1024 {
1025         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
1026         struct mbox *mbox = (&nix->dev)->mbox;
1027         struct nix_txsch_free_req *req;
1028         uint32_t tree_mask;
1029         uint8_t hw_lvl;
1030         int rc;
1031
1032         /* Xmit is assumed to be disabled */
1033         /* Free up resources already held */
1034         tree_mask = NIX_TM_TREE_MASK_ALL;
1035         rc = nix_tm_free_resources(roc_nix, tree_mask, false);
1036         if (rc)
1037                 plt_err("Failed to freeup existing nodes or rsrcs, rc=%d", rc);
1038
1039         /* Free all other hw resources */
1040         req = mbox_alloc_msg_nix_txsch_free(mbox);
1041         if (req == NULL)
1042                 return;
1043
1044         req->flags = TXSCHQ_FREE_ALL;
1045         rc = mbox_process(mbox);
1046         if (rc)
1047                 plt_err("Failed to freeup all res, rc=%d", rc);
1048
1049         for (hw_lvl = 0; hw_lvl < NIX_TXSCH_LVL_CNT; hw_lvl++) {
1050                 plt_bitmap_reset(nix->schq_bmp[hw_lvl]);
1051                 plt_bitmap_reset(nix->schq_contig_bmp[hw_lvl]);
1052                 nix->contig_rsvd[hw_lvl] = 0;
1053                 nix->discontig_rsvd[hw_lvl] = 0;
1054         }
1055
1056         /* Clear shaper profiles */
1057         nix_tm_clear_shaper_profiles(nix);
1058         nix->tm_tree = 0;
1059         nix->tm_flags &= ~NIX_TM_HIERARCHY_ENA;
1060 }
1061
1062 int
1063 roc_nix_tm_rsrc_count(struct roc_nix *roc_nix, uint16_t schq[ROC_TM_LVL_MAX])
1064 {
1065         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
1066         struct mbox *mbox = (&nix->dev)->mbox;
1067         struct free_rsrcs_rsp *rsp;
1068         uint8_t hw_lvl;
1069         int rc, i;
1070
1071         /* Get the current free resources */
1072         mbox_alloc_msg_free_rsrc_cnt(mbox);
1073         rc = mbox_process_msg(mbox, (void *)&rsp);
1074         if (rc)
1075                 return rc;
1076
1077         for (i = 0; i < ROC_TM_LVL_MAX; i++) {
1078                 hw_lvl = nix_tm_lvl2nix(nix, i);
1079                 if (hw_lvl == NIX_TXSCH_LVL_CNT)
1080                         continue;
1081
1082                 schq[i] = (nix->is_nix1 ? rsp->schq_nix1[hw_lvl] :
1083                                                 rsp->schq[hw_lvl]);
1084         }
1085
1086         return 0;
1087 }
1088
1089 void
1090 roc_nix_tm_rsrc_max(bool pf, uint16_t schq[ROC_TM_LVL_MAX])
1091 {
1092         uint8_t hw_lvl, i;
1093         uint16_t max;
1094
1095         for (i = 0; i < ROC_TM_LVL_MAX; i++) {
1096                 hw_lvl = pf ? nix_tm_lvl2nix_tl1_root(i) :
1097                                     nix_tm_lvl2nix_tl2_root(i);
1098
1099                 switch (hw_lvl) {
1100                 case NIX_TXSCH_LVL_SMQ:
1101                         max = (roc_model_is_cn9k() ?
1102                                              NIX_CN9K_TXSCH_LVL_SMQ_MAX :
1103                                              NIX_TXSCH_LVL_SMQ_MAX);
1104                         break;
1105                 case NIX_TXSCH_LVL_TL4:
1106                         max = NIX_TXSCH_LVL_TL4_MAX;
1107                         break;
1108                 case NIX_TXSCH_LVL_TL3:
1109                         max = NIX_TXSCH_LVL_TL3_MAX;
1110                         break;
1111                 case NIX_TXSCH_LVL_TL2:
1112                         max = pf ? NIX_TXSCH_LVL_TL2_MAX : 1;
1113                         break;
1114                 case NIX_TXSCH_LVL_TL1:
1115                         max = pf ? 1 : 0;
1116                         break;
1117                 default:
1118                         max = 0;
1119                         break;
1120                 }
1121                 schq[i] = max;
1122         }
1123 }
1124
1125 bool
1126 roc_nix_tm_root_has_sp(struct roc_nix *roc_nix)
1127 {
1128         struct nix *nix = roc_nix_to_nix_priv(roc_nix);
1129
1130         if (nix->tm_flags & NIX_TM_TL1_NO_SP)
1131                 return false;
1132         return true;
1133 }