544648cb841d9fb08d475acbf31dcf89da49ebf2
[dpdk.git] / drivers / net / ice / base / ice_sched.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2021 Intel Corporation
3  */
4
5 #include "ice_sched.h"
6
7 /**
8  * ice_sched_add_root_node - Insert the Tx scheduler root node in SW DB
9  * @pi: port information structure
10  * @info: Scheduler element information from firmware
11  *
12  * This function inserts the root node of the scheduling tree topology
13  * to the SW DB.
14  */
15 static enum ice_status
16 ice_sched_add_root_node(struct ice_port_info *pi,
17                         struct ice_aqc_txsched_elem_data *info)
18 {
19         struct ice_sched_node *root;
20         struct ice_hw *hw;
21
22         if (!pi)
23                 return ICE_ERR_PARAM;
24
25         hw = pi->hw;
26
27         root = (struct ice_sched_node *)ice_malloc(hw, sizeof(*root));
28         if (!root)
29                 return ICE_ERR_NO_MEMORY;
30
31         /* coverity[suspicious_sizeof] */
32         root->children = (struct ice_sched_node **)
33                 ice_calloc(hw, hw->max_children[0], sizeof(*root));
34         if (!root->children) {
35                 ice_free(hw, root);
36                 return ICE_ERR_NO_MEMORY;
37         }
38
39         ice_memcpy(&root->info, info, sizeof(*info), ICE_DMA_TO_NONDMA);
40         pi->root = root;
41         return ICE_SUCCESS;
42 }
43
44 /**
45  * ice_sched_find_node_by_teid - Find the Tx scheduler node in SW DB
46  * @start_node: pointer to the starting ice_sched_node struct in a sub-tree
47  * @teid: node TEID to search
48  *
49  * This function searches for a node matching the TEID in the scheduling tree
50  * from the SW DB. The search is recursive and is restricted by the number of
51  * layers it has searched through; stopping at the max supported layer.
52  *
53  * This function needs to be called when holding the port_info->sched_lock
54  */
55 struct ice_sched_node *
56 ice_sched_find_node_by_teid(struct ice_sched_node *start_node, u32 teid)
57 {
58         u16 i;
59
60         /* The TEID is same as that of the start_node */
61         if (ICE_TXSCHED_GET_NODE_TEID(start_node) == teid)
62                 return start_node;
63
64         /* The node has no children or is at the max layer */
65         if (!start_node->num_children ||
66             start_node->tx_sched_layer >= ICE_AQC_TOPO_MAX_LEVEL_NUM ||
67             start_node->info.data.elem_type == ICE_AQC_ELEM_TYPE_LEAF)
68                 return NULL;
69
70         /* Check if TEID matches to any of the children nodes */
71         for (i = 0; i < start_node->num_children; i++)
72                 if (ICE_TXSCHED_GET_NODE_TEID(start_node->children[i]) == teid)
73                         return start_node->children[i];
74
75         /* Search within each child's sub-tree */
76         for (i = 0; i < start_node->num_children; i++) {
77                 struct ice_sched_node *tmp;
78
79                 tmp = ice_sched_find_node_by_teid(start_node->children[i],
80                                                   teid);
81                 if (tmp)
82                         return tmp;
83         }
84
85         return NULL;
86 }
87
88 /**
89  * ice_aqc_send_sched_elem_cmd - send scheduling elements cmd
90  * @hw: pointer to the HW struct
91  * @cmd_opc: cmd opcode
92  * @elems_req: number of elements to request
93  * @buf: pointer to buffer
94  * @buf_size: buffer size in bytes
95  * @elems_resp: returns total number of elements response
96  * @cd: pointer to command details structure or NULL
97  *
98  * This function sends a scheduling elements cmd (cmd_opc)
99  */
100 static enum ice_status
101 ice_aqc_send_sched_elem_cmd(struct ice_hw *hw, enum ice_adminq_opc cmd_opc,
102                             u16 elems_req, void *buf, u16 buf_size,
103                             u16 *elems_resp, struct ice_sq_cd *cd)
104 {
105         struct ice_aqc_sched_elem_cmd *cmd;
106         struct ice_aq_desc desc;
107         enum ice_status status;
108
109         cmd = &desc.params.sched_elem_cmd;
110         ice_fill_dflt_direct_cmd_desc(&desc, cmd_opc);
111         cmd->num_elem_req = CPU_TO_LE16(elems_req);
112         desc.flags |= CPU_TO_LE16(ICE_AQ_FLAG_RD);
113         status = ice_aq_send_cmd(hw, &desc, buf, buf_size, cd);
114         if (!status && elems_resp)
115                 *elems_resp = LE16_TO_CPU(cmd->num_elem_resp);
116
117         return status;
118 }
119
120 /**
121  * ice_aq_query_sched_elems - query scheduler elements
122  * @hw: pointer to the HW struct
123  * @elems_req: number of elements to query
124  * @buf: pointer to buffer
125  * @buf_size: buffer size in bytes
126  * @elems_ret: returns total number of elements returned
127  * @cd: pointer to command details structure or NULL
128  *
129  * Query scheduling elements (0x0404)
130  */
131 enum ice_status
132 ice_aq_query_sched_elems(struct ice_hw *hw, u16 elems_req,
133                          struct ice_aqc_txsched_elem_data *buf, u16 buf_size,
134                          u16 *elems_ret, struct ice_sq_cd *cd)
135 {
136         return ice_aqc_send_sched_elem_cmd(hw, ice_aqc_opc_get_sched_elems,
137                                            elems_req, (void *)buf, buf_size,
138                                            elems_ret, cd);
139 }
140
141 /**
142  * ice_sched_add_node - Insert the Tx scheduler node in SW DB
143  * @pi: port information structure
144  * @layer: Scheduler layer of the node
145  * @info: Scheduler element information from firmware
146  *
147  * This function inserts a scheduler node to the SW DB.
148  */
149 enum ice_status
150 ice_sched_add_node(struct ice_port_info *pi, u8 layer,
151                    struct ice_aqc_txsched_elem_data *info)
152 {
153         struct ice_aqc_txsched_elem_data elem;
154         struct ice_sched_node *parent;
155         struct ice_sched_node *node;
156         enum ice_status status;
157         struct ice_hw *hw;
158
159         if (!pi)
160                 return ICE_ERR_PARAM;
161
162         hw = pi->hw;
163
164         /* A valid parent node should be there */
165         parent = ice_sched_find_node_by_teid(pi->root,
166                                              LE32_TO_CPU(info->parent_teid));
167         if (!parent) {
168                 ice_debug(hw, ICE_DBG_SCHED, "Parent Node not found for parent_teid=0x%x\n",
169                           LE32_TO_CPU(info->parent_teid));
170                 return ICE_ERR_PARAM;
171         }
172
173         /* query the current node information from FW before adding it
174          * to the SW DB
175          */
176         status = ice_sched_query_elem(hw, LE32_TO_CPU(info->node_teid), &elem);
177         if (status)
178                 return status;
179         node = (struct ice_sched_node *)ice_malloc(hw, sizeof(*node));
180         if (!node)
181                 return ICE_ERR_NO_MEMORY;
182         if (hw->max_children[layer]) {
183                 /* coverity[suspicious_sizeof] */
184                 node->children = (struct ice_sched_node **)
185                         ice_calloc(hw, hw->max_children[layer], sizeof(*node));
186                 if (!node->children) {
187                         ice_free(hw, node);
188                         return ICE_ERR_NO_MEMORY;
189                 }
190         }
191
192         node->in_use = true;
193         node->parent = parent;
194         node->tx_sched_layer = layer;
195         parent->children[parent->num_children++] = node;
196         node->info = elem;
197         return ICE_SUCCESS;
198 }
199
200 /**
201  * ice_aq_delete_sched_elems - delete scheduler elements
202  * @hw: pointer to the HW struct
203  * @grps_req: number of groups to delete
204  * @buf: pointer to buffer
205  * @buf_size: buffer size in bytes
206  * @grps_del: returns total number of elements deleted
207  * @cd: pointer to command details structure or NULL
208  *
209  * Delete scheduling elements (0x040F)
210  */
211 static enum ice_status
212 ice_aq_delete_sched_elems(struct ice_hw *hw, u16 grps_req,
213                           struct ice_aqc_delete_elem *buf, u16 buf_size,
214                           u16 *grps_del, struct ice_sq_cd *cd)
215 {
216         return ice_aqc_send_sched_elem_cmd(hw, ice_aqc_opc_delete_sched_elems,
217                                            grps_req, (void *)buf, buf_size,
218                                            grps_del, cd);
219 }
220
221 /**
222  * ice_sched_remove_elems - remove nodes from HW
223  * @hw: pointer to the HW struct
224  * @parent: pointer to the parent node
225  * @num_nodes: number of nodes
226  * @node_teids: array of node teids to be deleted
227  *
228  * This function remove nodes from HW
229  */
230 static enum ice_status
231 ice_sched_remove_elems(struct ice_hw *hw, struct ice_sched_node *parent,
232                        u16 num_nodes, u32 *node_teids)
233 {
234         struct ice_aqc_delete_elem *buf;
235         u16 i, num_groups_removed = 0;
236         enum ice_status status;
237         u16 buf_size;
238
239         buf_size = ice_struct_size(buf, teid, num_nodes);
240         buf = (struct ice_aqc_delete_elem *)ice_malloc(hw, buf_size);
241         if (!buf)
242                 return ICE_ERR_NO_MEMORY;
243
244         buf->hdr.parent_teid = parent->info.node_teid;
245         buf->hdr.num_elems = CPU_TO_LE16(num_nodes);
246         for (i = 0; i < num_nodes; i++)
247                 buf->teid[i] = CPU_TO_LE32(node_teids[i]);
248
249         status = ice_aq_delete_sched_elems(hw, 1, buf, buf_size,
250                                            &num_groups_removed, NULL);
251         if (status != ICE_SUCCESS || num_groups_removed != 1)
252                 ice_debug(hw, ICE_DBG_SCHED, "remove node failed FW error %d\n",
253                           hw->adminq.sq_last_status);
254
255         ice_free(hw, buf);
256         return status;
257 }
258
259 /**
260  * ice_sched_get_first_node - get the first node of the given layer
261  * @pi: port information structure
262  * @parent: pointer the base node of the subtree
263  * @layer: layer number
264  *
265  * This function retrieves the first node of the given layer from the subtree
266  */
267 static struct ice_sched_node *
268 ice_sched_get_first_node(struct ice_port_info *pi,
269                          struct ice_sched_node *parent, u8 layer)
270 {
271         return pi->sib_head[parent->tc_num][layer];
272 }
273
274 /**
275  * ice_sched_get_tc_node - get pointer to TC node
276  * @pi: port information structure
277  * @tc: TC number
278  *
279  * This function returns the TC node pointer
280  */
281 struct ice_sched_node *ice_sched_get_tc_node(struct ice_port_info *pi, u8 tc)
282 {
283         u8 i;
284
285         if (!pi || !pi->root)
286                 return NULL;
287         for (i = 0; i < pi->root->num_children; i++)
288                 if (pi->root->children[i]->tc_num == tc)
289                         return pi->root->children[i];
290         return NULL;
291 }
292
293 /**
294  * ice_free_sched_node - Free a Tx scheduler node from SW DB
295  * @pi: port information structure
296  * @node: pointer to the ice_sched_node struct
297  *
298  * This function frees up a node from SW DB as well as from HW
299  *
300  * This function needs to be called with the port_info->sched_lock held
301  */
302 void ice_free_sched_node(struct ice_port_info *pi, struct ice_sched_node *node)
303 {
304         struct ice_sched_node *parent;
305         struct ice_hw *hw = pi->hw;
306         u8 i, j;
307
308         /* Free the children before freeing up the parent node
309          * The parent array is updated below and that shifts the nodes
310          * in the array. So always pick the first child if num children > 0
311          */
312         while (node->num_children)
313                 ice_free_sched_node(pi, node->children[0]);
314
315         /* Leaf, TC and root nodes can't be deleted by SW */
316         if (node->tx_sched_layer >= hw->sw_entry_point_layer &&
317             node->info.data.elem_type != ICE_AQC_ELEM_TYPE_TC &&
318             node->info.data.elem_type != ICE_AQC_ELEM_TYPE_ROOT_PORT &&
319             node->info.data.elem_type != ICE_AQC_ELEM_TYPE_LEAF) {
320                 u32 teid = LE32_TO_CPU(node->info.node_teid);
321
322                 ice_sched_remove_elems(hw, node->parent, 1, &teid);
323         }
324         parent = node->parent;
325         /* root has no parent */
326         if (parent) {
327                 struct ice_sched_node *p;
328
329                 /* update the parent */
330                 for (i = 0; i < parent->num_children; i++)
331                         if (parent->children[i] == node) {
332                                 for (j = i + 1; j < parent->num_children; j++)
333                                         parent->children[j - 1] =
334                                                 parent->children[j];
335                                 parent->num_children--;
336                                 break;
337                         }
338
339                 p = ice_sched_get_first_node(pi, node, node->tx_sched_layer);
340                 while (p) {
341                         if (p->sibling == node) {
342                                 p->sibling = node->sibling;
343                                 break;
344                         }
345                         p = p->sibling;
346                 }
347
348                 /* update the sibling head if head is getting removed */
349                 if (pi->sib_head[node->tc_num][node->tx_sched_layer] == node)
350                         pi->sib_head[node->tc_num][node->tx_sched_layer] =
351                                 node->sibling;
352         }
353
354         /* leaf nodes have no children */
355         if (node->children)
356                 ice_free(hw, node->children);
357         ice_free(hw, node);
358 }
359
360 /**
361  * ice_aq_get_dflt_topo - gets default scheduler topology
362  * @hw: pointer to the HW struct
363  * @lport: logical port number
364  * @buf: pointer to buffer
365  * @buf_size: buffer size in bytes
366  * @num_branches: returns total number of queue to port branches
367  * @cd: pointer to command details structure or NULL
368  *
369  * Get default scheduler topology (0x400)
370  */
371 static enum ice_status
372 ice_aq_get_dflt_topo(struct ice_hw *hw, u8 lport,
373                      struct ice_aqc_get_topo_elem *buf, u16 buf_size,
374                      u8 *num_branches, struct ice_sq_cd *cd)
375 {
376         struct ice_aqc_get_topo *cmd;
377         struct ice_aq_desc desc;
378         enum ice_status status;
379
380         cmd = &desc.params.get_topo;
381         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_get_dflt_topo);
382         cmd->port_num = lport;
383         status = ice_aq_send_cmd(hw, &desc, buf, buf_size, cd);
384         if (!status && num_branches)
385                 *num_branches = cmd->num_branches;
386
387         return status;
388 }
389
390 /**
391  * ice_aq_add_sched_elems - adds scheduling element
392  * @hw: pointer to the HW struct
393  * @grps_req: the number of groups that are requested to be added
394  * @buf: pointer to buffer
395  * @buf_size: buffer size in bytes
396  * @grps_added: returns total number of groups added
397  * @cd: pointer to command details structure or NULL
398  *
399  * Add scheduling elements (0x0401)
400  */
401 static enum ice_status
402 ice_aq_add_sched_elems(struct ice_hw *hw, u16 grps_req,
403                        struct ice_aqc_add_elem *buf, u16 buf_size,
404                        u16 *grps_added, struct ice_sq_cd *cd)
405 {
406         return ice_aqc_send_sched_elem_cmd(hw, ice_aqc_opc_add_sched_elems,
407                                            grps_req, (void *)buf, buf_size,
408                                            grps_added, cd);
409 }
410
411 /**
412  * ice_aq_cfg_sched_elems - configures scheduler elements
413  * @hw: pointer to the HW struct
414  * @elems_req: number of elements to configure
415  * @buf: pointer to buffer
416  * @buf_size: buffer size in bytes
417  * @elems_cfgd: returns total number of elements configured
418  * @cd: pointer to command details structure or NULL
419  *
420  * Configure scheduling elements (0x0403)
421  */
422 static enum ice_status
423 ice_aq_cfg_sched_elems(struct ice_hw *hw, u16 elems_req,
424                        struct ice_aqc_txsched_elem_data *buf, u16 buf_size,
425                        u16 *elems_cfgd, struct ice_sq_cd *cd)
426 {
427         return ice_aqc_send_sched_elem_cmd(hw, ice_aqc_opc_cfg_sched_elems,
428                                            elems_req, (void *)buf, buf_size,
429                                            elems_cfgd, cd);
430 }
431
432 /**
433  * ice_aq_move_sched_elems - move scheduler elements
434  * @hw: pointer to the HW struct
435  * @grps_req: number of groups to move
436  * @buf: pointer to buffer
437  * @buf_size: buffer size in bytes
438  * @grps_movd: returns total number of groups moved
439  * @cd: pointer to command details structure or NULL
440  *
441  * Move scheduling elements (0x0408)
442  */
443 static enum ice_status
444 ice_aq_move_sched_elems(struct ice_hw *hw, u16 grps_req,
445                         struct ice_aqc_move_elem *buf, u16 buf_size,
446                         u16 *grps_movd, struct ice_sq_cd *cd)
447 {
448         return ice_aqc_send_sched_elem_cmd(hw, ice_aqc_opc_move_sched_elems,
449                                            grps_req, (void *)buf, buf_size,
450                                            grps_movd, cd);
451 }
452
453 /**
454  * ice_aq_suspend_sched_elems - suspend scheduler elements
455  * @hw: pointer to the HW struct
456  * @elems_req: number of elements to suspend
457  * @buf: pointer to buffer
458  * @buf_size: buffer size in bytes
459  * @elems_ret: returns total number of elements suspended
460  * @cd: pointer to command details structure or NULL
461  *
462  * Suspend scheduling elements (0x0409)
463  */
464 static enum ice_status
465 ice_aq_suspend_sched_elems(struct ice_hw *hw, u16 elems_req, __le32 *buf,
466                            u16 buf_size, u16 *elems_ret, struct ice_sq_cd *cd)
467 {
468         return ice_aqc_send_sched_elem_cmd(hw, ice_aqc_opc_suspend_sched_elems,
469                                            elems_req, (void *)buf, buf_size,
470                                            elems_ret, cd);
471 }
472
473 /**
474  * ice_aq_resume_sched_elems - resume scheduler elements
475  * @hw: pointer to the HW struct
476  * @elems_req: number of elements to resume
477  * @buf: pointer to buffer
478  * @buf_size: buffer size in bytes
479  * @elems_ret: returns total number of elements resumed
480  * @cd: pointer to command details structure or NULL
481  *
482  * resume scheduling elements (0x040A)
483  */
484 static enum ice_status
485 ice_aq_resume_sched_elems(struct ice_hw *hw, u16 elems_req, __le32 *buf,
486                           u16 buf_size, u16 *elems_ret, struct ice_sq_cd *cd)
487 {
488         return ice_aqc_send_sched_elem_cmd(hw, ice_aqc_opc_resume_sched_elems,
489                                            elems_req, (void *)buf, buf_size,
490                                            elems_ret, cd);
491 }
492
493 /**
494  * ice_aq_query_sched_res - query scheduler resource
495  * @hw: pointer to the HW struct
496  * @buf_size: buffer size in bytes
497  * @buf: pointer to buffer
498  * @cd: pointer to command details structure or NULL
499  *
500  * Query scheduler resource allocation (0x0412)
501  */
502 static enum ice_status
503 ice_aq_query_sched_res(struct ice_hw *hw, u16 buf_size,
504                        struct ice_aqc_query_txsched_res_resp *buf,
505                        struct ice_sq_cd *cd)
506 {
507         struct ice_aq_desc desc;
508
509         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_query_sched_res);
510         return ice_aq_send_cmd(hw, &desc, buf, buf_size, cd);
511 }
512
513 /**
514  * ice_sched_suspend_resume_elems - suspend or resume HW nodes
515  * @hw: pointer to the HW struct
516  * @num_nodes: number of nodes
517  * @node_teids: array of node teids to be suspended or resumed
518  * @suspend: true means suspend / false means resume
519  *
520  * This function suspends or resumes HW nodes
521  */
522 static enum ice_status
523 ice_sched_suspend_resume_elems(struct ice_hw *hw, u8 num_nodes, u32 *node_teids,
524                                bool suspend)
525 {
526         u16 i, buf_size, num_elem_ret = 0;
527         enum ice_status status;
528         __le32 *buf;
529
530         buf_size = sizeof(*buf) * num_nodes;
531         buf = (__le32 *)ice_malloc(hw, buf_size);
532         if (!buf)
533                 return ICE_ERR_NO_MEMORY;
534
535         for (i = 0; i < num_nodes; i++)
536                 buf[i] = CPU_TO_LE32(node_teids[i]);
537
538         if (suspend)
539                 status = ice_aq_suspend_sched_elems(hw, num_nodes, buf,
540                                                     buf_size, &num_elem_ret,
541                                                     NULL);
542         else
543                 status = ice_aq_resume_sched_elems(hw, num_nodes, buf,
544                                                    buf_size, &num_elem_ret,
545                                                    NULL);
546         if (status != ICE_SUCCESS || num_elem_ret != num_nodes)
547                 ice_debug(hw, ICE_DBG_SCHED, "suspend/resume failed\n");
548
549         ice_free(hw, buf);
550         return status;
551 }
552
553 /**
554  * ice_alloc_lan_q_ctx - allocate LAN queue contexts for the given VSI and TC
555  * @hw: pointer to the HW struct
556  * @vsi_handle: VSI handle
557  * @tc: TC number
558  * @new_numqs: number of queues
559  */
560 static enum ice_status
561 ice_alloc_lan_q_ctx(struct ice_hw *hw, u16 vsi_handle, u8 tc, u16 new_numqs)
562 {
563         struct ice_vsi_ctx *vsi_ctx;
564         struct ice_q_ctx *q_ctx;
565
566         vsi_ctx = ice_get_vsi_ctx(hw, vsi_handle);
567         if (!vsi_ctx)
568                 return ICE_ERR_PARAM;
569         /* allocate LAN queue contexts */
570         if (!vsi_ctx->lan_q_ctx[tc]) {
571                 vsi_ctx->lan_q_ctx[tc] = (struct ice_q_ctx *)
572                         ice_calloc(hw, new_numqs, sizeof(*q_ctx));
573                 if (!vsi_ctx->lan_q_ctx[tc])
574                         return ICE_ERR_NO_MEMORY;
575                 vsi_ctx->num_lan_q_entries[tc] = new_numqs;
576                 return ICE_SUCCESS;
577         }
578         /* num queues are increased, update the queue contexts */
579         if (new_numqs > vsi_ctx->num_lan_q_entries[tc]) {
580                 u16 prev_num = vsi_ctx->num_lan_q_entries[tc];
581
582                 q_ctx = (struct ice_q_ctx *)
583                         ice_calloc(hw, new_numqs, sizeof(*q_ctx));
584                 if (!q_ctx)
585                         return ICE_ERR_NO_MEMORY;
586                 ice_memcpy(q_ctx, vsi_ctx->lan_q_ctx[tc],
587                            prev_num * sizeof(*q_ctx), ICE_DMA_TO_NONDMA);
588                 ice_free(hw, vsi_ctx->lan_q_ctx[tc]);
589                 vsi_ctx->lan_q_ctx[tc] = q_ctx;
590                 vsi_ctx->num_lan_q_entries[tc] = new_numqs;
591         }
592         return ICE_SUCCESS;
593 }
594
595 /**
596  * ice_aq_rl_profile - performs a rate limiting task
597  * @hw: pointer to the HW struct
598  * @opcode: opcode for add, query, or remove profile(s)
599  * @num_profiles: the number of profiles
600  * @buf: pointer to buffer
601  * @buf_size: buffer size in bytes
602  * @num_processed: number of processed add or remove profile(s) to return
603  * @cd: pointer to command details structure
604  *
605  * RL profile function to add, query, or remove profile(s)
606  */
607 static enum ice_status
608 ice_aq_rl_profile(struct ice_hw *hw, enum ice_adminq_opc opcode,
609                   u16 num_profiles, struct ice_aqc_rl_profile_elem *buf,
610                   u16 buf_size, u16 *num_processed, struct ice_sq_cd *cd)
611 {
612         struct ice_aqc_rl_profile *cmd;
613         struct ice_aq_desc desc;
614         enum ice_status status;
615
616         cmd = &desc.params.rl_profile;
617
618         ice_fill_dflt_direct_cmd_desc(&desc, opcode);
619         desc.flags |= CPU_TO_LE16(ICE_AQ_FLAG_RD);
620         cmd->num_profiles = CPU_TO_LE16(num_profiles);
621         status = ice_aq_send_cmd(hw, &desc, buf, buf_size, cd);
622         if (!status && num_processed)
623                 *num_processed = LE16_TO_CPU(cmd->num_processed);
624         return status;
625 }
626
627 /**
628  * ice_aq_add_rl_profile - adds rate limiting profile(s)
629  * @hw: pointer to the HW struct
630  * @num_profiles: the number of profile(s) to be add
631  * @buf: pointer to buffer
632  * @buf_size: buffer size in bytes
633  * @num_profiles_added: total number of profiles added to return
634  * @cd: pointer to command details structure
635  *
636  * Add RL profile (0x0410)
637  */
638 static enum ice_status
639 ice_aq_add_rl_profile(struct ice_hw *hw, u16 num_profiles,
640                       struct ice_aqc_rl_profile_elem *buf, u16 buf_size,
641                       u16 *num_profiles_added, struct ice_sq_cd *cd)
642 {
643         return ice_aq_rl_profile(hw, ice_aqc_opc_add_rl_profiles, num_profiles,
644                                  buf, buf_size, num_profiles_added, cd);
645 }
646
647 /**
648  * ice_aq_query_rl_profile - query rate limiting profile(s)
649  * @hw: pointer to the HW struct
650  * @num_profiles: the number of profile(s) to query
651  * @buf: pointer to buffer
652  * @buf_size: buffer size in bytes
653  * @cd: pointer to command details structure
654  *
655  * Query RL profile (0x0411)
656  */
657 enum ice_status
658 ice_aq_query_rl_profile(struct ice_hw *hw, u16 num_profiles,
659                         struct ice_aqc_rl_profile_elem *buf, u16 buf_size,
660                         struct ice_sq_cd *cd)
661 {
662         return ice_aq_rl_profile(hw, ice_aqc_opc_query_rl_profiles,
663                                  num_profiles, buf, buf_size, NULL, cd);
664 }
665
666 /**
667  * ice_aq_remove_rl_profile - removes RL profile(s)
668  * @hw: pointer to the HW struct
669  * @num_profiles: the number of profile(s) to remove
670  * @buf: pointer to buffer
671  * @buf_size: buffer size in bytes
672  * @num_profiles_removed: total number of profiles removed to return
673  * @cd: pointer to command details structure or NULL
674  *
675  * Remove RL profile (0x0415)
676  */
677 static enum ice_status
678 ice_aq_remove_rl_profile(struct ice_hw *hw, u16 num_profiles,
679                          struct ice_aqc_rl_profile_elem *buf, u16 buf_size,
680                          u16 *num_profiles_removed, struct ice_sq_cd *cd)
681 {
682         return ice_aq_rl_profile(hw, ice_aqc_opc_remove_rl_profiles,
683                                  num_profiles, buf, buf_size,
684                                  num_profiles_removed, cd);
685 }
686
687 /**
688  * ice_sched_del_rl_profile - remove RL profile
689  * @hw: pointer to the HW struct
690  * @rl_info: rate limit profile information
691  *
692  * If the profile ID is not referenced anymore, it removes profile ID with
693  * its associated parameters from HW DB,and locally. The caller needs to
694  * hold scheduler lock.
695  */
696 static enum ice_status
697 ice_sched_del_rl_profile(struct ice_hw *hw,
698                          struct ice_aqc_rl_profile_info *rl_info)
699 {
700         struct ice_aqc_rl_profile_elem *buf;
701         u16 num_profiles_removed;
702         enum ice_status status;
703         u16 num_profiles = 1;
704
705         if (rl_info->prof_id_ref != 0)
706                 return ICE_ERR_IN_USE;
707
708         /* Safe to remove profile ID */
709         buf = &rl_info->profile;
710         status = ice_aq_remove_rl_profile(hw, num_profiles, buf, sizeof(*buf),
711                                           &num_profiles_removed, NULL);
712         if (status || num_profiles_removed != num_profiles)
713                 return ICE_ERR_CFG;
714
715         /* Delete stale entry now */
716         LIST_DEL(&rl_info->list_entry);
717         ice_free(hw, rl_info);
718         return status;
719 }
720
721 /**
722  * ice_sched_clear_rl_prof - clears RL prof entries
723  * @pi: port information structure
724  *
725  * This function removes all RL profile from HW as well as from SW DB.
726  */
727 static void ice_sched_clear_rl_prof(struct ice_port_info *pi)
728 {
729         u16 ln;
730         struct ice_hw *hw = pi->hw;
731
732         for (ln = 0; ln < hw->num_tx_sched_layers; ln++) {
733                 struct ice_aqc_rl_profile_info *rl_prof_elem;
734                 struct ice_aqc_rl_profile_info *rl_prof_tmp;
735
736                 LIST_FOR_EACH_ENTRY_SAFE(rl_prof_elem, rl_prof_tmp,
737                                          &hw->rl_prof_list[ln],
738                                          ice_aqc_rl_profile_info, list_entry) {
739                         enum ice_status status;
740
741                         rl_prof_elem->prof_id_ref = 0;
742                         status = ice_sched_del_rl_profile(hw, rl_prof_elem);
743                         if (status) {
744                                 ice_debug(hw, ICE_DBG_SCHED, "Remove rl profile failed\n");
745                                 /* On error, free mem required */
746                                 LIST_DEL(&rl_prof_elem->list_entry);
747                                 ice_free(hw, rl_prof_elem);
748                         }
749                 }
750         }
751 }
752
753 /**
754  * ice_sched_clear_agg - clears the aggregator related information
755  * @hw: pointer to the hardware structure
756  *
757  * This function removes aggregator list and free up aggregator related memory
758  * previously allocated.
759  */
760 void ice_sched_clear_agg(struct ice_hw *hw)
761 {
762         struct ice_sched_agg_info *agg_info;
763         struct ice_sched_agg_info *atmp;
764
765         LIST_FOR_EACH_ENTRY_SAFE(agg_info, atmp, &hw->agg_list,
766                                  ice_sched_agg_info,
767                                  list_entry) {
768                 struct ice_sched_agg_vsi_info *agg_vsi_info;
769                 struct ice_sched_agg_vsi_info *vtmp;
770
771                 LIST_FOR_EACH_ENTRY_SAFE(agg_vsi_info, vtmp,
772                                          &agg_info->agg_vsi_list,
773                                          ice_sched_agg_vsi_info, list_entry) {
774                         LIST_DEL(&agg_vsi_info->list_entry);
775                         ice_free(hw, agg_vsi_info);
776                 }
777                 LIST_DEL(&agg_info->list_entry);
778                 ice_free(hw, agg_info);
779         }
780 }
781
782 /**
783  * ice_sched_clear_tx_topo - clears the scheduler tree nodes
784  * @pi: port information structure
785  *
786  * This function removes all the nodes from HW as well as from SW DB.
787  */
788 static void ice_sched_clear_tx_topo(struct ice_port_info *pi)
789 {
790         if (!pi)
791                 return;
792         /* remove RL profiles related lists */
793         ice_sched_clear_rl_prof(pi);
794         if (pi->root) {
795                 ice_free_sched_node(pi, pi->root);
796                 pi->root = NULL;
797         }
798 }
799
800 /**
801  * ice_sched_clear_port - clear the scheduler elements from SW DB for a port
802  * @pi: port information structure
803  *
804  * Cleanup scheduling elements from SW DB
805  */
806 void ice_sched_clear_port(struct ice_port_info *pi)
807 {
808         if (!pi || pi->port_state != ICE_SCHED_PORT_STATE_READY)
809                 return;
810
811         pi->port_state = ICE_SCHED_PORT_STATE_INIT;
812         ice_acquire_lock(&pi->sched_lock);
813         ice_sched_clear_tx_topo(pi);
814         ice_release_lock(&pi->sched_lock);
815         ice_destroy_lock(&pi->sched_lock);
816 }
817
818 /**
819  * ice_sched_cleanup_all - cleanup scheduler elements from SW DB for all ports
820  * @hw: pointer to the HW struct
821  *
822  * Cleanup scheduling elements from SW DB for all the ports
823  */
824 void ice_sched_cleanup_all(struct ice_hw *hw)
825 {
826         if (!hw)
827                 return;
828
829         if (hw->layer_info) {
830                 ice_free(hw, hw->layer_info);
831                 hw->layer_info = NULL;
832         }
833
834         ice_sched_clear_port(hw->port_info);
835
836         hw->num_tx_sched_layers = 0;
837         hw->num_tx_sched_phys_layers = 0;
838         hw->flattened_layers = 0;
839         hw->max_cgds = 0;
840 }
841
842 /**
843  * ice_aq_cfg_l2_node_cgd - configures L2 node to CGD mapping
844  * @hw: pointer to the HW struct
845  * @num_l2_nodes: the number of L2 nodes whose CGDs to configure
846  * @buf: pointer to buffer
847  * @buf_size: buffer size in bytes
848  * @cd: pointer to command details structure or NULL
849  *
850  * Configure L2 Node CGD (0x0414)
851  */
852 enum ice_status
853 ice_aq_cfg_l2_node_cgd(struct ice_hw *hw, u16 num_l2_nodes,
854                        struct ice_aqc_cfg_l2_node_cgd_elem *buf,
855                        u16 buf_size, struct ice_sq_cd *cd)
856 {
857         struct ice_aqc_cfg_l2_node_cgd *cmd;
858         struct ice_aq_desc desc;
859
860         cmd = &desc.params.cfg_l2_node_cgd;
861         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_cfg_l2_node_cgd);
862         desc.flags |= CPU_TO_LE16(ICE_AQ_FLAG_RD);
863
864         cmd->num_l2_nodes = CPU_TO_LE16(num_l2_nodes);
865         return ice_aq_send_cmd(hw, &desc, buf, buf_size, cd);
866 }
867
868 /**
869  * ice_sched_add_elems - add nodes to HW and SW DB
870  * @pi: port information structure
871  * @tc_node: pointer to the branch node
872  * @parent: pointer to the parent node
873  * @layer: layer number to add nodes
874  * @num_nodes: number of nodes
875  * @num_nodes_added: pointer to num nodes added
876  * @first_node_teid: if new nodes are added then return the TEID of first node
877  *
878  * This function add nodes to HW as well as to SW DB for a given layer
879  */
880 static enum ice_status
881 ice_sched_add_elems(struct ice_port_info *pi, struct ice_sched_node *tc_node,
882                     struct ice_sched_node *parent, u8 layer, u16 num_nodes,
883                     u16 *num_nodes_added, u32 *first_node_teid)
884 {
885         struct ice_sched_node *prev, *new_node;
886         struct ice_aqc_add_elem *buf;
887         u16 i, num_groups_added = 0;
888         enum ice_status status = ICE_SUCCESS;
889         struct ice_hw *hw = pi->hw;
890         u16 buf_size;
891         u32 teid;
892
893         buf_size = ice_struct_size(buf, generic, num_nodes);
894         buf = (struct ice_aqc_add_elem *)ice_malloc(hw, buf_size);
895         if (!buf)
896                 return ICE_ERR_NO_MEMORY;
897
898         buf->hdr.parent_teid = parent->info.node_teid;
899         buf->hdr.num_elems = CPU_TO_LE16(num_nodes);
900         for (i = 0; i < num_nodes; i++) {
901                 buf->generic[i].parent_teid = parent->info.node_teid;
902                 buf->generic[i].data.elem_type = ICE_AQC_ELEM_TYPE_SE_GENERIC;
903                 buf->generic[i].data.valid_sections =
904                         ICE_AQC_ELEM_VALID_GENERIC | ICE_AQC_ELEM_VALID_CIR |
905                         ICE_AQC_ELEM_VALID_EIR;
906                 buf->generic[i].data.generic = 0;
907                 buf->generic[i].data.cir_bw.bw_profile_idx =
908                         CPU_TO_LE16(ICE_SCHED_DFLT_RL_PROF_ID);
909                 buf->generic[i].data.cir_bw.bw_alloc =
910                         CPU_TO_LE16(ICE_SCHED_DFLT_BW_WT);
911                 buf->generic[i].data.eir_bw.bw_profile_idx =
912                         CPU_TO_LE16(ICE_SCHED_DFLT_RL_PROF_ID);
913                 buf->generic[i].data.eir_bw.bw_alloc =
914                         CPU_TO_LE16(ICE_SCHED_DFLT_BW_WT);
915         }
916
917         status = ice_aq_add_sched_elems(hw, 1, buf, buf_size,
918                                         &num_groups_added, NULL);
919         if (status != ICE_SUCCESS || num_groups_added != 1) {
920                 ice_debug(hw, ICE_DBG_SCHED, "add node failed FW Error %d\n",
921                           hw->adminq.sq_last_status);
922                 ice_free(hw, buf);
923                 return ICE_ERR_CFG;
924         }
925
926         *num_nodes_added = num_nodes;
927         /* add nodes to the SW DB */
928         for (i = 0; i < num_nodes; i++) {
929                 status = ice_sched_add_node(pi, layer, &buf->generic[i]);
930                 if (status != ICE_SUCCESS) {
931                         ice_debug(hw, ICE_DBG_SCHED, "add nodes in SW DB failed status =%d\n",
932                                   status);
933                         break;
934                 }
935
936                 teid = LE32_TO_CPU(buf->generic[i].node_teid);
937                 new_node = ice_sched_find_node_by_teid(parent, teid);
938                 if (!new_node) {
939                         ice_debug(hw, ICE_DBG_SCHED, "Node is missing for teid =%d\n", teid);
940                         break;
941                 }
942
943                 new_node->sibling = NULL;
944                 new_node->tc_num = tc_node->tc_num;
945
946                 /* add it to previous node sibling pointer */
947                 /* Note: siblings are not linked across branches */
948                 prev = ice_sched_get_first_node(pi, tc_node, layer);
949                 if (prev && prev != new_node) {
950                         while (prev->sibling)
951                                 prev = prev->sibling;
952                         prev->sibling = new_node;
953                 }
954
955                 /* initialize the sibling head */
956                 if (!pi->sib_head[tc_node->tc_num][layer])
957                         pi->sib_head[tc_node->tc_num][layer] = new_node;
958
959                 if (i == 0)
960                         *first_node_teid = teid;
961         }
962
963         ice_free(hw, buf);
964         return status;
965 }
966
967 /**
968  * ice_sched_add_nodes_to_hw_layer - Add nodes to hw layer
969  * @pi: port information structure
970  * @tc_node: pointer to TC node
971  * @parent: pointer to parent node
972  * @layer: layer number to add nodes
973  * @num_nodes: number of nodes to be added
974  * @first_node_teid: pointer to the first node TEID
975  * @num_nodes_added: pointer to number of nodes added
976  *
977  * Add nodes into specific hw layer.
978  */
979 static enum ice_status
980 ice_sched_add_nodes_to_hw_layer(struct ice_port_info *pi,
981                                 struct ice_sched_node *tc_node,
982                                 struct ice_sched_node *parent, u8 layer,
983                                 u16 num_nodes, u32 *first_node_teid,
984                                 u16 *num_nodes_added)
985 {
986         u16 max_child_nodes;
987
988         *num_nodes_added = 0;
989
990         if (!num_nodes)
991                 return ICE_SUCCESS;
992
993         if (!parent || layer < pi->hw->sw_entry_point_layer)
994                 return ICE_ERR_PARAM;
995
996         /* max children per node per layer */
997         max_child_nodes = pi->hw->max_children[parent->tx_sched_layer];
998
999         /* current number of children + required nodes exceed max children */
1000         if ((parent->num_children + num_nodes) > max_child_nodes) {
1001                 /* Fail if the parent is a TC node */
1002                 if (parent == tc_node)
1003                         return ICE_ERR_CFG;
1004                 return ICE_ERR_MAX_LIMIT;
1005         }
1006
1007         return ice_sched_add_elems(pi, tc_node, parent, layer, num_nodes,
1008                                    num_nodes_added, first_node_teid);
1009 }
1010
1011 /**
1012  * ice_sched_add_nodes_to_layer - Add nodes to a given layer
1013  * @pi: port information structure
1014  * @tc_node: pointer to TC node
1015  * @parent: pointer to parent node
1016  * @layer: layer number to add nodes
1017  * @num_nodes: number of nodes to be added
1018  * @first_node_teid: pointer to the first node TEID
1019  * @num_nodes_added: pointer to number of nodes added
1020  *
1021  * This function add nodes to a given layer.
1022  */
1023 static enum ice_status
1024 ice_sched_add_nodes_to_layer(struct ice_port_info *pi,
1025                              struct ice_sched_node *tc_node,
1026                              struct ice_sched_node *parent, u8 layer,
1027                              u16 num_nodes, u32 *first_node_teid,
1028                              u16 *num_nodes_added)
1029 {
1030         u32 *first_teid_ptr = first_node_teid;
1031         u16 new_num_nodes = num_nodes;
1032         enum ice_status status = ICE_SUCCESS;
1033
1034         *num_nodes_added = 0;
1035         while (*num_nodes_added < num_nodes) {
1036                 u16 max_child_nodes, num_added = 0;
1037                 u32 temp;
1038
1039                 status = ice_sched_add_nodes_to_hw_layer(pi, tc_node, parent,
1040                                                          layer, new_num_nodes,
1041                                                          first_teid_ptr,
1042                                                          &num_added);
1043                 if (status == ICE_SUCCESS)
1044                         *num_nodes_added += num_added;
1045                 /* added more nodes than requested ? */
1046                 if (*num_nodes_added > num_nodes) {
1047                         ice_debug(pi->hw, ICE_DBG_SCHED, "added extra nodes %d %d\n", num_nodes,
1048                                   *num_nodes_added);
1049                         status = ICE_ERR_CFG;
1050                         break;
1051                 }
1052                 /* break if all the nodes are added successfully */
1053                 if (status == ICE_SUCCESS && (*num_nodes_added == num_nodes))
1054                         break;
1055                 /* break if the error is not max limit */
1056                 if (status != ICE_SUCCESS && status != ICE_ERR_MAX_LIMIT)
1057                         break;
1058                 /* Exceeded the max children */
1059                 max_child_nodes = pi->hw->max_children[parent->tx_sched_layer];
1060                 /* utilize all the spaces if the parent is not full */
1061                 if (parent->num_children < max_child_nodes) {
1062                         new_num_nodes = max_child_nodes - parent->num_children;
1063                 } else {
1064                         /* This parent is full, try the next sibling */
1065                         parent = parent->sibling;
1066                         /* Don't modify the first node TEID memory if the
1067                          * first node was added already in the above call.
1068                          * Instead send some temp memory for all other
1069                          * recursive calls.
1070                          */
1071                         if (num_added)
1072                                 first_teid_ptr = &temp;
1073
1074                         new_num_nodes = num_nodes - *num_nodes_added;
1075                 }
1076         }
1077         return status;
1078 }
1079
1080 /**
1081  * ice_sched_get_qgrp_layer - get the current queue group layer number
1082  * @hw: pointer to the HW struct
1083  *
1084  * This function returns the current queue group layer number
1085  */
1086 static u8 ice_sched_get_qgrp_layer(struct ice_hw *hw)
1087 {
1088         /* It's always total layers - 1, the array is 0 relative so -2 */
1089         return hw->num_tx_sched_layers - ICE_QGRP_LAYER_OFFSET;
1090 }
1091
1092 /**
1093  * ice_sched_get_vsi_layer - get the current VSI layer number
1094  * @hw: pointer to the HW struct
1095  *
1096  * This function returns the current VSI layer number
1097  */
1098 static u8 ice_sched_get_vsi_layer(struct ice_hw *hw)
1099 {
1100         /* Num Layers       VSI layer
1101          *     9               6
1102          *     7               4
1103          *     5 or less       sw_entry_point_layer
1104          */
1105         /* calculate the VSI layer based on number of layers. */
1106         if (hw->num_tx_sched_layers > ICE_VSI_LAYER_OFFSET + 1) {
1107                 u8 layer = hw->num_tx_sched_layers - ICE_VSI_LAYER_OFFSET;
1108
1109                 if (layer > hw->sw_entry_point_layer)
1110                         return layer;
1111         }
1112         return hw->sw_entry_point_layer;
1113 }
1114
1115 /**
1116  * ice_sched_get_agg_layer - get the current aggregator layer number
1117  * @hw: pointer to the HW struct
1118  *
1119  * This function returns the current aggregator layer number
1120  */
1121 static u8 ice_sched_get_agg_layer(struct ice_hw *hw)
1122 {
1123         /* Num Layers       aggregator layer
1124          *     9               4
1125          *     7 or less       sw_entry_point_layer
1126          */
1127         /* calculate the aggregator layer based on number of layers. */
1128         if (hw->num_tx_sched_layers > ICE_AGG_LAYER_OFFSET + 1) {
1129                 u8 layer = hw->num_tx_sched_layers - ICE_AGG_LAYER_OFFSET;
1130
1131                 if (layer > hw->sw_entry_point_layer)
1132                         return layer;
1133         }
1134         return hw->sw_entry_point_layer;
1135 }
1136
1137 /**
1138  * ice_rm_dflt_leaf_node - remove the default leaf node in the tree
1139  * @pi: port information structure
1140  *
1141  * This function removes the leaf node that was created by the FW
1142  * during initialization
1143  */
1144 static void ice_rm_dflt_leaf_node(struct ice_port_info *pi)
1145 {
1146         struct ice_sched_node *node;
1147
1148         node = pi->root;
1149         while (node) {
1150                 if (!node->num_children)
1151                         break;
1152                 node = node->children[0];
1153         }
1154         if (node && node->info.data.elem_type == ICE_AQC_ELEM_TYPE_LEAF) {
1155                 u32 teid = LE32_TO_CPU(node->info.node_teid);
1156                 enum ice_status status;
1157
1158                 /* remove the default leaf node */
1159                 status = ice_sched_remove_elems(pi->hw, node->parent, 1, &teid);
1160                 if (!status)
1161                         ice_free_sched_node(pi, node);
1162         }
1163 }
1164
1165 /**
1166  * ice_sched_rm_dflt_nodes - free the default nodes in the tree
1167  * @pi: port information structure
1168  *
1169  * This function frees all the nodes except root and TC that were created by
1170  * the FW during initialization
1171  */
1172 static void ice_sched_rm_dflt_nodes(struct ice_port_info *pi)
1173 {
1174         struct ice_sched_node *node;
1175
1176         ice_rm_dflt_leaf_node(pi);
1177
1178         /* remove the default nodes except TC and root nodes */
1179         node = pi->root;
1180         while (node) {
1181                 if (node->tx_sched_layer >= pi->hw->sw_entry_point_layer &&
1182                     node->info.data.elem_type != ICE_AQC_ELEM_TYPE_TC &&
1183                     node->info.data.elem_type != ICE_AQC_ELEM_TYPE_ROOT_PORT) {
1184                         ice_free_sched_node(pi, node);
1185                         break;
1186                 }
1187
1188                 if (!node->num_children)
1189                         break;
1190                 node = node->children[0];
1191         }
1192 }
1193
1194 /**
1195  * ice_sched_init_port - Initialize scheduler by querying information from FW
1196  * @pi: port info structure for the tree to cleanup
1197  *
1198  * This function is the initial call to find the total number of Tx scheduler
1199  * resources, default topology created by firmware and storing the information
1200  * in SW DB.
1201  */
1202 enum ice_status ice_sched_init_port(struct ice_port_info *pi)
1203 {
1204         struct ice_aqc_get_topo_elem *buf;
1205         enum ice_status status;
1206         struct ice_hw *hw;
1207         u8 num_branches;
1208         u16 num_elems;
1209         u8 i, j;
1210
1211         if (!pi)
1212                 return ICE_ERR_PARAM;
1213         hw = pi->hw;
1214
1215         /* Query the Default Topology from FW */
1216         buf = (struct ice_aqc_get_topo_elem *)ice_malloc(hw,
1217                                                          ICE_AQ_MAX_BUF_LEN);
1218         if (!buf)
1219                 return ICE_ERR_NO_MEMORY;
1220
1221         /* Query default scheduling tree topology */
1222         status = ice_aq_get_dflt_topo(hw, pi->lport, buf, ICE_AQ_MAX_BUF_LEN,
1223                                       &num_branches, NULL);
1224         if (status)
1225                 goto err_init_port;
1226
1227         /* num_branches should be between 1-8 */
1228         if (num_branches < 1 || num_branches > ICE_TXSCHED_MAX_BRANCHES) {
1229                 ice_debug(hw, ICE_DBG_SCHED, "num_branches unexpected %d\n",
1230                           num_branches);
1231                 status = ICE_ERR_PARAM;
1232                 goto err_init_port;
1233         }
1234
1235         /* get the number of elements on the default/first branch */
1236         num_elems = LE16_TO_CPU(buf[0].hdr.num_elems);
1237
1238         /* num_elems should always be between 1-9 */
1239         if (num_elems < 1 || num_elems > ICE_AQC_TOPO_MAX_LEVEL_NUM) {
1240                 ice_debug(hw, ICE_DBG_SCHED, "num_elems unexpected %d\n",
1241                           num_elems);
1242                 status = ICE_ERR_PARAM;
1243                 goto err_init_port;
1244         }
1245
1246         /* If the last node is a leaf node then the index of the queue group
1247          * layer is two less than the number of elements.
1248          */
1249         if (num_elems > 2 && buf[0].generic[num_elems - 1].data.elem_type ==
1250             ICE_AQC_ELEM_TYPE_LEAF)
1251                 pi->last_node_teid =
1252                         LE32_TO_CPU(buf[0].generic[num_elems - 2].node_teid);
1253         else
1254                 pi->last_node_teid =
1255                         LE32_TO_CPU(buf[0].generic[num_elems - 1].node_teid);
1256
1257         /* Insert the Tx Sched root node */
1258         status = ice_sched_add_root_node(pi, &buf[0].generic[0]);
1259         if (status)
1260                 goto err_init_port;
1261
1262         /* Parse the default tree and cache the information */
1263         for (i = 0; i < num_branches; i++) {
1264                 num_elems = LE16_TO_CPU(buf[i].hdr.num_elems);
1265
1266                 /* Skip root element as already inserted */
1267                 for (j = 1; j < num_elems; j++) {
1268                         /* update the sw entry point */
1269                         if (buf[0].generic[j].data.elem_type ==
1270                             ICE_AQC_ELEM_TYPE_ENTRY_POINT)
1271                                 hw->sw_entry_point_layer = j;
1272
1273                         status = ice_sched_add_node(pi, j, &buf[i].generic[j]);
1274                         if (status)
1275                                 goto err_init_port;
1276                 }
1277         }
1278
1279         /* Remove the default nodes. */
1280         if (pi->root)
1281                 ice_sched_rm_dflt_nodes(pi);
1282
1283         /* initialize the port for handling the scheduler tree */
1284         pi->port_state = ICE_SCHED_PORT_STATE_READY;
1285         ice_init_lock(&pi->sched_lock);
1286         for (i = 0; i < ICE_AQC_TOPO_MAX_LEVEL_NUM; i++)
1287                 INIT_LIST_HEAD(&hw->rl_prof_list[i]);
1288
1289 err_init_port:
1290         if (status && pi->root) {
1291                 ice_free_sched_node(pi, pi->root);
1292                 pi->root = NULL;
1293         }
1294
1295         ice_free(hw, buf);
1296         return status;
1297 }
1298
1299 /**
1300  * ice_sched_get_node - Get the struct ice_sched_node for given TEID
1301  * @pi: port information structure
1302  * @teid: Scheduler node TEID
1303  *
1304  * This function retrieves the ice_sched_node struct for given TEID from
1305  * the SW DB and returns it to the caller.
1306  */
1307 struct ice_sched_node *ice_sched_get_node(struct ice_port_info *pi, u32 teid)
1308 {
1309         struct ice_sched_node *node;
1310
1311         if (!pi)
1312                 return NULL;
1313
1314         /* Find the node starting from root */
1315         ice_acquire_lock(&pi->sched_lock);
1316         node = ice_sched_find_node_by_teid(pi->root, teid);
1317         ice_release_lock(&pi->sched_lock);
1318
1319         if (!node)
1320                 ice_debug(pi->hw, ICE_DBG_SCHED, "Node not found for teid=0x%x\n", teid);
1321
1322         return node;
1323 }
1324
1325 /**
1326  * ice_sched_query_res_alloc - query the FW for num of logical sched layers
1327  * @hw: pointer to the HW struct
1328  *
1329  * query FW for allocated scheduler resources and store in HW struct
1330  */
1331 enum ice_status ice_sched_query_res_alloc(struct ice_hw *hw)
1332 {
1333         struct ice_aqc_query_txsched_res_resp *buf;
1334         enum ice_status status = ICE_SUCCESS;
1335         __le16 max_sibl;
1336         u8 i;
1337
1338         if (hw->layer_info)
1339                 return status;
1340
1341         buf = (struct ice_aqc_query_txsched_res_resp *)
1342                 ice_malloc(hw, sizeof(*buf));
1343         if (!buf)
1344                 return ICE_ERR_NO_MEMORY;
1345
1346         status = ice_aq_query_sched_res(hw, sizeof(*buf), buf, NULL);
1347         if (status)
1348                 goto sched_query_out;
1349
1350         hw->num_tx_sched_layers = LE16_TO_CPU(buf->sched_props.logical_levels);
1351         hw->num_tx_sched_phys_layers =
1352                 LE16_TO_CPU(buf->sched_props.phys_levels);
1353         hw->flattened_layers = buf->sched_props.flattening_bitmap;
1354         hw->max_cgds = buf->sched_props.max_pf_cgds;
1355
1356         /* max sibling group size of current layer refers to the max children
1357          * of the below layer node.
1358          * layer 1 node max children will be layer 2 max sibling group size
1359          * layer 2 node max children will be layer 3 max sibling group size
1360          * and so on. This array will be populated from root (index 0) to
1361          * qgroup layer 7. Leaf node has no children.
1362          */
1363         for (i = 0; i < hw->num_tx_sched_layers - 1; i++) {
1364                 max_sibl = buf->layer_props[i + 1].max_sibl_grp_sz;
1365                 hw->max_children[i] = LE16_TO_CPU(max_sibl);
1366         }
1367
1368         hw->layer_info = (struct ice_aqc_layer_props *)
1369                          ice_memdup(hw, buf->layer_props,
1370                                     (hw->num_tx_sched_layers *
1371                                      sizeof(*hw->layer_info)),
1372                                     ICE_NONDMA_TO_NONDMA);
1373         if (!hw->layer_info) {
1374                 status = ICE_ERR_NO_MEMORY;
1375                 goto sched_query_out;
1376         }
1377
1378 sched_query_out:
1379         ice_free(hw, buf);
1380         return status;
1381 }
1382
1383 /**
1384  * ice_sched_get_psm_clk_freq - determine the PSM clock frequency
1385  * @hw: pointer to the HW struct
1386  *
1387  * Determine the PSM clock frequency and store in HW struct
1388  */
1389 void ice_sched_get_psm_clk_freq(struct ice_hw *hw)
1390 {
1391         u32 val, clk_src;
1392
1393         val = rd32(hw, GLGEN_CLKSTAT_SRC);
1394         clk_src = (val & GLGEN_CLKSTAT_SRC_PSM_CLK_SRC_M) >>
1395                 GLGEN_CLKSTAT_SRC_PSM_CLK_SRC_S;
1396
1397 #define PSM_CLK_SRC_367_MHZ 0x0
1398 #define PSM_CLK_SRC_416_MHZ 0x1
1399 #define PSM_CLK_SRC_446_MHZ 0x2
1400 #define PSM_CLK_SRC_390_MHZ 0x3
1401
1402         switch (clk_src) {
1403         case PSM_CLK_SRC_367_MHZ:
1404                 hw->psm_clk_freq = ICE_PSM_CLK_367MHZ_IN_HZ;
1405                 break;
1406         case PSM_CLK_SRC_416_MHZ:
1407                 hw->psm_clk_freq = ICE_PSM_CLK_416MHZ_IN_HZ;
1408                 break;
1409         case PSM_CLK_SRC_446_MHZ:
1410                 hw->psm_clk_freq = ICE_PSM_CLK_446MHZ_IN_HZ;
1411                 break;
1412         case PSM_CLK_SRC_390_MHZ:
1413                 hw->psm_clk_freq = ICE_PSM_CLK_390MHZ_IN_HZ;
1414                 break;
1415         default:
1416                 ice_debug(hw, ICE_DBG_SCHED, "PSM clk_src unexpected %u\n",
1417                           clk_src);
1418                 /* fall back to a safe default */
1419                 hw->psm_clk_freq = ICE_PSM_CLK_446MHZ_IN_HZ;
1420         }
1421 }
1422
1423 /**
1424  * ice_sched_find_node_in_subtree - Find node in part of base node subtree
1425  * @hw: pointer to the HW struct
1426  * @base: pointer to the base node
1427  * @node: pointer to the node to search
1428  *
1429  * This function checks whether a given node is part of the base node
1430  * subtree or not
1431  */
1432 bool
1433 ice_sched_find_node_in_subtree(struct ice_hw *hw, struct ice_sched_node *base,
1434                                struct ice_sched_node *node)
1435 {
1436         u8 i;
1437
1438         for (i = 0; i < base->num_children; i++) {
1439                 struct ice_sched_node *child = base->children[i];
1440
1441                 if (node == child)
1442                         return true;
1443
1444                 if (child->tx_sched_layer > node->tx_sched_layer)
1445                         return false;
1446
1447                 /* this recursion is intentional, and wouldn't
1448                  * go more than 8 calls
1449                  */
1450                 if (ice_sched_find_node_in_subtree(hw, child, node))
1451                         return true;
1452         }
1453         return false;
1454 }
1455
1456 /**
1457  * ice_sched_get_free_qgrp - Scan all queue group siblings and find a free node
1458  * @pi: port information structure
1459  * @vsi_node: software VSI handle
1460  * @qgrp_node: first queue group node identified for scanning
1461  * @owner: LAN or RDMA
1462  *
1463  * This function retrieves a free LAN or RDMA queue group node by scanning
1464  * qgrp_node and its siblings for the queue group with the fewest number
1465  * of queues currently assigned.
1466  */
1467 static struct ice_sched_node *
1468 ice_sched_get_free_qgrp(struct ice_port_info *pi,
1469                         struct ice_sched_node *vsi_node,
1470                         struct ice_sched_node *qgrp_node, u8 owner)
1471 {
1472         struct ice_sched_node *min_qgrp;
1473         u8 min_children;
1474
1475         if (!qgrp_node)
1476                 return qgrp_node;
1477         min_children = qgrp_node->num_children;
1478         if (!min_children)
1479                 return qgrp_node;
1480         min_qgrp = qgrp_node;
1481         /* scan all queue groups until find a node which has less than the
1482          * minimum number of children. This way all queue group nodes get
1483          * equal number of shares and active. The bandwidth will be equally
1484          * distributed across all queues.
1485          */
1486         while (qgrp_node) {
1487                 /* make sure the qgroup node is part of the VSI subtree */
1488                 if (ice_sched_find_node_in_subtree(pi->hw, vsi_node, qgrp_node))
1489                         if (qgrp_node->num_children < min_children &&
1490                             qgrp_node->owner == owner) {
1491                                 /* replace the new min queue group node */
1492                                 min_qgrp = qgrp_node;
1493                                 min_children = min_qgrp->num_children;
1494                                 /* break if it has no children, */
1495                                 if (!min_children)
1496                                         break;
1497                         }
1498                 qgrp_node = qgrp_node->sibling;
1499         }
1500         return min_qgrp;
1501 }
1502
1503 /**
1504  * ice_sched_get_free_qparent - Get a free LAN or RDMA queue group node
1505  * @pi: port information structure
1506  * @vsi_handle: software VSI handle
1507  * @tc: branch number
1508  * @owner: LAN or RDMA
1509  *
1510  * This function retrieves a free LAN or RDMA queue group node
1511  */
1512 struct ice_sched_node *
1513 ice_sched_get_free_qparent(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
1514                            u8 owner)
1515 {
1516         struct ice_sched_node *vsi_node, *qgrp_node;
1517         struct ice_vsi_ctx *vsi_ctx;
1518         u16 max_children;
1519         u8 qgrp_layer;
1520
1521         qgrp_layer = ice_sched_get_qgrp_layer(pi->hw);
1522         max_children = pi->hw->max_children[qgrp_layer];
1523
1524         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
1525         if (!vsi_ctx)
1526                 return NULL;
1527         vsi_node = vsi_ctx->sched.vsi_node[tc];
1528         /* validate invalid VSI ID */
1529         if (!vsi_node)
1530                 return NULL;
1531
1532         /* get the first queue group node from VSI sub-tree */
1533         qgrp_node = ice_sched_get_first_node(pi, vsi_node, qgrp_layer);
1534         while (qgrp_node) {
1535                 /* make sure the qgroup node is part of the VSI subtree */
1536                 if (ice_sched_find_node_in_subtree(pi->hw, vsi_node, qgrp_node))
1537                         if (qgrp_node->num_children < max_children &&
1538                             qgrp_node->owner == owner)
1539                                 break;
1540                 qgrp_node = qgrp_node->sibling;
1541         }
1542
1543         /* Select the best queue group */
1544         return ice_sched_get_free_qgrp(pi, vsi_node, qgrp_node, owner);
1545 }
1546
1547 /**
1548  * ice_sched_get_vsi_node - Get a VSI node based on VSI ID
1549  * @pi: pointer to the port information structure
1550  * @tc_node: pointer to the TC node
1551  * @vsi_handle: software VSI handle
1552  *
1553  * This function retrieves a VSI node for a given VSI ID from a given
1554  * TC branch
1555  */
1556 struct ice_sched_node *
1557 ice_sched_get_vsi_node(struct ice_port_info *pi, struct ice_sched_node *tc_node,
1558                        u16 vsi_handle)
1559 {
1560         struct ice_sched_node *node;
1561         u8 vsi_layer;
1562
1563         vsi_layer = ice_sched_get_vsi_layer(pi->hw);
1564         node = ice_sched_get_first_node(pi, tc_node, vsi_layer);
1565
1566         /* Check whether it already exists */
1567         while (node) {
1568                 if (node->vsi_handle == vsi_handle)
1569                         return node;
1570                 node = node->sibling;
1571         }
1572
1573         return node;
1574 }
1575
1576 /**
1577  * ice_sched_get_agg_node - Get an aggregator node based on aggregator ID
1578  * @pi: pointer to the port information structure
1579  * @tc_node: pointer to the TC node
1580  * @agg_id: aggregator ID
1581  *
1582  * This function retrieves an aggregator node for a given aggregator ID from
1583  * a given TC branch
1584  */
1585 static struct ice_sched_node *
1586 ice_sched_get_agg_node(struct ice_port_info *pi, struct ice_sched_node *tc_node,
1587                        u32 agg_id)
1588 {
1589         struct ice_sched_node *node;
1590         struct ice_hw *hw = pi->hw;
1591         u8 agg_layer;
1592
1593         if (!hw)
1594                 return NULL;
1595         agg_layer = ice_sched_get_agg_layer(hw);
1596         node = ice_sched_get_first_node(pi, tc_node, agg_layer);
1597
1598         /* Check whether it already exists */
1599         while (node) {
1600                 if (node->agg_id == agg_id)
1601                         return node;
1602                 node = node->sibling;
1603         }
1604
1605         return node;
1606 }
1607
1608 /**
1609  * ice_sched_check_node - Compare node parameters between SW DB and HW DB
1610  * @hw: pointer to the HW struct
1611  * @node: pointer to the ice_sched_node struct
1612  *
1613  * This function queries and compares the HW element with SW DB node parameters
1614  */
1615 static bool ice_sched_check_node(struct ice_hw *hw, struct ice_sched_node *node)
1616 {
1617         struct ice_aqc_txsched_elem_data buf;
1618         enum ice_status status;
1619         u32 node_teid;
1620
1621         node_teid = LE32_TO_CPU(node->info.node_teid);
1622         status = ice_sched_query_elem(hw, node_teid, &buf);
1623         if (status != ICE_SUCCESS)
1624                 return false;
1625
1626         if (memcmp(&buf, &node->info, sizeof(buf))) {
1627                 ice_debug(hw, ICE_DBG_SCHED, "Node mismatch for teid=0x%x\n",
1628                           node_teid);
1629                 return false;
1630         }
1631
1632         return true;
1633 }
1634
1635 /**
1636  * ice_sched_calc_vsi_child_nodes - calculate number of VSI child nodes
1637  * @hw: pointer to the HW struct
1638  * @num_qs: number of queues
1639  * @num_nodes: num nodes array
1640  *
1641  * This function calculates the number of VSI child nodes based on the
1642  * number of queues.
1643  */
1644 static void
1645 ice_sched_calc_vsi_child_nodes(struct ice_hw *hw, u16 num_qs, u16 *num_nodes)
1646 {
1647         u16 num = num_qs;
1648         u8 i, qgl, vsil;
1649
1650         qgl = ice_sched_get_qgrp_layer(hw);
1651         vsil = ice_sched_get_vsi_layer(hw);
1652
1653         /* calculate num nodes from queue group to VSI layer */
1654         for (i = qgl; i > vsil; i--) {
1655                 /* round to the next integer if there is a remainder */
1656                 num = DIVIDE_AND_ROUND_UP(num, hw->max_children[i]);
1657
1658                 /* need at least one node */
1659                 num_nodes[i] = num ? num : 1;
1660         }
1661 }
1662
1663 /**
1664  * ice_sched_add_vsi_child_nodes - add VSI child nodes to tree
1665  * @pi: port information structure
1666  * @vsi_handle: software VSI handle
1667  * @tc_node: pointer to the TC node
1668  * @num_nodes: pointer to the num nodes that needs to be added per layer
1669  * @owner: node owner (LAN or RDMA)
1670  *
1671  * This function adds the VSI child nodes to tree. It gets called for
1672  * LAN and RDMA separately.
1673  */
1674 static enum ice_status
1675 ice_sched_add_vsi_child_nodes(struct ice_port_info *pi, u16 vsi_handle,
1676                               struct ice_sched_node *tc_node, u16 *num_nodes,
1677                               u8 owner)
1678 {
1679         struct ice_sched_node *parent, *node;
1680         struct ice_hw *hw = pi->hw;
1681         enum ice_status status;
1682         u32 first_node_teid;
1683         u16 num_added = 0;
1684         u8 i, qgl, vsil;
1685
1686         qgl = ice_sched_get_qgrp_layer(hw);
1687         vsil = ice_sched_get_vsi_layer(hw);
1688         parent = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
1689         for (i = vsil + 1; i <= qgl; i++) {
1690                 if (!parent)
1691                         return ICE_ERR_CFG;
1692
1693                 status = ice_sched_add_nodes_to_layer(pi, tc_node, parent, i,
1694                                                       num_nodes[i],
1695                                                       &first_node_teid,
1696                                                       &num_added);
1697                 if (status != ICE_SUCCESS || num_nodes[i] != num_added)
1698                         return ICE_ERR_CFG;
1699
1700                 /* The newly added node can be a new parent for the next
1701                  * layer nodes
1702                  */
1703                 if (num_added) {
1704                         parent = ice_sched_find_node_by_teid(tc_node,
1705                                                              first_node_teid);
1706                         node = parent;
1707                         while (node) {
1708                                 node->owner = owner;
1709                                 node = node->sibling;
1710                         }
1711                 } else {
1712                         parent = parent->children[0];
1713                 }
1714         }
1715
1716         return ICE_SUCCESS;
1717 }
1718
1719 /**
1720  * ice_sched_calc_vsi_support_nodes - calculate number of VSI support nodes
1721  * @pi: pointer to the port info structure
1722  * @tc_node: pointer to TC node
1723  * @num_nodes: pointer to num nodes array
1724  *
1725  * This function calculates the number of supported nodes needed to add this
1726  * VSI into Tx tree including the VSI, parent and intermediate nodes in below
1727  * layers
1728  */
1729 static void
1730 ice_sched_calc_vsi_support_nodes(struct ice_port_info *pi,
1731                                  struct ice_sched_node *tc_node, u16 *num_nodes)
1732 {
1733         struct ice_sched_node *node;
1734         u8 vsil;
1735         int i;
1736
1737         vsil = ice_sched_get_vsi_layer(pi->hw);
1738         for (i = vsil; i >= pi->hw->sw_entry_point_layer; i--)
1739                 /* Add intermediate nodes if TC has no children and
1740                  * need at least one node for VSI
1741                  */
1742                 if (!tc_node->num_children || i == vsil) {
1743                         num_nodes[i]++;
1744                 } else {
1745                         /* If intermediate nodes are reached max children
1746                          * then add a new one.
1747                          */
1748                         node = ice_sched_get_first_node(pi, tc_node, (u8)i);
1749                         /* scan all the siblings */
1750                         while (node) {
1751                                 if (node->num_children <
1752                                     pi->hw->max_children[i])
1753                                         break;
1754                                 node = node->sibling;
1755                         }
1756
1757                         /* tree has one intermediate node to add this new VSI.
1758                          * So no need to calculate supported nodes for below
1759                          * layers.
1760                          */
1761                         if (node)
1762                                 break;
1763                         /* all the nodes are full, allocate a new one */
1764                         num_nodes[i]++;
1765                 }
1766 }
1767
1768 /**
1769  * ice_sched_add_vsi_support_nodes - add VSI supported nodes into Tx tree
1770  * @pi: port information structure
1771  * @vsi_handle: software VSI handle
1772  * @tc_node: pointer to TC node
1773  * @num_nodes: pointer to num nodes array
1774  *
1775  * This function adds the VSI supported nodes into Tx tree including the
1776  * VSI, its parent and intermediate nodes in below layers
1777  */
1778 static enum ice_status
1779 ice_sched_add_vsi_support_nodes(struct ice_port_info *pi, u16 vsi_handle,
1780                                 struct ice_sched_node *tc_node, u16 *num_nodes)
1781 {
1782         struct ice_sched_node *parent = tc_node;
1783         enum ice_status status;
1784         u32 first_node_teid;
1785         u16 num_added = 0;
1786         u8 i, vsil;
1787
1788         if (!pi)
1789                 return ICE_ERR_PARAM;
1790
1791         vsil = ice_sched_get_vsi_layer(pi->hw);
1792         for (i = pi->hw->sw_entry_point_layer; i <= vsil; i++) {
1793                 status = ice_sched_add_nodes_to_layer(pi, tc_node, parent,
1794                                                       i, num_nodes[i],
1795                                                       &first_node_teid,
1796                                                       &num_added);
1797                 if (status != ICE_SUCCESS || num_nodes[i] != num_added)
1798                         return ICE_ERR_CFG;
1799
1800                 /* The newly added node can be a new parent for the next
1801                  * layer nodes
1802                  */
1803                 if (num_added)
1804                         parent = ice_sched_find_node_by_teid(tc_node,
1805                                                              first_node_teid);
1806                 else
1807                         parent = parent->children[0];
1808
1809                 if (!parent)
1810                         return ICE_ERR_CFG;
1811
1812                 if (i == vsil)
1813                         parent->vsi_handle = vsi_handle;
1814         }
1815
1816         return ICE_SUCCESS;
1817 }
1818
1819 /**
1820  * ice_sched_add_vsi_to_topo - add a new VSI into tree
1821  * @pi: port information structure
1822  * @vsi_handle: software VSI handle
1823  * @tc: TC number
1824  *
1825  * This function adds a new VSI into scheduler tree
1826  */
1827 static enum ice_status
1828 ice_sched_add_vsi_to_topo(struct ice_port_info *pi, u16 vsi_handle, u8 tc)
1829 {
1830         u16 num_nodes[ICE_AQC_TOPO_MAX_LEVEL_NUM] = { 0 };
1831         struct ice_sched_node *tc_node;
1832
1833         tc_node = ice_sched_get_tc_node(pi, tc);
1834         if (!tc_node)
1835                 return ICE_ERR_PARAM;
1836
1837         /* calculate number of supported nodes needed for this VSI */
1838         ice_sched_calc_vsi_support_nodes(pi, tc_node, num_nodes);
1839
1840         /* add VSI supported nodes to TC subtree */
1841         return ice_sched_add_vsi_support_nodes(pi, vsi_handle, tc_node,
1842                                                num_nodes);
1843 }
1844
1845 /**
1846  * ice_sched_update_vsi_child_nodes - update VSI child nodes
1847  * @pi: port information structure
1848  * @vsi_handle: software VSI handle
1849  * @tc: TC number
1850  * @new_numqs: new number of max queues
1851  * @owner: owner of this subtree
1852  *
1853  * This function updates the VSI child nodes based on the number of queues
1854  */
1855 static enum ice_status
1856 ice_sched_update_vsi_child_nodes(struct ice_port_info *pi, u16 vsi_handle,
1857                                  u8 tc, u16 new_numqs, u8 owner)
1858 {
1859         u16 new_num_nodes[ICE_AQC_TOPO_MAX_LEVEL_NUM] = { 0 };
1860         struct ice_sched_node *vsi_node;
1861         struct ice_sched_node *tc_node;
1862         struct ice_vsi_ctx *vsi_ctx;
1863         enum ice_status status = ICE_SUCCESS;
1864         struct ice_hw *hw = pi->hw;
1865         u16 prev_numqs;
1866
1867         tc_node = ice_sched_get_tc_node(pi, tc);
1868         if (!tc_node)
1869                 return ICE_ERR_CFG;
1870
1871         vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
1872         if (!vsi_node)
1873                 return ICE_ERR_CFG;
1874
1875         vsi_ctx = ice_get_vsi_ctx(hw, vsi_handle);
1876         if (!vsi_ctx)
1877                 return ICE_ERR_PARAM;
1878
1879         prev_numqs = vsi_ctx->sched.max_lanq[tc];
1880         /* num queues are not changed or less than the previous number */
1881         if (new_numqs <= prev_numqs)
1882                 return status;
1883         status = ice_alloc_lan_q_ctx(hw, vsi_handle, tc, new_numqs);
1884         if (status)
1885                 return status;
1886
1887         if (new_numqs)
1888                 ice_sched_calc_vsi_child_nodes(hw, new_numqs, new_num_nodes);
1889         /* Keep the max number of queue configuration all the time. Update the
1890          * tree only if number of queues > previous number of queues. This may
1891          * leave some extra nodes in the tree if number of queues < previous
1892          * number but that wouldn't harm anything. Removing those extra nodes
1893          * may complicate the code if those nodes are part of SRL or
1894          * individually rate limited.
1895          */
1896         status = ice_sched_add_vsi_child_nodes(pi, vsi_handle, tc_node,
1897                                                new_num_nodes, owner);
1898         if (status)
1899                 return status;
1900         vsi_ctx->sched.max_lanq[tc] = new_numqs;
1901
1902         return ICE_SUCCESS;
1903 }
1904
1905 /**
1906  * ice_sched_cfg_vsi - configure the new/existing VSI
1907  * @pi: port information structure
1908  * @vsi_handle: software VSI handle
1909  * @tc: TC number
1910  * @maxqs: max number of queues
1911  * @owner: LAN or RDMA
1912  * @enable: TC enabled or disabled
1913  *
1914  * This function adds/updates VSI nodes based on the number of queues. If TC is
1915  * enabled and VSI is in suspended state then resume the VSI back. If TC is
1916  * disabled then suspend the VSI if it is not already.
1917  */
1918 enum ice_status
1919 ice_sched_cfg_vsi(struct ice_port_info *pi, u16 vsi_handle, u8 tc, u16 maxqs,
1920                   u8 owner, bool enable)
1921 {
1922         struct ice_sched_node *vsi_node, *tc_node;
1923         struct ice_vsi_ctx *vsi_ctx;
1924         enum ice_status status = ICE_SUCCESS;
1925         struct ice_hw *hw = pi->hw;
1926
1927         ice_debug(pi->hw, ICE_DBG_SCHED, "add/config VSI %d\n", vsi_handle);
1928         tc_node = ice_sched_get_tc_node(pi, tc);
1929         if (!tc_node)
1930                 return ICE_ERR_PARAM;
1931         vsi_ctx = ice_get_vsi_ctx(hw, vsi_handle);
1932         if (!vsi_ctx)
1933                 return ICE_ERR_PARAM;
1934         vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
1935
1936         /* suspend the VSI if TC is not enabled */
1937         if (!enable) {
1938                 if (vsi_node && vsi_node->in_use) {
1939                         u32 teid = LE32_TO_CPU(vsi_node->info.node_teid);
1940
1941                         status = ice_sched_suspend_resume_elems(hw, 1, &teid,
1942                                                                 true);
1943                         if (!status)
1944                                 vsi_node->in_use = false;
1945                 }
1946                 return status;
1947         }
1948
1949         /* TC is enabled, if it is a new VSI then add it to the tree */
1950         if (!vsi_node) {
1951                 status = ice_sched_add_vsi_to_topo(pi, vsi_handle, tc);
1952                 if (status)
1953                         return status;
1954
1955                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
1956                 if (!vsi_node)
1957                         return ICE_ERR_CFG;
1958
1959                 vsi_ctx->sched.vsi_node[tc] = vsi_node;
1960                 vsi_node->in_use = true;
1961                 /* invalidate the max queues whenever VSI gets added first time
1962                  * into the scheduler tree (boot or after reset). We need to
1963                  * recreate the child nodes all the time in these cases.
1964                  */
1965                 vsi_ctx->sched.max_lanq[tc] = 0;
1966         }
1967
1968         /* update the VSI child nodes */
1969         status = ice_sched_update_vsi_child_nodes(pi, vsi_handle, tc, maxqs,
1970                                                   owner);
1971         if (status)
1972                 return status;
1973
1974         /* TC is enabled, resume the VSI if it is in the suspend state */
1975         if (!vsi_node->in_use) {
1976                 u32 teid = LE32_TO_CPU(vsi_node->info.node_teid);
1977
1978                 status = ice_sched_suspend_resume_elems(hw, 1, &teid, false);
1979                 if (!status)
1980                         vsi_node->in_use = true;
1981         }
1982
1983         return status;
1984 }
1985
1986 /**
1987  * ice_sched_rm_agg_vsi_info - remove aggregator related VSI info entry
1988  * @pi: port information structure
1989  * @vsi_handle: software VSI handle
1990  *
1991  * This function removes single aggregator VSI info entry from
1992  * aggregator list.
1993  */
1994 static void ice_sched_rm_agg_vsi_info(struct ice_port_info *pi, u16 vsi_handle)
1995 {
1996         struct ice_sched_agg_info *agg_info;
1997         struct ice_sched_agg_info *atmp;
1998
1999         LIST_FOR_EACH_ENTRY_SAFE(agg_info, atmp, &pi->hw->agg_list,
2000                                  ice_sched_agg_info,
2001                                  list_entry) {
2002                 struct ice_sched_agg_vsi_info *agg_vsi_info;
2003                 struct ice_sched_agg_vsi_info *vtmp;
2004
2005                 LIST_FOR_EACH_ENTRY_SAFE(agg_vsi_info, vtmp,
2006                                          &agg_info->agg_vsi_list,
2007                                          ice_sched_agg_vsi_info, list_entry)
2008                         if (agg_vsi_info->vsi_handle == vsi_handle) {
2009                                 LIST_DEL(&agg_vsi_info->list_entry);
2010                                 ice_free(pi->hw, agg_vsi_info);
2011                                 return;
2012                         }
2013         }
2014 }
2015
2016 /**
2017  * ice_sched_is_leaf_node_present - check for a leaf node in the sub-tree
2018  * @node: pointer to the sub-tree node
2019  *
2020  * This function checks for a leaf node presence in a given sub-tree node.
2021  */
2022 static bool ice_sched_is_leaf_node_present(struct ice_sched_node *node)
2023 {
2024         u8 i;
2025
2026         for (i = 0; i < node->num_children; i++)
2027                 if (ice_sched_is_leaf_node_present(node->children[i]))
2028                         return true;
2029         /* check for a leaf node */
2030         return (node->info.data.elem_type == ICE_AQC_ELEM_TYPE_LEAF);
2031 }
2032
2033 /**
2034  * ice_sched_rm_vsi_cfg - remove the VSI and its children nodes
2035  * @pi: port information structure
2036  * @vsi_handle: software VSI handle
2037  * @owner: LAN or RDMA
2038  *
2039  * This function removes the VSI and its LAN or RDMA children nodes from the
2040  * scheduler tree.
2041  */
2042 static enum ice_status
2043 ice_sched_rm_vsi_cfg(struct ice_port_info *pi, u16 vsi_handle, u8 owner)
2044 {
2045         enum ice_status status = ICE_ERR_PARAM;
2046         struct ice_vsi_ctx *vsi_ctx;
2047         u8 i;
2048
2049         ice_debug(pi->hw, ICE_DBG_SCHED, "removing VSI %d\n", vsi_handle);
2050         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
2051                 return status;
2052         ice_acquire_lock(&pi->sched_lock);
2053         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
2054         if (!vsi_ctx)
2055                 goto exit_sched_rm_vsi_cfg;
2056
2057         ice_for_each_traffic_class(i) {
2058                 struct ice_sched_node *vsi_node, *tc_node;
2059                 u8 j = 0;
2060
2061                 tc_node = ice_sched_get_tc_node(pi, i);
2062                 if (!tc_node)
2063                         continue;
2064
2065                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
2066                 if (!vsi_node)
2067                         continue;
2068
2069                 if (ice_sched_is_leaf_node_present(vsi_node)) {
2070                         ice_debug(pi->hw, ICE_DBG_SCHED, "VSI has leaf nodes in TC %d\n", i);
2071                         status = ICE_ERR_IN_USE;
2072                         goto exit_sched_rm_vsi_cfg;
2073                 }
2074                 while (j < vsi_node->num_children) {
2075                         if (vsi_node->children[j]->owner == owner) {
2076                                 ice_free_sched_node(pi, vsi_node->children[j]);
2077
2078                                 /* reset the counter again since the num
2079                                  * children will be updated after node removal
2080                                  */
2081                                 j = 0;
2082                         } else {
2083                                 j++;
2084                         }
2085                 }
2086                 /* remove the VSI if it has no children */
2087                 if (!vsi_node->num_children) {
2088                         ice_free_sched_node(pi, vsi_node);
2089                         vsi_ctx->sched.vsi_node[i] = NULL;
2090
2091                         /* clean up aggregator related VSI info if any */
2092                         ice_sched_rm_agg_vsi_info(pi, vsi_handle);
2093                 }
2094                 if (owner == ICE_SCHED_NODE_OWNER_LAN)
2095                         vsi_ctx->sched.max_lanq[i] = 0;
2096         }
2097         status = ICE_SUCCESS;
2098
2099 exit_sched_rm_vsi_cfg:
2100         ice_release_lock(&pi->sched_lock);
2101         return status;
2102 }
2103
2104 /**
2105  * ice_rm_vsi_lan_cfg - remove VSI and its LAN children nodes
2106  * @pi: port information structure
2107  * @vsi_handle: software VSI handle
2108  *
2109  * This function clears the VSI and its LAN children nodes from scheduler tree
2110  * for all TCs.
2111  */
2112 enum ice_status ice_rm_vsi_lan_cfg(struct ice_port_info *pi, u16 vsi_handle)
2113 {
2114         return ice_sched_rm_vsi_cfg(pi, vsi_handle, ICE_SCHED_NODE_OWNER_LAN);
2115 }
2116
2117 /**
2118  * ice_sched_is_tree_balanced - Check tree nodes are identical or not
2119  * @hw: pointer to the HW struct
2120  * @node: pointer to the ice_sched_node struct
2121  *
2122  * This function compares all the nodes for a given tree against HW DB nodes
2123  * This function needs to be called with the port_info->sched_lock held
2124  */
2125 bool ice_sched_is_tree_balanced(struct ice_hw *hw, struct ice_sched_node *node)
2126 {
2127         u8 i;
2128
2129         /* start from the leaf node */
2130         for (i = 0; i < node->num_children; i++)
2131                 /* Fail if node doesn't match with the SW DB
2132                  * this recursion is intentional, and wouldn't
2133                  * go more than 9 calls
2134                  */
2135                 if (!ice_sched_is_tree_balanced(hw, node->children[i]))
2136                         return false;
2137
2138         return ice_sched_check_node(hw, node);
2139 }
2140
2141 /**
2142  * ice_aq_query_node_to_root - retrieve the tree topology for a given node TEID
2143  * @hw: pointer to the HW struct
2144  * @node_teid: node TEID
2145  * @buf: pointer to buffer
2146  * @buf_size: buffer size in bytes
2147  * @cd: pointer to command details structure or NULL
2148  *
2149  * This function retrieves the tree topology from the firmware for a given
2150  * node TEID to the root node.
2151  */
2152 enum ice_status
2153 ice_aq_query_node_to_root(struct ice_hw *hw, u32 node_teid,
2154                           struct ice_aqc_txsched_elem_data *buf, u16 buf_size,
2155                           struct ice_sq_cd *cd)
2156 {
2157         struct ice_aqc_query_node_to_root *cmd;
2158         struct ice_aq_desc desc;
2159
2160         cmd = &desc.params.query_node_to_root;
2161         ice_fill_dflt_direct_cmd_desc(&desc, ice_aqc_opc_query_node_to_root);
2162         cmd->teid = CPU_TO_LE32(node_teid);
2163         return ice_aq_send_cmd(hw, &desc, buf, buf_size, cd);
2164 }
2165
2166 /**
2167  * ice_get_agg_info - get the aggregator ID
2168  * @hw: pointer to the hardware structure
2169  * @agg_id: aggregator ID
2170  *
2171  * This function validates aggregator ID. The function returns info if
2172  * aggregator ID is present in list otherwise it returns null.
2173  */
2174 static struct ice_sched_agg_info *
2175 ice_get_agg_info(struct ice_hw *hw, u32 agg_id)
2176 {
2177         struct ice_sched_agg_info *agg_info;
2178
2179         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
2180                             list_entry)
2181                 if (agg_info->agg_id == agg_id)
2182                         return agg_info;
2183
2184         return NULL;
2185 }
2186
2187 /**
2188  * ice_sched_get_free_vsi_parent - Find a free parent node in aggregator subtree
2189  * @hw: pointer to the HW struct
2190  * @node: pointer to a child node
2191  * @num_nodes: num nodes count array
2192  *
2193  * This function walks through the aggregator subtree to find a free parent
2194  * node
2195  */
2196 static struct ice_sched_node *
2197 ice_sched_get_free_vsi_parent(struct ice_hw *hw, struct ice_sched_node *node,
2198                               u16 *num_nodes)
2199 {
2200         u8 l = node->tx_sched_layer;
2201         u8 vsil, i;
2202
2203         vsil = ice_sched_get_vsi_layer(hw);
2204
2205         /* Is it VSI parent layer ? */
2206         if (l == vsil - 1)
2207                 return (node->num_children < hw->max_children[l]) ? node : NULL;
2208
2209         /* We have intermediate nodes. Let's walk through the subtree. If the
2210          * intermediate node has space to add a new node then clear the count
2211          */
2212         if (node->num_children < hw->max_children[l])
2213                 num_nodes[l] = 0;
2214         /* The below recursive call is intentional and wouldn't go more than
2215          * 2 or 3 iterations.
2216          */
2217
2218         for (i = 0; i < node->num_children; i++) {
2219                 struct ice_sched_node *parent;
2220
2221                 parent = ice_sched_get_free_vsi_parent(hw, node->children[i],
2222                                                        num_nodes);
2223                 if (parent)
2224                         return parent;
2225         }
2226
2227         return NULL;
2228 }
2229
2230 /**
2231  * ice_sched_update_parent - update the new parent in SW DB
2232  * @new_parent: pointer to a new parent node
2233  * @node: pointer to a child node
2234  *
2235  * This function removes the child from the old parent and adds it to a new
2236  * parent
2237  */
2238 static void
2239 ice_sched_update_parent(struct ice_sched_node *new_parent,
2240                         struct ice_sched_node *node)
2241 {
2242         struct ice_sched_node *old_parent;
2243         u8 i, j;
2244
2245         old_parent = node->parent;
2246
2247         /* update the old parent children */
2248         for (i = 0; i < old_parent->num_children; i++)
2249                 if (old_parent->children[i] == node) {
2250                         for (j = i + 1; j < old_parent->num_children; j++)
2251                                 old_parent->children[j - 1] =
2252                                         old_parent->children[j];
2253                         old_parent->num_children--;
2254                         break;
2255                 }
2256
2257         /* now move the node to a new parent */
2258         new_parent->children[new_parent->num_children++] = node;
2259         node->parent = new_parent;
2260         node->info.parent_teid = new_parent->info.node_teid;
2261 }
2262
2263 /**
2264  * ice_sched_move_nodes - move child nodes to a given parent
2265  * @pi: port information structure
2266  * @parent: pointer to parent node
2267  * @num_items: number of child nodes to be moved
2268  * @list: pointer to child node teids
2269  *
2270  * This function move the child nodes to a given parent.
2271  */
2272 static enum ice_status
2273 ice_sched_move_nodes(struct ice_port_info *pi, struct ice_sched_node *parent,
2274                      u16 num_items, u32 *list)
2275 {
2276         enum ice_status status = ICE_SUCCESS;
2277         struct ice_aqc_move_elem *buf;
2278         struct ice_sched_node *node;
2279         u16 i, grps_movd = 0;
2280         struct ice_hw *hw;
2281         u16 buf_len;
2282
2283         hw = pi->hw;
2284
2285         if (!parent || !num_items)
2286                 return ICE_ERR_PARAM;
2287
2288         /* Does parent have enough space */
2289         if (parent->num_children + num_items >
2290             hw->max_children[parent->tx_sched_layer])
2291                 return ICE_ERR_AQ_FULL;
2292
2293         buf_len = ice_struct_size(buf, teid, 1);
2294         buf = (struct ice_aqc_move_elem *)ice_malloc(hw, buf_len);
2295         if (!buf)
2296                 return ICE_ERR_NO_MEMORY;
2297
2298         for (i = 0; i < num_items; i++) {
2299                 node = ice_sched_find_node_by_teid(pi->root, list[i]);
2300                 if (!node) {
2301                         status = ICE_ERR_PARAM;
2302                         goto move_err_exit;
2303                 }
2304
2305                 buf->hdr.src_parent_teid = node->info.parent_teid;
2306                 buf->hdr.dest_parent_teid = parent->info.node_teid;
2307                 buf->teid[0] = node->info.node_teid;
2308                 buf->hdr.num_elems = CPU_TO_LE16(1);
2309                 status = ice_aq_move_sched_elems(hw, 1, buf, buf_len,
2310                                                  &grps_movd, NULL);
2311                 if (status && grps_movd != 1) {
2312                         status = ICE_ERR_CFG;
2313                         goto move_err_exit;
2314                 }
2315
2316                 /* update the SW DB */
2317                 ice_sched_update_parent(parent, node);
2318         }
2319
2320 move_err_exit:
2321         ice_free(hw, buf);
2322         return status;
2323 }
2324
2325 /**
2326  * ice_sched_move_vsi_to_agg - move VSI to aggregator node
2327  * @pi: port information structure
2328  * @vsi_handle: software VSI handle
2329  * @agg_id: aggregator ID
2330  * @tc: TC number
2331  *
2332  * This function moves a VSI to an aggregator node or its subtree.
2333  * Intermediate nodes may be created if required.
2334  */
2335 static enum ice_status
2336 ice_sched_move_vsi_to_agg(struct ice_port_info *pi, u16 vsi_handle, u32 agg_id,
2337                           u8 tc)
2338 {
2339         struct ice_sched_node *vsi_node, *agg_node, *tc_node, *parent;
2340         u16 num_nodes[ICE_AQC_TOPO_MAX_LEVEL_NUM] = { 0 };
2341         u32 first_node_teid, vsi_teid;
2342         enum ice_status status;
2343         u16 num_nodes_added;
2344         u8 aggl, vsil, i;
2345
2346         tc_node = ice_sched_get_tc_node(pi, tc);
2347         if (!tc_node)
2348                 return ICE_ERR_CFG;
2349
2350         agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
2351         if (!agg_node)
2352                 return ICE_ERR_DOES_NOT_EXIST;
2353
2354         vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
2355         if (!vsi_node)
2356                 return ICE_ERR_DOES_NOT_EXIST;
2357
2358         /* Is this VSI already part of given aggregator? */
2359         if (ice_sched_find_node_in_subtree(pi->hw, agg_node, vsi_node))
2360                 return ICE_SUCCESS;
2361
2362         aggl = ice_sched_get_agg_layer(pi->hw);
2363         vsil = ice_sched_get_vsi_layer(pi->hw);
2364
2365         /* set intermediate node count to 1 between aggregator and VSI layers */
2366         for (i = aggl + 1; i < vsil; i++)
2367                 num_nodes[i] = 1;
2368
2369         /* Check if the aggregator subtree has any free node to add the VSI */
2370         for (i = 0; i < agg_node->num_children; i++) {
2371                 parent = ice_sched_get_free_vsi_parent(pi->hw,
2372                                                        agg_node->children[i],
2373                                                        num_nodes);
2374                 if (parent)
2375                         goto move_nodes;
2376         }
2377
2378         /* add new nodes */
2379         parent = agg_node;
2380         for (i = aggl + 1; i < vsil; i++) {
2381                 status = ice_sched_add_nodes_to_layer(pi, tc_node, parent, i,
2382                                                       num_nodes[i],
2383                                                       &first_node_teid,
2384                                                       &num_nodes_added);
2385                 if (status != ICE_SUCCESS || num_nodes[i] != num_nodes_added)
2386                         return ICE_ERR_CFG;
2387
2388                 /* The newly added node can be a new parent for the next
2389                  * layer nodes
2390                  */
2391                 if (num_nodes_added)
2392                         parent = ice_sched_find_node_by_teid(tc_node,
2393                                                              first_node_teid);
2394                 else
2395                         parent = parent->children[0];
2396
2397                 if (!parent)
2398                         return ICE_ERR_CFG;
2399         }
2400
2401 move_nodes:
2402         vsi_teid = LE32_TO_CPU(vsi_node->info.node_teid);
2403         return ice_sched_move_nodes(pi, parent, 1, &vsi_teid);
2404 }
2405
2406 /**
2407  * ice_move_all_vsi_to_dflt_agg - move all VSI(s) to default aggregator
2408  * @pi: port information structure
2409  * @agg_info: aggregator info
2410  * @tc: traffic class number
2411  * @rm_vsi_info: true or false
2412  *
2413  * This function move all the VSI(s) to the default aggregator and delete
2414  * aggregator VSI info based on passed in boolean parameter rm_vsi_info. The
2415  * caller holds the scheduler lock.
2416  */
2417 static enum ice_status
2418 ice_move_all_vsi_to_dflt_agg(struct ice_port_info *pi,
2419                              struct ice_sched_agg_info *agg_info, u8 tc,
2420                              bool rm_vsi_info)
2421 {
2422         struct ice_sched_agg_vsi_info *agg_vsi_info;
2423         struct ice_sched_agg_vsi_info *tmp;
2424         enum ice_status status = ICE_SUCCESS;
2425
2426         LIST_FOR_EACH_ENTRY_SAFE(agg_vsi_info, tmp, &agg_info->agg_vsi_list,
2427                                  ice_sched_agg_vsi_info, list_entry) {
2428                 u16 vsi_handle = agg_vsi_info->vsi_handle;
2429
2430                 /* Move VSI to default aggregator */
2431                 if (!ice_is_tc_ena(agg_vsi_info->tc_bitmap[0], tc))
2432                         continue;
2433
2434                 status = ice_sched_move_vsi_to_agg(pi, vsi_handle,
2435                                                    ICE_DFLT_AGG_ID, tc);
2436                 if (status)
2437                         break;
2438
2439                 ice_clear_bit(tc, agg_vsi_info->tc_bitmap);
2440                 if (rm_vsi_info && !agg_vsi_info->tc_bitmap[0]) {
2441                         LIST_DEL(&agg_vsi_info->list_entry);
2442                         ice_free(pi->hw, agg_vsi_info);
2443                 }
2444         }
2445
2446         return status;
2447 }
2448
2449 /**
2450  * ice_sched_is_agg_inuse - check whether the aggregator is in use or not
2451  * @pi: port information structure
2452  * @node: node pointer
2453  *
2454  * This function checks whether the aggregator is attached with any VSI or not.
2455  */
2456 static bool
2457 ice_sched_is_agg_inuse(struct ice_port_info *pi, struct ice_sched_node *node)
2458 {
2459         u8 vsil, i;
2460
2461         vsil = ice_sched_get_vsi_layer(pi->hw);
2462         if (node->tx_sched_layer < vsil - 1) {
2463                 for (i = 0; i < node->num_children; i++)
2464                         if (ice_sched_is_agg_inuse(pi, node->children[i]))
2465                                 return true;
2466                 return false;
2467         } else {
2468                 return node->num_children ? true : false;
2469         }
2470 }
2471
2472 /**
2473  * ice_sched_rm_agg_cfg - remove the aggregator node
2474  * @pi: port information structure
2475  * @agg_id: aggregator ID
2476  * @tc: TC number
2477  *
2478  * This function removes the aggregator node and intermediate nodes if any
2479  * from the given TC
2480  */
2481 static enum ice_status
2482 ice_sched_rm_agg_cfg(struct ice_port_info *pi, u32 agg_id, u8 tc)
2483 {
2484         struct ice_sched_node *tc_node, *agg_node;
2485         struct ice_hw *hw = pi->hw;
2486
2487         tc_node = ice_sched_get_tc_node(pi, tc);
2488         if (!tc_node)
2489                 return ICE_ERR_CFG;
2490
2491         agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
2492         if (!agg_node)
2493                 return ICE_ERR_DOES_NOT_EXIST;
2494
2495         /* Can't remove the aggregator node if it has children */
2496         if (ice_sched_is_agg_inuse(pi, agg_node))
2497                 return ICE_ERR_IN_USE;
2498
2499         /* need to remove the whole subtree if aggregator node is the
2500          * only child.
2501          */
2502         while (agg_node->tx_sched_layer > hw->sw_entry_point_layer) {
2503                 struct ice_sched_node *parent = agg_node->parent;
2504
2505                 if (!parent)
2506                         return ICE_ERR_CFG;
2507
2508                 if (parent->num_children > 1)
2509                         break;
2510
2511                 agg_node = parent;
2512         }
2513
2514         ice_free_sched_node(pi, agg_node);
2515         return ICE_SUCCESS;
2516 }
2517
2518 /**
2519  * ice_rm_agg_cfg_tc - remove aggregator configuration for TC
2520  * @pi: port information structure
2521  * @agg_info: aggregator ID
2522  * @tc: TC number
2523  * @rm_vsi_info: bool value true or false
2524  *
2525  * This function removes aggregator reference to VSI of given TC. It removes
2526  * the aggregator configuration completely for requested TC. The caller needs
2527  * to hold the scheduler lock.
2528  */
2529 static enum ice_status
2530 ice_rm_agg_cfg_tc(struct ice_port_info *pi, struct ice_sched_agg_info *agg_info,
2531                   u8 tc, bool rm_vsi_info)
2532 {
2533         enum ice_status status = ICE_SUCCESS;
2534
2535         /* If nothing to remove - return success */
2536         if (!ice_is_tc_ena(agg_info->tc_bitmap[0], tc))
2537                 goto exit_rm_agg_cfg_tc;
2538
2539         status = ice_move_all_vsi_to_dflt_agg(pi, agg_info, tc, rm_vsi_info);
2540         if (status)
2541                 goto exit_rm_agg_cfg_tc;
2542
2543         /* Delete aggregator node(s) */
2544         status = ice_sched_rm_agg_cfg(pi, agg_info->agg_id, tc);
2545         if (status)
2546                 goto exit_rm_agg_cfg_tc;
2547
2548         ice_clear_bit(tc, agg_info->tc_bitmap);
2549 exit_rm_agg_cfg_tc:
2550         return status;
2551 }
2552
2553 /**
2554  * ice_save_agg_tc_bitmap - save aggregator TC bitmap
2555  * @pi: port information structure
2556  * @agg_id: aggregator ID
2557  * @tc_bitmap: 8 bits TC bitmap
2558  *
2559  * Save aggregator TC bitmap. This function needs to be called with scheduler
2560  * lock held.
2561  */
2562 static enum ice_status
2563 ice_save_agg_tc_bitmap(struct ice_port_info *pi, u32 agg_id,
2564                        ice_bitmap_t *tc_bitmap)
2565 {
2566         struct ice_sched_agg_info *agg_info;
2567
2568         agg_info = ice_get_agg_info(pi->hw, agg_id);
2569         if (!agg_info)
2570                 return ICE_ERR_PARAM;
2571         ice_cp_bitmap(agg_info->replay_tc_bitmap, tc_bitmap,
2572                       ICE_MAX_TRAFFIC_CLASS);
2573         return ICE_SUCCESS;
2574 }
2575
2576 /**
2577  * ice_sched_add_agg_cfg - create an aggregator node
2578  * @pi: port information structure
2579  * @agg_id: aggregator ID
2580  * @tc: TC number
2581  *
2582  * This function creates an aggregator node and intermediate nodes if required
2583  * for the given TC
2584  */
2585 static enum ice_status
2586 ice_sched_add_agg_cfg(struct ice_port_info *pi, u32 agg_id, u8 tc)
2587 {
2588         struct ice_sched_node *parent, *agg_node, *tc_node;
2589         u16 num_nodes[ICE_AQC_TOPO_MAX_LEVEL_NUM] = { 0 };
2590         enum ice_status status = ICE_SUCCESS;
2591         struct ice_hw *hw = pi->hw;
2592         u32 first_node_teid;
2593         u16 num_nodes_added;
2594         u8 i, aggl;
2595
2596         tc_node = ice_sched_get_tc_node(pi, tc);
2597         if (!tc_node)
2598                 return ICE_ERR_CFG;
2599
2600         agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
2601         /* Does Agg node already exist ? */
2602         if (agg_node)
2603                 return status;
2604
2605         aggl = ice_sched_get_agg_layer(hw);
2606
2607         /* need one node in Agg layer */
2608         num_nodes[aggl] = 1;
2609
2610         /* Check whether the intermediate nodes have space to add the
2611          * new aggregator. If they are full, then SW needs to allocate a new
2612          * intermediate node on those layers
2613          */
2614         for (i = hw->sw_entry_point_layer; i < aggl; i++) {
2615                 parent = ice_sched_get_first_node(pi, tc_node, i);
2616
2617                 /* scan all the siblings */
2618                 while (parent) {
2619                         if (parent->num_children < hw->max_children[i])
2620                                 break;
2621                         parent = parent->sibling;
2622                 }
2623
2624                 /* all the nodes are full, reserve one for this layer */
2625                 if (!parent)
2626                         num_nodes[i]++;
2627         }
2628
2629         /* add the aggregator node */
2630         parent = tc_node;
2631         for (i = hw->sw_entry_point_layer; i <= aggl; i++) {
2632                 if (!parent)
2633                         return ICE_ERR_CFG;
2634
2635                 status = ice_sched_add_nodes_to_layer(pi, tc_node, parent, i,
2636                                                       num_nodes[i],
2637                                                       &first_node_teid,
2638                                                       &num_nodes_added);
2639                 if (status != ICE_SUCCESS || num_nodes[i] != num_nodes_added)
2640                         return ICE_ERR_CFG;
2641
2642                 /* The newly added node can be a new parent for the next
2643                  * layer nodes
2644                  */
2645                 if (num_nodes_added) {
2646                         parent = ice_sched_find_node_by_teid(tc_node,
2647                                                              first_node_teid);
2648                         /* register aggregator ID with the aggregator node */
2649                         if (parent && i == aggl)
2650                                 parent->agg_id = agg_id;
2651                 } else {
2652                         parent = parent->children[0];
2653                 }
2654         }
2655
2656         return ICE_SUCCESS;
2657 }
2658
2659 /**
2660  * ice_sched_cfg_agg - configure aggregator node
2661  * @pi: port information structure
2662  * @agg_id: aggregator ID
2663  * @agg_type: aggregator type queue, VSI, or aggregator group
2664  * @tc_bitmap: bits TC bitmap
2665  *
2666  * It registers a unique aggregator node into scheduler services. It
2667  * allows a user to register with a unique ID to track it's resources.
2668  * The aggregator type determines if this is a queue group, VSI group
2669  * or aggregator group. It then creates the aggregator node(s) for requested
2670  * TC(s) or removes an existing aggregator node including its configuration
2671  * if indicated via tc_bitmap. Call ice_rm_agg_cfg to release aggregator
2672  * resources and remove aggregator ID.
2673  * This function needs to be called with scheduler lock held.
2674  */
2675 static enum ice_status
2676 ice_sched_cfg_agg(struct ice_port_info *pi, u32 agg_id,
2677                   enum ice_agg_type agg_type, ice_bitmap_t *tc_bitmap)
2678 {
2679         struct ice_sched_agg_info *agg_info;
2680         enum ice_status status = ICE_SUCCESS;
2681         struct ice_hw *hw = pi->hw;
2682         u8 tc;
2683
2684         agg_info = ice_get_agg_info(hw, agg_id);
2685         if (!agg_info) {
2686                 /* Create new entry for new aggregator ID */
2687                 agg_info = (struct ice_sched_agg_info *)
2688                         ice_malloc(hw, sizeof(*agg_info));
2689                 if (!agg_info)
2690                         return ICE_ERR_NO_MEMORY;
2691
2692                 agg_info->agg_id = agg_id;
2693                 agg_info->agg_type = agg_type;
2694                 agg_info->tc_bitmap[0] = 0;
2695
2696                 /* Initialize the aggregator VSI list head */
2697                 INIT_LIST_HEAD(&agg_info->agg_vsi_list);
2698
2699                 /* Add new entry in aggregator list */
2700                 LIST_ADD(&agg_info->list_entry, &hw->agg_list);
2701         }
2702         /* Create aggregator node(s) for requested TC(s) */
2703         ice_for_each_traffic_class(tc) {
2704                 if (!ice_is_tc_ena(*tc_bitmap, tc)) {
2705                         /* Delete aggregator cfg TC if it exists previously */
2706                         status = ice_rm_agg_cfg_tc(pi, agg_info, tc, false);
2707                         if (status)
2708                                 break;
2709                         continue;
2710                 }
2711
2712                 /* Check if aggregator node for TC already exists */
2713                 if (ice_is_tc_ena(agg_info->tc_bitmap[0], tc))
2714                         continue;
2715
2716                 /* Create new aggregator node for TC */
2717                 status = ice_sched_add_agg_cfg(pi, agg_id, tc);
2718                 if (status)
2719                         break;
2720
2721                 /* Save aggregator node's TC information */
2722                 ice_set_bit(tc, agg_info->tc_bitmap);
2723         }
2724
2725         return status;
2726 }
2727
2728 /**
2729  * ice_cfg_agg - config aggregator node
2730  * @pi: port information structure
2731  * @agg_id: aggregator ID
2732  * @agg_type: aggregator type queue, VSI, or aggregator group
2733  * @tc_bitmap: bits TC bitmap
2734  *
2735  * This function configures aggregator node(s).
2736  */
2737 enum ice_status
2738 ice_cfg_agg(struct ice_port_info *pi, u32 agg_id, enum ice_agg_type agg_type,
2739             u8 tc_bitmap)
2740 {
2741         ice_bitmap_t bitmap = tc_bitmap;
2742         enum ice_status status;
2743
2744         ice_acquire_lock(&pi->sched_lock);
2745         status = ice_sched_cfg_agg(pi, agg_id, agg_type,
2746                                    (ice_bitmap_t *)&bitmap);
2747         if (!status)
2748                 status = ice_save_agg_tc_bitmap(pi, agg_id,
2749                                                 (ice_bitmap_t *)&bitmap);
2750         ice_release_lock(&pi->sched_lock);
2751         return status;
2752 }
2753
2754 /**
2755  * ice_get_agg_vsi_info - get the aggregator ID
2756  * @agg_info: aggregator info
2757  * @vsi_handle: software VSI handle
2758  *
2759  * The function returns aggregator VSI info based on VSI handle. This function
2760  * needs to be called with scheduler lock held.
2761  */
2762 static struct ice_sched_agg_vsi_info *
2763 ice_get_agg_vsi_info(struct ice_sched_agg_info *agg_info, u16 vsi_handle)
2764 {
2765         struct ice_sched_agg_vsi_info *agg_vsi_info;
2766
2767         LIST_FOR_EACH_ENTRY(agg_vsi_info, &agg_info->agg_vsi_list,
2768                             ice_sched_agg_vsi_info, list_entry)
2769                 if (agg_vsi_info->vsi_handle == vsi_handle)
2770                         return agg_vsi_info;
2771
2772         return NULL;
2773 }
2774
2775 /**
2776  * ice_get_vsi_agg_info - get the aggregator info of VSI
2777  * @hw: pointer to the hardware structure
2778  * @vsi_handle: Sw VSI handle
2779  *
2780  * The function returns aggregator info of VSI represented via vsi_handle. The
2781  * VSI has in this case a different aggregator than the default one. This
2782  * function needs to be called with scheduler lock held.
2783  */
2784 static struct ice_sched_agg_info *
2785 ice_get_vsi_agg_info(struct ice_hw *hw, u16 vsi_handle)
2786 {
2787         struct ice_sched_agg_info *agg_info;
2788
2789         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
2790                             list_entry) {
2791                 struct ice_sched_agg_vsi_info *agg_vsi_info;
2792
2793                 agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
2794                 if (agg_vsi_info)
2795                         return agg_info;
2796         }
2797         return NULL;
2798 }
2799
2800 /**
2801  * ice_save_agg_vsi_tc_bitmap - save aggregator VSI TC bitmap
2802  * @pi: port information structure
2803  * @agg_id: aggregator ID
2804  * @vsi_handle: software VSI handle
2805  * @tc_bitmap: TC bitmap of enabled TC(s)
2806  *
2807  * Save VSI to aggregator TC bitmap. This function needs to call with scheduler
2808  * lock held.
2809  */
2810 static enum ice_status
2811 ice_save_agg_vsi_tc_bitmap(struct ice_port_info *pi, u32 agg_id, u16 vsi_handle,
2812                            ice_bitmap_t *tc_bitmap)
2813 {
2814         struct ice_sched_agg_vsi_info *agg_vsi_info;
2815         struct ice_sched_agg_info *agg_info;
2816
2817         agg_info = ice_get_agg_info(pi->hw, agg_id);
2818         if (!agg_info)
2819                 return ICE_ERR_PARAM;
2820         /* check if entry already exist */
2821         agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
2822         if (!agg_vsi_info)
2823                 return ICE_ERR_PARAM;
2824         ice_cp_bitmap(agg_vsi_info->replay_tc_bitmap, tc_bitmap,
2825                       ICE_MAX_TRAFFIC_CLASS);
2826         return ICE_SUCCESS;
2827 }
2828
2829 /**
2830  * ice_sched_assoc_vsi_to_agg - associate/move VSI to new/default aggregator
2831  * @pi: port information structure
2832  * @agg_id: aggregator ID
2833  * @vsi_handle: software VSI handle
2834  * @tc_bitmap: TC bitmap of enabled TC(s)
2835  *
2836  * This function moves VSI to a new or default aggregator node. If VSI is
2837  * already associated to the aggregator node then no operation is performed on
2838  * the tree. This function needs to be called with scheduler lock held.
2839  */
2840 static enum ice_status
2841 ice_sched_assoc_vsi_to_agg(struct ice_port_info *pi, u32 agg_id,
2842                            u16 vsi_handle, ice_bitmap_t *tc_bitmap)
2843 {
2844         struct ice_sched_agg_vsi_info *agg_vsi_info, *old_agg_vsi_info = NULL;
2845         struct ice_sched_agg_info *agg_info, *old_agg_info;
2846         enum ice_status status = ICE_SUCCESS;
2847         struct ice_hw *hw = pi->hw;
2848         u8 tc;
2849
2850         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
2851                 return ICE_ERR_PARAM;
2852         agg_info = ice_get_agg_info(hw, agg_id);
2853         if (!agg_info)
2854                 return ICE_ERR_PARAM;
2855         /* If the vsi is already part of another aggregator then update
2856          * its vsi info list
2857          */
2858         old_agg_info = ice_get_vsi_agg_info(hw, vsi_handle);
2859         if (old_agg_info && old_agg_info != agg_info) {
2860                 struct ice_sched_agg_vsi_info *vtmp;
2861
2862                 LIST_FOR_EACH_ENTRY_SAFE(old_agg_vsi_info, vtmp,
2863                                          &old_agg_info->agg_vsi_list,
2864                                          ice_sched_agg_vsi_info, list_entry)
2865                         if (old_agg_vsi_info->vsi_handle == vsi_handle)
2866                                 break;
2867         }
2868
2869         /* check if entry already exist */
2870         agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
2871         if (!agg_vsi_info) {
2872                 /* Create new entry for VSI under aggregator list */
2873                 agg_vsi_info = (struct ice_sched_agg_vsi_info *)
2874                         ice_malloc(hw, sizeof(*agg_vsi_info));
2875                 if (!agg_vsi_info)
2876                         return ICE_ERR_PARAM;
2877
2878                 /* add VSI ID into the aggregator list */
2879                 agg_vsi_info->vsi_handle = vsi_handle;
2880                 LIST_ADD(&agg_vsi_info->list_entry, &agg_info->agg_vsi_list);
2881         }
2882         /* Move VSI node to new aggregator node for requested TC(s) */
2883         ice_for_each_traffic_class(tc) {
2884                 if (!ice_is_tc_ena(*tc_bitmap, tc))
2885                         continue;
2886
2887                 /* Move VSI to new aggregator */
2888                 status = ice_sched_move_vsi_to_agg(pi, vsi_handle, agg_id, tc);
2889                 if (status)
2890                         break;
2891
2892                 ice_set_bit(tc, agg_vsi_info->tc_bitmap);
2893                 if (old_agg_vsi_info)
2894                         ice_clear_bit(tc, old_agg_vsi_info->tc_bitmap);
2895         }
2896         if (old_agg_vsi_info && !old_agg_vsi_info->tc_bitmap[0]) {
2897                 LIST_DEL(&old_agg_vsi_info->list_entry);
2898                 ice_free(pi->hw, old_agg_vsi_info);
2899         }
2900         return status;
2901 }
2902
2903 /**
2904  * ice_sched_rm_unused_rl_prof - remove unused RL profile
2905  * @hw: pointer to the hardware structure
2906  *
2907  * This function removes unused rate limit profiles from the HW and
2908  * SW DB. The caller needs to hold scheduler lock.
2909  */
2910 static void ice_sched_rm_unused_rl_prof(struct ice_hw *hw)
2911 {
2912         u16 ln;
2913
2914         for (ln = 0; ln < hw->num_tx_sched_layers; ln++) {
2915                 struct ice_aqc_rl_profile_info *rl_prof_elem;
2916                 struct ice_aqc_rl_profile_info *rl_prof_tmp;
2917
2918                 LIST_FOR_EACH_ENTRY_SAFE(rl_prof_elem, rl_prof_tmp,
2919                                          &hw->rl_prof_list[ln],
2920                                          ice_aqc_rl_profile_info, list_entry) {
2921                         if (!ice_sched_del_rl_profile(hw, rl_prof_elem))
2922                                 ice_debug(hw, ICE_DBG_SCHED, "Removed rl profile\n");
2923                 }
2924         }
2925 }
2926
2927 /**
2928  * ice_sched_update_elem - update element
2929  * @hw: pointer to the HW struct
2930  * @node: pointer to node
2931  * @info: node info to update
2932  *
2933  * Update the HW DB, and local SW DB of node. Update the scheduling
2934  * parameters of node from argument info data buffer (Info->data buf) and
2935  * returns success or error on config sched element failure. The caller
2936  * needs to hold scheduler lock.
2937  */
2938 static enum ice_status
2939 ice_sched_update_elem(struct ice_hw *hw, struct ice_sched_node *node,
2940                       struct ice_aqc_txsched_elem_data *info)
2941 {
2942         struct ice_aqc_txsched_elem_data buf;
2943         enum ice_status status;
2944         u16 elem_cfgd = 0;
2945         u16 num_elems = 1;
2946
2947         buf = *info;
2948         /* Parent TEID is reserved field in this aq call */
2949         buf.parent_teid = 0;
2950         /* Element type is reserved field in this aq call */
2951         buf.data.elem_type = 0;
2952         /* Flags is reserved field in this aq call */
2953         buf.data.flags = 0;
2954
2955         /* Update HW DB */
2956         /* Configure element node */
2957         status = ice_aq_cfg_sched_elems(hw, num_elems, &buf, sizeof(buf),
2958                                         &elem_cfgd, NULL);
2959         if (status || elem_cfgd != num_elems) {
2960                 ice_debug(hw, ICE_DBG_SCHED, "Config sched elem error\n");
2961                 return ICE_ERR_CFG;
2962         }
2963
2964         /* Config success case */
2965         /* Now update local SW DB */
2966         /* Only copy the data portion of info buffer */
2967         node->info.data = info->data;
2968         return status;
2969 }
2970
2971 /**
2972  * ice_sched_cfg_node_bw_alloc - configure node BW weight/alloc params
2973  * @hw: pointer to the HW struct
2974  * @node: sched node to configure
2975  * @rl_type: rate limit type CIR, EIR, or shared
2976  * @bw_alloc: BW weight/allocation
2977  *
2978  * This function configures node element's BW allocation.
2979  */
2980 static enum ice_status
2981 ice_sched_cfg_node_bw_alloc(struct ice_hw *hw, struct ice_sched_node *node,
2982                             enum ice_rl_type rl_type, u16 bw_alloc)
2983 {
2984         struct ice_aqc_txsched_elem_data buf;
2985         struct ice_aqc_txsched_elem *data;
2986         enum ice_status status;
2987
2988         buf = node->info;
2989         data = &buf.data;
2990         if (rl_type == ICE_MIN_BW) {
2991                 data->valid_sections |= ICE_AQC_ELEM_VALID_CIR;
2992                 data->cir_bw.bw_alloc = CPU_TO_LE16(bw_alloc);
2993         } else if (rl_type == ICE_MAX_BW) {
2994                 data->valid_sections |= ICE_AQC_ELEM_VALID_EIR;
2995                 data->eir_bw.bw_alloc = CPU_TO_LE16(bw_alloc);
2996         } else {
2997                 return ICE_ERR_PARAM;
2998         }
2999
3000         /* Configure element */
3001         status = ice_sched_update_elem(hw, node, &buf);
3002         return status;
3003 }
3004
3005 /**
3006  * ice_move_vsi_to_agg - moves VSI to new or default aggregator
3007  * @pi: port information structure
3008  * @agg_id: aggregator ID
3009  * @vsi_handle: software VSI handle
3010  * @tc_bitmap: TC bitmap of enabled TC(s)
3011  *
3012  * Move or associate VSI to a new or default aggregator node.
3013  */
3014 enum ice_status
3015 ice_move_vsi_to_agg(struct ice_port_info *pi, u32 agg_id, u16 vsi_handle,
3016                     u8 tc_bitmap)
3017 {
3018         ice_bitmap_t bitmap = tc_bitmap;
3019         enum ice_status status;
3020
3021         ice_acquire_lock(&pi->sched_lock);
3022         status = ice_sched_assoc_vsi_to_agg(pi, agg_id, vsi_handle,
3023                                             (ice_bitmap_t *)&bitmap);
3024         if (!status)
3025                 status = ice_save_agg_vsi_tc_bitmap(pi, agg_id, vsi_handle,
3026                                                     (ice_bitmap_t *)&bitmap);
3027         ice_release_lock(&pi->sched_lock);
3028         return status;
3029 }
3030
3031 /**
3032  * ice_rm_agg_cfg - remove aggregator configuration
3033  * @pi: port information structure
3034  * @agg_id: aggregator ID
3035  *
3036  * This function removes aggregator reference to VSI and delete aggregator ID
3037  * info. It removes the aggregator configuration completely.
3038  */
3039 enum ice_status ice_rm_agg_cfg(struct ice_port_info *pi, u32 agg_id)
3040 {
3041         struct ice_sched_agg_info *agg_info;
3042         enum ice_status status = ICE_SUCCESS;
3043         u8 tc;
3044
3045         ice_acquire_lock(&pi->sched_lock);
3046         agg_info = ice_get_agg_info(pi->hw, agg_id);
3047         if (!agg_info) {
3048                 status = ICE_ERR_DOES_NOT_EXIST;
3049                 goto exit_ice_rm_agg_cfg;
3050         }
3051
3052         ice_for_each_traffic_class(tc) {
3053                 status = ice_rm_agg_cfg_tc(pi, agg_info, tc, true);
3054                 if (status)
3055                         goto exit_ice_rm_agg_cfg;
3056         }
3057
3058         if (ice_is_any_bit_set(agg_info->tc_bitmap, ICE_MAX_TRAFFIC_CLASS)) {
3059                 status = ICE_ERR_IN_USE;
3060                 goto exit_ice_rm_agg_cfg;
3061         }
3062
3063         /* Safe to delete entry now */
3064         LIST_DEL(&agg_info->list_entry);
3065         ice_free(pi->hw, agg_info);
3066
3067         /* Remove unused RL profile IDs from HW and SW DB */
3068         ice_sched_rm_unused_rl_prof(pi->hw);
3069
3070 exit_ice_rm_agg_cfg:
3071         ice_release_lock(&pi->sched_lock);
3072         return status;
3073 }
3074
3075 /**
3076  * ice_set_clear_cir_bw_alloc - set or clear CIR BW alloc information
3077  * @bw_t_info: bandwidth type information structure
3078  * @bw_alloc: Bandwidth allocation information
3079  *
3080  * Save or clear CIR BW alloc information (bw_alloc) in the passed param
3081  * bw_t_info.
3082  */
3083 static void
3084 ice_set_clear_cir_bw_alloc(struct ice_bw_type_info *bw_t_info, u16 bw_alloc)
3085 {
3086         bw_t_info->cir_bw.bw_alloc = bw_alloc;
3087         if (bw_t_info->cir_bw.bw_alloc)
3088                 ice_set_bit(ICE_BW_TYPE_CIR_WT, bw_t_info->bw_t_bitmap);
3089         else
3090                 ice_clear_bit(ICE_BW_TYPE_CIR_WT, bw_t_info->bw_t_bitmap);
3091 }
3092
3093 /**
3094  * ice_set_clear_eir_bw_alloc - set or clear EIR BW alloc information
3095  * @bw_t_info: bandwidth type information structure
3096  * @bw_alloc: Bandwidth allocation information
3097  *
3098  * Save or clear EIR BW alloc information (bw_alloc) in the passed param
3099  * bw_t_info.
3100  */
3101 static void
3102 ice_set_clear_eir_bw_alloc(struct ice_bw_type_info *bw_t_info, u16 bw_alloc)
3103 {
3104         bw_t_info->eir_bw.bw_alloc = bw_alloc;
3105         if (bw_t_info->eir_bw.bw_alloc)
3106                 ice_set_bit(ICE_BW_TYPE_EIR_WT, bw_t_info->bw_t_bitmap);
3107         else
3108                 ice_clear_bit(ICE_BW_TYPE_EIR_WT, bw_t_info->bw_t_bitmap);
3109 }
3110
3111 /**
3112  * ice_sched_save_vsi_bw_alloc - save VSI node's BW alloc information
3113  * @pi: port information structure
3114  * @vsi_handle: sw VSI handle
3115  * @tc: traffic class
3116  * @rl_type: rate limit type min or max
3117  * @bw_alloc: Bandwidth allocation information
3118  *
3119  * Save BW alloc information of VSI type node for post replay use.
3120  */
3121 static enum ice_status
3122 ice_sched_save_vsi_bw_alloc(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3123                             enum ice_rl_type rl_type, u16 bw_alloc)
3124 {
3125         struct ice_vsi_ctx *vsi_ctx;
3126
3127         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3128                 return ICE_ERR_PARAM;
3129         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
3130         if (!vsi_ctx)
3131                 return ICE_ERR_PARAM;
3132         switch (rl_type) {
3133         case ICE_MIN_BW:
3134                 ice_set_clear_cir_bw_alloc(&vsi_ctx->sched.bw_t_info[tc],
3135                                            bw_alloc);
3136                 break;
3137         case ICE_MAX_BW:
3138                 ice_set_clear_eir_bw_alloc(&vsi_ctx->sched.bw_t_info[tc],
3139                                            bw_alloc);
3140                 break;
3141         default:
3142                 return ICE_ERR_PARAM;
3143         }
3144         return ICE_SUCCESS;
3145 }
3146
3147 /**
3148  * ice_set_clear_cir_bw - set or clear CIR BW
3149  * @bw_t_info: bandwidth type information structure
3150  * @bw: bandwidth in Kbps - Kilo bits per sec
3151  *
3152  * Save or clear CIR bandwidth (BW) in the passed param bw_t_info.
3153  */
3154 static void ice_set_clear_cir_bw(struct ice_bw_type_info *bw_t_info, u32 bw)
3155 {
3156         if (bw == ICE_SCHED_DFLT_BW) {
3157                 ice_clear_bit(ICE_BW_TYPE_CIR, bw_t_info->bw_t_bitmap);
3158                 bw_t_info->cir_bw.bw = 0;
3159         } else {
3160                 /* Save type of BW information */
3161                 ice_set_bit(ICE_BW_TYPE_CIR, bw_t_info->bw_t_bitmap);
3162                 bw_t_info->cir_bw.bw = bw;
3163         }
3164 }
3165
3166 /**
3167  * ice_set_clear_eir_bw - set or clear EIR BW
3168  * @bw_t_info: bandwidth type information structure
3169  * @bw: bandwidth in Kbps - Kilo bits per sec
3170  *
3171  * Save or clear EIR bandwidth (BW) in the passed param bw_t_info.
3172  */
3173 static void ice_set_clear_eir_bw(struct ice_bw_type_info *bw_t_info, u32 bw)
3174 {
3175         if (bw == ICE_SCHED_DFLT_BW) {
3176                 ice_clear_bit(ICE_BW_TYPE_EIR, bw_t_info->bw_t_bitmap);
3177                 bw_t_info->eir_bw.bw = 0;
3178         } else {
3179                 /* save EIR BW information */
3180                 ice_set_bit(ICE_BW_TYPE_EIR, bw_t_info->bw_t_bitmap);
3181                 bw_t_info->eir_bw.bw = bw;
3182         }
3183 }
3184
3185 /**
3186  * ice_set_clear_shared_bw - set or clear shared BW
3187  * @bw_t_info: bandwidth type information structure
3188  * @bw: bandwidth in Kbps - Kilo bits per sec
3189  *
3190  * Save or clear shared bandwidth (BW) in the passed param bw_t_info.
3191  */
3192 static void ice_set_clear_shared_bw(struct ice_bw_type_info *bw_t_info, u32 bw)
3193 {
3194         if (bw == ICE_SCHED_DFLT_BW) {
3195                 ice_clear_bit(ICE_BW_TYPE_SHARED, bw_t_info->bw_t_bitmap);
3196                 bw_t_info->shared_bw = 0;
3197         } else {
3198                 /* save shared BW information */
3199                 ice_set_bit(ICE_BW_TYPE_SHARED, bw_t_info->bw_t_bitmap);
3200                 bw_t_info->shared_bw = bw;
3201         }
3202 }
3203
3204 /**
3205  * ice_sched_save_vsi_bw - save VSI node's BW information
3206  * @pi: port information structure
3207  * @vsi_handle: sw VSI handle
3208  * @tc: traffic class
3209  * @rl_type: rate limit type min, max, or shared
3210  * @bw: bandwidth in Kbps - Kilo bits per sec
3211  *
3212  * Save BW information of VSI type node for post replay use.
3213  */
3214 static enum ice_status
3215 ice_sched_save_vsi_bw(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3216                       enum ice_rl_type rl_type, u32 bw)
3217 {
3218         struct ice_vsi_ctx *vsi_ctx;
3219
3220         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3221                 return ICE_ERR_PARAM;
3222         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
3223         if (!vsi_ctx)
3224                 return ICE_ERR_PARAM;
3225         switch (rl_type) {
3226         case ICE_MIN_BW:
3227                 ice_set_clear_cir_bw(&vsi_ctx->sched.bw_t_info[tc], bw);
3228                 break;
3229         case ICE_MAX_BW:
3230                 ice_set_clear_eir_bw(&vsi_ctx->sched.bw_t_info[tc], bw);
3231                 break;
3232         case ICE_SHARED_BW:
3233                 ice_set_clear_shared_bw(&vsi_ctx->sched.bw_t_info[tc], bw);
3234                 break;
3235         default:
3236                 return ICE_ERR_PARAM;
3237         }
3238         return ICE_SUCCESS;
3239 }
3240
3241 /**
3242  * ice_set_clear_prio - set or clear priority information
3243  * @bw_t_info: bandwidth type information structure
3244  * @prio: priority to save
3245  *
3246  * Save or clear priority (prio) in the passed param bw_t_info.
3247  */
3248 static void ice_set_clear_prio(struct ice_bw_type_info *bw_t_info, u8 prio)
3249 {
3250         bw_t_info->generic = prio;
3251         if (bw_t_info->generic)
3252                 ice_set_bit(ICE_BW_TYPE_PRIO, bw_t_info->bw_t_bitmap);
3253         else
3254                 ice_clear_bit(ICE_BW_TYPE_PRIO, bw_t_info->bw_t_bitmap);
3255 }
3256
3257 /**
3258  * ice_sched_save_vsi_prio - save VSI node's priority information
3259  * @pi: port information structure
3260  * @vsi_handle: Software VSI handle
3261  * @tc: traffic class
3262  * @prio: priority to save
3263  *
3264  * Save priority information of VSI type node for post replay use.
3265  */
3266 static enum ice_status
3267 ice_sched_save_vsi_prio(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3268                         u8 prio)
3269 {
3270         struct ice_vsi_ctx *vsi_ctx;
3271
3272         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3273                 return ICE_ERR_PARAM;
3274         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
3275         if (!vsi_ctx)
3276                 return ICE_ERR_PARAM;
3277         if (tc >= ICE_MAX_TRAFFIC_CLASS)
3278                 return ICE_ERR_PARAM;
3279         ice_set_clear_prio(&vsi_ctx->sched.bw_t_info[tc], prio);
3280         return ICE_SUCCESS;
3281 }
3282
3283 /**
3284  * ice_sched_save_agg_bw_alloc - save aggregator node's BW alloc information
3285  * @pi: port information structure
3286  * @agg_id: node aggregator ID
3287  * @tc: traffic class
3288  * @rl_type: rate limit type min or max
3289  * @bw_alloc: bandwidth alloc information
3290  *
3291  * Save BW alloc information of AGG type node for post replay use.
3292  */
3293 static enum ice_status
3294 ice_sched_save_agg_bw_alloc(struct ice_port_info *pi, u32 agg_id, u8 tc,
3295                             enum ice_rl_type rl_type, u16 bw_alloc)
3296 {
3297         struct ice_sched_agg_info *agg_info;
3298
3299         agg_info = ice_get_agg_info(pi->hw, agg_id);
3300         if (!agg_info)
3301                 return ICE_ERR_PARAM;
3302         if (!ice_is_tc_ena(agg_info->tc_bitmap[0], tc))
3303                 return ICE_ERR_PARAM;
3304         switch (rl_type) {
3305         case ICE_MIN_BW:
3306                 ice_set_clear_cir_bw_alloc(&agg_info->bw_t_info[tc], bw_alloc);
3307                 break;
3308         case ICE_MAX_BW:
3309                 ice_set_clear_eir_bw_alloc(&agg_info->bw_t_info[tc], bw_alloc);
3310                 break;
3311         default:
3312                 return ICE_ERR_PARAM;
3313         }
3314         return ICE_SUCCESS;
3315 }
3316
3317 /**
3318  * ice_sched_save_agg_bw - save aggregator node's BW information
3319  * @pi: port information structure
3320  * @agg_id: node aggregator ID
3321  * @tc: traffic class
3322  * @rl_type: rate limit type min, max, or shared
3323  * @bw: bandwidth in Kbps - Kilo bits per sec
3324  *
3325  * Save BW information of AGG type node for post replay use.
3326  */
3327 static enum ice_status
3328 ice_sched_save_agg_bw(struct ice_port_info *pi, u32 agg_id, u8 tc,
3329                       enum ice_rl_type rl_type, u32 bw)
3330 {
3331         struct ice_sched_agg_info *agg_info;
3332
3333         agg_info = ice_get_agg_info(pi->hw, agg_id);
3334         if (!agg_info)
3335                 return ICE_ERR_PARAM;
3336         if (!ice_is_tc_ena(agg_info->tc_bitmap[0], tc))
3337                 return ICE_ERR_PARAM;
3338         switch (rl_type) {
3339         case ICE_MIN_BW:
3340                 ice_set_clear_cir_bw(&agg_info->bw_t_info[tc], bw);
3341                 break;
3342         case ICE_MAX_BW:
3343                 ice_set_clear_eir_bw(&agg_info->bw_t_info[tc], bw);
3344                 break;
3345         case ICE_SHARED_BW:
3346                 ice_set_clear_shared_bw(&agg_info->bw_t_info[tc], bw);
3347                 break;
3348         default:
3349                 return ICE_ERR_PARAM;
3350         }
3351         return ICE_SUCCESS;
3352 }
3353
3354 /**
3355  * ice_cfg_vsi_bw_lmt_per_tc - configure VSI BW limit per TC
3356  * @pi: port information structure
3357  * @vsi_handle: software VSI handle
3358  * @tc: traffic class
3359  * @rl_type: min or max
3360  * @bw: bandwidth in Kbps
3361  *
3362  * This function configures BW limit of VSI scheduling node based on TC
3363  * information.
3364  */
3365 enum ice_status
3366 ice_cfg_vsi_bw_lmt_per_tc(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3367                           enum ice_rl_type rl_type, u32 bw)
3368 {
3369         enum ice_status status;
3370
3371         status = ice_sched_set_node_bw_lmt_per_tc(pi, vsi_handle,
3372                                                   ICE_AGG_TYPE_VSI,
3373                                                   tc, rl_type, bw);
3374         if (!status) {
3375                 ice_acquire_lock(&pi->sched_lock);
3376                 status = ice_sched_save_vsi_bw(pi, vsi_handle, tc, rl_type, bw);
3377                 ice_release_lock(&pi->sched_lock);
3378         }
3379         return status;
3380 }
3381
3382 /**
3383  * ice_cfg_vsi_bw_dflt_lmt_per_tc - configure default VSI BW limit per TC
3384  * @pi: port information structure
3385  * @vsi_handle: software VSI handle
3386  * @tc: traffic class
3387  * @rl_type: min or max
3388  *
3389  * This function configures default BW limit of VSI scheduling node based on TC
3390  * information.
3391  */
3392 enum ice_status
3393 ice_cfg_vsi_bw_dflt_lmt_per_tc(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3394                                enum ice_rl_type rl_type)
3395 {
3396         enum ice_status status;
3397
3398         status = ice_sched_set_node_bw_lmt_per_tc(pi, vsi_handle,
3399                                                   ICE_AGG_TYPE_VSI,
3400                                                   tc, rl_type,
3401                                                   ICE_SCHED_DFLT_BW);
3402         if (!status) {
3403                 ice_acquire_lock(&pi->sched_lock);
3404                 status = ice_sched_save_vsi_bw(pi, vsi_handle, tc, rl_type,
3405                                                ICE_SCHED_DFLT_BW);
3406                 ice_release_lock(&pi->sched_lock);
3407         }
3408         return status;
3409 }
3410
3411 /**
3412  * ice_cfg_agg_bw_lmt_per_tc - configure aggregator BW limit per TC
3413  * @pi: port information structure
3414  * @agg_id: aggregator ID
3415  * @tc: traffic class
3416  * @rl_type: min or max
3417  * @bw: bandwidth in Kbps
3418  *
3419  * This function applies BW limit to aggregator scheduling node based on TC
3420  * information.
3421  */
3422 enum ice_status
3423 ice_cfg_agg_bw_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc,
3424                           enum ice_rl_type rl_type, u32 bw)
3425 {
3426         enum ice_status status;
3427
3428         status = ice_sched_set_node_bw_lmt_per_tc(pi, agg_id, ICE_AGG_TYPE_AGG,
3429                                                   tc, rl_type, bw);
3430         if (!status) {
3431                 ice_acquire_lock(&pi->sched_lock);
3432                 status = ice_sched_save_agg_bw(pi, agg_id, tc, rl_type, bw);
3433                 ice_release_lock(&pi->sched_lock);
3434         }
3435         return status;
3436 }
3437
3438 /**
3439  * ice_cfg_agg_bw_dflt_lmt_per_tc - configure aggregator BW default limit per TC
3440  * @pi: port information structure
3441  * @agg_id: aggregator ID
3442  * @tc: traffic class
3443  * @rl_type: min or max
3444  *
3445  * This function applies default BW limit to aggregator scheduling node based
3446  * on TC information.
3447  */
3448 enum ice_status
3449 ice_cfg_agg_bw_dflt_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc,
3450                                enum ice_rl_type rl_type)
3451 {
3452         enum ice_status status;
3453
3454         status = ice_sched_set_node_bw_lmt_per_tc(pi, agg_id, ICE_AGG_TYPE_AGG,
3455                                                   tc, rl_type,
3456                                                   ICE_SCHED_DFLT_BW);
3457         if (!status) {
3458                 ice_acquire_lock(&pi->sched_lock);
3459                 status = ice_sched_save_agg_bw(pi, agg_id, tc, rl_type,
3460                                                ICE_SCHED_DFLT_BW);
3461                 ice_release_lock(&pi->sched_lock);
3462         }
3463         return status;
3464 }
3465
3466 /**
3467  * ice_cfg_vsi_bw_shared_lmt - configure VSI BW shared limit
3468  * @pi: port information structure
3469  * @vsi_handle: software VSI handle
3470  * @min_bw: minimum bandwidth in Kbps
3471  * @max_bw: maximum bandwidth in Kbps
3472  * @shared_bw: shared bandwidth in Kbps
3473  *
3474  * Configure shared rate limiter(SRL) of all VSI type nodes across all traffic
3475  * classes for VSI matching handle.
3476  */
3477 enum ice_status
3478 ice_cfg_vsi_bw_shared_lmt(struct ice_port_info *pi, u16 vsi_handle, u32 min_bw,
3479                           u32 max_bw, u32 shared_bw)
3480 {
3481         return ice_sched_set_vsi_bw_shared_lmt(pi, vsi_handle, min_bw, max_bw,
3482                                                shared_bw);
3483 }
3484
3485 /**
3486  * ice_cfg_vsi_bw_no_shared_lmt - configure VSI BW for no shared limiter
3487  * @pi: port information structure
3488  * @vsi_handle: software VSI handle
3489  *
3490  * This function removes the shared rate limiter(SRL) of all VSI type nodes
3491  * across all traffic classes for VSI matching handle.
3492  */
3493 enum ice_status
3494 ice_cfg_vsi_bw_no_shared_lmt(struct ice_port_info *pi, u16 vsi_handle)
3495 {
3496         return ice_sched_set_vsi_bw_shared_lmt(pi, vsi_handle,
3497                                                ICE_SCHED_DFLT_BW,
3498                                                ICE_SCHED_DFLT_BW,
3499                                                ICE_SCHED_DFLT_BW);
3500 }
3501
3502 /**
3503  * ice_cfg_agg_bw_shared_lmt - configure aggregator BW shared limit
3504  * @pi: port information structure
3505  * @agg_id: aggregator ID
3506  * @min_bw: minimum bandwidth in Kbps
3507  * @max_bw: maximum bandwidth in Kbps
3508  * @shared_bw: shared bandwidth in Kbps
3509  *
3510  * This function configures the shared rate limiter(SRL) of all aggregator type
3511  * nodes across all traffic classes for aggregator matching agg_id.
3512  */
3513 enum ice_status
3514 ice_cfg_agg_bw_shared_lmt(struct ice_port_info *pi, u32 agg_id, u32 min_bw,
3515                           u32 max_bw, u32 shared_bw)
3516 {
3517         return ice_sched_set_agg_bw_shared_lmt(pi, agg_id, min_bw, max_bw,
3518                                                shared_bw);
3519 }
3520
3521 /**
3522  * ice_cfg_agg_bw_no_shared_lmt - configure aggregator BW for no shared limiter
3523  * @pi: port information structure
3524  * @agg_id: aggregator ID
3525  *
3526  * This function removes the shared rate limiter(SRL) of all aggregator type
3527  * nodes across all traffic classes for aggregator matching agg_id.
3528  */
3529 enum ice_status
3530 ice_cfg_agg_bw_no_shared_lmt(struct ice_port_info *pi, u32 agg_id)
3531 {
3532         return ice_sched_set_agg_bw_shared_lmt(pi, agg_id, ICE_SCHED_DFLT_BW,
3533                                                ICE_SCHED_DFLT_BW,
3534                                                ICE_SCHED_DFLT_BW);
3535 }
3536
3537 /**
3538  * ice_cfg_agg_bw_shared_lmt_per_tc - config aggregator BW shared limit per tc
3539  * @pi: port information structure
3540  * @agg_id: aggregator ID
3541  * @tc: traffic class
3542  * @min_bw: minimum bandwidth in Kbps
3543  * @max_bw: maximum bandwidth in Kbps
3544  * @shared_bw: shared bandwidth in Kbps
3545  *
3546  * This function configures the shared rate limiter(SRL) of all aggregator type
3547  * nodes across all traffic classes for aggregator matching agg_id.
3548  */
3549 enum ice_status
3550 ice_cfg_agg_bw_shared_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc,
3551                                  u32 min_bw, u32 max_bw, u32 shared_bw)
3552 {
3553         return ice_sched_set_agg_bw_shared_lmt_per_tc(pi, agg_id, tc, min_bw,
3554                                                       max_bw, shared_bw);
3555 }
3556
3557 /**
3558  * ice_cfg_agg_bw_no_shared_lmt_per_tc - cfg aggregator BW shared limit per tc
3559  * @pi: port information structure
3560  * @agg_id: aggregator ID
3561  * @tc: traffic class
3562  *
3563  * This function configures the shared rate limiter(SRL) of all aggregator type
3564  * nodes across all traffic classes for aggregator matching agg_id.
3565  */
3566 enum ice_status
3567 ice_cfg_agg_bw_no_shared_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc)
3568 {
3569         return ice_sched_set_agg_bw_shared_lmt_per_tc(pi, agg_id, tc,
3570                                                       ICE_SCHED_DFLT_BW,
3571                                                       ICE_SCHED_DFLT_BW,
3572                                                       ICE_SCHED_DFLT_BW);
3573 }
3574
3575 /**
3576  * ice_cfg_vsi_q_priority - config VSI queue priority of node
3577  * @pi: port information structure
3578  * @num_qs: number of VSI queues
3579  * @q_ids: queue IDs array
3580  * @q_prio: queue priority array
3581  *
3582  * This function configures the queue node priority (Sibling Priority) of the
3583  * passed in VSI's queue(s) for a given traffic class (TC).
3584  */
3585 enum ice_status
3586 ice_cfg_vsi_q_priority(struct ice_port_info *pi, u16 num_qs, u32 *q_ids,
3587                        u8 *q_prio)
3588 {
3589         enum ice_status status = ICE_ERR_PARAM;
3590         u16 i;
3591
3592         ice_acquire_lock(&pi->sched_lock);
3593
3594         for (i = 0; i < num_qs; i++) {
3595                 struct ice_sched_node *node;
3596
3597                 node = ice_sched_find_node_by_teid(pi->root, q_ids[i]);
3598                 if (!node || node->info.data.elem_type !=
3599                     ICE_AQC_ELEM_TYPE_LEAF) {
3600                         status = ICE_ERR_PARAM;
3601                         break;
3602                 }
3603                 /* Configure Priority */
3604                 status = ice_sched_cfg_sibl_node_prio(pi, node, q_prio[i]);
3605                 if (status)
3606                         break;
3607         }
3608
3609         ice_release_lock(&pi->sched_lock);
3610         return status;
3611 }
3612
3613 /**
3614  * ice_cfg_agg_vsi_priority_per_tc - config aggregator's VSI priority per TC
3615  * @pi: port information structure
3616  * @agg_id: Aggregator ID
3617  * @num_vsis: number of VSI(s)
3618  * @vsi_handle_arr: array of software VSI handles
3619  * @node_prio: pointer to node priority
3620  * @tc: traffic class
3621  *
3622  * This function configures the node priority (Sibling Priority) of the
3623  * passed in VSI's for a given traffic class (TC) of an Aggregator ID.
3624  */
3625 enum ice_status
3626 ice_cfg_agg_vsi_priority_per_tc(struct ice_port_info *pi, u32 agg_id,
3627                                 u16 num_vsis, u16 *vsi_handle_arr,
3628                                 u8 *node_prio, u8 tc)
3629 {
3630         struct ice_sched_agg_vsi_info *agg_vsi_info;
3631         struct ice_sched_node *tc_node, *agg_node;
3632         enum ice_status status = ICE_ERR_PARAM;
3633         struct ice_sched_agg_info *agg_info;
3634         bool agg_id_present = false;
3635         struct ice_hw *hw = pi->hw;
3636         u16 i;
3637
3638         ice_acquire_lock(&pi->sched_lock);
3639         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
3640                             list_entry)
3641                 if (agg_info->agg_id == agg_id) {
3642                         agg_id_present = true;
3643                         break;
3644                 }
3645         if (!agg_id_present)
3646                 goto exit_agg_priority_per_tc;
3647
3648         tc_node = ice_sched_get_tc_node(pi, tc);
3649         if (!tc_node)
3650                 goto exit_agg_priority_per_tc;
3651
3652         agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
3653         if (!agg_node)
3654                 goto exit_agg_priority_per_tc;
3655
3656         if (num_vsis > hw->max_children[agg_node->tx_sched_layer])
3657                 goto exit_agg_priority_per_tc;
3658
3659         for (i = 0; i < num_vsis; i++) {
3660                 struct ice_sched_node *vsi_node;
3661                 bool vsi_handle_valid = false;
3662                 u16 vsi_handle;
3663
3664                 status = ICE_ERR_PARAM;
3665                 vsi_handle = vsi_handle_arr[i];
3666                 if (!ice_is_vsi_valid(hw, vsi_handle))
3667                         goto exit_agg_priority_per_tc;
3668                 /* Verify child nodes before applying settings */
3669                 LIST_FOR_EACH_ENTRY(agg_vsi_info, &agg_info->agg_vsi_list,
3670                                     ice_sched_agg_vsi_info, list_entry)
3671                         if (agg_vsi_info->vsi_handle == vsi_handle) {
3672                                 vsi_handle_valid = true;
3673                                 break;
3674                         }
3675
3676                 if (!vsi_handle_valid)
3677                         goto exit_agg_priority_per_tc;
3678
3679                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
3680                 if (!vsi_node)
3681                         goto exit_agg_priority_per_tc;
3682
3683                 if (ice_sched_find_node_in_subtree(hw, agg_node, vsi_node)) {
3684                         /* Configure Priority */
3685                         status = ice_sched_cfg_sibl_node_prio(pi, vsi_node,
3686                                                               node_prio[i]);
3687                         if (status)
3688                                 break;
3689                         status = ice_sched_save_vsi_prio(pi, vsi_handle, tc,
3690                                                          node_prio[i]);
3691                         if (status)
3692                                 break;
3693                 }
3694         }
3695
3696 exit_agg_priority_per_tc:
3697         ice_release_lock(&pi->sched_lock);
3698         return status;
3699 }
3700
3701 /**
3702  * ice_cfg_vsi_bw_alloc - config VSI BW alloc per TC
3703  * @pi: port information structure
3704  * @vsi_handle: software VSI handle
3705  * @ena_tcmap: enabled TC map
3706  * @rl_type: Rate limit type CIR/EIR
3707  * @bw_alloc: Array of BW alloc
3708  *
3709  * This function configures the BW allocation of the passed in VSI's
3710  * node(s) for enabled traffic class.
3711  */
3712 enum ice_status
3713 ice_cfg_vsi_bw_alloc(struct ice_port_info *pi, u16 vsi_handle, u8 ena_tcmap,
3714                      enum ice_rl_type rl_type, u8 *bw_alloc)
3715 {
3716         enum ice_status status = ICE_SUCCESS;
3717         u8 tc;
3718
3719         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3720                 return ICE_ERR_PARAM;
3721
3722         ice_acquire_lock(&pi->sched_lock);
3723
3724         /* Return success if no nodes are present across TC */
3725         ice_for_each_traffic_class(tc) {
3726                 struct ice_sched_node *tc_node, *vsi_node;
3727
3728                 if (!ice_is_tc_ena(ena_tcmap, tc))
3729                         continue;
3730
3731                 tc_node = ice_sched_get_tc_node(pi, tc);
3732                 if (!tc_node)
3733                         continue;
3734
3735                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
3736                 if (!vsi_node)
3737                         continue;
3738
3739                 status = ice_sched_cfg_node_bw_alloc(pi->hw, vsi_node, rl_type,
3740                                                      bw_alloc[tc]);
3741                 if (status)
3742                         break;
3743                 status = ice_sched_save_vsi_bw_alloc(pi, vsi_handle, tc,
3744                                                      rl_type, bw_alloc[tc]);
3745                 if (status)
3746                         break;
3747         }
3748
3749         ice_release_lock(&pi->sched_lock);
3750         return status;
3751 }
3752
3753 /**
3754  * ice_cfg_agg_bw_alloc - config aggregator BW alloc
3755  * @pi: port information structure
3756  * @agg_id: aggregator ID
3757  * @ena_tcmap: enabled TC map
3758  * @rl_type: rate limit type CIR/EIR
3759  * @bw_alloc: array of BW alloc
3760  *
3761  * This function configures the BW allocation of passed in aggregator for
3762  * enabled traffic class(s).
3763  */
3764 enum ice_status
3765 ice_cfg_agg_bw_alloc(struct ice_port_info *pi, u32 agg_id, u8 ena_tcmap,
3766                      enum ice_rl_type rl_type, u8 *bw_alloc)
3767 {
3768         struct ice_sched_agg_info *agg_info;
3769         bool agg_id_present = false;
3770         enum ice_status status = ICE_SUCCESS;
3771         struct ice_hw *hw = pi->hw;
3772         u8 tc;
3773
3774         ice_acquire_lock(&pi->sched_lock);
3775         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
3776                             list_entry)
3777                 if (agg_info->agg_id == agg_id) {
3778                         agg_id_present = true;
3779                         break;
3780                 }
3781         if (!agg_id_present) {
3782                 status = ICE_ERR_PARAM;
3783                 goto exit_cfg_agg_bw_alloc;
3784         }
3785
3786         /* Return success if no nodes are present across TC */
3787         ice_for_each_traffic_class(tc) {
3788                 struct ice_sched_node *tc_node, *agg_node;
3789
3790                 if (!ice_is_tc_ena(ena_tcmap, tc))
3791                         continue;
3792
3793                 tc_node = ice_sched_get_tc_node(pi, tc);
3794                 if (!tc_node)
3795                         continue;
3796
3797                 agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
3798                 if (!agg_node)
3799                         continue;
3800
3801                 status = ice_sched_cfg_node_bw_alloc(hw, agg_node, rl_type,
3802                                                      bw_alloc[tc]);
3803                 if (status)
3804                         break;
3805                 status = ice_sched_save_agg_bw_alloc(pi, agg_id, tc, rl_type,
3806                                                      bw_alloc[tc]);
3807                 if (status)
3808                         break;
3809         }
3810
3811 exit_cfg_agg_bw_alloc:
3812         ice_release_lock(&pi->sched_lock);
3813         return status;
3814 }
3815
3816 /**
3817  * ice_sched_calc_wakeup - calculate RL profile wakeup parameter
3818  * @hw: pointer to the HW struct
3819  * @bw: bandwidth in Kbps
3820  *
3821  * This function calculates the wakeup parameter of RL profile.
3822  */
3823 static u16 ice_sched_calc_wakeup(struct ice_hw *hw, s32 bw)
3824 {
3825         s64 bytes_per_sec, wakeup_int, wakeup_a, wakeup_b, wakeup_f;
3826         s32 wakeup_f_int;
3827         u16 wakeup = 0;
3828
3829         /* Get the wakeup integer value */
3830         bytes_per_sec = DIV_64BIT(((s64)bw * 1000), BITS_PER_BYTE);
3831         wakeup_int = DIV_64BIT(hw->psm_clk_freq, bytes_per_sec);
3832         if (wakeup_int > 63) {
3833                 wakeup = (u16)((1 << 15) | wakeup_int);
3834         } else {
3835                 /* Calculate fraction value up to 4 decimals
3836                  * Convert Integer value to a constant multiplier
3837                  */
3838                 wakeup_b = (s64)ICE_RL_PROF_MULTIPLIER * wakeup_int;
3839                 wakeup_a = DIV_64BIT((s64)ICE_RL_PROF_MULTIPLIER *
3840                                      hw->psm_clk_freq, bytes_per_sec);
3841
3842                 /* Get Fraction value */
3843                 wakeup_f = wakeup_a - wakeup_b;
3844
3845                 /* Round up the Fractional value via Ceil(Fractional value) */
3846                 if (wakeup_f > DIV_64BIT(ICE_RL_PROF_MULTIPLIER, 2))
3847                         wakeup_f += 1;
3848
3849                 wakeup_f_int = (s32)DIV_64BIT(wakeup_f * ICE_RL_PROF_FRACTION,
3850                                               ICE_RL_PROF_MULTIPLIER);
3851                 wakeup |= (u16)(wakeup_int << 9);
3852                 wakeup |= (u16)(0x1ff & wakeup_f_int);
3853         }
3854
3855         return wakeup;
3856 }
3857
3858 /**
3859  * ice_sched_bw_to_rl_profile - convert BW to profile parameters
3860  * @hw: pointer to the HW struct
3861  * @bw: bandwidth in Kbps
3862  * @profile: profile parameters to return
3863  *
3864  * This function converts the BW to profile structure format.
3865  */
3866 static enum ice_status
3867 ice_sched_bw_to_rl_profile(struct ice_hw *hw, u32 bw,
3868                            struct ice_aqc_rl_profile_elem *profile)
3869 {
3870         enum ice_status status = ICE_ERR_PARAM;
3871         s64 bytes_per_sec, ts_rate, mv_tmp;
3872         bool found = false;
3873         s32 encode = 0;
3874         s64 mv = 0;
3875         s32 i;
3876
3877         /* Bw settings range is from 0.5Mb/sec to 100Gb/sec */
3878         if (bw < ICE_SCHED_MIN_BW || bw > ICE_SCHED_MAX_BW)
3879                 return status;
3880
3881         /* Bytes per second from Kbps */
3882         bytes_per_sec = DIV_64BIT(((s64)bw * 1000), BITS_PER_BYTE);
3883
3884         /* encode is 6 bits but really useful are 5 bits */
3885         for (i = 0; i < 64; i++) {
3886                 u64 pow_result = BIT_ULL(i);
3887
3888                 ts_rate = DIV_64BIT((s64)hw->psm_clk_freq,
3889                                     pow_result * ICE_RL_PROF_TS_MULTIPLIER);
3890                 if (ts_rate <= 0)
3891                         continue;
3892
3893                 /* Multiplier value */
3894                 mv_tmp = DIV_64BIT(bytes_per_sec * ICE_RL_PROF_MULTIPLIER,
3895                                    ts_rate);
3896
3897                 /* Round to the nearest ICE_RL_PROF_MULTIPLIER */
3898                 mv = round_up_64bit(mv_tmp, ICE_RL_PROF_MULTIPLIER);
3899
3900                 /* First multiplier value greater than the given
3901                  * accuracy bytes
3902                  */
3903                 if (mv > ICE_RL_PROF_ACCURACY_BYTES) {
3904                         encode = i;
3905                         found = true;
3906                         break;
3907                 }
3908         }
3909         if (found) {
3910                 u16 wm;
3911
3912                 wm = ice_sched_calc_wakeup(hw, bw);
3913                 profile->rl_multiply = CPU_TO_LE16(mv);
3914                 profile->wake_up_calc = CPU_TO_LE16(wm);
3915                 profile->rl_encode = CPU_TO_LE16(encode);
3916                 status = ICE_SUCCESS;
3917         } else {
3918                 status = ICE_ERR_DOES_NOT_EXIST;
3919         }
3920
3921         return status;
3922 }
3923
3924 /**
3925  * ice_sched_add_rl_profile - add RL profile
3926  * @hw: pointer to the hardware structure
3927  * @rl_type: type of rate limit BW - min, max, or shared
3928  * @bw: bandwidth in Kbps - Kilo bits per sec
3929  * @layer_num: specifies in which layer to create profile
3930  *
3931  * This function first checks the existing list for corresponding BW
3932  * parameter. If it exists, it returns the associated profile otherwise
3933  * it creates a new rate limit profile for requested BW, and adds it to
3934  * the HW DB and local list. It returns the new profile or null on error.
3935  * The caller needs to hold the scheduler lock.
3936  */
3937 static struct ice_aqc_rl_profile_info *
3938 ice_sched_add_rl_profile(struct ice_hw *hw, enum ice_rl_type rl_type,
3939                          u32 bw, u8 layer_num)
3940 {
3941         struct ice_aqc_rl_profile_info *rl_prof_elem;
3942         u16 profiles_added = 0, num_profiles = 1;
3943         struct ice_aqc_rl_profile_elem *buf;
3944         enum ice_status status;
3945         u8 profile_type;
3946
3947         if (layer_num >= ICE_AQC_TOPO_MAX_LEVEL_NUM)
3948                 return NULL;
3949         switch (rl_type) {
3950         case ICE_MIN_BW:
3951                 profile_type = ICE_AQC_RL_PROFILE_TYPE_CIR;
3952                 break;
3953         case ICE_MAX_BW:
3954                 profile_type = ICE_AQC_RL_PROFILE_TYPE_EIR;
3955                 break;
3956         case ICE_SHARED_BW:
3957                 profile_type = ICE_AQC_RL_PROFILE_TYPE_SRL;
3958                 break;
3959         default:
3960                 return NULL;
3961         }
3962
3963         if (!hw)
3964                 return NULL;
3965         LIST_FOR_EACH_ENTRY(rl_prof_elem, &hw->rl_prof_list[layer_num],
3966                             ice_aqc_rl_profile_info, list_entry)
3967                 if ((rl_prof_elem->profile.flags & ICE_AQC_RL_PROFILE_TYPE_M) ==
3968                     profile_type && rl_prof_elem->bw == bw)
3969                         /* Return existing profile ID info */
3970                         return rl_prof_elem;
3971
3972         /* Create new profile ID */
3973         rl_prof_elem = (struct ice_aqc_rl_profile_info *)
3974                 ice_malloc(hw, sizeof(*rl_prof_elem));
3975
3976         if (!rl_prof_elem)
3977                 return NULL;
3978
3979         status = ice_sched_bw_to_rl_profile(hw, bw, &rl_prof_elem->profile);
3980         if (status != ICE_SUCCESS)
3981                 goto exit_add_rl_prof;
3982
3983         rl_prof_elem->bw = bw;
3984         /* layer_num is zero relative, and fw expects level from 1 to 9 */
3985         rl_prof_elem->profile.level = layer_num + 1;
3986         rl_prof_elem->profile.flags = profile_type;
3987         rl_prof_elem->profile.max_burst_size = CPU_TO_LE16(hw->max_burst_size);
3988
3989         /* Create new entry in HW DB */
3990         buf = &rl_prof_elem->profile;
3991         status = ice_aq_add_rl_profile(hw, num_profiles, buf, sizeof(*buf),
3992                                        &profiles_added, NULL);
3993         if (status || profiles_added != num_profiles)
3994                 goto exit_add_rl_prof;
3995
3996         /* Good entry - add in the list */
3997         rl_prof_elem->prof_id_ref = 0;
3998         LIST_ADD(&rl_prof_elem->list_entry, &hw->rl_prof_list[layer_num]);
3999         return rl_prof_elem;
4000
4001 exit_add_rl_prof:
4002         ice_free(hw, rl_prof_elem);
4003         return NULL;
4004 }
4005
4006 /**
4007  * ice_sched_cfg_node_bw_lmt - configure node sched params
4008  * @hw: pointer to the HW struct
4009  * @node: sched node to configure
4010  * @rl_type: rate limit type CIR, EIR, or shared
4011  * @rl_prof_id: rate limit profile ID
4012  *
4013  * This function configures node element's BW limit.
4014  */
4015 static enum ice_status
4016 ice_sched_cfg_node_bw_lmt(struct ice_hw *hw, struct ice_sched_node *node,
4017                           enum ice_rl_type rl_type, u16 rl_prof_id)
4018 {
4019         struct ice_aqc_txsched_elem_data buf;
4020         struct ice_aqc_txsched_elem *data;
4021
4022         buf = node->info;
4023         data = &buf.data;
4024         switch (rl_type) {
4025         case ICE_MIN_BW:
4026                 data->valid_sections |= ICE_AQC_ELEM_VALID_CIR;
4027                 data->cir_bw.bw_profile_idx = CPU_TO_LE16(rl_prof_id);
4028                 break;
4029         case ICE_MAX_BW:
4030                 data->valid_sections |= ICE_AQC_ELEM_VALID_EIR;
4031                 data->eir_bw.bw_profile_idx = CPU_TO_LE16(rl_prof_id);
4032                 break;
4033         case ICE_SHARED_BW:
4034                 data->valid_sections |= ICE_AQC_ELEM_VALID_SHARED;
4035                 data->srl_id = CPU_TO_LE16(rl_prof_id);
4036                 break;
4037         default:
4038                 /* Unknown rate limit type */
4039                 return ICE_ERR_PARAM;
4040         }
4041
4042         /* Configure element */
4043         return ice_sched_update_elem(hw, node, &buf);
4044 }
4045
4046 /**
4047  * ice_sched_get_node_rl_prof_id - get node's rate limit profile ID
4048  * @node: sched node
4049  * @rl_type: rate limit type
4050  *
4051  * If existing profile matches, it returns the corresponding rate
4052  * limit profile ID, otherwise it returns an invalid ID as error.
4053  */
4054 static u16
4055 ice_sched_get_node_rl_prof_id(struct ice_sched_node *node,
4056                               enum ice_rl_type rl_type)
4057 {
4058         u16 rl_prof_id = ICE_SCHED_INVAL_PROF_ID;
4059         struct ice_aqc_txsched_elem *data;
4060
4061         data = &node->info.data;
4062         switch (rl_type) {
4063         case ICE_MIN_BW:
4064                 if (data->valid_sections & ICE_AQC_ELEM_VALID_CIR)
4065                         rl_prof_id = LE16_TO_CPU(data->cir_bw.bw_profile_idx);
4066                 break;
4067         case ICE_MAX_BW:
4068                 if (data->valid_sections & ICE_AQC_ELEM_VALID_EIR)
4069                         rl_prof_id = LE16_TO_CPU(data->eir_bw.bw_profile_idx);
4070                 break;
4071         case ICE_SHARED_BW:
4072                 if (data->valid_sections & ICE_AQC_ELEM_VALID_SHARED)
4073                         rl_prof_id = LE16_TO_CPU(data->srl_id);
4074                 break;
4075         default:
4076                 break;
4077         }
4078
4079         return rl_prof_id;
4080 }
4081
4082 /**
4083  * ice_sched_get_rl_prof_layer - selects rate limit profile creation layer
4084  * @pi: port information structure
4085  * @rl_type: type of rate limit BW - min, max, or shared
4086  * @layer_index: layer index
4087  *
4088  * This function returns requested profile creation layer.
4089  */
4090 static u8
4091 ice_sched_get_rl_prof_layer(struct ice_port_info *pi, enum ice_rl_type rl_type,
4092                             u8 layer_index)
4093 {
4094         struct ice_hw *hw = pi->hw;
4095
4096         if (layer_index >= hw->num_tx_sched_layers)
4097                 return ICE_SCHED_INVAL_LAYER_NUM;
4098         switch (rl_type) {
4099         case ICE_MIN_BW:
4100                 if (hw->layer_info[layer_index].max_cir_rl_profiles)
4101                         return layer_index;
4102                 break;
4103         case ICE_MAX_BW:
4104                 if (hw->layer_info[layer_index].max_eir_rl_profiles)
4105                         return layer_index;
4106                 break;
4107         case ICE_SHARED_BW:
4108                 /* if current layer doesn't support SRL profile creation
4109                  * then try a layer up or down.
4110                  */
4111                 if (hw->layer_info[layer_index].max_srl_profiles)
4112                         return layer_index;
4113                 else if (layer_index < hw->num_tx_sched_layers - 1 &&
4114                          hw->layer_info[layer_index + 1].max_srl_profiles)
4115                         return layer_index + 1;
4116                 else if (layer_index > 0 &&
4117                          hw->layer_info[layer_index - 1].max_srl_profiles)
4118                         return layer_index - 1;
4119                 break;
4120         default:
4121                 break;
4122         }
4123         return ICE_SCHED_INVAL_LAYER_NUM;
4124 }
4125
4126 /**
4127  * ice_sched_get_srl_node - get shared rate limit node
4128  * @node: tree node
4129  * @srl_layer: shared rate limit layer
4130  *
4131  * This function returns SRL node to be used for shared rate limit purpose.
4132  * The caller needs to hold scheduler lock.
4133  */
4134 static struct ice_sched_node *
4135 ice_sched_get_srl_node(struct ice_sched_node *node, u8 srl_layer)
4136 {
4137         if (srl_layer > node->tx_sched_layer)
4138                 return node->children[0];
4139         else if (srl_layer < node->tx_sched_layer)
4140                 /* Node can't be created without a parent. It will always
4141                  * have a valid parent except root node.
4142                  */
4143                 return node->parent;
4144         else
4145                 return node;
4146 }
4147
4148 /**
4149  * ice_sched_rm_rl_profile - remove RL profile ID
4150  * @hw: pointer to the hardware structure
4151  * @layer_num: layer number where profiles are saved
4152  * @profile_type: profile type like EIR, CIR, or SRL
4153  * @profile_id: profile ID to remove
4154  *
4155  * This function removes rate limit profile from layer 'layer_num' of type
4156  * 'profile_type' and profile ID as 'profile_id'. The caller needs to hold
4157  * scheduler lock.
4158  */
4159 static enum ice_status
4160 ice_sched_rm_rl_profile(struct ice_hw *hw, u8 layer_num, u8 profile_type,
4161                         u16 profile_id)
4162 {
4163         struct ice_aqc_rl_profile_info *rl_prof_elem;
4164         enum ice_status status = ICE_SUCCESS;
4165
4166         if (layer_num >= ICE_AQC_TOPO_MAX_LEVEL_NUM)
4167                 return ICE_ERR_PARAM;
4168         /* Check the existing list for RL profile */
4169         LIST_FOR_EACH_ENTRY(rl_prof_elem, &hw->rl_prof_list[layer_num],
4170                             ice_aqc_rl_profile_info, list_entry)
4171                 if ((rl_prof_elem->profile.flags & ICE_AQC_RL_PROFILE_TYPE_M) ==
4172                     profile_type &&
4173                     LE16_TO_CPU(rl_prof_elem->profile.profile_id) ==
4174                     profile_id) {
4175                         if (rl_prof_elem->prof_id_ref)
4176                                 rl_prof_elem->prof_id_ref--;
4177
4178                         /* Remove old profile ID from database */
4179                         status = ice_sched_del_rl_profile(hw, rl_prof_elem);
4180                         if (status && status != ICE_ERR_IN_USE)
4181                                 ice_debug(hw, ICE_DBG_SCHED, "Remove rl profile failed\n");
4182                         break;
4183                 }
4184         if (status == ICE_ERR_IN_USE)
4185                 status = ICE_SUCCESS;
4186         return status;
4187 }
4188
4189 /**
4190  * ice_sched_set_node_bw_dflt - set node's bandwidth limit to default
4191  * @pi: port information structure
4192  * @node: pointer to node structure
4193  * @rl_type: rate limit type min, max, or shared
4194  * @layer_num: layer number where RL profiles are saved
4195  *
4196  * This function configures node element's BW rate limit profile ID of
4197  * type CIR, EIR, or SRL to default. This function needs to be called
4198  * with the scheduler lock held.
4199  */
4200 static enum ice_status
4201 ice_sched_set_node_bw_dflt(struct ice_port_info *pi,
4202                            struct ice_sched_node *node,
4203                            enum ice_rl_type rl_type, u8 layer_num)
4204 {
4205         enum ice_status status;
4206         struct ice_hw *hw;
4207         u8 profile_type;
4208         u16 rl_prof_id;
4209         u16 old_id;
4210
4211         hw = pi->hw;
4212         switch (rl_type) {
4213         case ICE_MIN_BW:
4214                 profile_type = ICE_AQC_RL_PROFILE_TYPE_CIR;
4215                 rl_prof_id = ICE_SCHED_DFLT_RL_PROF_ID;
4216                 break;
4217         case ICE_MAX_BW:
4218                 profile_type = ICE_AQC_RL_PROFILE_TYPE_EIR;
4219                 rl_prof_id = ICE_SCHED_DFLT_RL_PROF_ID;
4220                 break;
4221         case ICE_SHARED_BW:
4222                 profile_type = ICE_AQC_RL_PROFILE_TYPE_SRL;
4223                 /* No SRL is configured for default case */
4224                 rl_prof_id = ICE_SCHED_NO_SHARED_RL_PROF_ID;
4225                 break;
4226         default:
4227                 return ICE_ERR_PARAM;
4228         }
4229         /* Save existing RL prof ID for later clean up */
4230         old_id = ice_sched_get_node_rl_prof_id(node, rl_type);
4231         /* Configure BW scheduling parameters */
4232         status = ice_sched_cfg_node_bw_lmt(hw, node, rl_type, rl_prof_id);
4233         if (status)
4234                 return status;
4235
4236         /* Remove stale RL profile ID */
4237         if (old_id == ICE_SCHED_DFLT_RL_PROF_ID ||
4238             old_id == ICE_SCHED_INVAL_PROF_ID)
4239                 return ICE_SUCCESS;
4240
4241         return ice_sched_rm_rl_profile(hw, layer_num, profile_type, old_id);
4242 }
4243
4244 /**
4245  * ice_sched_set_node_bw - set node's bandwidth
4246  * @pi: port information structure
4247  * @node: tree node
4248  * @rl_type: rate limit type min, max, or shared
4249  * @bw: bandwidth in Kbps - Kilo bits per sec
4250  * @layer_num: layer number
4251  *
4252  * This function adds new profile corresponding to requested BW, configures
4253  * node's RL profile ID of type CIR, EIR, or SRL, and removes old profile
4254  * ID from local database. The caller needs to hold scheduler lock.
4255  */
4256 static enum ice_status
4257 ice_sched_set_node_bw(struct ice_port_info *pi, struct ice_sched_node *node,
4258                       enum ice_rl_type rl_type, u32 bw, u8 layer_num)
4259 {
4260         struct ice_aqc_rl_profile_info *rl_prof_info;
4261         enum ice_status status = ICE_ERR_PARAM;
4262         struct ice_hw *hw = pi->hw;
4263         u16 old_id, rl_prof_id;
4264
4265         rl_prof_info = ice_sched_add_rl_profile(hw, rl_type, bw, layer_num);
4266         if (!rl_prof_info)
4267                 return status;
4268
4269         rl_prof_id = LE16_TO_CPU(rl_prof_info->profile.profile_id);
4270
4271         /* Save existing RL prof ID for later clean up */
4272         old_id = ice_sched_get_node_rl_prof_id(node, rl_type);
4273         /* Configure BW scheduling parameters */
4274         status = ice_sched_cfg_node_bw_lmt(hw, node, rl_type, rl_prof_id);
4275         if (status)
4276                 return status;
4277
4278         /* New changes has been applied */
4279         /* Increment the profile ID reference count */
4280         rl_prof_info->prof_id_ref++;
4281
4282         /* Check for old ID removal */
4283         if ((old_id == ICE_SCHED_DFLT_RL_PROF_ID && rl_type != ICE_SHARED_BW) ||
4284             old_id == ICE_SCHED_INVAL_PROF_ID || old_id == rl_prof_id)
4285                 return ICE_SUCCESS;
4286
4287         return ice_sched_rm_rl_profile(hw, layer_num,
4288                                        rl_prof_info->profile.flags &
4289                                        ICE_AQC_RL_PROFILE_TYPE_M, old_id);
4290 }
4291
4292 /**
4293  * ice_sched_set_node_bw_lmt - set node's BW limit
4294  * @pi: port information structure
4295  * @node: tree node
4296  * @rl_type: rate limit type min, max, or shared
4297  * @bw: bandwidth in Kbps - Kilo bits per sec
4298  *
4299  * It updates node's BW limit parameters like BW RL profile ID of type CIR,
4300  * EIR, or SRL. The caller needs to hold scheduler lock.
4301  *
4302  * NOTE: Caller provides the correct SRL node in case of shared profile
4303  * settings.
4304  */
4305 static enum ice_status
4306 ice_sched_set_node_bw_lmt(struct ice_port_info *pi, struct ice_sched_node *node,
4307                           enum ice_rl_type rl_type, u32 bw)
4308 {
4309         struct ice_hw *hw;
4310         u8 layer_num;
4311
4312         if (!pi)
4313                 return ICE_ERR_PARAM;
4314         hw = pi->hw;
4315         /* Remove unused RL profile IDs from HW and SW DB */
4316         ice_sched_rm_unused_rl_prof(hw);
4317
4318         layer_num = ice_sched_get_rl_prof_layer(pi, rl_type,
4319                                                 node->tx_sched_layer);
4320         if (layer_num >= hw->num_tx_sched_layers)
4321                 return ICE_ERR_PARAM;
4322
4323         if (bw == ICE_SCHED_DFLT_BW)
4324                 return ice_sched_set_node_bw_dflt(pi, node, rl_type, layer_num);
4325         return ice_sched_set_node_bw(pi, node, rl_type, bw, layer_num);
4326 }
4327
4328 /**
4329  * ice_sched_set_node_bw_dflt_lmt - set node's BW limit to default
4330  * @pi: port information structure
4331  * @node: pointer to node structure
4332  * @rl_type: rate limit type min, max, or shared
4333  *
4334  * This function configures node element's BW rate limit profile ID of
4335  * type CIR, EIR, or SRL to default. This function needs to be called
4336  * with the scheduler lock held.
4337  */
4338 static enum ice_status
4339 ice_sched_set_node_bw_dflt_lmt(struct ice_port_info *pi,
4340                                struct ice_sched_node *node,
4341                                enum ice_rl_type rl_type)
4342 {
4343         return ice_sched_set_node_bw_lmt(pi, node, rl_type,
4344                                          ICE_SCHED_DFLT_BW);
4345 }
4346
4347 /**
4348  * ice_sched_validate_srl_node - Check node for SRL applicability
4349  * @node: sched node to configure
4350  * @sel_layer: selected SRL layer
4351  *
4352  * This function checks if the SRL can be applied to a selceted layer node on
4353  * behalf of the requested node (first argument). This function needs to be
4354  * called with scheduler lock held.
4355  */
4356 static enum ice_status
4357 ice_sched_validate_srl_node(struct ice_sched_node *node, u8 sel_layer)
4358 {
4359         /* SRL profiles are not available on all layers. Check if the
4360          * SRL profile can be applied to a node above or below the
4361          * requested node. SRL configuration is possible only if the
4362          * selected layer's node has single child.
4363          */
4364         if (sel_layer == node->tx_sched_layer ||
4365             ((sel_layer == node->tx_sched_layer + 1) &&
4366             node->num_children == 1) ||
4367             ((sel_layer == node->tx_sched_layer - 1) &&
4368             (node->parent && node->parent->num_children == 1)))
4369                 return ICE_SUCCESS;
4370
4371         return ICE_ERR_CFG;
4372 }
4373
4374 /**
4375  * ice_sched_save_q_bw - save queue node's BW information
4376  * @q_ctx: queue context structure
4377  * @rl_type: rate limit type min, max, or shared
4378  * @bw: bandwidth in Kbps - Kilo bits per sec
4379  *
4380  * Save BW information of queue type node for post replay use.
4381  */
4382 static enum ice_status
4383 ice_sched_save_q_bw(struct ice_q_ctx *q_ctx, enum ice_rl_type rl_type, u32 bw)
4384 {
4385         switch (rl_type) {
4386         case ICE_MIN_BW:
4387                 ice_set_clear_cir_bw(&q_ctx->bw_t_info, bw);
4388                 break;
4389         case ICE_MAX_BW:
4390                 ice_set_clear_eir_bw(&q_ctx->bw_t_info, bw);
4391                 break;
4392         case ICE_SHARED_BW:
4393                 ice_set_clear_shared_bw(&q_ctx->bw_t_info, bw);
4394                 break;
4395         default:
4396                 return ICE_ERR_PARAM;
4397         }
4398         return ICE_SUCCESS;
4399 }
4400
4401 /**
4402  * ice_sched_set_q_bw_lmt - sets queue BW limit
4403  * @pi: port information structure
4404  * @vsi_handle: sw VSI handle
4405  * @tc: traffic class
4406  * @q_handle: software queue handle
4407  * @rl_type: min, max, or shared
4408  * @bw: bandwidth in Kbps
4409  *
4410  * This function sets BW limit of queue scheduling node.
4411  */
4412 static enum ice_status
4413 ice_sched_set_q_bw_lmt(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
4414                        u16 q_handle, enum ice_rl_type rl_type, u32 bw)
4415 {
4416         enum ice_status status = ICE_ERR_PARAM;
4417         struct ice_sched_node *node;
4418         struct ice_q_ctx *q_ctx;
4419
4420         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4421                 return ICE_ERR_PARAM;
4422         ice_acquire_lock(&pi->sched_lock);
4423         q_ctx = ice_get_lan_q_ctx(pi->hw, vsi_handle, tc, q_handle);
4424         if (!q_ctx)
4425                 goto exit_q_bw_lmt;
4426         node = ice_sched_find_node_by_teid(pi->root, q_ctx->q_teid);
4427         if (!node) {
4428                 ice_debug(pi->hw, ICE_DBG_SCHED, "Wrong q_teid\n");
4429                 goto exit_q_bw_lmt;
4430         }
4431
4432         /* Return error if it is not a leaf node */
4433         if (node->info.data.elem_type != ICE_AQC_ELEM_TYPE_LEAF)
4434                 goto exit_q_bw_lmt;
4435
4436         /* SRL bandwidth layer selection */
4437         if (rl_type == ICE_SHARED_BW) {
4438                 u8 sel_layer; /* selected layer */
4439
4440                 sel_layer = ice_sched_get_rl_prof_layer(pi, rl_type,
4441                                                         node->tx_sched_layer);
4442                 if (sel_layer >= pi->hw->num_tx_sched_layers) {
4443                         status = ICE_ERR_PARAM;
4444                         goto exit_q_bw_lmt;
4445                 }
4446                 status = ice_sched_validate_srl_node(node, sel_layer);
4447                 if (status)
4448                         goto exit_q_bw_lmt;
4449         }
4450
4451         if (bw == ICE_SCHED_DFLT_BW)
4452                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, rl_type);
4453         else
4454                 status = ice_sched_set_node_bw_lmt(pi, node, rl_type, bw);
4455
4456         if (!status)
4457                 status = ice_sched_save_q_bw(q_ctx, rl_type, bw);
4458
4459 exit_q_bw_lmt:
4460         ice_release_lock(&pi->sched_lock);
4461         return status;
4462 }
4463
4464 /**
4465  * ice_cfg_q_bw_lmt - configure queue BW limit
4466  * @pi: port information structure
4467  * @vsi_handle: sw VSI handle
4468  * @tc: traffic class
4469  * @q_handle: software queue handle
4470  * @rl_type: min, max, or shared
4471  * @bw: bandwidth in Kbps
4472  *
4473  * This function configures BW limit of queue scheduling node.
4474  */
4475 enum ice_status
4476 ice_cfg_q_bw_lmt(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
4477                  u16 q_handle, enum ice_rl_type rl_type, u32 bw)
4478 {
4479         return ice_sched_set_q_bw_lmt(pi, vsi_handle, tc, q_handle, rl_type,
4480                                       bw);
4481 }
4482
4483 /**
4484  * ice_cfg_q_bw_dflt_lmt - configure queue BW default limit
4485  * @pi: port information structure
4486  * @vsi_handle: sw VSI handle
4487  * @tc: traffic class
4488  * @q_handle: software queue handle
4489  * @rl_type: min, max, or shared
4490  *
4491  * This function configures BW default limit of queue scheduling node.
4492  */
4493 enum ice_status
4494 ice_cfg_q_bw_dflt_lmt(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
4495                       u16 q_handle, enum ice_rl_type rl_type)
4496 {
4497         return ice_sched_set_q_bw_lmt(pi, vsi_handle, tc, q_handle, rl_type,
4498                                       ICE_SCHED_DFLT_BW);
4499 }
4500
4501 /**
4502  * ice_sched_save_tc_node_bw - save TC node BW limit
4503  * @pi: port information structure
4504  * @tc: TC number
4505  * @rl_type: min or max
4506  * @bw: bandwidth in Kbps
4507  *
4508  * This function saves the modified values of bandwidth settings for later
4509  * replay purpose (restore) after reset.
4510  */
4511 static enum ice_status
4512 ice_sched_save_tc_node_bw(struct ice_port_info *pi, u8 tc,
4513                           enum ice_rl_type rl_type, u32 bw)
4514 {
4515         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4516                 return ICE_ERR_PARAM;
4517         switch (rl_type) {
4518         case ICE_MIN_BW:
4519                 ice_set_clear_cir_bw(&pi->tc_node_bw_t_info[tc], bw);
4520                 break;
4521         case ICE_MAX_BW:
4522                 ice_set_clear_eir_bw(&pi->tc_node_bw_t_info[tc], bw);
4523                 break;
4524         case ICE_SHARED_BW:
4525                 ice_set_clear_shared_bw(&pi->tc_node_bw_t_info[tc], bw);
4526                 break;
4527         default:
4528                 return ICE_ERR_PARAM;
4529         }
4530         return ICE_SUCCESS;
4531 }
4532
4533 /**
4534  * ice_sched_set_tc_node_bw_lmt - sets TC node BW limit
4535  * @pi: port information structure
4536  * @tc: TC number
4537  * @rl_type: min or max
4538  * @bw: bandwidth in Kbps
4539  *
4540  * This function configures bandwidth limit of TC node.
4541  */
4542 static enum ice_status
4543 ice_sched_set_tc_node_bw_lmt(struct ice_port_info *pi, u8 tc,
4544                              enum ice_rl_type rl_type, u32 bw)
4545 {
4546         enum ice_status status = ICE_ERR_PARAM;
4547         struct ice_sched_node *tc_node;
4548
4549         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4550                 return status;
4551         ice_acquire_lock(&pi->sched_lock);
4552         tc_node = ice_sched_get_tc_node(pi, tc);
4553         if (!tc_node)
4554                 goto exit_set_tc_node_bw;
4555         if (bw == ICE_SCHED_DFLT_BW)
4556                 status = ice_sched_set_node_bw_dflt_lmt(pi, tc_node, rl_type);
4557         else
4558                 status = ice_sched_set_node_bw_lmt(pi, tc_node, rl_type, bw);
4559         if (!status)
4560                 status = ice_sched_save_tc_node_bw(pi, tc, rl_type, bw);
4561
4562 exit_set_tc_node_bw:
4563         ice_release_lock(&pi->sched_lock);
4564         return status;
4565 }
4566
4567 /**
4568  * ice_cfg_tc_node_bw_lmt - configure TC node BW limit
4569  * @pi: port information structure
4570  * @tc: TC number
4571  * @rl_type: min or max
4572  * @bw: bandwidth in Kbps
4573  *
4574  * This function configures BW limit of TC node.
4575  * Note: The minimum guaranteed reservation is done via DCBX.
4576  */
4577 enum ice_status
4578 ice_cfg_tc_node_bw_lmt(struct ice_port_info *pi, u8 tc,
4579                        enum ice_rl_type rl_type, u32 bw)
4580 {
4581         return ice_sched_set_tc_node_bw_lmt(pi, tc, rl_type, bw);
4582 }
4583
4584 /**
4585  * ice_cfg_tc_node_bw_dflt_lmt - configure TC node BW default limit
4586  * @pi: port information structure
4587  * @tc: TC number
4588  * @rl_type: min or max
4589  *
4590  * This function configures BW default limit of TC node.
4591  */
4592 enum ice_status
4593 ice_cfg_tc_node_bw_dflt_lmt(struct ice_port_info *pi, u8 tc,
4594                             enum ice_rl_type rl_type)
4595 {
4596         return ice_sched_set_tc_node_bw_lmt(pi, tc, rl_type, ICE_SCHED_DFLT_BW);
4597 }
4598
4599 /**
4600  * ice_sched_save_tc_node_bw_alloc - save TC node's BW alloc information
4601  * @pi: port information structure
4602  * @tc: traffic class
4603  * @rl_type: rate limit type min or max
4604  * @bw_alloc: Bandwidth allocation information
4605  *
4606  * Save BW alloc information of VSI type node for post replay use.
4607  */
4608 static enum ice_status
4609 ice_sched_save_tc_node_bw_alloc(struct ice_port_info *pi, u8 tc,
4610                                 enum ice_rl_type rl_type, u16 bw_alloc)
4611 {
4612         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4613                 return ICE_ERR_PARAM;
4614         switch (rl_type) {
4615         case ICE_MIN_BW:
4616                 ice_set_clear_cir_bw_alloc(&pi->tc_node_bw_t_info[tc],
4617                                            bw_alloc);
4618                 break;
4619         case ICE_MAX_BW:
4620                 ice_set_clear_eir_bw_alloc(&pi->tc_node_bw_t_info[tc],
4621                                            bw_alloc);
4622                 break;
4623         default:
4624                 return ICE_ERR_PARAM;
4625         }
4626         return ICE_SUCCESS;
4627 }
4628
4629 /**
4630  * ice_sched_set_tc_node_bw_alloc - set TC node BW alloc
4631  * @pi: port information structure
4632  * @tc: TC number
4633  * @rl_type: min or max
4634  * @bw_alloc: bandwidth alloc
4635  *
4636  * This function configures bandwidth alloc of TC node, also saves the
4637  * changed settings for replay purpose, and return success if it succeeds
4638  * in modifying bandwidth alloc setting.
4639  */
4640 static enum ice_status
4641 ice_sched_set_tc_node_bw_alloc(struct ice_port_info *pi, u8 tc,
4642                                enum ice_rl_type rl_type, u8 bw_alloc)
4643 {
4644         enum ice_status status = ICE_ERR_PARAM;
4645         struct ice_sched_node *tc_node;
4646
4647         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4648                 return status;
4649         ice_acquire_lock(&pi->sched_lock);
4650         tc_node = ice_sched_get_tc_node(pi, tc);
4651         if (!tc_node)
4652                 goto exit_set_tc_node_bw_alloc;
4653         status = ice_sched_cfg_node_bw_alloc(pi->hw, tc_node, rl_type,
4654                                              bw_alloc);
4655         if (status)
4656                 goto exit_set_tc_node_bw_alloc;
4657         status = ice_sched_save_tc_node_bw_alloc(pi, tc, rl_type, bw_alloc);
4658
4659 exit_set_tc_node_bw_alloc:
4660         ice_release_lock(&pi->sched_lock);
4661         return status;
4662 }
4663
4664 /**
4665  * ice_cfg_tc_node_bw_alloc - configure TC node BW alloc
4666  * @pi: port information structure
4667  * @tc: TC number
4668  * @rl_type: min or max
4669  * @bw_alloc: bandwidth alloc
4670  *
4671  * This function configures BW limit of TC node.
4672  * Note: The minimum guaranteed reservation is done via DCBX.
4673  */
4674 enum ice_status
4675 ice_cfg_tc_node_bw_alloc(struct ice_port_info *pi, u8 tc,
4676                          enum ice_rl_type rl_type, u8 bw_alloc)
4677 {
4678         return ice_sched_set_tc_node_bw_alloc(pi, tc, rl_type, bw_alloc);
4679 }
4680
4681 /**
4682  * ice_sched_set_agg_bw_dflt_lmt - set aggregator node's BW limit to default
4683  * @pi: port information structure
4684  * @vsi_handle: software VSI handle
4685  *
4686  * This function retrieves the aggregator ID based on VSI ID and TC,
4687  * and sets node's BW limit to default. This function needs to be
4688  * called with the scheduler lock held.
4689  */
4690 enum ice_status
4691 ice_sched_set_agg_bw_dflt_lmt(struct ice_port_info *pi, u16 vsi_handle)
4692 {
4693         struct ice_vsi_ctx *vsi_ctx;
4694         enum ice_status status = ICE_SUCCESS;
4695         u8 tc;
4696
4697         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4698                 return ICE_ERR_PARAM;
4699         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
4700         if (!vsi_ctx)
4701                 return ICE_ERR_PARAM;
4702
4703         ice_for_each_traffic_class(tc) {
4704                 struct ice_sched_node *node;
4705
4706                 node = vsi_ctx->sched.ag_node[tc];
4707                 if (!node)
4708                         continue;
4709
4710                 /* Set min profile to default */
4711                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, ICE_MIN_BW);
4712                 if (status)
4713                         break;
4714
4715                 /* Set max profile to default */
4716                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, ICE_MAX_BW);
4717                 if (status)
4718                         break;
4719
4720                 /* Remove shared profile, if there is one */
4721                 status = ice_sched_set_node_bw_dflt_lmt(pi, node,
4722                                                         ICE_SHARED_BW);
4723                 if (status)
4724                         break;
4725         }
4726
4727         return status;
4728 }
4729
4730 /**
4731  * ice_sched_get_node_by_id_type - get node from ID type
4732  * @pi: port information structure
4733  * @id: identifier
4734  * @agg_type: type of aggregator
4735  * @tc: traffic class
4736  *
4737  * This function returns node identified by ID of type aggregator, and
4738  * based on traffic class (TC). This function needs to be called with
4739  * the scheduler lock held.
4740  */
4741 static struct ice_sched_node *
4742 ice_sched_get_node_by_id_type(struct ice_port_info *pi, u32 id,
4743                               enum ice_agg_type agg_type, u8 tc)
4744 {
4745         struct ice_sched_node *node = NULL;
4746         struct ice_sched_node *child_node;
4747
4748         switch (agg_type) {
4749         case ICE_AGG_TYPE_VSI: {
4750                 struct ice_vsi_ctx *vsi_ctx;
4751                 u16 vsi_handle = (u16)id;
4752
4753                 if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4754                         break;
4755                 /* Get sched_vsi_info */
4756                 vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
4757                 if (!vsi_ctx)
4758                         break;
4759                 node = vsi_ctx->sched.vsi_node[tc];
4760                 break;
4761         }
4762
4763         case ICE_AGG_TYPE_AGG: {
4764                 struct ice_sched_node *tc_node;
4765
4766                 tc_node = ice_sched_get_tc_node(pi, tc);
4767                 if (tc_node)
4768                         node = ice_sched_get_agg_node(pi, tc_node, id);
4769                 break;
4770         }
4771
4772         case ICE_AGG_TYPE_Q:
4773                 /* The current implementation allows single queue to modify */
4774                 node = ice_sched_get_node(pi, id);
4775                 break;
4776
4777         case ICE_AGG_TYPE_QG:
4778                 /* The current implementation allows single qg to modify */
4779                 child_node = ice_sched_get_node(pi, id);
4780                 if (!child_node)
4781                         break;
4782                 node = child_node->parent;
4783                 break;
4784
4785         default:
4786                 break;
4787         }
4788
4789         return node;
4790 }
4791
4792 /**
4793  * ice_sched_set_node_bw_lmt_per_tc - set node BW limit per TC
4794  * @pi: port information structure
4795  * @id: ID (software VSI handle or AGG ID)
4796  * @agg_type: aggregator type (VSI or AGG type node)
4797  * @tc: traffic class
4798  * @rl_type: min or max
4799  * @bw: bandwidth in Kbps
4800  *
4801  * This function sets BW limit of VSI or Aggregator scheduling node
4802  * based on TC information from passed in argument BW.
4803  */
4804 enum ice_status
4805 ice_sched_set_node_bw_lmt_per_tc(struct ice_port_info *pi, u32 id,
4806                                  enum ice_agg_type agg_type, u8 tc,
4807                                  enum ice_rl_type rl_type, u32 bw)
4808 {
4809         enum ice_status status = ICE_ERR_PARAM;
4810         struct ice_sched_node *node;
4811
4812         if (!pi)
4813                 return status;
4814
4815         if (rl_type == ICE_UNKNOWN_BW)
4816                 return status;
4817
4818         ice_acquire_lock(&pi->sched_lock);
4819         node = ice_sched_get_node_by_id_type(pi, id, agg_type, tc);
4820         if (!node) {
4821                 ice_debug(pi->hw, ICE_DBG_SCHED, "Wrong id, agg type, or tc\n");
4822                 goto exit_set_node_bw_lmt_per_tc;
4823         }
4824         if (bw == ICE_SCHED_DFLT_BW)
4825                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, rl_type);
4826         else
4827                 status = ice_sched_set_node_bw_lmt(pi, node, rl_type, bw);
4828
4829 exit_set_node_bw_lmt_per_tc:
4830         ice_release_lock(&pi->sched_lock);
4831         return status;
4832 }
4833
4834 /**
4835  * ice_sched_validate_vsi_srl_node - validate VSI SRL node
4836  * @pi: port information structure
4837  * @vsi_handle: software VSI handle
4838  *
4839  * This function validates SRL node of the VSI node if available SRL layer is
4840  * different than the VSI node layer on all TC(s).This function needs to be
4841  * called with scheduler lock held.
4842  */
4843 static enum ice_status
4844 ice_sched_validate_vsi_srl_node(struct ice_port_info *pi, u16 vsi_handle)
4845 {
4846         u8 sel_layer = ICE_SCHED_INVAL_LAYER_NUM;
4847         u8 tc;
4848
4849         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4850                 return ICE_ERR_PARAM;
4851
4852         /* Return success if no nodes are present across TC */
4853         ice_for_each_traffic_class(tc) {
4854                 struct ice_sched_node *tc_node, *vsi_node;
4855                 enum ice_rl_type rl_type = ICE_SHARED_BW;
4856                 enum ice_status status;
4857
4858                 tc_node = ice_sched_get_tc_node(pi, tc);
4859                 if (!tc_node)
4860                         continue;
4861
4862                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
4863                 if (!vsi_node)
4864                         continue;
4865
4866                 /* SRL bandwidth layer selection */
4867                 if (sel_layer == ICE_SCHED_INVAL_LAYER_NUM) {
4868                         u8 node_layer = vsi_node->tx_sched_layer;
4869                         u8 layer_num;
4870
4871                         layer_num = ice_sched_get_rl_prof_layer(pi, rl_type,
4872                                                                 node_layer);
4873                         if (layer_num >= pi->hw->num_tx_sched_layers)
4874                                 return ICE_ERR_PARAM;
4875                         sel_layer = layer_num;
4876                 }
4877
4878                 status = ice_sched_validate_srl_node(vsi_node, sel_layer);
4879                 if (status)
4880                         return status;
4881         }
4882         return ICE_SUCCESS;
4883 }
4884
4885 /**
4886  * ice_sched_set_save_vsi_srl_node_bw - set VSI shared limit values
4887  * @pi: port information structure
4888  * @vsi_handle: software VSI handle
4889  * @tc: traffic class
4890  * @srl_node: sched node to configure
4891  * @rl_type: rate limit type minimum, maximum, or shared
4892  * @bw: minimum, maximum, or shared bandwidth in Kbps
4893  *
4894  * Configure shared rate limiter(SRL) of VSI type nodes across given traffic
4895  * class, and saves those value for later use for replaying purposes. The
4896  * caller holds the scheduler lock.
4897  */
4898 static enum ice_status
4899 ice_sched_set_save_vsi_srl_node_bw(struct ice_port_info *pi, u16 vsi_handle,
4900                                    u8 tc, struct ice_sched_node *srl_node,
4901                                    enum ice_rl_type rl_type, u32 bw)
4902 {
4903         enum ice_status status;
4904
4905         if (bw == ICE_SCHED_DFLT_BW) {
4906                 status = ice_sched_set_node_bw_dflt_lmt(pi, srl_node, rl_type);
4907         } else {
4908                 status = ice_sched_set_node_bw_lmt(pi, srl_node, rl_type, bw);
4909                 if (status)
4910                         return status;
4911                 status = ice_sched_save_vsi_bw(pi, vsi_handle, tc, rl_type, bw);
4912         }
4913         return status;
4914 }
4915
4916 /**
4917  * ice_sched_set_vsi_node_srl_per_tc - set VSI node BW shared limit for tc
4918  * @pi: port information structure
4919  * @vsi_handle: software VSI handle
4920  * @tc: traffic class
4921  * @min_bw: minimum bandwidth in Kbps
4922  * @max_bw: maximum bandwidth in Kbps
4923  * @shared_bw: shared bandwidth in Kbps
4924  *
4925  * Configure shared rate limiter(SRL) of  VSI type nodes across requested
4926  * traffic class for VSI matching handle. When BW value of ICE_SCHED_DFLT_BW
4927  * is passed, it removes the corresponding bw from the node. The caller
4928  * holds scheduler lock.
4929  */
4930 static enum ice_status
4931 ice_sched_set_vsi_node_srl_per_tc(struct ice_port_info *pi, u16 vsi_handle,
4932                                   u8 tc, u32 min_bw, u32 max_bw, u32 shared_bw)
4933 {
4934         struct ice_sched_node *tc_node, *vsi_node, *cfg_node;
4935         enum ice_status status;
4936         u8 layer_num;
4937
4938         tc_node = ice_sched_get_tc_node(pi, tc);
4939         if (!tc_node)
4940                 return ICE_ERR_CFG;
4941
4942         vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
4943         if (!vsi_node)
4944                 return ICE_ERR_CFG;
4945
4946         layer_num = ice_sched_get_rl_prof_layer(pi, ICE_SHARED_BW,
4947                                                 vsi_node->tx_sched_layer);
4948         if (layer_num >= pi->hw->num_tx_sched_layers)
4949                 return ICE_ERR_PARAM;
4950
4951         /* SRL node may be different */
4952         cfg_node = ice_sched_get_srl_node(vsi_node, layer_num);
4953         if (!cfg_node)
4954                 return ICE_ERR_CFG;
4955
4956         status = ice_sched_set_save_vsi_srl_node_bw(pi, vsi_handle, tc,
4957                                                     cfg_node, ICE_MIN_BW,
4958                                                     min_bw);
4959         if (status)
4960                 return status;
4961
4962         status = ice_sched_set_save_vsi_srl_node_bw(pi, vsi_handle, tc,
4963                                                     cfg_node, ICE_MAX_BW,
4964                                                     max_bw);
4965         if (status)
4966                 return status;
4967
4968         return ice_sched_set_save_vsi_srl_node_bw(pi, vsi_handle, tc, cfg_node,
4969                                                   ICE_SHARED_BW, shared_bw);
4970 }
4971
4972 /**
4973  * ice_sched_set_vsi_bw_shared_lmt - set VSI BW shared limit
4974  * @pi: port information structure
4975  * @vsi_handle: software VSI handle
4976  * @min_bw: minimum bandwidth in Kbps
4977  * @max_bw: maximum bandwidth in Kbps
4978  * @shared_bw: shared bandwidth in Kbps
4979  *
4980  * Configure shared rate limiter(SRL) of all VSI type nodes across all traffic
4981  * classes for VSI matching handle. When BW value of ICE_SCHED_DFLT_BW is
4982  * passed, it removes those value(s) from the node.
4983  */
4984 enum ice_status
4985 ice_sched_set_vsi_bw_shared_lmt(struct ice_port_info *pi, u16 vsi_handle,
4986                                 u32 min_bw, u32 max_bw, u32 shared_bw)
4987 {
4988         enum ice_status status = ICE_SUCCESS;
4989         u8 tc;
4990
4991         if (!pi)
4992                 return ICE_ERR_PARAM;
4993
4994         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4995                 return ICE_ERR_PARAM;
4996
4997         ice_acquire_lock(&pi->sched_lock);
4998         status = ice_sched_validate_vsi_srl_node(pi, vsi_handle);
4999         if (status)
5000                 goto exit_set_vsi_bw_shared_lmt;
5001         /* Return success if no nodes are present across TC */
5002         ice_for_each_traffic_class(tc) {
5003                 struct ice_sched_node *tc_node, *vsi_node;
5004
5005                 tc_node = ice_sched_get_tc_node(pi, tc);
5006                 if (!tc_node)
5007                         continue;
5008
5009                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
5010                 if (!vsi_node)
5011                         continue;
5012
5013                 status = ice_sched_set_vsi_node_srl_per_tc(pi, vsi_handle, tc,
5014                                                            min_bw, max_bw,
5015                                                            shared_bw);
5016                 if (status)
5017                         break;
5018         }
5019
5020 exit_set_vsi_bw_shared_lmt:
5021         ice_release_lock(&pi->sched_lock);
5022         return status;
5023 }
5024
5025 /**
5026  * ice_sched_validate_agg_srl_node - validate AGG SRL node
5027  * @pi: port information structure
5028  * @agg_id: aggregator ID
5029  *
5030  * This function validates SRL node of the AGG node if available SRL layer is
5031  * different than the AGG node layer on all TC(s).This function needs to be
5032  * called with scheduler lock held.
5033  */
5034 static enum ice_status
5035 ice_sched_validate_agg_srl_node(struct ice_port_info *pi, u32 agg_id)
5036 {
5037         u8 sel_layer = ICE_SCHED_INVAL_LAYER_NUM;
5038         struct ice_sched_agg_info *agg_info;
5039         bool agg_id_present = false;
5040         enum ice_status status = ICE_SUCCESS;
5041         u8 tc;
5042
5043         LIST_FOR_EACH_ENTRY(agg_info, &pi->hw->agg_list, ice_sched_agg_info,
5044                             list_entry)
5045                 if (agg_info->agg_id == agg_id) {
5046                         agg_id_present = true;
5047                         break;
5048                 }
5049         if (!agg_id_present)
5050                 return ICE_ERR_PARAM;
5051         /* Return success if no nodes are present across TC */
5052         ice_for_each_traffic_class(tc) {
5053                 struct ice_sched_node *tc_node, *agg_node;
5054                 enum ice_rl_type rl_type = ICE_SHARED_BW;
5055
5056                 tc_node = ice_sched_get_tc_node(pi, tc);
5057                 if (!tc_node)
5058                         continue;
5059
5060                 agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
5061                 if (!agg_node)
5062                         continue;
5063                 /* SRL bandwidth layer selection */
5064                 if (sel_layer == ICE_SCHED_INVAL_LAYER_NUM) {
5065                         u8 node_layer = agg_node->tx_sched_layer;
5066                         u8 layer_num;
5067
5068                         layer_num = ice_sched_get_rl_prof_layer(pi, rl_type,
5069                                                                 node_layer);
5070                         if (layer_num >= pi->hw->num_tx_sched_layers)
5071                                 return ICE_ERR_PARAM;
5072                         sel_layer = layer_num;
5073                 }
5074
5075                 status = ice_sched_validate_srl_node(agg_node, sel_layer);
5076                 if (status)
5077                         break;
5078         }
5079         return status;
5080 }
5081
5082 /**
5083  * ice_sched_validate_agg_id - Validate aggregator id
5084  * @pi: port information structure
5085  * @agg_id: aggregator ID
5086  *
5087  * This function validates aggregator id. Caller holds the scheduler lock.
5088  */
5089 static enum ice_status
5090 ice_sched_validate_agg_id(struct ice_port_info *pi, u32 agg_id)
5091 {
5092         struct ice_sched_agg_info *agg_info;
5093         struct ice_sched_agg_info *tmp;
5094         bool agg_id_present = false;
5095         enum ice_status status;
5096
5097         status = ice_sched_validate_agg_srl_node(pi, agg_id);
5098         if (status)
5099                 return status;
5100
5101         LIST_FOR_EACH_ENTRY_SAFE(agg_info, tmp, &pi->hw->agg_list,
5102                                  ice_sched_agg_info, list_entry)
5103                 if (agg_info->agg_id == agg_id) {
5104                         agg_id_present = true;
5105                         break;
5106                 }
5107
5108         if (!agg_id_present)
5109                 return ICE_ERR_PARAM;
5110
5111         return ICE_SUCCESS;
5112 }
5113
5114 /**
5115  * ice_sched_set_save_agg_srl_node_bw - set aggregator shared limit values
5116  * @pi: port information structure
5117  * @agg_id: aggregator ID
5118  * @tc: traffic class
5119  * @srl_node: sched node to configure
5120  * @rl_type: rate limit type minimum, maximum, or shared
5121  * @bw: minimum, maximum, or shared bandwidth in Kbps
5122  *
5123  * Configure shared rate limiter(SRL) of aggregator type nodes across
5124  * requested traffic class, and saves those value for later use for
5125  * replaying purposes. The caller holds the scheduler lock.
5126  */
5127 static enum ice_status
5128 ice_sched_set_save_agg_srl_node_bw(struct ice_port_info *pi, u32 agg_id, u8 tc,
5129                                    struct ice_sched_node *srl_node,
5130                                    enum ice_rl_type rl_type, u32 bw)
5131 {
5132         enum ice_status status;
5133
5134         if (bw == ICE_SCHED_DFLT_BW) {
5135                 status = ice_sched_set_node_bw_dflt_lmt(pi, srl_node, rl_type);
5136         } else {
5137                 status = ice_sched_set_node_bw_lmt(pi, srl_node, rl_type, bw);
5138                 if (status)
5139                         return status;
5140                 status = ice_sched_save_agg_bw(pi, agg_id, tc, rl_type, bw);
5141         }
5142         return status;
5143 }
5144
5145 /**
5146  * ice_sched_set_agg_node_srl_per_tc - set aggregator SRL per tc
5147  * @pi: port information structure
5148  * @agg_id: aggregator ID
5149  * @tc: traffic class
5150  * @min_bw: minimum bandwidth in Kbps
5151  * @max_bw: maximum bandwidth in Kbps
5152  * @shared_bw: shared bandwidth in Kbps
5153  *
5154  * This function configures the shared rate limiter(SRL) of aggregator type
5155  * node for a given traffic class for aggregator matching agg_id. When BW
5156  * value of ICE_SCHED_DFLT_BW is passed, it removes SRL from the node. Caller
5157  * holds the scheduler lock.
5158  */
5159 static enum ice_status
5160 ice_sched_set_agg_node_srl_per_tc(struct ice_port_info *pi, u32 agg_id,
5161                                   u8 tc, u32 min_bw, u32 max_bw, u32 shared_bw)
5162 {
5163         struct ice_sched_node *tc_node, *agg_node, *cfg_node;
5164         enum ice_rl_type rl_type = ICE_SHARED_BW;
5165         enum ice_status status = ICE_ERR_CFG;
5166         u8 layer_num;
5167
5168         tc_node = ice_sched_get_tc_node(pi, tc);
5169         if (!tc_node)
5170                 return ICE_ERR_CFG;
5171
5172         agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
5173         if (!agg_node)
5174                 return ICE_ERR_CFG;
5175
5176         layer_num = ice_sched_get_rl_prof_layer(pi, rl_type,
5177                                                 agg_node->tx_sched_layer);
5178         if (layer_num >= pi->hw->num_tx_sched_layers)
5179                 return ICE_ERR_PARAM;
5180
5181         /* SRL node may be different */
5182         cfg_node = ice_sched_get_srl_node(agg_node, layer_num);
5183         if (!cfg_node)
5184                 return ICE_ERR_CFG;
5185
5186         status = ice_sched_set_save_agg_srl_node_bw(pi, agg_id, tc, cfg_node,
5187                                                     ICE_MIN_BW, min_bw);
5188         if (status)
5189                 return status;
5190
5191         status = ice_sched_set_save_agg_srl_node_bw(pi, agg_id, tc, cfg_node,
5192                                                     ICE_MAX_BW, max_bw);
5193         if (status)
5194                 return status;
5195
5196         status = ice_sched_set_save_agg_srl_node_bw(pi, agg_id, tc, cfg_node,
5197                                                     ICE_SHARED_BW, shared_bw);
5198         return status;
5199 }
5200
5201 /**
5202  * ice_sched_set_agg_bw_shared_lmt - set aggregator BW shared limit
5203  * @pi: port information structure
5204  * @agg_id: aggregator ID
5205  * @min_bw: minimum bandwidth in Kbps
5206  * @max_bw: maximum bandwidth in Kbps
5207  * @shared_bw: shared bandwidth in Kbps
5208  *
5209  * This function configures the shared rate limiter(SRL) of all aggregator type
5210  * nodes across all traffic classes for aggregator matching agg_id. When
5211  * BW value of ICE_SCHED_DFLT_BW is passed, it removes SRL from the
5212  * node(s).
5213  */
5214 enum ice_status
5215 ice_sched_set_agg_bw_shared_lmt(struct ice_port_info *pi, u32 agg_id,
5216                                 u32 min_bw, u32 max_bw, u32 shared_bw)
5217 {
5218         enum ice_status status;
5219         u8 tc;
5220
5221         if (!pi)
5222                 return ICE_ERR_PARAM;
5223
5224         ice_acquire_lock(&pi->sched_lock);
5225         status = ice_sched_validate_agg_id(pi, agg_id);
5226         if (status)
5227                 goto exit_agg_bw_shared_lmt;
5228
5229         /* Return success if no nodes are present across TC */
5230         ice_for_each_traffic_class(tc) {
5231                 struct ice_sched_node *tc_node, *agg_node;
5232
5233                 tc_node = ice_sched_get_tc_node(pi, tc);
5234                 if (!tc_node)
5235                         continue;
5236
5237                 agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
5238                 if (!agg_node)
5239                         continue;
5240
5241                 status = ice_sched_set_agg_node_srl_per_tc(pi, agg_id, tc,
5242                                                            min_bw, max_bw,
5243                                                            shared_bw);
5244                 if (status)
5245                         break;
5246         }
5247
5248 exit_agg_bw_shared_lmt:
5249         ice_release_lock(&pi->sched_lock);
5250         return status;
5251 }
5252
5253 /**
5254  * ice_sched_set_agg_bw_shared_lmt_per_tc - set aggregator BW shared lmt per tc
5255  * @pi: port information structure
5256  * @agg_id: aggregator ID
5257  * @tc: traffic class
5258  * @min_bw: minimum bandwidth in Kbps
5259  * @max_bw: maximum bandwidth in Kbps
5260  * @shared_bw: shared bandwidth in Kbps
5261  *
5262  * This function configures the shared rate limiter(SRL) of aggregator type
5263  * node for a given traffic class for aggregator matching agg_id. When BW
5264  * value of ICE_SCHED_DFLT_BW is passed, it removes SRL from the node.
5265  */
5266 enum ice_status
5267 ice_sched_set_agg_bw_shared_lmt_per_tc(struct ice_port_info *pi, u32 agg_id,
5268                                        u8 tc, u32 min_bw, u32 max_bw,
5269                                        u32 shared_bw)
5270 {
5271         enum ice_status status;
5272
5273         if (!pi)
5274                 return ICE_ERR_PARAM;
5275         ice_acquire_lock(&pi->sched_lock);
5276         status = ice_sched_validate_agg_id(pi, agg_id);
5277         if (status)
5278                 goto exit_agg_bw_shared_lmt_per_tc;
5279
5280         status = ice_sched_set_agg_node_srl_per_tc(pi, agg_id, tc, min_bw,
5281                                                    max_bw, shared_bw);
5282
5283 exit_agg_bw_shared_lmt_per_tc:
5284         ice_release_lock(&pi->sched_lock);
5285         return status;
5286 }
5287
5288 /**
5289  * ice_sched_cfg_sibl_node_prio - configure node sibling priority
5290  * @pi: port information structure
5291  * @node: sched node to configure
5292  * @priority: sibling priority
5293  *
5294  * This function configures node element's sibling priority only. This
5295  * function needs to be called with scheduler lock held.
5296  */
5297 enum ice_status
5298 ice_sched_cfg_sibl_node_prio(struct ice_port_info *pi,
5299                              struct ice_sched_node *node, u8 priority)
5300 {
5301         struct ice_aqc_txsched_elem_data buf;
5302         struct ice_aqc_txsched_elem *data;
5303         struct ice_hw *hw = pi->hw;
5304         enum ice_status status;
5305
5306         if (!hw)
5307                 return ICE_ERR_PARAM;
5308         buf = node->info;
5309         data = &buf.data;
5310         data->valid_sections |= ICE_AQC_ELEM_VALID_GENERIC;
5311         priority = (priority << ICE_AQC_ELEM_GENERIC_PRIO_S) &
5312                    ICE_AQC_ELEM_GENERIC_PRIO_M;
5313         data->generic &= ~ICE_AQC_ELEM_GENERIC_PRIO_M;
5314         data->generic |= priority;
5315
5316         /* Configure element */
5317         status = ice_sched_update_elem(hw, node, &buf);
5318         return status;
5319 }
5320
5321 /**
5322  * ice_cfg_rl_burst_size - Set burst size value
5323  * @hw: pointer to the HW struct
5324  * @bytes: burst size in bytes
5325  *
5326  * This function configures/set the burst size to requested new value. The new
5327  * burst size value is used for future rate limit calls. It doesn't change the
5328  * existing or previously created RL profiles.
5329  */
5330 enum ice_status ice_cfg_rl_burst_size(struct ice_hw *hw, u32 bytes)
5331 {
5332         u16 burst_size_to_prog;
5333
5334         if (bytes < ICE_MIN_BURST_SIZE_ALLOWED ||
5335             bytes > ICE_MAX_BURST_SIZE_ALLOWED)
5336                 return ICE_ERR_PARAM;
5337         if (ice_round_to_num(bytes, 64) <=
5338             ICE_MAX_BURST_SIZE_64_BYTE_GRANULARITY) {
5339                 /* 64 byte granularity case */
5340                 /* Disable MSB granularity bit */
5341                 burst_size_to_prog = ICE_64_BYTE_GRANULARITY;
5342                 /* round number to nearest 64 byte granularity */
5343                 bytes = ice_round_to_num(bytes, 64);
5344                 /* The value is in 64 byte chunks */
5345                 burst_size_to_prog |= (u16)(bytes / 64);
5346         } else {
5347                 /* k bytes granularity case */
5348                 /* Enable MSB granularity bit */
5349                 burst_size_to_prog = ICE_KBYTE_GRANULARITY;
5350                 /* round number to nearest 1024 granularity */
5351                 bytes = ice_round_to_num(bytes, 1024);
5352                 /* check rounding doesn't go beyond allowed */
5353                 if (bytes > ICE_MAX_BURST_SIZE_KBYTE_GRANULARITY)
5354                         bytes = ICE_MAX_BURST_SIZE_KBYTE_GRANULARITY;
5355                 /* The value is in k bytes */
5356                 burst_size_to_prog |= (u16)(bytes / 1024);
5357         }
5358         hw->max_burst_size = burst_size_to_prog;
5359         return ICE_SUCCESS;
5360 }
5361
5362 /**
5363  * ice_sched_replay_node_prio - re-configure node priority
5364  * @hw: pointer to the HW struct
5365  * @node: sched node to configure
5366  * @priority: priority value
5367  *
5368  * This function configures node element's priority value. It
5369  * needs to be called with scheduler lock held.
5370  */
5371 static enum ice_status
5372 ice_sched_replay_node_prio(struct ice_hw *hw, struct ice_sched_node *node,
5373                            u8 priority)
5374 {
5375         struct ice_aqc_txsched_elem_data buf;
5376         struct ice_aqc_txsched_elem *data;
5377         enum ice_status status;
5378
5379         buf = node->info;
5380         data = &buf.data;
5381         data->valid_sections |= ICE_AQC_ELEM_VALID_GENERIC;
5382         data->generic = priority;
5383
5384         /* Configure element */
5385         status = ice_sched_update_elem(hw, node, &buf);
5386         return status;
5387 }
5388
5389 /**
5390  * ice_sched_replay_node_bw - replay node(s) BW
5391  * @hw: pointer to the HW struct
5392  * @node: sched node to configure
5393  * @bw_t_info: BW type information
5394  *
5395  * This function restores node's BW from bw_t_info. The caller needs
5396  * to hold the scheduler lock.
5397  */
5398 static enum ice_status
5399 ice_sched_replay_node_bw(struct ice_hw *hw, struct ice_sched_node *node,
5400                          struct ice_bw_type_info *bw_t_info)
5401 {
5402         struct ice_port_info *pi = hw->port_info;
5403         enum ice_status status = ICE_ERR_PARAM;
5404         u16 bw_alloc;
5405
5406         if (!node)
5407                 return status;
5408         if (!ice_is_any_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_CNT))
5409                 return ICE_SUCCESS;
5410         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_PRIO)) {
5411                 status = ice_sched_replay_node_prio(hw, node,
5412                                                     bw_t_info->generic);
5413                 if (status)
5414                         return status;
5415         }
5416         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_CIR)) {
5417                 status = ice_sched_set_node_bw_lmt(pi, node, ICE_MIN_BW,
5418                                                    bw_t_info->cir_bw.bw);
5419                 if (status)
5420                         return status;
5421         }
5422         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_CIR_WT)) {
5423                 bw_alloc = bw_t_info->cir_bw.bw_alloc;
5424                 status = ice_sched_cfg_node_bw_alloc(hw, node, ICE_MIN_BW,
5425                                                      bw_alloc);
5426                 if (status)
5427                         return status;
5428         }
5429         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_EIR)) {
5430                 status = ice_sched_set_node_bw_lmt(pi, node, ICE_MAX_BW,
5431                                                    bw_t_info->eir_bw.bw);
5432                 if (status)
5433                         return status;
5434         }
5435         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_EIR_WT)) {
5436                 bw_alloc = bw_t_info->eir_bw.bw_alloc;
5437                 status = ice_sched_cfg_node_bw_alloc(hw, node, ICE_MAX_BW,
5438                                                      bw_alloc);
5439                 if (status)
5440                         return status;
5441         }
5442         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_SHARED))
5443                 status = ice_sched_set_node_bw_lmt(pi, node, ICE_SHARED_BW,
5444                                                    bw_t_info->shared_bw);
5445         return status;
5446 }
5447
5448 /**
5449  * ice_sched_replay_agg_bw - replay aggregator node(s) BW
5450  * @hw: pointer to the HW struct
5451  * @agg_info: aggregator data structure
5452  *
5453  * This function re-creates aggregator type nodes. The caller needs to hold
5454  * the scheduler lock.
5455  */
5456 static enum ice_status
5457 ice_sched_replay_agg_bw(struct ice_hw *hw, struct ice_sched_agg_info *agg_info)
5458 {
5459         struct ice_sched_node *tc_node, *agg_node;
5460         enum ice_status status = ICE_SUCCESS;
5461         u8 tc;
5462
5463         if (!agg_info)
5464                 return ICE_ERR_PARAM;
5465         ice_for_each_traffic_class(tc) {
5466                 if (!ice_is_any_bit_set(agg_info->bw_t_info[tc].bw_t_bitmap,
5467                                         ICE_BW_TYPE_CNT))
5468                         continue;
5469                 tc_node = ice_sched_get_tc_node(hw->port_info, tc);
5470                 if (!tc_node) {
5471                         status = ICE_ERR_PARAM;
5472                         break;
5473                 }
5474                 agg_node = ice_sched_get_agg_node(hw->port_info, tc_node,
5475                                                   agg_info->agg_id);
5476                 if (!agg_node) {
5477                         status = ICE_ERR_PARAM;
5478                         break;
5479                 }
5480                 status = ice_sched_replay_node_bw(hw, agg_node,
5481                                                   &agg_info->bw_t_info[tc]);
5482                 if (status)
5483                         break;
5484         }
5485         return status;
5486 }
5487
5488 /**
5489  * ice_sched_get_ena_tc_bitmap - get enabled TC bitmap
5490  * @pi: port info struct
5491  * @tc_bitmap: 8 bits TC bitmap to check
5492  * @ena_tc_bitmap: 8 bits enabled TC bitmap to return
5493  *
5494  * This function returns enabled TC bitmap in variable ena_tc_bitmap. Some TCs
5495  * may be missing, it returns enabled TCs. This function needs to be called with
5496  * scheduler lock held.
5497  */
5498 static void
5499 ice_sched_get_ena_tc_bitmap(struct ice_port_info *pi, ice_bitmap_t *tc_bitmap,
5500                             ice_bitmap_t *ena_tc_bitmap)
5501 {
5502         u8 tc;
5503
5504         /* Some TC(s) may be missing after reset, adjust for replay */
5505         ice_for_each_traffic_class(tc)
5506                 if (ice_is_tc_ena(*tc_bitmap, tc) &&
5507                     (ice_sched_get_tc_node(pi, tc)))
5508                         ice_set_bit(tc, ena_tc_bitmap);
5509 }
5510
5511 /**
5512  * ice_sched_replay_agg - recreate aggregator node(s)
5513  * @hw: pointer to the HW struct
5514  *
5515  * This function recreate aggregator type nodes which are not replayed earlier.
5516  * It also replay aggregator BW information. These aggregator nodes are not
5517  * associated with VSI type node yet.
5518  */
5519 void ice_sched_replay_agg(struct ice_hw *hw)
5520 {
5521         struct ice_port_info *pi = hw->port_info;
5522         struct ice_sched_agg_info *agg_info;
5523
5524         ice_acquire_lock(&pi->sched_lock);
5525         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
5526                             list_entry)
5527                 /* replay aggregator (re-create aggregator node) */
5528                 if (!ice_cmp_bitmap(agg_info->tc_bitmap,
5529                                     agg_info->replay_tc_bitmap,
5530                                     ICE_MAX_TRAFFIC_CLASS)) {
5531                         ice_declare_bitmap(replay_bitmap,
5532                                            ICE_MAX_TRAFFIC_CLASS);
5533                         enum ice_status status;
5534
5535                         ice_zero_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5536                         ice_sched_get_ena_tc_bitmap(pi,
5537                                                     agg_info->replay_tc_bitmap,
5538                                                     replay_bitmap);
5539                         status = ice_sched_cfg_agg(hw->port_info,
5540                                                    agg_info->agg_id,
5541                                                    ICE_AGG_TYPE_AGG,
5542                                                    replay_bitmap);
5543                         if (status) {
5544                                 ice_info(hw, "Replay agg id[%d] failed\n",
5545                                          agg_info->agg_id);
5546                                 /* Move on to next one */
5547                                 continue;
5548                         }
5549                         /* Replay aggregator node BW (restore aggregator BW) */
5550                         status = ice_sched_replay_agg_bw(hw, agg_info);
5551                         if (status)
5552                                 ice_info(hw, "Replay agg bw [id=%d] failed\n",
5553                                          agg_info->agg_id);
5554                 }
5555         ice_release_lock(&pi->sched_lock);
5556 }
5557
5558 /**
5559  * ice_sched_replay_agg_vsi_preinit - Agg/VSI replay pre initialization
5560  * @hw: pointer to the HW struct
5561  *
5562  * This function initialize aggregator(s) TC bitmap to zero. A required
5563  * preinit step for replaying aggregators.
5564  */
5565 void ice_sched_replay_agg_vsi_preinit(struct ice_hw *hw)
5566 {
5567         struct ice_port_info *pi = hw->port_info;
5568         struct ice_sched_agg_info *agg_info;
5569
5570         ice_acquire_lock(&pi->sched_lock);
5571         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
5572                             list_entry) {
5573                 struct ice_sched_agg_vsi_info *agg_vsi_info;
5574
5575                 agg_info->tc_bitmap[0] = 0;
5576                 LIST_FOR_EACH_ENTRY(agg_vsi_info, &agg_info->agg_vsi_list,
5577                                     ice_sched_agg_vsi_info, list_entry)
5578                         agg_vsi_info->tc_bitmap[0] = 0;
5579         }
5580         ice_release_lock(&pi->sched_lock);
5581 }
5582
5583 /**
5584  * ice_sched_replay_root_node_bw - replay root node BW
5585  * @pi: port information structure
5586  *
5587  * Replay root node BW settings.
5588  */
5589 enum ice_status ice_sched_replay_root_node_bw(struct ice_port_info *pi)
5590 {
5591         enum ice_status status = ICE_SUCCESS;
5592
5593         if (!pi->hw)
5594                 return ICE_ERR_PARAM;
5595         ice_acquire_lock(&pi->sched_lock);
5596
5597         status = ice_sched_replay_node_bw(pi->hw, pi->root,
5598                                           &pi->root_node_bw_t_info);
5599         ice_release_lock(&pi->sched_lock);
5600         return status;
5601 }
5602
5603 /**
5604  * ice_sched_replay_tc_node_bw - replay TC node(s) BW
5605  * @pi: port information structure
5606  *
5607  * This function replay TC nodes.
5608  */
5609 enum ice_status ice_sched_replay_tc_node_bw(struct ice_port_info *pi)
5610 {
5611         enum ice_status status = ICE_SUCCESS;
5612         u8 tc;
5613
5614         if (!pi->hw)
5615                 return ICE_ERR_PARAM;
5616         ice_acquire_lock(&pi->sched_lock);
5617         ice_for_each_traffic_class(tc) {
5618                 struct ice_sched_node *tc_node;
5619
5620                 tc_node = ice_sched_get_tc_node(pi, tc);
5621                 if (!tc_node)
5622                         continue; /* TC not present */
5623                 status = ice_sched_replay_node_bw(pi->hw, tc_node,
5624                                                   &pi->tc_node_bw_t_info[tc]);
5625                 if (status)
5626                         break;
5627         }
5628         ice_release_lock(&pi->sched_lock);
5629         return status;
5630 }
5631
5632 /**
5633  * ice_sched_replay_vsi_bw - replay VSI type node(s) BW
5634  * @hw: pointer to the HW struct
5635  * @vsi_handle: software VSI handle
5636  * @tc_bitmap: 8 bits TC bitmap
5637  *
5638  * This function replays VSI type nodes bandwidth. This function needs to be
5639  * called with scheduler lock held.
5640  */
5641 static enum ice_status
5642 ice_sched_replay_vsi_bw(struct ice_hw *hw, u16 vsi_handle,
5643                         ice_bitmap_t *tc_bitmap)
5644 {
5645         struct ice_sched_node *vsi_node, *tc_node;
5646         struct ice_port_info *pi = hw->port_info;
5647         struct ice_bw_type_info *bw_t_info;
5648         struct ice_vsi_ctx *vsi_ctx;
5649         enum ice_status status = ICE_SUCCESS;
5650         u8 tc;
5651
5652         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
5653         if (!vsi_ctx)
5654                 return ICE_ERR_PARAM;
5655         ice_for_each_traffic_class(tc) {
5656                 if (!ice_is_tc_ena(*tc_bitmap, tc))
5657                         continue;
5658                 tc_node = ice_sched_get_tc_node(pi, tc);
5659                 if (!tc_node)
5660                         continue;
5661                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
5662                 if (!vsi_node)
5663                         continue;
5664                 bw_t_info = &vsi_ctx->sched.bw_t_info[tc];
5665                 status = ice_sched_replay_node_bw(hw, vsi_node, bw_t_info);
5666                 if (status)
5667                         break;
5668         }
5669         return status;
5670 }
5671
5672 /**
5673  * ice_sched_replay_vsi_agg - replay aggregator & VSI to aggregator node(s)
5674  * @hw: pointer to the HW struct
5675  * @vsi_handle: software VSI handle
5676  *
5677  * This function replays aggregator node, VSI to aggregator type nodes, and
5678  * their node bandwidth information. This function needs to be called with
5679  * scheduler lock held.
5680  */
5681 static enum ice_status
5682 ice_sched_replay_vsi_agg(struct ice_hw *hw, u16 vsi_handle)
5683 {
5684         ice_declare_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5685         struct ice_sched_agg_vsi_info *agg_vsi_info;
5686         struct ice_port_info *pi = hw->port_info;
5687         struct ice_sched_agg_info *agg_info;
5688         enum ice_status status;
5689
5690         ice_zero_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5691         if (!ice_is_vsi_valid(hw, vsi_handle))
5692                 return ICE_ERR_PARAM;
5693         agg_info = ice_get_vsi_agg_info(hw, vsi_handle);
5694         if (!agg_info)
5695                 return ICE_SUCCESS; /* Not present in list - default Agg case */
5696         agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
5697         if (!agg_vsi_info)
5698                 return ICE_SUCCESS; /* Not present in list - default Agg case */
5699         ice_sched_get_ena_tc_bitmap(pi, agg_info->replay_tc_bitmap,
5700                                     replay_bitmap);
5701         /* Replay aggregator node associated to vsi_handle */
5702         status = ice_sched_cfg_agg(hw->port_info, agg_info->agg_id,
5703                                    ICE_AGG_TYPE_AGG, replay_bitmap);
5704         if (status)
5705                 return status;
5706         /* Replay aggregator node BW (restore aggregator BW) */
5707         status = ice_sched_replay_agg_bw(hw, agg_info);
5708         if (status)
5709                 return status;
5710
5711         ice_zero_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5712         ice_sched_get_ena_tc_bitmap(pi, agg_vsi_info->replay_tc_bitmap,
5713                                     replay_bitmap);
5714         /* Move this VSI (vsi_handle) to above aggregator */
5715         status = ice_sched_assoc_vsi_to_agg(pi, agg_info->agg_id, vsi_handle,
5716                                             replay_bitmap);
5717         if (status)
5718                 return status;
5719         /* Replay VSI BW (restore VSI BW) */
5720         return ice_sched_replay_vsi_bw(hw, vsi_handle,
5721                                        agg_vsi_info->tc_bitmap);
5722 }
5723
5724 /**
5725  * ice_replay_vsi_agg - replay VSI to aggregator node
5726  * @hw: pointer to the HW struct
5727  * @vsi_handle: software VSI handle
5728  *
5729  * This function replays association of VSI to aggregator type nodes, and
5730  * node bandwidth information.
5731  */
5732 enum ice_status ice_replay_vsi_agg(struct ice_hw *hw, u16 vsi_handle)
5733 {
5734         struct ice_port_info *pi = hw->port_info;
5735         enum ice_status status;
5736
5737         ice_acquire_lock(&pi->sched_lock);
5738         status = ice_sched_replay_vsi_agg(hw, vsi_handle);
5739         ice_release_lock(&pi->sched_lock);
5740         return status;
5741 }
5742
5743 /**
5744  * ice_sched_replay_q_bw - replay queue type node BW
5745  * @pi: port information structure
5746  * @q_ctx: queue context structure
5747  *
5748  * This function replays queue type node bandwidth. This function needs to be
5749  * called with scheduler lock held.
5750  */
5751 enum ice_status
5752 ice_sched_replay_q_bw(struct ice_port_info *pi, struct ice_q_ctx *q_ctx)
5753 {
5754         struct ice_sched_node *q_node;
5755
5756         /* Following also checks the presence of node in tree */
5757         q_node = ice_sched_find_node_by_teid(pi->root, q_ctx->q_teid);
5758         if (!q_node)
5759                 return ICE_ERR_PARAM;
5760         return ice_sched_replay_node_bw(pi->hw, q_node, &q_ctx->bw_t_info);
5761 }