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