net/ice/base: join format strings to same line
[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
731         for (ln = 0; ln < pi->hw->num_tx_sched_layers; ln++) {
732                 struct ice_aqc_rl_profile_info *rl_prof_elem;
733                 struct ice_aqc_rl_profile_info *rl_prof_tmp;
734
735                 LIST_FOR_EACH_ENTRY_SAFE(rl_prof_elem, rl_prof_tmp,
736                                          &pi->rl_prof_list[ln],
737                                          ice_aqc_rl_profile_info, list_entry) {
738                         struct ice_hw *hw = pi->hw;
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(&pi->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                         status = ICE_ERR_NO_MEMORY;
2667                         goto exit_reg_agg;
2668                 }
2669                 agg_info->agg_id = agg_id;
2670                 agg_info->agg_type = agg_type;
2671                 agg_info->tc_bitmap[0] = 0;
2672
2673                 /* Initialize the aggregator VSI list head */
2674                 INIT_LIST_HEAD(&agg_info->agg_vsi_list);
2675
2676                 /* Add new entry in aggregator list */
2677                 LIST_ADD(&agg_info->list_entry, &hw->agg_list);
2678         }
2679         /* Create aggregator node(s) for requested TC(s) */
2680         ice_for_each_traffic_class(tc) {
2681                 if (!ice_is_tc_ena(*tc_bitmap, tc)) {
2682                         /* Delete aggregator cfg TC if it exists previously */
2683                         status = ice_rm_agg_cfg_tc(pi, agg_info, tc, false);
2684                         if (status)
2685                                 break;
2686                         continue;
2687                 }
2688
2689                 /* Check if aggregator node for TC already exists */
2690                 if (ice_is_tc_ena(agg_info->tc_bitmap[0], tc))
2691                         continue;
2692
2693                 /* Create new aggregator node for TC */
2694                 status = ice_sched_add_agg_cfg(pi, agg_id, tc);
2695                 if (status)
2696                         break;
2697
2698                 /* Save aggregator node's TC information */
2699                 ice_set_bit(tc, agg_info->tc_bitmap);
2700         }
2701 exit_reg_agg:
2702         return status;
2703 }
2704
2705 /**
2706  * ice_cfg_agg - config aggregator node
2707  * @pi: port information structure
2708  * @agg_id: aggregator ID
2709  * @agg_type: aggregator type queue, VSI, or aggregator group
2710  * @tc_bitmap: bits TC bitmap
2711  *
2712  * This function configures aggregator node(s).
2713  */
2714 enum ice_status
2715 ice_cfg_agg(struct ice_port_info *pi, u32 agg_id, enum ice_agg_type agg_type,
2716             u8 tc_bitmap)
2717 {
2718         ice_bitmap_t bitmap = tc_bitmap;
2719         enum ice_status status;
2720
2721         ice_acquire_lock(&pi->sched_lock);
2722         status = ice_sched_cfg_agg(pi, agg_id, agg_type,
2723                                    (ice_bitmap_t *)&bitmap);
2724         if (!status)
2725                 status = ice_save_agg_tc_bitmap(pi, agg_id,
2726                                                 (ice_bitmap_t *)&bitmap);
2727         ice_release_lock(&pi->sched_lock);
2728         return status;
2729 }
2730
2731 /**
2732  * ice_get_agg_vsi_info - get the aggregator ID
2733  * @agg_info: aggregator info
2734  * @vsi_handle: software VSI handle
2735  *
2736  * The function returns aggregator VSI info based on VSI handle. This function
2737  * needs to be called with scheduler lock held.
2738  */
2739 static struct ice_sched_agg_vsi_info *
2740 ice_get_agg_vsi_info(struct ice_sched_agg_info *agg_info, u16 vsi_handle)
2741 {
2742         struct ice_sched_agg_vsi_info *agg_vsi_info;
2743
2744         LIST_FOR_EACH_ENTRY(agg_vsi_info, &agg_info->agg_vsi_list,
2745                             ice_sched_agg_vsi_info, list_entry)
2746                 if (agg_vsi_info->vsi_handle == vsi_handle)
2747                         return agg_vsi_info;
2748
2749         return NULL;
2750 }
2751
2752 /**
2753  * ice_get_vsi_agg_info - get the aggregator info of VSI
2754  * @hw: pointer to the hardware structure
2755  * @vsi_handle: Sw VSI handle
2756  *
2757  * The function returns aggregator info of VSI represented via vsi_handle. The
2758  * VSI has in this case a different aggregator than the default one. This
2759  * function needs to be called with scheduler lock held.
2760  */
2761 static struct ice_sched_agg_info *
2762 ice_get_vsi_agg_info(struct ice_hw *hw, u16 vsi_handle)
2763 {
2764         struct ice_sched_agg_info *agg_info;
2765
2766         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
2767                             list_entry) {
2768                 struct ice_sched_agg_vsi_info *agg_vsi_info;
2769
2770                 agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
2771                 if (agg_vsi_info)
2772                         return agg_info;
2773         }
2774         return NULL;
2775 }
2776
2777 /**
2778  * ice_save_agg_vsi_tc_bitmap - save aggregator VSI TC bitmap
2779  * @pi: port information structure
2780  * @agg_id: aggregator ID
2781  * @vsi_handle: software VSI handle
2782  * @tc_bitmap: TC bitmap of enabled TC(s)
2783  *
2784  * Save VSI to aggregator TC bitmap. This function needs to call with scheduler
2785  * lock held.
2786  */
2787 static enum ice_status
2788 ice_save_agg_vsi_tc_bitmap(struct ice_port_info *pi, u32 agg_id, u16 vsi_handle,
2789                            ice_bitmap_t *tc_bitmap)
2790 {
2791         struct ice_sched_agg_vsi_info *agg_vsi_info;
2792         struct ice_sched_agg_info *agg_info;
2793
2794         agg_info = ice_get_agg_info(pi->hw, agg_id);
2795         if (!agg_info)
2796                 return ICE_ERR_PARAM;
2797         /* check if entry already exist */
2798         agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
2799         if (!agg_vsi_info)
2800                 return ICE_ERR_PARAM;
2801         ice_cp_bitmap(agg_vsi_info->replay_tc_bitmap, tc_bitmap,
2802                       ICE_MAX_TRAFFIC_CLASS);
2803         return ICE_SUCCESS;
2804 }
2805
2806 /**
2807  * ice_sched_assoc_vsi_to_agg - associate/move VSI to new/default aggregator
2808  * @pi: port information structure
2809  * @agg_id: aggregator ID
2810  * @vsi_handle: software VSI handle
2811  * @tc_bitmap: TC bitmap of enabled TC(s)
2812  *
2813  * This function moves VSI to a new or default aggregator node. If VSI is
2814  * already associated to the aggregator node then no operation is performed on
2815  * the tree. This function needs to be called with scheduler lock held.
2816  */
2817 static enum ice_status
2818 ice_sched_assoc_vsi_to_agg(struct ice_port_info *pi, u32 agg_id,
2819                            u16 vsi_handle, ice_bitmap_t *tc_bitmap)
2820 {
2821         struct ice_sched_agg_vsi_info *agg_vsi_info;
2822         struct ice_sched_agg_info *agg_info;
2823         enum ice_status status = ICE_SUCCESS;
2824         struct ice_hw *hw = pi->hw;
2825         u8 tc;
2826
2827         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
2828                 return ICE_ERR_PARAM;
2829         agg_info = ice_get_agg_info(hw, agg_id);
2830         if (!agg_info)
2831                 return ICE_ERR_PARAM;
2832         /* check if entry already exist */
2833         agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
2834         if (!agg_vsi_info) {
2835                 /* Create new entry for VSI under aggregator list */
2836                 agg_vsi_info = (struct ice_sched_agg_vsi_info *)
2837                         ice_malloc(hw, sizeof(*agg_vsi_info));
2838                 if (!agg_vsi_info)
2839                         return ICE_ERR_PARAM;
2840
2841                 /* add VSI ID into the aggregator list */
2842                 agg_vsi_info->vsi_handle = vsi_handle;
2843                 LIST_ADD(&agg_vsi_info->list_entry, &agg_info->agg_vsi_list);
2844         }
2845         /* Move VSI node to new aggregator node for requested TC(s) */
2846         ice_for_each_traffic_class(tc) {
2847                 if (!ice_is_tc_ena(*tc_bitmap, tc))
2848                         continue;
2849
2850                 /* Move VSI to new aggregator */
2851                 status = ice_sched_move_vsi_to_agg(pi, vsi_handle, agg_id, tc);
2852                 if (status)
2853                         break;
2854
2855                 if (agg_id != ICE_DFLT_AGG_ID)
2856                         ice_set_bit(tc, agg_vsi_info->tc_bitmap);
2857                 else
2858                         ice_clear_bit(tc, agg_vsi_info->tc_bitmap);
2859         }
2860         /* If VSI moved back to default aggregator, delete agg_vsi_info. */
2861         if (!ice_is_any_bit_set(agg_vsi_info->tc_bitmap,
2862                                 ICE_MAX_TRAFFIC_CLASS)) {
2863                 LIST_DEL(&agg_vsi_info->list_entry);
2864                 ice_free(hw, agg_vsi_info);
2865         }
2866         return status;
2867 }
2868
2869 /**
2870  * ice_sched_rm_unused_rl_prof - remove unused RL profile
2871  * @pi: port information structure
2872  *
2873  * This function removes unused rate limit profiles from the HW and
2874  * SW DB. The caller needs to hold scheduler lock.
2875  */
2876 static void ice_sched_rm_unused_rl_prof(struct ice_port_info *pi)
2877 {
2878         u16 ln;
2879
2880         for (ln = 0; ln < pi->hw->num_tx_sched_layers; ln++) {
2881                 struct ice_aqc_rl_profile_info *rl_prof_elem;
2882                 struct ice_aqc_rl_profile_info *rl_prof_tmp;
2883
2884                 LIST_FOR_EACH_ENTRY_SAFE(rl_prof_elem, rl_prof_tmp,
2885                                          &pi->rl_prof_list[ln],
2886                                          ice_aqc_rl_profile_info, list_entry) {
2887                         if (!ice_sched_del_rl_profile(pi->hw, rl_prof_elem))
2888                                 ice_debug(pi->hw, ICE_DBG_SCHED, "Removed rl profile\n");
2889                 }
2890         }
2891 }
2892
2893 /**
2894  * ice_sched_update_elem - update element
2895  * @hw: pointer to the HW struct
2896  * @node: pointer to node
2897  * @info: node info to update
2898  *
2899  * Update the HW DB, and local SW DB of node. Update the scheduling
2900  * parameters of node from argument info data buffer (Info->data buf) and
2901  * returns success or error on config sched element failure. The caller
2902  * needs to hold scheduler lock.
2903  */
2904 static enum ice_status
2905 ice_sched_update_elem(struct ice_hw *hw, struct ice_sched_node *node,
2906                       struct ice_aqc_txsched_elem_data *info)
2907 {
2908         struct ice_aqc_txsched_elem_data buf;
2909         enum ice_status status;
2910         u16 elem_cfgd = 0;
2911         u16 num_elems = 1;
2912
2913         buf = *info;
2914         /* Parent TEID is reserved field in this aq call */
2915         buf.parent_teid = 0;
2916         /* Element type is reserved field in this aq call */
2917         buf.data.elem_type = 0;
2918         /* Flags is reserved field in this aq call */
2919         buf.data.flags = 0;
2920
2921         /* Update HW DB */
2922         /* Configure element node */
2923         status = ice_aq_cfg_sched_elems(hw, num_elems, &buf, sizeof(buf),
2924                                         &elem_cfgd, NULL);
2925         if (status || elem_cfgd != num_elems) {
2926                 ice_debug(hw, ICE_DBG_SCHED, "Config sched elem error\n");
2927                 return ICE_ERR_CFG;
2928         }
2929
2930         /* Config success case */
2931         /* Now update local SW DB */
2932         /* Only copy the data portion of info buffer */
2933         node->info.data = info->data;
2934         return status;
2935 }
2936
2937 /**
2938  * ice_sched_cfg_node_bw_alloc - configure node BW weight/alloc params
2939  * @hw: pointer to the HW struct
2940  * @node: sched node to configure
2941  * @rl_type: rate limit type CIR, EIR, or shared
2942  * @bw_alloc: BW weight/allocation
2943  *
2944  * This function configures node element's BW allocation.
2945  */
2946 static enum ice_status
2947 ice_sched_cfg_node_bw_alloc(struct ice_hw *hw, struct ice_sched_node *node,
2948                             enum ice_rl_type rl_type, u16 bw_alloc)
2949 {
2950         struct ice_aqc_txsched_elem_data buf;
2951         struct ice_aqc_txsched_elem *data;
2952         enum ice_status status;
2953
2954         buf = node->info;
2955         data = &buf.data;
2956         if (rl_type == ICE_MIN_BW) {
2957                 data->valid_sections |= ICE_AQC_ELEM_VALID_CIR;
2958                 data->cir_bw.bw_alloc = CPU_TO_LE16(bw_alloc);
2959         } else if (rl_type == ICE_MAX_BW) {
2960                 data->valid_sections |= ICE_AQC_ELEM_VALID_EIR;
2961                 data->eir_bw.bw_alloc = CPU_TO_LE16(bw_alloc);
2962         } else {
2963                 return ICE_ERR_PARAM;
2964         }
2965
2966         /* Configure element */
2967         status = ice_sched_update_elem(hw, node, &buf);
2968         return status;
2969 }
2970
2971 /**
2972  * ice_move_vsi_to_agg - moves VSI to new or default aggregator
2973  * @pi: port information structure
2974  * @agg_id: aggregator ID
2975  * @vsi_handle: software VSI handle
2976  * @tc_bitmap: TC bitmap of enabled TC(s)
2977  *
2978  * Move or associate VSI to a new or default aggregator node.
2979  */
2980 enum ice_status
2981 ice_move_vsi_to_agg(struct ice_port_info *pi, u32 agg_id, u16 vsi_handle,
2982                     u8 tc_bitmap)
2983 {
2984         ice_bitmap_t bitmap = tc_bitmap;
2985         enum ice_status status;
2986
2987         ice_acquire_lock(&pi->sched_lock);
2988         status = ice_sched_assoc_vsi_to_agg(pi, agg_id, vsi_handle,
2989                                             (ice_bitmap_t *)&bitmap);
2990         if (!status)
2991                 status = ice_save_agg_vsi_tc_bitmap(pi, agg_id, vsi_handle,
2992                                                     (ice_bitmap_t *)&bitmap);
2993         ice_release_lock(&pi->sched_lock);
2994         return status;
2995 }
2996
2997 /**
2998  * ice_rm_agg_cfg - remove aggregator configuration
2999  * @pi: port information structure
3000  * @agg_id: aggregator ID
3001  *
3002  * This function removes aggregator reference to VSI and delete aggregator ID
3003  * info. It removes the aggregator configuration completely.
3004  */
3005 enum ice_status ice_rm_agg_cfg(struct ice_port_info *pi, u32 agg_id)
3006 {
3007         struct ice_sched_agg_info *agg_info;
3008         enum ice_status status = ICE_SUCCESS;
3009         u8 tc;
3010
3011         ice_acquire_lock(&pi->sched_lock);
3012         agg_info = ice_get_agg_info(pi->hw, agg_id);
3013         if (!agg_info) {
3014                 status = ICE_ERR_DOES_NOT_EXIST;
3015                 goto exit_ice_rm_agg_cfg;
3016         }
3017
3018         ice_for_each_traffic_class(tc) {
3019                 status = ice_rm_agg_cfg_tc(pi, agg_info, tc, true);
3020                 if (status)
3021                         goto exit_ice_rm_agg_cfg;
3022         }
3023
3024         if (ice_is_any_bit_set(agg_info->tc_bitmap, ICE_MAX_TRAFFIC_CLASS)) {
3025                 status = ICE_ERR_IN_USE;
3026                 goto exit_ice_rm_agg_cfg;
3027         }
3028
3029         /* Safe to delete entry now */
3030         LIST_DEL(&agg_info->list_entry);
3031         ice_free(pi->hw, agg_info);
3032
3033         /* Remove unused RL profile IDs from HW and SW DB */
3034         ice_sched_rm_unused_rl_prof(pi);
3035
3036 exit_ice_rm_agg_cfg:
3037         ice_release_lock(&pi->sched_lock);
3038         return status;
3039 }
3040
3041 /**
3042  * ice_set_clear_cir_bw_alloc - set or clear CIR BW alloc information
3043  * @bw_t_info: bandwidth type information structure
3044  * @bw_alloc: Bandwidth allocation information
3045  *
3046  * Save or clear CIR BW alloc information (bw_alloc) in the passed param
3047  * bw_t_info.
3048  */
3049 static void
3050 ice_set_clear_cir_bw_alloc(struct ice_bw_type_info *bw_t_info, u16 bw_alloc)
3051 {
3052         bw_t_info->cir_bw.bw_alloc = bw_alloc;
3053         if (bw_t_info->cir_bw.bw_alloc)
3054                 ice_set_bit(ICE_BW_TYPE_CIR_WT, bw_t_info->bw_t_bitmap);
3055         else
3056                 ice_clear_bit(ICE_BW_TYPE_CIR_WT, bw_t_info->bw_t_bitmap);
3057 }
3058
3059 /**
3060  * ice_set_clear_eir_bw_alloc - set or clear EIR BW alloc information
3061  * @bw_t_info: bandwidth type information structure
3062  * @bw_alloc: Bandwidth allocation information
3063  *
3064  * Save or clear EIR BW alloc information (bw_alloc) in the passed param
3065  * bw_t_info.
3066  */
3067 static void
3068 ice_set_clear_eir_bw_alloc(struct ice_bw_type_info *bw_t_info, u16 bw_alloc)
3069 {
3070         bw_t_info->eir_bw.bw_alloc = bw_alloc;
3071         if (bw_t_info->eir_bw.bw_alloc)
3072                 ice_set_bit(ICE_BW_TYPE_EIR_WT, bw_t_info->bw_t_bitmap);
3073         else
3074                 ice_clear_bit(ICE_BW_TYPE_EIR_WT, bw_t_info->bw_t_bitmap);
3075 }
3076
3077 /**
3078  * ice_sched_save_vsi_bw_alloc - save VSI node's BW alloc information
3079  * @pi: port information structure
3080  * @vsi_handle: sw VSI handle
3081  * @tc: traffic class
3082  * @rl_type: rate limit type min or max
3083  * @bw_alloc: Bandwidth allocation information
3084  *
3085  * Save BW alloc information of VSI type node for post replay use.
3086  */
3087 static enum ice_status
3088 ice_sched_save_vsi_bw_alloc(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3089                             enum ice_rl_type rl_type, u16 bw_alloc)
3090 {
3091         struct ice_vsi_ctx *vsi_ctx;
3092
3093         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3094                 return ICE_ERR_PARAM;
3095         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
3096         if (!vsi_ctx)
3097                 return ICE_ERR_PARAM;
3098         switch (rl_type) {
3099         case ICE_MIN_BW:
3100                 ice_set_clear_cir_bw_alloc(&vsi_ctx->sched.bw_t_info[tc],
3101                                            bw_alloc);
3102                 break;
3103         case ICE_MAX_BW:
3104                 ice_set_clear_eir_bw_alloc(&vsi_ctx->sched.bw_t_info[tc],
3105                                            bw_alloc);
3106                 break;
3107         default:
3108                 return ICE_ERR_PARAM;
3109         }
3110         return ICE_SUCCESS;
3111 }
3112
3113 /**
3114  * ice_set_clear_cir_bw - set or clear CIR BW
3115  * @bw_t_info: bandwidth type information structure
3116  * @bw: bandwidth in Kbps - Kilo bits per sec
3117  *
3118  * Save or clear CIR bandwidth (BW) in the passed param bw_t_info.
3119  */
3120 static void ice_set_clear_cir_bw(struct ice_bw_type_info *bw_t_info, u32 bw)
3121 {
3122         if (bw == ICE_SCHED_DFLT_BW) {
3123                 ice_clear_bit(ICE_BW_TYPE_CIR, bw_t_info->bw_t_bitmap);
3124                 bw_t_info->cir_bw.bw = 0;
3125         } else {
3126                 /* Save type of BW information */
3127                 ice_set_bit(ICE_BW_TYPE_CIR, bw_t_info->bw_t_bitmap);
3128                 bw_t_info->cir_bw.bw = bw;
3129         }
3130 }
3131
3132 /**
3133  * ice_set_clear_eir_bw - set or clear EIR BW
3134  * @bw_t_info: bandwidth type information structure
3135  * @bw: bandwidth in Kbps - Kilo bits per sec
3136  *
3137  * Save or clear EIR bandwidth (BW) in the passed param bw_t_info.
3138  */
3139 static void ice_set_clear_eir_bw(struct ice_bw_type_info *bw_t_info, u32 bw)
3140 {
3141         if (bw == ICE_SCHED_DFLT_BW) {
3142                 ice_clear_bit(ICE_BW_TYPE_EIR, bw_t_info->bw_t_bitmap);
3143                 bw_t_info->eir_bw.bw = 0;
3144         } else {
3145                 /* EIR BW and Shared BW profiles are mutually exclusive and
3146                  * hence only one of them may be set for any given element.
3147                  * First clear earlier saved shared BW information.
3148                  */
3149                 ice_clear_bit(ICE_BW_TYPE_SHARED, bw_t_info->bw_t_bitmap);
3150                 bw_t_info->shared_bw = 0;
3151                 /* save EIR BW information */
3152                 ice_set_bit(ICE_BW_TYPE_EIR, bw_t_info->bw_t_bitmap);
3153                 bw_t_info->eir_bw.bw = bw;
3154         }
3155 }
3156
3157 /**
3158  * ice_set_clear_shared_bw - set or clear shared BW
3159  * @bw_t_info: bandwidth type information structure
3160  * @bw: bandwidth in Kbps - Kilo bits per sec
3161  *
3162  * Save or clear shared bandwidth (BW) in the passed param bw_t_info.
3163  */
3164 static void ice_set_clear_shared_bw(struct ice_bw_type_info *bw_t_info, u32 bw)
3165 {
3166         if (bw == ICE_SCHED_DFLT_BW) {
3167                 ice_clear_bit(ICE_BW_TYPE_SHARED, bw_t_info->bw_t_bitmap);
3168                 bw_t_info->shared_bw = 0;
3169         } else {
3170                 /* EIR BW and Shared BW profiles are mutually exclusive and
3171                  * hence only one of them may be set for any given element.
3172                  * First clear earlier saved EIR BW information.
3173                  */
3174                 ice_clear_bit(ICE_BW_TYPE_EIR, bw_t_info->bw_t_bitmap);
3175                 bw_t_info->eir_bw.bw = 0;
3176                 /* save shared BW information */
3177                 ice_set_bit(ICE_BW_TYPE_SHARED, bw_t_info->bw_t_bitmap);
3178                 bw_t_info->shared_bw = bw;
3179         }
3180 }
3181
3182 /**
3183  * ice_sched_save_vsi_bw - save VSI node's BW information
3184  * @pi: port information structure
3185  * @vsi_handle: sw VSI handle
3186  * @tc: traffic class
3187  * @rl_type: rate limit type min, max, or shared
3188  * @bw: bandwidth in Kbps - Kilo bits per sec
3189  *
3190  * Save BW information of VSI type node for post replay use.
3191  */
3192 static enum ice_status
3193 ice_sched_save_vsi_bw(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3194                       enum ice_rl_type rl_type, u32 bw)
3195 {
3196         struct ice_vsi_ctx *vsi_ctx;
3197
3198         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3199                 return ICE_ERR_PARAM;
3200         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
3201         if (!vsi_ctx)
3202                 return ICE_ERR_PARAM;
3203         switch (rl_type) {
3204         case ICE_MIN_BW:
3205                 ice_set_clear_cir_bw(&vsi_ctx->sched.bw_t_info[tc], bw);
3206                 break;
3207         case ICE_MAX_BW:
3208                 ice_set_clear_eir_bw(&vsi_ctx->sched.bw_t_info[tc], bw);
3209                 break;
3210         case ICE_SHARED_BW:
3211                 ice_set_clear_shared_bw(&vsi_ctx->sched.bw_t_info[tc], bw);
3212                 break;
3213         default:
3214                 return ICE_ERR_PARAM;
3215         }
3216         return ICE_SUCCESS;
3217 }
3218
3219 /**
3220  * ice_set_clear_prio - set or clear priority information
3221  * @bw_t_info: bandwidth type information structure
3222  * @prio: priority to save
3223  *
3224  * Save or clear priority (prio) in the passed param bw_t_info.
3225  */
3226 static void ice_set_clear_prio(struct ice_bw_type_info *bw_t_info, u8 prio)
3227 {
3228         bw_t_info->generic = prio;
3229         if (bw_t_info->generic)
3230                 ice_set_bit(ICE_BW_TYPE_PRIO, bw_t_info->bw_t_bitmap);
3231         else
3232                 ice_clear_bit(ICE_BW_TYPE_PRIO, bw_t_info->bw_t_bitmap);
3233 }
3234
3235 /**
3236  * ice_sched_save_vsi_prio - save VSI node's priority information
3237  * @pi: port information structure
3238  * @vsi_handle: Software VSI handle
3239  * @tc: traffic class
3240  * @prio: priority to save
3241  *
3242  * Save priority information of VSI type node for post replay use.
3243  */
3244 static enum ice_status
3245 ice_sched_save_vsi_prio(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3246                         u8 prio)
3247 {
3248         struct ice_vsi_ctx *vsi_ctx;
3249
3250         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3251                 return ICE_ERR_PARAM;
3252         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
3253         if (!vsi_ctx)
3254                 return ICE_ERR_PARAM;
3255         if (tc >= ICE_MAX_TRAFFIC_CLASS)
3256                 return ICE_ERR_PARAM;
3257         ice_set_clear_prio(&vsi_ctx->sched.bw_t_info[tc], prio);
3258         return ICE_SUCCESS;
3259 }
3260
3261 /**
3262  * ice_sched_save_agg_bw_alloc - save aggregator node's BW alloc information
3263  * @pi: port information structure
3264  * @agg_id: node aggregator ID
3265  * @tc: traffic class
3266  * @rl_type: rate limit type min or max
3267  * @bw_alloc: bandwidth alloc information
3268  *
3269  * Save BW alloc information of AGG type node for post replay use.
3270  */
3271 static enum ice_status
3272 ice_sched_save_agg_bw_alloc(struct ice_port_info *pi, u32 agg_id, u8 tc,
3273                             enum ice_rl_type rl_type, u16 bw_alloc)
3274 {
3275         struct ice_sched_agg_info *agg_info;
3276
3277         agg_info = ice_get_agg_info(pi->hw, agg_id);
3278         if (!agg_info)
3279                 return ICE_ERR_PARAM;
3280         if (!ice_is_tc_ena(agg_info->tc_bitmap[0], tc))
3281                 return ICE_ERR_PARAM;
3282         switch (rl_type) {
3283         case ICE_MIN_BW:
3284                 ice_set_clear_cir_bw_alloc(&agg_info->bw_t_info[tc], bw_alloc);
3285                 break;
3286         case ICE_MAX_BW:
3287                 ice_set_clear_eir_bw_alloc(&agg_info->bw_t_info[tc], bw_alloc);
3288                 break;
3289         default:
3290                 return ICE_ERR_PARAM;
3291         }
3292         return ICE_SUCCESS;
3293 }
3294
3295 /**
3296  * ice_sched_save_agg_bw - save aggregator node's BW information
3297  * @pi: port information structure
3298  * @agg_id: node aggregator ID
3299  * @tc: traffic class
3300  * @rl_type: rate limit type min, max, or shared
3301  * @bw: bandwidth in Kbps - Kilo bits per sec
3302  *
3303  * Save BW information of AGG type node for post replay use.
3304  */
3305 static enum ice_status
3306 ice_sched_save_agg_bw(struct ice_port_info *pi, u32 agg_id, u8 tc,
3307                       enum ice_rl_type rl_type, u32 bw)
3308 {
3309         struct ice_sched_agg_info *agg_info;
3310
3311         agg_info = ice_get_agg_info(pi->hw, agg_id);
3312         if (!agg_info)
3313                 return ICE_ERR_PARAM;
3314         if (!ice_is_tc_ena(agg_info->tc_bitmap[0], tc))
3315                 return ICE_ERR_PARAM;
3316         switch (rl_type) {
3317         case ICE_MIN_BW:
3318                 ice_set_clear_cir_bw(&agg_info->bw_t_info[tc], bw);
3319                 break;
3320         case ICE_MAX_BW:
3321                 ice_set_clear_eir_bw(&agg_info->bw_t_info[tc], bw);
3322                 break;
3323         case ICE_SHARED_BW:
3324                 ice_set_clear_shared_bw(&agg_info->bw_t_info[tc], bw);
3325                 break;
3326         default:
3327                 return ICE_ERR_PARAM;
3328         }
3329         return ICE_SUCCESS;
3330 }
3331
3332 /**
3333  * ice_cfg_vsi_bw_lmt_per_tc - configure VSI BW limit per TC
3334  * @pi: port information structure
3335  * @vsi_handle: software VSI handle
3336  * @tc: traffic class
3337  * @rl_type: min or max
3338  * @bw: bandwidth in Kbps
3339  *
3340  * This function configures BW limit of VSI scheduling node based on TC
3341  * information.
3342  */
3343 enum ice_status
3344 ice_cfg_vsi_bw_lmt_per_tc(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3345                           enum ice_rl_type rl_type, u32 bw)
3346 {
3347         enum ice_status status;
3348
3349         status = ice_sched_set_node_bw_lmt_per_tc(pi, vsi_handle,
3350                                                   ICE_AGG_TYPE_VSI,
3351                                                   tc, rl_type, bw);
3352         if (!status) {
3353                 ice_acquire_lock(&pi->sched_lock);
3354                 status = ice_sched_save_vsi_bw(pi, vsi_handle, tc, rl_type, bw);
3355                 ice_release_lock(&pi->sched_lock);
3356         }
3357         return status;
3358 }
3359
3360 /**
3361  * ice_cfg_dflt_vsi_bw_lmt_per_tc - configure default VSI BW limit per TC
3362  * @pi: port information structure
3363  * @vsi_handle: software VSI handle
3364  * @tc: traffic class
3365  * @rl_type: min or max
3366  *
3367  * This function configures default BW limit of VSI scheduling node based on TC
3368  * information.
3369  */
3370 enum ice_status
3371 ice_cfg_vsi_bw_dflt_lmt_per_tc(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
3372                                enum ice_rl_type rl_type)
3373 {
3374         enum ice_status status;
3375
3376         status = ice_sched_set_node_bw_lmt_per_tc(pi, vsi_handle,
3377                                                   ICE_AGG_TYPE_VSI,
3378                                                   tc, rl_type,
3379                                                   ICE_SCHED_DFLT_BW);
3380         if (!status) {
3381                 ice_acquire_lock(&pi->sched_lock);
3382                 status = ice_sched_save_vsi_bw(pi, vsi_handle, tc, rl_type,
3383                                                ICE_SCHED_DFLT_BW);
3384                 ice_release_lock(&pi->sched_lock);
3385         }
3386         return status;
3387 }
3388
3389 /**
3390  * ice_cfg_agg_bw_lmt_per_tc - configure aggregator BW limit per TC
3391  * @pi: port information structure
3392  * @agg_id: aggregator ID
3393  * @tc: traffic class
3394  * @rl_type: min or max
3395  * @bw: bandwidth in Kbps
3396  *
3397  * This function applies BW limit to aggregator scheduling node based on TC
3398  * information.
3399  */
3400 enum ice_status
3401 ice_cfg_agg_bw_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc,
3402                           enum ice_rl_type rl_type, u32 bw)
3403 {
3404         enum ice_status status;
3405
3406         status = ice_sched_set_node_bw_lmt_per_tc(pi, agg_id, ICE_AGG_TYPE_AGG,
3407                                                   tc, rl_type, bw);
3408         if (!status) {
3409                 ice_acquire_lock(&pi->sched_lock);
3410                 status = ice_sched_save_agg_bw(pi, agg_id, tc, rl_type, bw);
3411                 ice_release_lock(&pi->sched_lock);
3412         }
3413         return status;
3414 }
3415
3416 /**
3417  * ice_cfg_agg_bw_dflt_lmt_per_tc - configure aggregator BW default limit per TC
3418  * @pi: port information structure
3419  * @agg_id: aggregator ID
3420  * @tc: traffic class
3421  * @rl_type: min or max
3422  *
3423  * This function applies default BW limit to aggregator scheduling node based
3424  * on TC information.
3425  */
3426 enum ice_status
3427 ice_cfg_agg_bw_dflt_lmt_per_tc(struct ice_port_info *pi, u32 agg_id, u8 tc,
3428                                enum ice_rl_type rl_type)
3429 {
3430         enum ice_status status;
3431
3432         status = ice_sched_set_node_bw_lmt_per_tc(pi, agg_id, ICE_AGG_TYPE_AGG,
3433                                                   tc, rl_type,
3434                                                   ICE_SCHED_DFLT_BW);
3435         if (!status) {
3436                 ice_acquire_lock(&pi->sched_lock);
3437                 status = ice_sched_save_agg_bw(pi, agg_id, tc, rl_type,
3438                                                ICE_SCHED_DFLT_BW);
3439                 ice_release_lock(&pi->sched_lock);
3440         }
3441         return status;
3442 }
3443
3444 /**
3445  * ice_cfg_vsi_bw_shared_lmt - configure VSI BW shared limit
3446  * @pi: port information structure
3447  * @vsi_handle: software VSI handle
3448  * @bw: bandwidth in Kbps
3449  *
3450  * This function Configures shared rate limiter(SRL) of all VSI type nodes
3451  * across all traffic classes for VSI matching handle.
3452  */
3453 enum ice_status
3454 ice_cfg_vsi_bw_shared_lmt(struct ice_port_info *pi, u16 vsi_handle, u32 bw)
3455 {
3456         return ice_sched_set_vsi_bw_shared_lmt(pi, vsi_handle, bw);
3457 }
3458
3459 /**
3460  * ice_cfg_vsi_bw_no_shared_lmt - configure VSI BW for no shared limiter
3461  * @pi: port information structure
3462  * @vsi_handle: software VSI handle
3463  *
3464  * This function removes the shared rate limiter(SRL) of all VSI type nodes
3465  * across all traffic classes for VSI matching handle.
3466  */
3467 enum ice_status
3468 ice_cfg_vsi_bw_no_shared_lmt(struct ice_port_info *pi, u16 vsi_handle)
3469 {
3470         return ice_sched_set_vsi_bw_shared_lmt(pi, vsi_handle,
3471                                                ICE_SCHED_DFLT_BW);
3472 }
3473
3474 /**
3475  * ice_cfg_agg_bw_shared_lmt - configure aggregator BW shared limit
3476  * @pi: port information structure
3477  * @agg_id: aggregator ID
3478  * @bw: bandwidth in Kbps
3479  *
3480  * This function configures the shared rate limiter(SRL) of all aggregator type
3481  * nodes across all traffic classes for aggregator matching agg_id.
3482  */
3483 enum ice_status
3484 ice_cfg_agg_bw_shared_lmt(struct ice_port_info *pi, u32 agg_id, u32 bw)
3485 {
3486         return ice_sched_set_agg_bw_shared_lmt(pi, agg_id, bw);
3487 }
3488
3489 /**
3490  * ice_cfg_agg_bw_no_shared_lmt - configure aggregator BW for no shared limiter
3491  * @pi: port information structure
3492  * @agg_id: aggregator ID
3493  *
3494  * This function removes the shared rate limiter(SRL) of all aggregator type
3495  * nodes across all traffic classes for aggregator matching agg_id.
3496  */
3497 enum ice_status
3498 ice_cfg_agg_bw_no_shared_lmt(struct ice_port_info *pi, u32 agg_id)
3499 {
3500         return ice_sched_set_agg_bw_shared_lmt(pi, agg_id, ICE_SCHED_DFLT_BW);
3501 }
3502
3503 /**
3504  * ice_config_vsi_queue_priority - config VSI queue priority of node
3505  * @pi: port information structure
3506  * @num_qs: number of VSI queues
3507  * @q_ids: queue IDs array
3508  * @q_prio: queue priority array
3509  *
3510  * This function configures the queue node priority (Sibling Priority) of the
3511  * passed in VSI's queue(s) for a given traffic class (TC).
3512  */
3513 enum ice_status
3514 ice_cfg_vsi_q_priority(struct ice_port_info *pi, u16 num_qs, u32 *q_ids,
3515                        u8 *q_prio)
3516 {
3517         enum ice_status status = ICE_ERR_PARAM;
3518         u16 i;
3519
3520         ice_acquire_lock(&pi->sched_lock);
3521
3522         for (i = 0; i < num_qs; i++) {
3523                 struct ice_sched_node *node;
3524
3525                 node = ice_sched_find_node_by_teid(pi->root, q_ids[i]);
3526                 if (!node || node->info.data.elem_type !=
3527                     ICE_AQC_ELEM_TYPE_LEAF) {
3528                         status = ICE_ERR_PARAM;
3529                         break;
3530                 }
3531                 /* Configure Priority */
3532                 status = ice_sched_cfg_sibl_node_prio(pi, node, q_prio[i]);
3533                 if (status)
3534                         break;
3535         }
3536
3537         ice_release_lock(&pi->sched_lock);
3538         return status;
3539 }
3540
3541 /**
3542  * ice_cfg_agg_vsi_priority_per_tc - config aggregator's VSI priority per TC
3543  * @pi: port information structure
3544  * @agg_id: Aggregator ID
3545  * @num_vsis: number of VSI(s)
3546  * @vsi_handle_arr: array of software VSI handles
3547  * @node_prio: pointer to node priority
3548  * @tc: traffic class
3549  *
3550  * This function configures the node priority (Sibling Priority) of the
3551  * passed in VSI's for a given traffic class (TC) of an Aggregator ID.
3552  */
3553 enum ice_status
3554 ice_cfg_agg_vsi_priority_per_tc(struct ice_port_info *pi, u32 agg_id,
3555                                 u16 num_vsis, u16 *vsi_handle_arr,
3556                                 u8 *node_prio, u8 tc)
3557 {
3558         struct ice_sched_agg_vsi_info *agg_vsi_info;
3559         struct ice_sched_node *tc_node, *agg_node;
3560         enum ice_status status = ICE_ERR_PARAM;
3561         struct ice_sched_agg_info *agg_info;
3562         bool agg_id_present = false;
3563         struct ice_hw *hw = pi->hw;
3564         u16 i;
3565
3566         ice_acquire_lock(&pi->sched_lock);
3567         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
3568                             list_entry)
3569                 if (agg_info->agg_id == agg_id) {
3570                         agg_id_present = true;
3571                         break;
3572                 }
3573         if (!agg_id_present)
3574                 goto exit_agg_priority_per_tc;
3575
3576         tc_node = ice_sched_get_tc_node(pi, tc);
3577         if (!tc_node)
3578                 goto exit_agg_priority_per_tc;
3579
3580         agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
3581         if (!agg_node)
3582                 goto exit_agg_priority_per_tc;
3583
3584         if (num_vsis > hw->max_children[agg_node->tx_sched_layer])
3585                 goto exit_agg_priority_per_tc;
3586
3587         for (i = 0; i < num_vsis; i++) {
3588                 struct ice_sched_node *vsi_node;
3589                 bool vsi_handle_valid = false;
3590                 u16 vsi_handle;
3591
3592                 status = ICE_ERR_PARAM;
3593                 vsi_handle = vsi_handle_arr[i];
3594                 if (!ice_is_vsi_valid(hw, vsi_handle))
3595                         goto exit_agg_priority_per_tc;
3596                 /* Verify child nodes before applying settings */
3597                 LIST_FOR_EACH_ENTRY(agg_vsi_info, &agg_info->agg_vsi_list,
3598                                     ice_sched_agg_vsi_info, list_entry)
3599                         if (agg_vsi_info->vsi_handle == vsi_handle) {
3600                                 /* cppcheck-suppress unreadVariable */
3601                                 vsi_handle_valid = true;
3602                                 break;
3603                         }
3604
3605                 if (!vsi_handle_valid)
3606                         goto exit_agg_priority_per_tc;
3607
3608                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
3609                 if (!vsi_node)
3610                         goto exit_agg_priority_per_tc;
3611
3612                 if (ice_sched_find_node_in_subtree(hw, agg_node, vsi_node)) {
3613                         /* Configure Priority */
3614                         status = ice_sched_cfg_sibl_node_prio(pi, vsi_node,
3615                                                               node_prio[i]);
3616                         if (status)
3617                                 break;
3618                         status = ice_sched_save_vsi_prio(pi, vsi_handle, tc,
3619                                                          node_prio[i]);
3620                         if (status)
3621                                 break;
3622                 }
3623         }
3624
3625 exit_agg_priority_per_tc:
3626         ice_release_lock(&pi->sched_lock);
3627         return status;
3628 }
3629
3630 /**
3631  * ice_cfg_vsi_bw_alloc - config VSI BW alloc per TC
3632  * @pi: port information structure
3633  * @vsi_handle: software VSI handle
3634  * @ena_tcmap: enabled TC map
3635  * @rl_type: Rate limit type CIR/EIR
3636  * @bw_alloc: Array of BW alloc
3637  *
3638  * This function configures the BW allocation of the passed in VSI's
3639  * node(s) for enabled traffic class.
3640  */
3641 enum ice_status
3642 ice_cfg_vsi_bw_alloc(struct ice_port_info *pi, u16 vsi_handle, u8 ena_tcmap,
3643                      enum ice_rl_type rl_type, u8 *bw_alloc)
3644 {
3645         enum ice_status status = ICE_SUCCESS;
3646         u8 tc;
3647
3648         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
3649                 return ICE_ERR_PARAM;
3650
3651         ice_acquire_lock(&pi->sched_lock);
3652
3653         /* Return success if no nodes are present across TC */
3654         ice_for_each_traffic_class(tc) {
3655                 struct ice_sched_node *tc_node, *vsi_node;
3656
3657                 if (!ice_is_tc_ena(ena_tcmap, tc))
3658                         continue;
3659
3660                 tc_node = ice_sched_get_tc_node(pi, tc);
3661                 if (!tc_node)
3662                         continue;
3663
3664                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
3665                 if (!vsi_node)
3666                         continue;
3667
3668                 status = ice_sched_cfg_node_bw_alloc(pi->hw, vsi_node, rl_type,
3669                                                      bw_alloc[tc]);
3670                 if (status)
3671                         break;
3672                 status = ice_sched_save_vsi_bw_alloc(pi, vsi_handle, tc,
3673                                                      rl_type, bw_alloc[tc]);
3674                 if (status)
3675                         break;
3676         }
3677
3678         ice_release_lock(&pi->sched_lock);
3679         return status;
3680 }
3681
3682 /**
3683  * ice_cfg_agg_bw_alloc - config aggregator BW alloc
3684  * @pi: port information structure
3685  * @agg_id: aggregator ID
3686  * @ena_tcmap: enabled TC map
3687  * @rl_type: rate limit type CIR/EIR
3688  * @bw_alloc: array of BW alloc
3689  *
3690  * This function configures the BW allocation of passed in aggregator for
3691  * enabled traffic class(s).
3692  */
3693 enum ice_status
3694 ice_cfg_agg_bw_alloc(struct ice_port_info *pi, u32 agg_id, u8 ena_tcmap,
3695                      enum ice_rl_type rl_type, u8 *bw_alloc)
3696 {
3697         struct ice_sched_agg_info *agg_info;
3698         bool agg_id_present = false;
3699         enum ice_status status = ICE_SUCCESS;
3700         struct ice_hw *hw = pi->hw;
3701         u8 tc;
3702
3703         ice_acquire_lock(&pi->sched_lock);
3704         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
3705                             list_entry)
3706                 if (agg_info->agg_id == agg_id) {
3707                         agg_id_present = true;
3708                         break;
3709                 }
3710         if (!agg_id_present) {
3711                 status = ICE_ERR_PARAM;
3712                 goto exit_cfg_agg_bw_alloc;
3713         }
3714
3715         /* Return success if no nodes are present across TC */
3716         ice_for_each_traffic_class(tc) {
3717                 struct ice_sched_node *tc_node, *agg_node;
3718
3719                 if (!ice_is_tc_ena(ena_tcmap, tc))
3720                         continue;
3721
3722                 tc_node = ice_sched_get_tc_node(pi, tc);
3723                 if (!tc_node)
3724                         continue;
3725
3726                 agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
3727                 if (!agg_node)
3728                         continue;
3729
3730                 status = ice_sched_cfg_node_bw_alloc(hw, agg_node, rl_type,
3731                                                      bw_alloc[tc]);
3732                 if (status)
3733                         break;
3734                 status = ice_sched_save_agg_bw_alloc(pi, agg_id, tc, rl_type,
3735                                                      bw_alloc[tc]);
3736                 if (status)
3737                         break;
3738         }
3739
3740 exit_cfg_agg_bw_alloc:
3741         ice_release_lock(&pi->sched_lock);
3742         return status;
3743 }
3744
3745 /**
3746  * ice_sched_calc_wakeup - calculate RL profile wakeup parameter
3747  * @hw: pointer to the HW struct
3748  * @bw: bandwidth in Kbps
3749  *
3750  * This function calculates the wakeup parameter of RL profile.
3751  */
3752 static u16 ice_sched_calc_wakeup(struct ice_hw *hw, s32 bw)
3753 {
3754         s64 bytes_per_sec, wakeup_int, wakeup_a, wakeup_b, wakeup_f;
3755         s32 wakeup_f_int;
3756         u16 wakeup = 0;
3757
3758         /* Get the wakeup integer value */
3759         bytes_per_sec = DIV_64BIT(((s64)bw * 1000), BITS_PER_BYTE);
3760         wakeup_int = DIV_64BIT(hw->psm_clk_freq, bytes_per_sec);
3761         if (wakeup_int > 63) {
3762                 wakeup = (u16)((1 << 15) | wakeup_int);
3763         } else {
3764                 /* Calculate fraction value up to 4 decimals
3765                  * Convert Integer value to a constant multiplier
3766                  */
3767                 wakeup_b = (s64)ICE_RL_PROF_MULTIPLIER * wakeup_int;
3768                 wakeup_a = DIV_64BIT((s64)ICE_RL_PROF_MULTIPLIER *
3769                                      hw->psm_clk_freq, bytes_per_sec);
3770
3771                 /* Get Fraction value */
3772                 wakeup_f = wakeup_a - wakeup_b;
3773
3774                 /* Round up the Fractional value via Ceil(Fractional value) */
3775                 if (wakeup_f > DIV_64BIT(ICE_RL_PROF_MULTIPLIER, 2))
3776                         wakeup_f += 1;
3777
3778                 wakeup_f_int = (s32)DIV_64BIT(wakeup_f * ICE_RL_PROF_FRACTION,
3779                                               ICE_RL_PROF_MULTIPLIER);
3780                 wakeup |= (u16)(wakeup_int << 9);
3781                 wakeup |= (u16)(0x1ff & wakeup_f_int);
3782         }
3783
3784         return wakeup;
3785 }
3786
3787 /**
3788  * ice_sched_bw_to_rl_profile - convert BW to profile parameters
3789  * @hw: pointer to the HW struct
3790  * @bw: bandwidth in Kbps
3791  * @profile: profile parameters to return
3792  *
3793  * This function converts the BW to profile structure format.
3794  */
3795 static enum ice_status
3796 ice_sched_bw_to_rl_profile(struct ice_hw *hw, u32 bw,
3797                            struct ice_aqc_rl_profile_elem *profile)
3798 {
3799         enum ice_status status = ICE_ERR_PARAM;
3800         s64 bytes_per_sec, ts_rate, mv_tmp;
3801         bool found = false;
3802         s32 encode = 0;
3803         s64 mv = 0;
3804         s32 i;
3805
3806         /* Bw settings range is from 0.5Mb/sec to 100Gb/sec */
3807         if (bw < ICE_SCHED_MIN_BW || bw > ICE_SCHED_MAX_BW)
3808                 return status;
3809
3810         /* Bytes per second from Kbps */
3811         bytes_per_sec = DIV_64BIT(((s64)bw * 1000), BITS_PER_BYTE);
3812
3813         /* encode is 6 bits but really useful are 5 bits */
3814         for (i = 0; i < 64; i++) {
3815                 u64 pow_result = BIT_ULL(i);
3816
3817                 ts_rate = DIV_64BIT((s64)hw->psm_clk_freq,
3818                                     pow_result * ICE_RL_PROF_TS_MULTIPLIER);
3819                 if (ts_rate <= 0)
3820                         continue;
3821
3822                 /* Multiplier value */
3823                 mv_tmp = DIV_64BIT(bytes_per_sec * ICE_RL_PROF_MULTIPLIER,
3824                                    ts_rate);
3825
3826                 /* Round to the nearest ICE_RL_PROF_MULTIPLIER */
3827                 mv = round_up_64bit(mv_tmp, ICE_RL_PROF_MULTIPLIER);
3828
3829                 /* First multiplier value greater than the given
3830                  * accuracy bytes
3831                  */
3832                 if (mv > ICE_RL_PROF_ACCURACY_BYTES) {
3833                         encode = i;
3834                         found = true;
3835                         break;
3836                 }
3837         }
3838         if (found) {
3839                 u16 wm;
3840
3841                 wm = ice_sched_calc_wakeup(hw, bw);
3842                 profile->rl_multiply = CPU_TO_LE16(mv);
3843                 profile->wake_up_calc = CPU_TO_LE16(wm);
3844                 profile->rl_encode = CPU_TO_LE16(encode);
3845                 status = ICE_SUCCESS;
3846         } else {
3847                 status = ICE_ERR_DOES_NOT_EXIST;
3848         }
3849
3850         return status;
3851 }
3852
3853 /**
3854  * ice_sched_add_rl_profile - add RL profile
3855  * @pi: port information structure
3856  * @rl_type: type of rate limit BW - min, max, or shared
3857  * @bw: bandwidth in Kbps - Kilo bits per sec
3858  * @layer_num: specifies in which layer to create profile
3859  *
3860  * This function first checks the existing list for corresponding BW
3861  * parameter. If it exists, it returns the associated profile otherwise
3862  * it creates a new rate limit profile for requested BW, and adds it to
3863  * the HW DB and local list. It returns the new profile or null on error.
3864  * The caller needs to hold the scheduler lock.
3865  */
3866 static struct ice_aqc_rl_profile_info *
3867 ice_sched_add_rl_profile(struct ice_port_info *pi,
3868                          enum ice_rl_type rl_type, u32 bw, u8 layer_num)
3869 {
3870         struct ice_aqc_rl_profile_info *rl_prof_elem;
3871         u16 profiles_added = 0, num_profiles = 1;
3872         struct ice_aqc_rl_profile_elem *buf;
3873         enum ice_status status;
3874         struct ice_hw *hw;
3875         u8 profile_type;
3876
3877         if (layer_num >= ICE_AQC_TOPO_MAX_LEVEL_NUM)
3878                 return NULL;
3879         switch (rl_type) {
3880         case ICE_MIN_BW:
3881                 profile_type = ICE_AQC_RL_PROFILE_TYPE_CIR;
3882                 break;
3883         case ICE_MAX_BW:
3884                 profile_type = ICE_AQC_RL_PROFILE_TYPE_EIR;
3885                 break;
3886         case ICE_SHARED_BW:
3887                 profile_type = ICE_AQC_RL_PROFILE_TYPE_SRL;
3888                 break;
3889         default:
3890                 return NULL;
3891         }
3892
3893         if (!pi)
3894                 return NULL;
3895         hw = pi->hw;
3896         LIST_FOR_EACH_ENTRY(rl_prof_elem, &pi->rl_prof_list[layer_num],
3897                             ice_aqc_rl_profile_info, list_entry)
3898                 if ((rl_prof_elem->profile.flags & ICE_AQC_RL_PROFILE_TYPE_M) ==
3899                     profile_type && rl_prof_elem->bw == bw)
3900                         /* Return existing profile ID info */
3901                         return rl_prof_elem;
3902
3903         /* Create new profile ID */
3904         rl_prof_elem = (struct ice_aqc_rl_profile_info *)
3905                 ice_malloc(hw, sizeof(*rl_prof_elem));
3906
3907         if (!rl_prof_elem)
3908                 return NULL;
3909
3910         status = ice_sched_bw_to_rl_profile(hw, bw, &rl_prof_elem->profile);
3911         if (status != ICE_SUCCESS)
3912                 goto exit_add_rl_prof;
3913
3914         rl_prof_elem->bw = bw;
3915         /* layer_num is zero relative, and fw expects level from 1 to 9 */
3916         rl_prof_elem->profile.level = layer_num + 1;
3917         rl_prof_elem->profile.flags = profile_type;
3918         rl_prof_elem->profile.max_burst_size = CPU_TO_LE16(hw->max_burst_size);
3919
3920         /* Create new entry in HW DB */
3921         buf = &rl_prof_elem->profile;
3922         status = ice_aq_add_rl_profile(hw, num_profiles, buf, sizeof(*buf),
3923                                        &profiles_added, NULL);
3924         if (status || profiles_added != num_profiles)
3925                 goto exit_add_rl_prof;
3926
3927         /* Good entry - add in the list */
3928         rl_prof_elem->prof_id_ref = 0;
3929         LIST_ADD(&rl_prof_elem->list_entry, &pi->rl_prof_list[layer_num]);
3930         return rl_prof_elem;
3931
3932 exit_add_rl_prof:
3933         ice_free(hw, rl_prof_elem);
3934         return NULL;
3935 }
3936
3937 /**
3938  * ice_sched_cfg_node_bw_lmt - configure node sched params
3939  * @hw: pointer to the HW struct
3940  * @node: sched node to configure
3941  * @rl_type: rate limit type CIR, EIR, or shared
3942  * @rl_prof_id: rate limit profile ID
3943  *
3944  * This function configures node element's BW limit.
3945  */
3946 static enum ice_status
3947 ice_sched_cfg_node_bw_lmt(struct ice_hw *hw, struct ice_sched_node *node,
3948                           enum ice_rl_type rl_type, u16 rl_prof_id)
3949 {
3950         struct ice_aqc_txsched_elem_data buf;
3951         struct ice_aqc_txsched_elem *data;
3952
3953         buf = node->info;
3954         data = &buf.data;
3955         switch (rl_type) {
3956         case ICE_MIN_BW:
3957                 data->valid_sections |= ICE_AQC_ELEM_VALID_CIR;
3958                 data->cir_bw.bw_profile_idx = CPU_TO_LE16(rl_prof_id);
3959                 break;
3960         case ICE_MAX_BW:
3961                 /* EIR BW and Shared BW profiles are mutually exclusive and
3962                  * hence only one of them may be set for any given element
3963                  */
3964                 if (data->valid_sections & ICE_AQC_ELEM_VALID_SHARED)
3965                         return ICE_ERR_CFG;
3966                 data->valid_sections |= ICE_AQC_ELEM_VALID_EIR;
3967                 data->eir_bw.bw_profile_idx = CPU_TO_LE16(rl_prof_id);
3968                 break;
3969         case ICE_SHARED_BW:
3970                 /* Check for removing shared BW */
3971                 if (rl_prof_id == ICE_SCHED_NO_SHARED_RL_PROF_ID) {
3972                         /* remove shared profile */
3973                         data->valid_sections &= ~ICE_AQC_ELEM_VALID_SHARED;
3974                         data->srl_id = 0; /* clear SRL field */
3975
3976                         /* enable back EIR to default profile */
3977                         data->valid_sections |= ICE_AQC_ELEM_VALID_EIR;
3978                         data->eir_bw.bw_profile_idx =
3979                                 CPU_TO_LE16(ICE_SCHED_DFLT_RL_PROF_ID);
3980                         break;
3981                 }
3982                 /* EIR BW and Shared BW profiles are mutually exclusive and
3983                  * hence only one of them may be set for any given element
3984                  */
3985                 if ((data->valid_sections & ICE_AQC_ELEM_VALID_EIR) &&
3986                     (LE16_TO_CPU(data->eir_bw.bw_profile_idx) !=
3987                             ICE_SCHED_DFLT_RL_PROF_ID))
3988                         return ICE_ERR_CFG;
3989                 /* EIR BW is set to default, disable it */
3990                 data->valid_sections &= ~ICE_AQC_ELEM_VALID_EIR;
3991                 /* Okay to enable shared BW now */
3992                 data->valid_sections |= ICE_AQC_ELEM_VALID_SHARED;
3993                 data->srl_id = CPU_TO_LE16(rl_prof_id);
3994                 break;
3995         default:
3996                 /* Unknown rate limit type */
3997                 return ICE_ERR_PARAM;
3998         }
3999
4000         /* Configure element */
4001         return ice_sched_update_elem(hw, node, &buf);
4002 }
4003
4004 /**
4005  * ice_sched_get_node_rl_prof_id - get node's rate limit profile ID
4006  * @node: sched node
4007  * @rl_type: rate limit type
4008  *
4009  * If existing profile matches, it returns the corresponding rate
4010  * limit profile ID, otherwise it returns an invalid ID as error.
4011  */
4012 static u16
4013 ice_sched_get_node_rl_prof_id(struct ice_sched_node *node,
4014                               enum ice_rl_type rl_type)
4015 {
4016         u16 rl_prof_id = ICE_SCHED_INVAL_PROF_ID;
4017         struct ice_aqc_txsched_elem *data;
4018
4019         data = &node->info.data;
4020         switch (rl_type) {
4021         case ICE_MIN_BW:
4022                 if (data->valid_sections & ICE_AQC_ELEM_VALID_CIR)
4023                         rl_prof_id = LE16_TO_CPU(data->cir_bw.bw_profile_idx);
4024                 break;
4025         case ICE_MAX_BW:
4026                 if (data->valid_sections & ICE_AQC_ELEM_VALID_EIR)
4027                         rl_prof_id = LE16_TO_CPU(data->eir_bw.bw_profile_idx);
4028                 break;
4029         case ICE_SHARED_BW:
4030                 if (data->valid_sections & ICE_AQC_ELEM_VALID_SHARED)
4031                         rl_prof_id = LE16_TO_CPU(data->srl_id);
4032                 break;
4033         default:
4034                 break;
4035         }
4036
4037         return rl_prof_id;
4038 }
4039
4040 /**
4041  * ice_sched_get_rl_prof_layer - selects rate limit profile creation layer
4042  * @pi: port information structure
4043  * @rl_type: type of rate limit BW - min, max, or shared
4044  * @layer_index: layer index
4045  *
4046  * This function returns requested profile creation layer.
4047  */
4048 static u8
4049 ice_sched_get_rl_prof_layer(struct ice_port_info *pi, enum ice_rl_type rl_type,
4050                             u8 layer_index)
4051 {
4052         struct ice_hw *hw = pi->hw;
4053
4054         if (layer_index >= hw->num_tx_sched_layers)
4055                 return ICE_SCHED_INVAL_LAYER_NUM;
4056         switch (rl_type) {
4057         case ICE_MIN_BW:
4058                 if (hw->layer_info[layer_index].max_cir_rl_profiles)
4059                         return layer_index;
4060                 break;
4061         case ICE_MAX_BW:
4062                 if (hw->layer_info[layer_index].max_eir_rl_profiles)
4063                         return layer_index;
4064                 break;
4065         case ICE_SHARED_BW:
4066                 /* if current layer doesn't support SRL profile creation
4067                  * then try a layer up or down.
4068                  */
4069                 if (hw->layer_info[layer_index].max_srl_profiles)
4070                         return layer_index;
4071                 else if (layer_index < hw->num_tx_sched_layers - 1 &&
4072                          hw->layer_info[layer_index + 1].max_srl_profiles)
4073                         return layer_index + 1;
4074                 else if (layer_index > 0 &&
4075                          hw->layer_info[layer_index - 1].max_srl_profiles)
4076                         return layer_index - 1;
4077                 break;
4078         default:
4079                 break;
4080         }
4081         return ICE_SCHED_INVAL_LAYER_NUM;
4082 }
4083
4084 /**
4085  * ice_sched_get_srl_node - get shared rate limit node
4086  * @node: tree node
4087  * @srl_layer: shared rate limit layer
4088  *
4089  * This function returns SRL node to be used for shared rate limit purpose.
4090  * The caller needs to hold scheduler lock.
4091  */
4092 static struct ice_sched_node *
4093 ice_sched_get_srl_node(struct ice_sched_node *node, u8 srl_layer)
4094 {
4095         if (srl_layer > node->tx_sched_layer)
4096                 return node->children[0];
4097         else if (srl_layer < node->tx_sched_layer)
4098                 /* Node can't be created without a parent. It will always
4099                  * have a valid parent except root node.
4100                  */
4101                 return node->parent;
4102         else
4103                 return node;
4104 }
4105
4106 /**
4107  * ice_sched_rm_rl_profile - remove RL profile ID
4108  * @pi: port information structure
4109  * @layer_num: layer number where profiles are saved
4110  * @profile_type: profile type like EIR, CIR, or SRL
4111  * @profile_id: profile ID to remove
4112  *
4113  * This function removes rate limit profile from layer 'layer_num' of type
4114  * 'profile_type' and profile ID as 'profile_id'. The caller needs to hold
4115  * scheduler lock.
4116  */
4117 static enum ice_status
4118 ice_sched_rm_rl_profile(struct ice_port_info *pi, u8 layer_num, u8 profile_type,
4119                         u16 profile_id)
4120 {
4121         struct ice_aqc_rl_profile_info *rl_prof_elem;
4122         enum ice_status status = ICE_SUCCESS;
4123
4124         if (layer_num >= ICE_AQC_TOPO_MAX_LEVEL_NUM)
4125                 return ICE_ERR_PARAM;
4126         /* Check the existing list for RL profile */
4127         LIST_FOR_EACH_ENTRY(rl_prof_elem, &pi->rl_prof_list[layer_num],
4128                             ice_aqc_rl_profile_info, list_entry)
4129                 if ((rl_prof_elem->profile.flags & ICE_AQC_RL_PROFILE_TYPE_M) ==
4130                     profile_type &&
4131                     LE16_TO_CPU(rl_prof_elem->profile.profile_id) ==
4132                     profile_id) {
4133                         if (rl_prof_elem->prof_id_ref)
4134                                 rl_prof_elem->prof_id_ref--;
4135
4136                         /* Remove old profile ID from database */
4137                         status = ice_sched_del_rl_profile(pi->hw, rl_prof_elem);
4138                         if (status && status != ICE_ERR_IN_USE)
4139                                 ice_debug(pi->hw, ICE_DBG_SCHED, "Remove rl profile failed\n");
4140                         break;
4141                 }
4142         if (status == ICE_ERR_IN_USE)
4143                 status = ICE_SUCCESS;
4144         return status;
4145 }
4146
4147 /**
4148  * ice_sched_set_node_bw_dflt - set node's bandwidth limit to default
4149  * @pi: port information structure
4150  * @node: pointer to node structure
4151  * @rl_type: rate limit type min, max, or shared
4152  * @layer_num: layer number where RL profiles are saved
4153  *
4154  * This function configures node element's BW rate limit profile ID of
4155  * type CIR, EIR, or SRL to default. This function needs to be called
4156  * with the scheduler lock held.
4157  */
4158 static enum ice_status
4159 ice_sched_set_node_bw_dflt(struct ice_port_info *pi,
4160                            struct ice_sched_node *node,
4161                            enum ice_rl_type rl_type, u8 layer_num)
4162 {
4163         enum ice_status status;
4164         struct ice_hw *hw;
4165         u8 profile_type;
4166         u16 rl_prof_id;
4167         u16 old_id;
4168
4169         hw = pi->hw;
4170         switch (rl_type) {
4171         case ICE_MIN_BW:
4172                 profile_type = ICE_AQC_RL_PROFILE_TYPE_CIR;
4173                 rl_prof_id = ICE_SCHED_DFLT_RL_PROF_ID;
4174                 break;
4175         case ICE_MAX_BW:
4176                 profile_type = ICE_AQC_RL_PROFILE_TYPE_EIR;
4177                 rl_prof_id = ICE_SCHED_DFLT_RL_PROF_ID;
4178                 break;
4179         case ICE_SHARED_BW:
4180                 profile_type = ICE_AQC_RL_PROFILE_TYPE_SRL;
4181                 /* No SRL is configured for default case */
4182                 rl_prof_id = ICE_SCHED_NO_SHARED_RL_PROF_ID;
4183                 break;
4184         default:
4185                 return ICE_ERR_PARAM;
4186         }
4187         /* Save existing RL prof ID for later clean up */
4188         old_id = ice_sched_get_node_rl_prof_id(node, rl_type);
4189         /* Configure BW scheduling parameters */
4190         status = ice_sched_cfg_node_bw_lmt(hw, node, rl_type, rl_prof_id);
4191         if (status)
4192                 return status;
4193
4194         /* Remove stale RL profile ID */
4195         if (old_id == ICE_SCHED_DFLT_RL_PROF_ID ||
4196             old_id == ICE_SCHED_INVAL_PROF_ID)
4197                 return ICE_SUCCESS;
4198
4199         return ice_sched_rm_rl_profile(pi, layer_num, profile_type, old_id);
4200 }
4201
4202 /**
4203  * ice_sched_set_eir_srl_excl - set EIR/SRL exclusiveness
4204  * @pi: port information structure
4205  * @node: pointer to node structure
4206  * @layer_num: layer number where rate limit profiles are saved
4207  * @rl_type: rate limit type min, max, or shared
4208  * @bw: bandwidth value
4209  *
4210  * This function prepares node element's bandwidth to SRL or EIR exclusively.
4211  * EIR BW and Shared BW profiles are mutually exclusive and hence only one of
4212  * them may be set for any given element. This function needs to be called
4213  * with the scheduler lock held.
4214  */
4215 static enum ice_status
4216 ice_sched_set_eir_srl_excl(struct ice_port_info *pi,
4217                            struct ice_sched_node *node,
4218                            u8 layer_num, enum ice_rl_type rl_type, u32 bw)
4219 {
4220         if (rl_type == ICE_SHARED_BW) {
4221                 /* SRL node passed in this case, it may be different node */
4222                 if (bw == ICE_SCHED_DFLT_BW)
4223                         /* SRL being removed, ice_sched_cfg_node_bw_lmt()
4224                          * enables EIR to default. EIR is not set in this
4225                          * case, so no additional action is required.
4226                          */
4227                         return ICE_SUCCESS;
4228
4229                 /* SRL being configured, set EIR to default here.
4230                  * ice_sched_cfg_node_bw_lmt() disables EIR when it
4231                  * configures SRL
4232                  */
4233                 return ice_sched_set_node_bw_dflt(pi, node, ICE_MAX_BW,
4234                                                   layer_num);
4235         } else if (rl_type == ICE_MAX_BW &&
4236                    node->info.data.valid_sections & ICE_AQC_ELEM_VALID_SHARED) {
4237                 /* Remove Shared profile. Set default shared BW call
4238                  * removes shared profile for a node.
4239                  */
4240                 return ice_sched_set_node_bw_dflt(pi, node,
4241                                                   ICE_SHARED_BW,
4242                                                   layer_num);
4243         }
4244         return ICE_SUCCESS;
4245 }
4246
4247 /**
4248  * ice_sched_set_node_bw - set node's bandwidth
4249  * @pi: port information structure
4250  * @node: tree node
4251  * @rl_type: rate limit type min, max, or shared
4252  * @bw: bandwidth in Kbps - Kilo bits per sec
4253  * @layer_num: layer number
4254  *
4255  * This function adds new profile corresponding to requested BW, configures
4256  * node's RL profile ID of type CIR, EIR, or SRL, and removes old profile
4257  * ID from local database. The caller needs to hold scheduler lock.
4258  */
4259 static enum ice_status
4260 ice_sched_set_node_bw(struct ice_port_info *pi, struct ice_sched_node *node,
4261                       enum ice_rl_type rl_type, u32 bw, u8 layer_num)
4262 {
4263         struct ice_aqc_rl_profile_info *rl_prof_info;
4264         enum ice_status status = ICE_ERR_PARAM;
4265         struct ice_hw *hw = pi->hw;
4266         u16 old_id, rl_prof_id;
4267
4268         rl_prof_info = ice_sched_add_rl_profile(pi, rl_type, bw, layer_num);
4269         if (!rl_prof_info)
4270                 return status;
4271
4272         rl_prof_id = LE16_TO_CPU(rl_prof_info->profile.profile_id);
4273
4274         /* Save existing RL prof ID for later clean up */
4275         old_id = ice_sched_get_node_rl_prof_id(node, rl_type);
4276         /* Configure BW scheduling parameters */
4277         status = ice_sched_cfg_node_bw_lmt(hw, node, rl_type, rl_prof_id);
4278         if (status)
4279                 return status;
4280
4281         /* New changes has been applied */
4282         /* Increment the profile ID reference count */
4283         rl_prof_info->prof_id_ref++;
4284
4285         /* Check for old ID removal */
4286         if ((old_id == ICE_SCHED_DFLT_RL_PROF_ID && rl_type != ICE_SHARED_BW) ||
4287             old_id == ICE_SCHED_INVAL_PROF_ID || old_id == rl_prof_id)
4288                 return ICE_SUCCESS;
4289
4290         return ice_sched_rm_rl_profile(pi, layer_num,
4291                                        rl_prof_info->profile.flags &
4292                                        ICE_AQC_RL_PROFILE_TYPE_M, old_id);
4293 }
4294
4295 /**
4296  * ice_sched_set_node_bw_lmt - set node's BW limit
4297  * @pi: port information structure
4298  * @node: tree node
4299  * @rl_type: rate limit type min, max, or shared
4300  * @bw: bandwidth in Kbps - Kilo bits per sec
4301  *
4302  * It updates node's BW limit parameters like BW RL profile ID of type CIR,
4303  * EIR, or SRL. The caller needs to hold scheduler lock.
4304  */
4305 static enum ice_status
4306 ice_sched_set_node_bw_lmt(struct ice_port_info *pi, struct ice_sched_node *node,
4307                           enum ice_rl_type rl_type, u32 bw)
4308 {
4309         struct ice_sched_node *cfg_node = node;
4310         enum ice_status status;
4311
4312         struct ice_hw *hw;
4313         u8 layer_num;
4314
4315         if (!pi)
4316                 return ICE_ERR_PARAM;
4317         hw = pi->hw;
4318         /* Remove unused RL profile IDs from HW and SW DB */
4319         ice_sched_rm_unused_rl_prof(pi);
4320         layer_num = ice_sched_get_rl_prof_layer(pi, rl_type,
4321                                                 node->tx_sched_layer);
4322         if (layer_num >= hw->num_tx_sched_layers)
4323                 return ICE_ERR_PARAM;
4324
4325         if (rl_type == ICE_SHARED_BW) {
4326                 /* SRL node may be different */
4327                 cfg_node = ice_sched_get_srl_node(node, layer_num);
4328                 if (!cfg_node)
4329                         return ICE_ERR_CFG;
4330         }
4331         /* EIR BW and Shared BW profiles are mutually exclusive and
4332          * hence only one of them may be set for any given element
4333          */
4334         status = ice_sched_set_eir_srl_excl(pi, cfg_node, layer_num, rl_type,
4335                                             bw);
4336         if (status)
4337                 return status;
4338         if (bw == ICE_SCHED_DFLT_BW)
4339                 return ice_sched_set_node_bw_dflt(pi, cfg_node, rl_type,
4340                                                   layer_num);
4341         return ice_sched_set_node_bw(pi, cfg_node, rl_type, bw, layer_num);
4342 }
4343
4344 /**
4345  * ice_sched_set_node_bw_dflt_lmt - set node's BW limit to default
4346  * @pi: port information structure
4347  * @node: pointer to node structure
4348  * @rl_type: rate limit type min, max, or shared
4349  *
4350  * This function configures node element's BW rate limit profile ID of
4351  * type CIR, EIR, or SRL to default. This function needs to be called
4352  * with the scheduler lock held.
4353  */
4354 static enum ice_status
4355 ice_sched_set_node_bw_dflt_lmt(struct ice_port_info *pi,
4356                                struct ice_sched_node *node,
4357                                enum ice_rl_type rl_type)
4358 {
4359         return ice_sched_set_node_bw_lmt(pi, node, rl_type,
4360                                          ICE_SCHED_DFLT_BW);
4361 }
4362
4363 /**
4364  * ice_sched_validate_srl_node - Check node for SRL applicability
4365  * @node: sched node to configure
4366  * @sel_layer: selected SRL layer
4367  *
4368  * This function checks if the SRL can be applied to a selceted layer node on
4369  * behalf of the requested node (first argument). This function needs to be
4370  * called with scheduler lock held.
4371  */
4372 static enum ice_status
4373 ice_sched_validate_srl_node(struct ice_sched_node *node, u8 sel_layer)
4374 {
4375         /* SRL profiles are not available on all layers. Check if the
4376          * SRL profile can be applied to a node above or below the
4377          * requested node. SRL configuration is possible only if the
4378          * selected layer's node has single child.
4379          */
4380         if (sel_layer == node->tx_sched_layer ||
4381             ((sel_layer == node->tx_sched_layer + 1) &&
4382             node->num_children == 1) ||
4383             ((sel_layer == node->tx_sched_layer - 1) &&
4384             (node->parent && node->parent->num_children == 1)))
4385                 return ICE_SUCCESS;
4386
4387         return ICE_ERR_CFG;
4388 }
4389
4390 /**
4391  * ice_sched_save_q_bw - save queue node's BW information
4392  * @q_ctx: queue context structure
4393  * @rl_type: rate limit type min, max, or shared
4394  * @bw: bandwidth in Kbps - Kilo bits per sec
4395  *
4396  * Save BW information of queue type node for post replay use.
4397  */
4398 static enum ice_status
4399 ice_sched_save_q_bw(struct ice_q_ctx *q_ctx, enum ice_rl_type rl_type, u32 bw)
4400 {
4401         switch (rl_type) {
4402         case ICE_MIN_BW:
4403                 ice_set_clear_cir_bw(&q_ctx->bw_t_info, bw);
4404                 break;
4405         case ICE_MAX_BW:
4406                 ice_set_clear_eir_bw(&q_ctx->bw_t_info, bw);
4407                 break;
4408         case ICE_SHARED_BW:
4409                 ice_set_clear_shared_bw(&q_ctx->bw_t_info, bw);
4410                 break;
4411         default:
4412                 return ICE_ERR_PARAM;
4413         }
4414         return ICE_SUCCESS;
4415 }
4416
4417 /**
4418  * ice_sched_set_q_bw_lmt - sets queue BW limit
4419  * @pi: port information structure
4420  * @vsi_handle: sw VSI handle
4421  * @tc: traffic class
4422  * @q_handle: software queue handle
4423  * @rl_type: min, max, or shared
4424  * @bw: bandwidth in Kbps
4425  *
4426  * This function sets BW limit of queue scheduling node.
4427  */
4428 static enum ice_status
4429 ice_sched_set_q_bw_lmt(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
4430                        u16 q_handle, enum ice_rl_type rl_type, u32 bw)
4431 {
4432         enum ice_status status = ICE_ERR_PARAM;
4433         struct ice_sched_node *node;
4434         struct ice_q_ctx *q_ctx;
4435
4436         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4437                 return ICE_ERR_PARAM;
4438         ice_acquire_lock(&pi->sched_lock);
4439         q_ctx = ice_get_lan_q_ctx(pi->hw, vsi_handle, tc, q_handle);
4440         if (!q_ctx)
4441                 goto exit_q_bw_lmt;
4442         node = ice_sched_find_node_by_teid(pi->root, q_ctx->q_teid);
4443         if (!node) {
4444                 ice_debug(pi->hw, ICE_DBG_SCHED, "Wrong q_teid\n");
4445                 goto exit_q_bw_lmt;
4446         }
4447
4448         /* Return error if it is not a leaf node */
4449         if (node->info.data.elem_type != ICE_AQC_ELEM_TYPE_LEAF)
4450                 goto exit_q_bw_lmt;
4451
4452         /* SRL bandwidth layer selection */
4453         if (rl_type == ICE_SHARED_BW) {
4454                 u8 sel_layer; /* selected layer */
4455
4456                 sel_layer = ice_sched_get_rl_prof_layer(pi, rl_type,
4457                                                         node->tx_sched_layer);
4458                 if (sel_layer >= pi->hw->num_tx_sched_layers) {
4459                         status = ICE_ERR_PARAM;
4460                         goto exit_q_bw_lmt;
4461                 }
4462                 status = ice_sched_validate_srl_node(node, sel_layer);
4463                 if (status)
4464                         goto exit_q_bw_lmt;
4465         }
4466
4467         if (bw == ICE_SCHED_DFLT_BW)
4468                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, rl_type);
4469         else
4470                 status = ice_sched_set_node_bw_lmt(pi, node, rl_type, bw);
4471
4472         if (!status)
4473                 status = ice_sched_save_q_bw(q_ctx, rl_type, bw);
4474
4475 exit_q_bw_lmt:
4476         ice_release_lock(&pi->sched_lock);
4477         return status;
4478 }
4479
4480 /**
4481  * ice_cfg_q_bw_lmt - configure queue BW limit
4482  * @pi: port information structure
4483  * @vsi_handle: sw VSI handle
4484  * @tc: traffic class
4485  * @q_handle: software queue handle
4486  * @rl_type: min, max, or shared
4487  * @bw: bandwidth in Kbps
4488  *
4489  * This function configures BW limit of queue scheduling node.
4490  */
4491 enum ice_status
4492 ice_cfg_q_bw_lmt(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
4493                  u16 q_handle, enum ice_rl_type rl_type, u32 bw)
4494 {
4495         return ice_sched_set_q_bw_lmt(pi, vsi_handle, tc, q_handle, rl_type,
4496                                       bw);
4497 }
4498
4499 /**
4500  * ice_cfg_q_bw_dflt_lmt - configure queue BW default limit
4501  * @pi: port information structure
4502  * @vsi_handle: sw VSI handle
4503  * @tc: traffic class
4504  * @q_handle: software queue handle
4505  * @rl_type: min, max, or shared
4506  *
4507  * This function configures BW default limit of queue scheduling node.
4508  */
4509 enum ice_status
4510 ice_cfg_q_bw_dflt_lmt(struct ice_port_info *pi, u16 vsi_handle, u8 tc,
4511                       u16 q_handle, enum ice_rl_type rl_type)
4512 {
4513         return ice_sched_set_q_bw_lmt(pi, vsi_handle, tc, q_handle, rl_type,
4514                                       ICE_SCHED_DFLT_BW);
4515 }
4516
4517 /**
4518  * ice_sched_save_tc_node_bw - save TC node BW limit
4519  * @pi: port information structure
4520  * @tc: TC number
4521  * @rl_type: min or max
4522  * @bw: bandwidth in Kbps
4523  *
4524  * This function saves the modified values of bandwidth settings for later
4525  * replay purpose (restore) after reset.
4526  */
4527 static enum ice_status
4528 ice_sched_save_tc_node_bw(struct ice_port_info *pi, u8 tc,
4529                           enum ice_rl_type rl_type, u32 bw)
4530 {
4531         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4532                 return ICE_ERR_PARAM;
4533         switch (rl_type) {
4534         case ICE_MIN_BW:
4535                 ice_set_clear_cir_bw(&pi->tc_node_bw_t_info[tc], bw);
4536                 break;
4537         case ICE_MAX_BW:
4538                 ice_set_clear_eir_bw(&pi->tc_node_bw_t_info[tc], bw);
4539                 break;
4540         case ICE_SHARED_BW:
4541                 ice_set_clear_shared_bw(&pi->tc_node_bw_t_info[tc], bw);
4542                 break;
4543         default:
4544                 return ICE_ERR_PARAM;
4545         }
4546         return ICE_SUCCESS;
4547 }
4548
4549 /**
4550  * ice_sched_set_tc_node_bw_lmt - sets TC node BW limit
4551  * @pi: port information structure
4552  * @tc: TC number
4553  * @rl_type: min or max
4554  * @bw: bandwidth in Kbps
4555  *
4556  * This function configures bandwidth limit of TC node.
4557  */
4558 static enum ice_status
4559 ice_sched_set_tc_node_bw_lmt(struct ice_port_info *pi, u8 tc,
4560                              enum ice_rl_type rl_type, u32 bw)
4561 {
4562         enum ice_status status = ICE_ERR_PARAM;
4563         struct ice_sched_node *tc_node;
4564
4565         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4566                 return status;
4567         ice_acquire_lock(&pi->sched_lock);
4568         tc_node = ice_sched_get_tc_node(pi, tc);
4569         if (!tc_node)
4570                 goto exit_set_tc_node_bw;
4571         if (bw == ICE_SCHED_DFLT_BW)
4572                 status = ice_sched_set_node_bw_dflt_lmt(pi, tc_node, rl_type);
4573         else
4574                 status = ice_sched_set_node_bw_lmt(pi, tc_node, rl_type, bw);
4575         if (!status)
4576                 status = ice_sched_save_tc_node_bw(pi, tc, rl_type, bw);
4577
4578 exit_set_tc_node_bw:
4579         ice_release_lock(&pi->sched_lock);
4580         return status;
4581 }
4582
4583 /**
4584  * ice_cfg_tc_node_bw_lmt - configure TC node BW limit
4585  * @pi: port information structure
4586  * @tc: TC number
4587  * @rl_type: min or max
4588  * @bw: bandwidth in Kbps
4589  *
4590  * This function configures BW limit of TC node.
4591  * Note: The minimum guaranteed reservation is done via DCBX.
4592  */
4593 enum ice_status
4594 ice_cfg_tc_node_bw_lmt(struct ice_port_info *pi, u8 tc,
4595                        enum ice_rl_type rl_type, u32 bw)
4596 {
4597         return ice_sched_set_tc_node_bw_lmt(pi, tc, rl_type, bw);
4598 }
4599
4600 /**
4601  * ice_cfg_tc_node_bw_dflt_lmt - configure TC node BW default limit
4602  * @pi: port information structure
4603  * @tc: TC number
4604  * @rl_type: min or max
4605  *
4606  * This function configures BW default limit of TC node.
4607  */
4608 enum ice_status
4609 ice_cfg_tc_node_bw_dflt_lmt(struct ice_port_info *pi, u8 tc,
4610                             enum ice_rl_type rl_type)
4611 {
4612         return ice_sched_set_tc_node_bw_lmt(pi, tc, rl_type, ICE_SCHED_DFLT_BW);
4613 }
4614
4615 /**
4616  * ice_sched_save_tc_node_bw_alloc - save TC node's BW alloc information
4617  * @pi: port information structure
4618  * @tc: traffic class
4619  * @rl_type: rate limit type min or max
4620  * @bw_alloc: Bandwidth allocation information
4621  *
4622  * Save BW alloc information of VSI type node for post replay use.
4623  */
4624 static enum ice_status
4625 ice_sched_save_tc_node_bw_alloc(struct ice_port_info *pi, u8 tc,
4626                                 enum ice_rl_type rl_type, u16 bw_alloc)
4627 {
4628         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4629                 return ICE_ERR_PARAM;
4630         switch (rl_type) {
4631         case ICE_MIN_BW:
4632                 ice_set_clear_cir_bw_alloc(&pi->tc_node_bw_t_info[tc],
4633                                            bw_alloc);
4634                 break;
4635         case ICE_MAX_BW:
4636                 ice_set_clear_eir_bw_alloc(&pi->tc_node_bw_t_info[tc],
4637                                            bw_alloc);
4638                 break;
4639         default:
4640                 return ICE_ERR_PARAM;
4641         }
4642         return ICE_SUCCESS;
4643 }
4644
4645 /**
4646  * ice_sched_set_tc_node_bw_alloc - set TC node BW alloc
4647  * @pi: port information structure
4648  * @tc: TC number
4649  * @rl_type: min or max
4650  * @bw_alloc: bandwidth alloc
4651  *
4652  * This function configures bandwidth alloc of TC node, also saves the
4653  * changed settings for replay purpose, and return success if it succeeds
4654  * in modifying bandwidth alloc setting.
4655  */
4656 static enum ice_status
4657 ice_sched_set_tc_node_bw_alloc(struct ice_port_info *pi, u8 tc,
4658                                enum ice_rl_type rl_type, u8 bw_alloc)
4659 {
4660         enum ice_status status = ICE_ERR_PARAM;
4661         struct ice_sched_node *tc_node;
4662
4663         if (tc >= ICE_MAX_TRAFFIC_CLASS)
4664                 return status;
4665         ice_acquire_lock(&pi->sched_lock);
4666         tc_node = ice_sched_get_tc_node(pi, tc);
4667         if (!tc_node)
4668                 goto exit_set_tc_node_bw_alloc;
4669         status = ice_sched_cfg_node_bw_alloc(pi->hw, tc_node, rl_type,
4670                                              bw_alloc);
4671         if (status)
4672                 goto exit_set_tc_node_bw_alloc;
4673         status = ice_sched_save_tc_node_bw_alloc(pi, tc, rl_type, bw_alloc);
4674
4675 exit_set_tc_node_bw_alloc:
4676         ice_release_lock(&pi->sched_lock);
4677         return status;
4678 }
4679
4680 /**
4681  * ice_cfg_tc_node_bw_alloc - configure TC node BW alloc
4682  * @pi: port information structure
4683  * @tc: TC number
4684  * @rl_type: min or max
4685  * @bw_alloc: bandwidth alloc
4686  *
4687  * This function configures BW limit of TC node.
4688  * Note: The minimum guaranteed reservation is done via DCBX.
4689  */
4690 enum ice_status
4691 ice_cfg_tc_node_bw_alloc(struct ice_port_info *pi, u8 tc,
4692                          enum ice_rl_type rl_type, u8 bw_alloc)
4693 {
4694         return ice_sched_set_tc_node_bw_alloc(pi, tc, rl_type, bw_alloc);
4695 }
4696
4697 /**
4698  * ice_sched_set_agg_bw_dflt_lmt - set aggregator node's BW limit to default
4699  * @pi: port information structure
4700  * @vsi_handle: software VSI handle
4701  *
4702  * This function retrieves the aggregator ID based on VSI ID and TC,
4703  * and sets node's BW limit to default. This function needs to be
4704  * called with the scheduler lock held.
4705  */
4706 enum ice_status
4707 ice_sched_set_agg_bw_dflt_lmt(struct ice_port_info *pi, u16 vsi_handle)
4708 {
4709         struct ice_vsi_ctx *vsi_ctx;
4710         enum ice_status status = ICE_SUCCESS;
4711         u8 tc;
4712
4713         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4714                 return ICE_ERR_PARAM;
4715         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
4716         if (!vsi_ctx)
4717                 return ICE_ERR_PARAM;
4718
4719         ice_for_each_traffic_class(tc) {
4720                 struct ice_sched_node *node;
4721
4722                 node = vsi_ctx->sched.ag_node[tc];
4723                 if (!node)
4724                         continue;
4725
4726                 /* Set min profile to default */
4727                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, ICE_MIN_BW);
4728                 if (status)
4729                         break;
4730
4731                 /* Set max profile to default */
4732                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, ICE_MAX_BW);
4733                 if (status)
4734                         break;
4735
4736                 /* Remove shared profile, if there is one */
4737                 status = ice_sched_set_node_bw_dflt_lmt(pi, node,
4738                                                         ICE_SHARED_BW);
4739                 if (status)
4740                         break;
4741         }
4742
4743         return status;
4744 }
4745
4746 /**
4747  * ice_sched_get_node_by_id_type - get node from ID type
4748  * @pi: port information structure
4749  * @id: identifier
4750  * @agg_type: type of aggregator
4751  * @tc: traffic class
4752  *
4753  * This function returns node identified by ID of type aggregator, and
4754  * based on traffic class (TC). This function needs to be called with
4755  * the scheduler lock held.
4756  */
4757 static struct ice_sched_node *
4758 ice_sched_get_node_by_id_type(struct ice_port_info *pi, u32 id,
4759                               enum ice_agg_type agg_type, u8 tc)
4760 {
4761         struct ice_sched_node *node = NULL;
4762         struct ice_sched_node *child_node;
4763
4764         switch (agg_type) {
4765         case ICE_AGG_TYPE_VSI: {
4766                 struct ice_vsi_ctx *vsi_ctx;
4767                 u16 vsi_handle = (u16)id;
4768
4769                 if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4770                         break;
4771                 /* Get sched_vsi_info */
4772                 vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
4773                 if (!vsi_ctx)
4774                         break;
4775                 node = vsi_ctx->sched.vsi_node[tc];
4776                 break;
4777         }
4778
4779         case ICE_AGG_TYPE_AGG: {
4780                 struct ice_sched_node *tc_node;
4781
4782                 tc_node = ice_sched_get_tc_node(pi, tc);
4783                 if (tc_node)
4784                         node = ice_sched_get_agg_node(pi, tc_node, id);
4785                 break;
4786         }
4787
4788         case ICE_AGG_TYPE_Q:
4789                 /* The current implementation allows single queue to modify */
4790                 node = ice_sched_get_node(pi, id);
4791                 break;
4792
4793         case ICE_AGG_TYPE_QG:
4794                 /* The current implementation allows single qg to modify */
4795                 child_node = ice_sched_get_node(pi, id);
4796                 if (!child_node)
4797                         break;
4798                 node = child_node->parent;
4799                 break;
4800
4801         default:
4802                 break;
4803         }
4804
4805         return node;
4806 }
4807
4808 /**
4809  * ice_sched_set_node_bw_lmt_per_tc - set node BW limit per TC
4810  * @pi: port information structure
4811  * @id: ID (software VSI handle or AGG ID)
4812  * @agg_type: aggregator type (VSI or AGG type node)
4813  * @tc: traffic class
4814  * @rl_type: min or max
4815  * @bw: bandwidth in Kbps
4816  *
4817  * This function sets BW limit of VSI or Aggregator scheduling node
4818  * based on TC information from passed in argument BW.
4819  */
4820 enum ice_status
4821 ice_sched_set_node_bw_lmt_per_tc(struct ice_port_info *pi, u32 id,
4822                                  enum ice_agg_type agg_type, u8 tc,
4823                                  enum ice_rl_type rl_type, u32 bw)
4824 {
4825         enum ice_status status = ICE_ERR_PARAM;
4826         struct ice_sched_node *node;
4827
4828         if (!pi)
4829                 return status;
4830
4831         if (rl_type == ICE_UNKNOWN_BW)
4832                 return status;
4833
4834         ice_acquire_lock(&pi->sched_lock);
4835         node = ice_sched_get_node_by_id_type(pi, id, agg_type, tc);
4836         if (!node) {
4837                 ice_debug(pi->hw, ICE_DBG_SCHED, "Wrong id, agg type, or tc\n");
4838                 goto exit_set_node_bw_lmt_per_tc;
4839         }
4840         if (bw == ICE_SCHED_DFLT_BW)
4841                 status = ice_sched_set_node_bw_dflt_lmt(pi, node, rl_type);
4842         else
4843                 status = ice_sched_set_node_bw_lmt(pi, node, rl_type, bw);
4844
4845 exit_set_node_bw_lmt_per_tc:
4846         ice_release_lock(&pi->sched_lock);
4847         return status;
4848 }
4849
4850 /**
4851  * ice_sched_validate_vsi_srl_node - validate VSI SRL node
4852  * @pi: port information structure
4853  * @vsi_handle: software VSI handle
4854  *
4855  * This function validates SRL node of the VSI node if available SRL layer is
4856  * different than the VSI node layer on all TC(s).This function needs to be
4857  * called with scheduler lock held.
4858  */
4859 static enum ice_status
4860 ice_sched_validate_vsi_srl_node(struct ice_port_info *pi, u16 vsi_handle)
4861 {
4862         u8 sel_layer = ICE_SCHED_INVAL_LAYER_NUM;
4863         u8 tc;
4864
4865         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4866                 return ICE_ERR_PARAM;
4867
4868         /* Return success if no nodes are present across TC */
4869         ice_for_each_traffic_class(tc) {
4870                 struct ice_sched_node *tc_node, *vsi_node;
4871                 enum ice_rl_type rl_type = ICE_SHARED_BW;
4872                 enum ice_status status;
4873
4874                 tc_node = ice_sched_get_tc_node(pi, tc);
4875                 if (!tc_node)
4876                         continue;
4877
4878                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
4879                 if (!vsi_node)
4880                         continue;
4881
4882                 /* SRL bandwidth layer selection */
4883                 if (sel_layer == ICE_SCHED_INVAL_LAYER_NUM) {
4884                         u8 node_layer = vsi_node->tx_sched_layer;
4885                         u8 layer_num;
4886
4887                         layer_num = ice_sched_get_rl_prof_layer(pi, rl_type,
4888                                                                 node_layer);
4889                         if (layer_num >= pi->hw->num_tx_sched_layers)
4890                                 return ICE_ERR_PARAM;
4891                         sel_layer = layer_num;
4892                 }
4893
4894                 status = ice_sched_validate_srl_node(vsi_node, sel_layer);
4895                 if (status)
4896                         return status;
4897         }
4898         return ICE_SUCCESS;
4899 }
4900
4901 /**
4902  * ice_sched_set_vsi_bw_shared_lmt - set VSI BW shared limit
4903  * @pi: port information structure
4904  * @vsi_handle: software VSI handle
4905  * @bw: bandwidth in Kbps
4906  *
4907  * This function Configures shared rate limiter(SRL) of all VSI type nodes
4908  * across all traffic classes for VSI matching handle. When BW value of
4909  * ICE_SCHED_DFLT_BW is passed, it removes the SRL from the node.
4910  */
4911 enum ice_status
4912 ice_sched_set_vsi_bw_shared_lmt(struct ice_port_info *pi, u16 vsi_handle,
4913                                 u32 bw)
4914 {
4915         enum ice_status status = ICE_SUCCESS;
4916         u8 tc;
4917
4918         if (!pi)
4919                 return ICE_ERR_PARAM;
4920
4921         if (!ice_is_vsi_valid(pi->hw, vsi_handle))
4922                 return ICE_ERR_PARAM;
4923
4924         ice_acquire_lock(&pi->sched_lock);
4925         status = ice_sched_validate_vsi_srl_node(pi, vsi_handle);
4926         if (status)
4927                 goto exit_set_vsi_bw_shared_lmt;
4928         /* Return success if no nodes are present across TC */
4929         ice_for_each_traffic_class(tc) {
4930                 struct ice_sched_node *tc_node, *vsi_node;
4931                 enum ice_rl_type rl_type = ICE_SHARED_BW;
4932
4933                 tc_node = ice_sched_get_tc_node(pi, tc);
4934                 if (!tc_node)
4935                         continue;
4936
4937                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
4938                 if (!vsi_node)
4939                         continue;
4940
4941                 if (bw == ICE_SCHED_DFLT_BW)
4942                         /* It removes existing SRL from the node */
4943                         status = ice_sched_set_node_bw_dflt_lmt(pi, vsi_node,
4944                                                                 rl_type);
4945                 else
4946                         status = ice_sched_set_node_bw_lmt(pi, vsi_node,
4947                                                            rl_type, bw);
4948                 if (status)
4949                         break;
4950                 status = ice_sched_save_vsi_bw(pi, vsi_handle, tc, rl_type, bw);
4951                 if (status)
4952                         break;
4953         }
4954
4955 exit_set_vsi_bw_shared_lmt:
4956         ice_release_lock(&pi->sched_lock);
4957         return status;
4958 }
4959
4960 /**
4961  * ice_sched_validate_agg_srl_node - validate AGG SRL node
4962  * @pi: port information structure
4963  * @agg_id: aggregator ID
4964  *
4965  * This function validates SRL node of the AGG node if available SRL layer is
4966  * different than the AGG node layer on all TC(s).This function needs to be
4967  * called with scheduler lock held.
4968  */
4969 static enum ice_status
4970 ice_sched_validate_agg_srl_node(struct ice_port_info *pi, u32 agg_id)
4971 {
4972         u8 sel_layer = ICE_SCHED_INVAL_LAYER_NUM;
4973         struct ice_sched_agg_info *agg_info;
4974         bool agg_id_present = false;
4975         enum ice_status status = ICE_SUCCESS;
4976         u8 tc;
4977
4978         LIST_FOR_EACH_ENTRY(agg_info, &pi->hw->agg_list, ice_sched_agg_info,
4979                             list_entry)
4980                 if (agg_info->agg_id == agg_id) {
4981                         agg_id_present = true;
4982                         break;
4983                 }
4984         if (!agg_id_present)
4985                 return ICE_ERR_PARAM;
4986         /* Return success if no nodes are present across TC */
4987         ice_for_each_traffic_class(tc) {
4988                 struct ice_sched_node *tc_node, *agg_node;
4989                 enum ice_rl_type rl_type = ICE_SHARED_BW;
4990
4991                 tc_node = ice_sched_get_tc_node(pi, tc);
4992                 if (!tc_node)
4993                         continue;
4994
4995                 agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
4996                 if (!agg_node)
4997                         continue;
4998                 /* SRL bandwidth layer selection */
4999                 if (sel_layer == ICE_SCHED_INVAL_LAYER_NUM) {
5000                         u8 node_layer = agg_node->tx_sched_layer;
5001                         u8 layer_num;
5002
5003                         layer_num = ice_sched_get_rl_prof_layer(pi, rl_type,
5004                                                                 node_layer);
5005                         if (layer_num >= pi->hw->num_tx_sched_layers)
5006                                 return ICE_ERR_PARAM;
5007                         sel_layer = layer_num;
5008                 }
5009
5010                 status = ice_sched_validate_srl_node(agg_node, sel_layer);
5011                 if (status)
5012                         break;
5013         }
5014         return status;
5015 }
5016
5017 /**
5018  * ice_sched_set_agg_bw_shared_lmt - set aggregator BW shared limit
5019  * @pi: port information structure
5020  * @agg_id: aggregator ID
5021  * @bw: bandwidth in Kbps
5022  *
5023  * This function configures the shared rate limiter(SRL) of all aggregator type
5024  * nodes across all traffic classes for aggregator matching agg_id. When
5025  * BW value of ICE_SCHED_DFLT_BW is passed, it removes SRL from the
5026  * node(s).
5027  */
5028 enum ice_status
5029 ice_sched_set_agg_bw_shared_lmt(struct ice_port_info *pi, u32 agg_id, u32 bw)
5030 {
5031         struct ice_sched_agg_info *agg_info;
5032         struct ice_sched_agg_info *tmp;
5033         bool agg_id_present = false;
5034         enum ice_status status = ICE_SUCCESS;
5035         u8 tc;
5036
5037         if (!pi)
5038                 return ICE_ERR_PARAM;
5039
5040         ice_acquire_lock(&pi->sched_lock);
5041         status = ice_sched_validate_agg_srl_node(pi, agg_id);
5042         if (status)
5043                 goto exit_agg_bw_shared_lmt;
5044
5045         LIST_FOR_EACH_ENTRY_SAFE(agg_info, tmp, &pi->hw->agg_list,
5046                                  ice_sched_agg_info, list_entry)
5047                 if (agg_info->agg_id == agg_id) {
5048                         agg_id_present = true;
5049                         break;
5050                 }
5051
5052         if (!agg_id_present) {
5053                 status = ICE_ERR_PARAM;
5054                 goto exit_agg_bw_shared_lmt;
5055         }
5056
5057         /* Return success if no nodes are present across TC */
5058         ice_for_each_traffic_class(tc) {
5059                 enum ice_rl_type rl_type = ICE_SHARED_BW;
5060                 struct ice_sched_node *tc_node, *agg_node;
5061
5062                 tc_node = ice_sched_get_tc_node(pi, tc);
5063                 if (!tc_node)
5064                         continue;
5065
5066                 agg_node = ice_sched_get_agg_node(pi, tc_node, agg_id);
5067                 if (!agg_node)
5068                         continue;
5069
5070                 if (bw == ICE_SCHED_DFLT_BW)
5071                         /* It removes existing SRL from the node */
5072                         status = ice_sched_set_node_bw_dflt_lmt(pi, agg_node,
5073                                                                 rl_type);
5074                 else
5075                         status = ice_sched_set_node_bw_lmt(pi, agg_node,
5076                                                            rl_type, bw);
5077                 if (status)
5078                         break;
5079                 status = ice_sched_save_agg_bw(pi, agg_id, tc, rl_type, bw);
5080                 if (status)
5081                         break;
5082         }
5083
5084 exit_agg_bw_shared_lmt:
5085         ice_release_lock(&pi->sched_lock);
5086         return status;
5087 }
5088
5089 /**
5090  * ice_sched_cfg_sibl_node_prio - configure node sibling priority
5091  * @pi: port information structure
5092  * @node: sched node to configure
5093  * @priority: sibling priority
5094  *
5095  * This function configures node element's sibling priority only. This
5096  * function needs to be called with scheduler lock held.
5097  */
5098 enum ice_status
5099 ice_sched_cfg_sibl_node_prio(struct ice_port_info *pi,
5100                              struct ice_sched_node *node, u8 priority)
5101 {
5102         struct ice_aqc_txsched_elem_data buf;
5103         struct ice_aqc_txsched_elem *data;
5104         struct ice_hw *hw = pi->hw;
5105         enum ice_status status;
5106
5107         if (!hw)
5108                 return ICE_ERR_PARAM;
5109         buf = node->info;
5110         data = &buf.data;
5111         data->valid_sections |= ICE_AQC_ELEM_VALID_GENERIC;
5112         priority = (priority << ICE_AQC_ELEM_GENERIC_PRIO_S) &
5113                    ICE_AQC_ELEM_GENERIC_PRIO_M;
5114         data->generic &= ~ICE_AQC_ELEM_GENERIC_PRIO_M;
5115         data->generic |= priority;
5116
5117         /* Configure element */
5118         status = ice_sched_update_elem(hw, node, &buf);
5119         return status;
5120 }
5121
5122 /**
5123  * ice_cfg_rl_burst_size - Set burst size value
5124  * @hw: pointer to the HW struct
5125  * @bytes: burst size in bytes
5126  *
5127  * This function configures/set the burst size to requested new value. The new
5128  * burst size value is used for future rate limit calls. It doesn't change the
5129  * existing or previously created RL profiles.
5130  */
5131 enum ice_status ice_cfg_rl_burst_size(struct ice_hw *hw, u32 bytes)
5132 {
5133         u16 burst_size_to_prog;
5134
5135         if (bytes < ICE_MIN_BURST_SIZE_ALLOWED ||
5136             bytes > ICE_MAX_BURST_SIZE_ALLOWED)
5137                 return ICE_ERR_PARAM;
5138         if (ice_round_to_num(bytes, 64) <=
5139             ICE_MAX_BURST_SIZE_64_BYTE_GRANULARITY) {
5140                 /* 64 byte granularity case */
5141                 /* Disable MSB granularity bit */
5142                 burst_size_to_prog = ICE_64_BYTE_GRANULARITY;
5143                 /* round number to nearest 64 byte granularity */
5144                 bytes = ice_round_to_num(bytes, 64);
5145                 /* The value is in 64 byte chunks */
5146                 burst_size_to_prog |= (u16)(bytes / 64);
5147         } else {
5148                 /* k bytes granularity case */
5149                 /* Enable MSB granularity bit */
5150                 burst_size_to_prog = ICE_KBYTE_GRANULARITY;
5151                 /* round number to nearest 1024 granularity */
5152                 bytes = ice_round_to_num(bytes, 1024);
5153                 /* check rounding doesn't go beyond allowed */
5154                 if (bytes > ICE_MAX_BURST_SIZE_KBYTE_GRANULARITY)
5155                         bytes = ICE_MAX_BURST_SIZE_KBYTE_GRANULARITY;
5156                 /* The value is in k bytes */
5157                 burst_size_to_prog |= (u16)(bytes / 1024);
5158         }
5159         hw->max_burst_size = burst_size_to_prog;
5160         return ICE_SUCCESS;
5161 }
5162
5163 /**
5164  * ice_sched_replay_node_prio - re-configure node priority
5165  * @hw: pointer to the HW struct
5166  * @node: sched node to configure
5167  * @priority: priority value
5168  *
5169  * This function configures node element's priority value. It
5170  * needs to be called with scheduler lock held.
5171  */
5172 static enum ice_status
5173 ice_sched_replay_node_prio(struct ice_hw *hw, struct ice_sched_node *node,
5174                            u8 priority)
5175 {
5176         struct ice_aqc_txsched_elem_data buf;
5177         struct ice_aqc_txsched_elem *data;
5178         enum ice_status status;
5179
5180         buf = node->info;
5181         data = &buf.data;
5182         data->valid_sections |= ICE_AQC_ELEM_VALID_GENERIC;
5183         data->generic = priority;
5184
5185         /* Configure element */
5186         status = ice_sched_update_elem(hw, node, &buf);
5187         return status;
5188 }
5189
5190 /**
5191  * ice_sched_replay_node_bw - replay node(s) BW
5192  * @hw: pointer to the HW struct
5193  * @node: sched node to configure
5194  * @bw_t_info: BW type information
5195  *
5196  * This function restores node's BW from bw_t_info. The caller needs
5197  * to hold the scheduler lock.
5198  */
5199 static enum ice_status
5200 ice_sched_replay_node_bw(struct ice_hw *hw, struct ice_sched_node *node,
5201                          struct ice_bw_type_info *bw_t_info)
5202 {
5203         struct ice_port_info *pi = hw->port_info;
5204         enum ice_status status = ICE_ERR_PARAM;
5205         u16 bw_alloc;
5206
5207         if (!node)
5208                 return status;
5209         if (!ice_is_any_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_CNT))
5210                 return ICE_SUCCESS;
5211         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_PRIO)) {
5212                 status = ice_sched_replay_node_prio(hw, node,
5213                                                     bw_t_info->generic);
5214                 if (status)
5215                         return status;
5216         }
5217         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_CIR)) {
5218                 status = ice_sched_set_node_bw_lmt(pi, node, ICE_MIN_BW,
5219                                                    bw_t_info->cir_bw.bw);
5220                 if (status)
5221                         return status;
5222         }
5223         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_CIR_WT)) {
5224                 bw_alloc = bw_t_info->cir_bw.bw_alloc;
5225                 status = ice_sched_cfg_node_bw_alloc(hw, node, ICE_MIN_BW,
5226                                                      bw_alloc);
5227                 if (status)
5228                         return status;
5229         }
5230         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_EIR)) {
5231                 status = ice_sched_set_node_bw_lmt(pi, node, ICE_MAX_BW,
5232                                                    bw_t_info->eir_bw.bw);
5233                 if (status)
5234                         return status;
5235         }
5236         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_EIR_WT)) {
5237                 bw_alloc = bw_t_info->eir_bw.bw_alloc;
5238                 status = ice_sched_cfg_node_bw_alloc(hw, node, ICE_MAX_BW,
5239                                                      bw_alloc);
5240                 if (status)
5241                         return status;
5242         }
5243         if (ice_is_bit_set(bw_t_info->bw_t_bitmap, ICE_BW_TYPE_SHARED))
5244                 status = ice_sched_set_node_bw_lmt(pi, node, ICE_SHARED_BW,
5245                                                    bw_t_info->shared_bw);
5246         return status;
5247 }
5248
5249 /**
5250  * ice_sched_replay_agg_bw - replay aggregator node(s) BW
5251  * @hw: pointer to the HW struct
5252  * @agg_info: aggregator data structure
5253  *
5254  * This function re-creates aggregator type nodes. The caller needs to hold
5255  * the scheduler lock.
5256  */
5257 static enum ice_status
5258 ice_sched_replay_agg_bw(struct ice_hw *hw, struct ice_sched_agg_info *agg_info)
5259 {
5260         struct ice_sched_node *tc_node, *agg_node;
5261         enum ice_status status = ICE_SUCCESS;
5262         u8 tc;
5263
5264         if (!agg_info)
5265                 return ICE_ERR_PARAM;
5266         ice_for_each_traffic_class(tc) {
5267                 if (!ice_is_any_bit_set(agg_info->bw_t_info[tc].bw_t_bitmap,
5268                                         ICE_BW_TYPE_CNT))
5269                         continue;
5270                 tc_node = ice_sched_get_tc_node(hw->port_info, tc);
5271                 if (!tc_node) {
5272                         status = ICE_ERR_PARAM;
5273                         break;
5274                 }
5275                 agg_node = ice_sched_get_agg_node(hw->port_info, tc_node,
5276                                                   agg_info->agg_id);
5277                 if (!agg_node) {
5278                         status = ICE_ERR_PARAM;
5279                         break;
5280                 }
5281                 status = ice_sched_replay_node_bw(hw, agg_node,
5282                                                   &agg_info->bw_t_info[tc]);
5283                 if (status)
5284                         break;
5285         }
5286         return status;
5287 }
5288
5289 /**
5290  * ice_sched_get_ena_tc_bitmap - get enabled TC bitmap
5291  * @pi: port info struct
5292  * @tc_bitmap: 8 bits TC bitmap to check
5293  * @ena_tc_bitmap: 8 bits enabled TC bitmap to return
5294  *
5295  * This function returns enabled TC bitmap in variable ena_tc_bitmap. Some TCs
5296  * may be missing, it returns enabled TCs. This function needs to be called with
5297  * scheduler lock held.
5298  */
5299 static void
5300 ice_sched_get_ena_tc_bitmap(struct ice_port_info *pi, ice_bitmap_t *tc_bitmap,
5301                             ice_bitmap_t *ena_tc_bitmap)
5302 {
5303         u8 tc;
5304
5305         /* Some TC(s) may be missing after reset, adjust for replay */
5306         ice_for_each_traffic_class(tc)
5307                 if (ice_is_tc_ena(*tc_bitmap, tc) &&
5308                     (ice_sched_get_tc_node(pi, tc)))
5309                         ice_set_bit(tc, ena_tc_bitmap);
5310 }
5311
5312 /**
5313  * ice_sched_replay_agg - recreate aggregator node(s)
5314  * @hw: pointer to the HW struct
5315  *
5316  * This function recreate aggregator type nodes which are not replayed earlier.
5317  * It also replay aggregator BW information. These aggregator nodes are not
5318  * associated with VSI type node yet.
5319  */
5320 void ice_sched_replay_agg(struct ice_hw *hw)
5321 {
5322         struct ice_port_info *pi = hw->port_info;
5323         struct ice_sched_agg_info *agg_info;
5324
5325         ice_acquire_lock(&pi->sched_lock);
5326         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
5327                             list_entry)
5328                 /* replay aggregator (re-create aggregator node) */
5329                 if (!ice_cmp_bitmap(agg_info->tc_bitmap,
5330                                     agg_info->replay_tc_bitmap,
5331                                     ICE_MAX_TRAFFIC_CLASS)) {
5332                         ice_declare_bitmap(replay_bitmap,
5333                                            ICE_MAX_TRAFFIC_CLASS);
5334                         enum ice_status status;
5335
5336                         ice_zero_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5337                         ice_sched_get_ena_tc_bitmap(pi,
5338                                                     agg_info->replay_tc_bitmap,
5339                                                     replay_bitmap);
5340                         status = ice_sched_cfg_agg(hw->port_info,
5341                                                    agg_info->agg_id,
5342                                                    ICE_AGG_TYPE_AGG,
5343                                                    replay_bitmap);
5344                         if (status) {
5345                                 ice_info(hw, "Replay agg id[%d] failed\n",
5346                                          agg_info->agg_id);
5347                                 /* Move on to next one */
5348                                 continue;
5349                         }
5350                         /* Replay aggregator node BW (restore aggregator BW) */
5351                         status = ice_sched_replay_agg_bw(hw, agg_info);
5352                         if (status)
5353                                 ice_info(hw, "Replay agg bw [id=%d] failed\n",
5354                                          agg_info->agg_id);
5355                 }
5356         ice_release_lock(&pi->sched_lock);
5357 }
5358
5359 /**
5360  * ice_sched_replay_agg_vsi_preinit - Agg/VSI replay pre initialization
5361  * @hw: pointer to the HW struct
5362  *
5363  * This function initialize aggregator(s) TC bitmap to zero. A required
5364  * preinit step for replaying aggregators.
5365  */
5366 void ice_sched_replay_agg_vsi_preinit(struct ice_hw *hw)
5367 {
5368         struct ice_port_info *pi = hw->port_info;
5369         struct ice_sched_agg_info *agg_info;
5370
5371         ice_acquire_lock(&pi->sched_lock);
5372         LIST_FOR_EACH_ENTRY(agg_info, &hw->agg_list, ice_sched_agg_info,
5373                             list_entry) {
5374                 struct ice_sched_agg_vsi_info *agg_vsi_info;
5375
5376                 agg_info->tc_bitmap[0] = 0;
5377                 LIST_FOR_EACH_ENTRY(agg_vsi_info, &agg_info->agg_vsi_list,
5378                                     ice_sched_agg_vsi_info, list_entry)
5379                         agg_vsi_info->tc_bitmap[0] = 0;
5380         }
5381         ice_release_lock(&pi->sched_lock);
5382 }
5383
5384 /**
5385  * ice_sched_replay_tc_node_bw - replay TC node(s) BW
5386  * @pi: port information structure
5387  *
5388  * This function replay TC nodes.
5389  */
5390 enum ice_status ice_sched_replay_tc_node_bw(struct ice_port_info *pi)
5391 {
5392         enum ice_status status = ICE_SUCCESS;
5393         u8 tc;
5394
5395         if (!pi->hw)
5396                 return ICE_ERR_PARAM;
5397         ice_acquire_lock(&pi->sched_lock);
5398         ice_for_each_traffic_class(tc) {
5399                 struct ice_sched_node *tc_node;
5400
5401                 tc_node = ice_sched_get_tc_node(pi, tc);
5402                 if (!tc_node)
5403                         continue; /* TC not present */
5404                 status = ice_sched_replay_node_bw(pi->hw, tc_node,
5405                                                   &pi->tc_node_bw_t_info[tc]);
5406                 if (status)
5407                         break;
5408         }
5409         ice_release_lock(&pi->sched_lock);
5410         return status;
5411 }
5412
5413 /**
5414  * ice_sched_replay_vsi_bw - replay VSI type node(s) BW
5415  * @hw: pointer to the HW struct
5416  * @vsi_handle: software VSI handle
5417  * @tc_bitmap: 8 bits TC bitmap
5418  *
5419  * This function replays VSI type nodes bandwidth. This function needs to be
5420  * called with scheduler lock held.
5421  */
5422 static enum ice_status
5423 ice_sched_replay_vsi_bw(struct ice_hw *hw, u16 vsi_handle,
5424                         ice_bitmap_t *tc_bitmap)
5425 {
5426         struct ice_sched_node *vsi_node, *tc_node;
5427         struct ice_port_info *pi = hw->port_info;
5428         struct ice_bw_type_info *bw_t_info;
5429         struct ice_vsi_ctx *vsi_ctx;
5430         enum ice_status status = ICE_SUCCESS;
5431         u8 tc;
5432
5433         vsi_ctx = ice_get_vsi_ctx(pi->hw, vsi_handle);
5434         if (!vsi_ctx)
5435                 return ICE_ERR_PARAM;
5436         ice_for_each_traffic_class(tc) {
5437                 if (!ice_is_tc_ena(*tc_bitmap, tc))
5438                         continue;
5439                 tc_node = ice_sched_get_tc_node(pi, tc);
5440                 if (!tc_node)
5441                         continue;
5442                 vsi_node = ice_sched_get_vsi_node(pi, tc_node, vsi_handle);
5443                 if (!vsi_node)
5444                         continue;
5445                 bw_t_info = &vsi_ctx->sched.bw_t_info[tc];
5446                 status = ice_sched_replay_node_bw(hw, vsi_node, bw_t_info);
5447                 if (status)
5448                         break;
5449         }
5450         return status;
5451 }
5452
5453 /**
5454  * ice_sched_replay_vsi_agg - replay aggregator & VSI to aggregator node(s)
5455  * @hw: pointer to the HW struct
5456  * @vsi_handle: software VSI handle
5457  *
5458  * This function replays aggregator node, VSI to aggregator type nodes, and
5459  * their node bandwidth information. This function needs to be called with
5460  * scheduler lock held.
5461  */
5462 static enum ice_status
5463 ice_sched_replay_vsi_agg(struct ice_hw *hw, u16 vsi_handle)
5464 {
5465         ice_declare_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5466         struct ice_sched_agg_vsi_info *agg_vsi_info;
5467         struct ice_port_info *pi = hw->port_info;
5468         struct ice_sched_agg_info *agg_info;
5469         enum ice_status status;
5470
5471         ice_zero_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5472         if (!ice_is_vsi_valid(hw, vsi_handle))
5473                 return ICE_ERR_PARAM;
5474         agg_info = ice_get_vsi_agg_info(hw, vsi_handle);
5475         if (!agg_info)
5476                 return ICE_SUCCESS; /* Not present in list - default Agg case */
5477         agg_vsi_info = ice_get_agg_vsi_info(agg_info, vsi_handle);
5478         if (!agg_vsi_info)
5479                 return ICE_SUCCESS; /* Not present in list - default Agg case */
5480         ice_sched_get_ena_tc_bitmap(pi, agg_info->replay_tc_bitmap,
5481                                     replay_bitmap);
5482         /* Replay aggregator node associated to vsi_handle */
5483         status = ice_sched_cfg_agg(hw->port_info, agg_info->agg_id,
5484                                    ICE_AGG_TYPE_AGG, replay_bitmap);
5485         if (status)
5486                 return status;
5487         /* Replay aggregator node BW (restore aggregator BW) */
5488         status = ice_sched_replay_agg_bw(hw, agg_info);
5489         if (status)
5490                 return status;
5491
5492         ice_zero_bitmap(replay_bitmap, ICE_MAX_TRAFFIC_CLASS);
5493         ice_sched_get_ena_tc_bitmap(pi, agg_vsi_info->replay_tc_bitmap,
5494                                     replay_bitmap);
5495         /* Move this VSI (vsi_handle) to above aggregator */
5496         status = ice_sched_assoc_vsi_to_agg(pi, agg_info->agg_id, vsi_handle,
5497                                             replay_bitmap);
5498         if (status)
5499                 return status;
5500         /* Replay VSI BW (restore VSI BW) */
5501         return ice_sched_replay_vsi_bw(hw, vsi_handle,
5502                                        agg_vsi_info->tc_bitmap);
5503 }
5504
5505 /**
5506  * ice_replay_vsi_agg - replay VSI to aggregator node
5507  * @hw: pointer to the HW struct
5508  * @vsi_handle: software VSI handle
5509  *
5510  * This function replays association of VSI to aggregator type nodes, and
5511  * node bandwidth information.
5512  */
5513 enum ice_status ice_replay_vsi_agg(struct ice_hw *hw, u16 vsi_handle)
5514 {
5515         struct ice_port_info *pi = hw->port_info;
5516         enum ice_status status;
5517
5518         ice_acquire_lock(&pi->sched_lock);
5519         status = ice_sched_replay_vsi_agg(hw, vsi_handle);
5520         ice_release_lock(&pi->sched_lock);
5521         return status;
5522 }
5523
5524 /**
5525  * ice_sched_replay_q_bw - replay queue type node BW
5526  * @pi: port information structure
5527  * @q_ctx: queue context structure
5528  *
5529  * This function replays queue type node bandwidth. This function needs to be
5530  * called with scheduler lock held.
5531  */
5532 enum ice_status
5533 ice_sched_replay_q_bw(struct ice_port_info *pi, struct ice_q_ctx *q_ctx)
5534 {
5535         struct ice_sched_node *q_node;
5536
5537         /* Following also checks the presence of node in tree */
5538         q_node = ice_sched_find_node_by_teid(pi->root, q_ctx->q_teid);
5539         if (!q_node)
5540                 return ICE_ERR_PARAM;
5541         return ice_sched_replay_node_bw(pi->hw, q_node, &q_ctx->bw_t_info);
5542 }