--- /dev/null
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2017 Intel Corporation
+ */
+#include <rte_tm_driver.h>
+
+#include "base/ice_sched.h"
+#include "ice_dcf_ethdev.h"
+
+static int ice_dcf_hierarchy_commit(struct rte_eth_dev *dev,
+ __rte_unused int clear_on_fail,
+ __rte_unused struct rte_tm_error *error);
+static int ice_dcf_node_add(struct rte_eth_dev *dev, uint32_t node_id,
+ uint32_t parent_node_id, uint32_t priority,
+ uint32_t weight, uint32_t level_id,
+ struct rte_tm_node_params *params,
+ struct rte_tm_error *error);
+static int ice_dcf_node_delete(struct rte_eth_dev *dev, uint32_t node_id,
+ struct rte_tm_error *error);
+static int ice_dcf_shaper_profile_add(struct rte_eth_dev *dev,
+ uint32_t shaper_profile_id,
+ struct rte_tm_shaper_params *profile,
+ struct rte_tm_error *error);
+static int ice_dcf_shaper_profile_del(struct rte_eth_dev *dev,
+ uint32_t shaper_profile_id,
+ struct rte_tm_error *error);
+
+const struct rte_tm_ops ice_dcf_tm_ops = {
+ .shaper_profile_add = ice_dcf_shaper_profile_add,
+ .shaper_profile_delete = ice_dcf_shaper_profile_del,
+ .hierarchy_commit = ice_dcf_hierarchy_commit,
+ .node_add = ice_dcf_node_add,
+ .node_delete = ice_dcf_node_delete,
+};
+
+void
+ice_dcf_tm_conf_init(struct rte_eth_dev *dev)
+{
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+
+ /* initialize shaper profile list */
+ TAILQ_INIT(&hw->tm_conf.shaper_profile_list);
+
+ /* initialize node configuration */
+ hw->tm_conf.root = NULL;
+ TAILQ_INIT(&hw->tm_conf.tc_list);
+ TAILQ_INIT(&hw->tm_conf.vsi_list);
+ hw->tm_conf.nb_tc_node = 0;
+ hw->tm_conf.nb_vsi_node = 0;
+ hw->tm_conf.committed = false;
+}
+
+void
+ice_dcf_tm_conf_uninit(struct rte_eth_dev *dev)
+{
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct ice_dcf_tm_shaper_profile *shaper_profile;
+ struct ice_dcf_tm_node *tm_node;
+
+ /* clear node configuration */
+ while ((tm_node = TAILQ_FIRST(&hw->tm_conf.vsi_list))) {
+ TAILQ_REMOVE(&hw->tm_conf.vsi_list, tm_node, node);
+ rte_free(tm_node);
+ }
+ hw->tm_conf.nb_vsi_node = 0;
+ while ((tm_node = TAILQ_FIRST(&hw->tm_conf.tc_list))) {
+ TAILQ_REMOVE(&hw->tm_conf.tc_list, tm_node, node);
+ rte_free(tm_node);
+ }
+ hw->tm_conf.nb_tc_node = 0;
+ if (hw->tm_conf.root) {
+ rte_free(hw->tm_conf.root);
+ hw->tm_conf.root = NULL;
+ }
+
+ /* Remove all shaper profiles */
+ while ((shaper_profile =
+ TAILQ_FIRST(&hw->tm_conf.shaper_profile_list))) {
+ TAILQ_REMOVE(&hw->tm_conf.shaper_profile_list,
+ shaper_profile, node);
+ rte_free(shaper_profile);
+ }
+}
+
+static inline struct ice_dcf_tm_node *
+ice_dcf_tm_node_search(struct rte_eth_dev *dev,
+ uint32_t node_id, enum ice_dcf_tm_node_type *node_type)
+{
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct ice_dcf_tm_node_list *vsi_list = &hw->tm_conf.vsi_list;
+ struct ice_dcf_tm_node_list *tc_list = &hw->tm_conf.tc_list;
+ struct ice_dcf_tm_node *tm_node;
+
+ if (hw->tm_conf.root && hw->tm_conf.root->id == node_id) {
+ *node_type = ICE_DCF_TM_NODE_TYPE_PORT;
+ return hw->tm_conf.root;
+ }
+
+ TAILQ_FOREACH(tm_node, tc_list, node) {
+ if (tm_node->id == node_id) {
+ *node_type = ICE_DCF_TM_NODE_TYPE_TC;
+ return tm_node;
+ }
+ }
+
+ TAILQ_FOREACH(tm_node, vsi_list, node) {
+ if (tm_node->id == node_id) {
+ *node_type = ICE_DCF_TM_NODE_TYPE_VSI;
+ return tm_node;
+ }
+ }
+
+ return NULL;
+}
+
+static inline struct ice_dcf_tm_shaper_profile *
+ice_dcf_shaper_profile_search(struct rte_eth_dev *dev,
+ uint32_t shaper_profile_id)
+{
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct ice_dcf_shaper_profile_list *shaper_profile_list =
+ &hw->tm_conf.shaper_profile_list;
+ struct ice_dcf_tm_shaper_profile *shaper_profile;
+
+ TAILQ_FOREACH(shaper_profile, shaper_profile_list, node) {
+ if (shaper_profile_id == shaper_profile->shaper_profile_id)
+ return shaper_profile;
+ }
+
+ return NULL;
+}
+
+static int
+ice_dcf_node_param_check(struct ice_dcf_hw *hw, uint32_t node_id,
+ uint32_t priority, uint32_t weight,
+ struct rte_tm_node_params *params,
+ struct rte_tm_error *error)
+{
+ /* checked all the unsupported parameter */
+ if (node_id == RTE_TM_NODE_ID_NULL) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message = "invalid node id";
+ return -EINVAL;
+ }
+
+ if (priority) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PRIORITY;
+ error->message = "priority should be 0";
+ return -EINVAL;
+ }
+
+ if (weight != 1) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_WEIGHT;
+ error->message = "weight must be 1";
+ return -EINVAL;
+ }
+
+ /* not support shared shaper */
+ if (params->shared_shaper_id) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARAMS_SHARED_SHAPER_ID;
+ error->message = "shared shaper not supported";
+ return -EINVAL;
+ }
+ if (params->n_shared_shapers) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARAMS_N_SHARED_SHAPERS;
+ error->message = "shared shaper not supported";
+ return -EINVAL;
+ }
+
+ /* for non-leaf node */
+ if (node_id >= 8 * hw->num_vfs) {
+ if (params->nonleaf.wfq_weight_mode) {
+ error->type =
+ RTE_TM_ERROR_TYPE_NODE_PARAMS_WFQ_WEIGHT_MODE;
+ error->message = "WFQ not supported";
+ return -EINVAL;
+ }
+ if (params->nonleaf.n_sp_priorities != 1) {
+ error->type =
+ RTE_TM_ERROR_TYPE_NODE_PARAMS_N_SP_PRIORITIES;
+ error->message = "SP priority not supported";
+ return -EINVAL;
+ } else if (params->nonleaf.wfq_weight_mode &&
+ !(*params->nonleaf.wfq_weight_mode)) {
+ error->type =
+ RTE_TM_ERROR_TYPE_NODE_PARAMS_WFQ_WEIGHT_MODE;
+ error->message = "WFP should be byte mode";
+ return -EINVAL;
+ }
+
+ return 0;
+ }
+
+ /* for leaf node */
+ if (params->leaf.cman) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARAMS_CMAN;
+ error->message = "Congestion management not supported";
+ return -EINVAL;
+ }
+ if (params->leaf.wred.wred_profile_id !=
+ RTE_TM_WRED_PROFILE_ID_NONE) {
+ error->type =
+ RTE_TM_ERROR_TYPE_NODE_PARAMS_WRED_PROFILE_ID;
+ error->message = "WRED not supported";
+ return -EINVAL;
+ }
+ if (params->leaf.wred.shared_wred_context_id) {
+ error->type =
+ RTE_TM_ERROR_TYPE_NODE_PARAMS_SHARED_WRED_CONTEXT_ID;
+ error->message = "WRED not supported";
+ return -EINVAL;
+ }
+ if (params->leaf.wred.n_shared_wred_contexts) {
+ error->type =
+ RTE_TM_ERROR_TYPE_NODE_PARAMS_N_SHARED_WRED_CONTEXTS;
+ error->message = "WRED not supported";
+ return -EINVAL;
+ }
+
+ return 0;
+}
+
+static int
+ice_dcf_node_add(struct rte_eth_dev *dev, uint32_t node_id,
+ uint32_t parent_node_id, uint32_t priority,
+ uint32_t weight, uint32_t level_id,
+ struct rte_tm_node_params *params,
+ struct rte_tm_error *error)
+{
+ enum ice_dcf_tm_node_type parent_node_type = ICE_DCF_TM_NODE_TYPE_MAX;
+ enum ice_dcf_tm_node_type node_type = ICE_DCF_TM_NODE_TYPE_MAX;
+ struct ice_dcf_tm_shaper_profile *shaper_profile = NULL;
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct ice_dcf_tm_node *parent_node;
+ struct ice_dcf_tm_node *tm_node;
+ uint16_t tc_nb = 1;
+ int i, ret;
+
+ if (!params || !error)
+ return -EINVAL;
+
+ /* if already committed */
+ if (hw->tm_conf.committed) {
+ error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
+ error->message = "already committed";
+ return -EINVAL;
+ }
+
+ ret = ice_dcf_node_param_check(hw, node_id, priority, weight,
+ params, error);
+ if (ret)
+ return ret;
+
+ for (i = 1; i < ICE_MAX_TRAFFIC_CLASS; i++) {
+ if (hw->ets_config->tc_valid_bits & (1 << i))
+ tc_nb++;
+ }
+
+ /* check if the node is already existed */
+ if (ice_dcf_tm_node_search(dev, node_id, &node_type)) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message = "node id already used";
+ return -EINVAL;
+ }
+
+ /* check the shaper profile id */
+ if (params->shaper_profile_id != RTE_TM_SHAPER_PROFILE_ID_NONE) {
+ shaper_profile = ice_dcf_shaper_profile_search(dev,
+ params->shaper_profile_id);
+ if (!shaper_profile) {
+ error->type =
+ RTE_TM_ERROR_TYPE_NODE_PARAMS_SHAPER_PROFILE_ID;
+ error->message = "shaper profile not exist";
+ return -EINVAL;
+ }
+ }
+
+ /* add root node if not have a parent */
+ if (parent_node_id == RTE_TM_NODE_ID_NULL) {
+ /* check level */
+ if (level_id != ICE_DCF_TM_NODE_TYPE_PORT) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARAMS;
+ error->message = "Wrong level";
+ return -EINVAL;
+ }
+
+ /* obviously no more than one root */
+ if (hw->tm_conf.root) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARENT_NODE_ID;
+ error->message = "already have a root";
+ return -EINVAL;
+ }
+
+ /* add the root node */
+ tm_node = rte_zmalloc("ice_dcf_tm_node",
+ sizeof(struct ice_dcf_tm_node),
+ 0);
+ if (!tm_node)
+ return -ENOMEM;
+ tm_node->id = node_id;
+ tm_node->parent = NULL;
+ tm_node->reference_count = 0;
+ rte_memcpy(&tm_node->params, params,
+ sizeof(struct rte_tm_node_params));
+ hw->tm_conf.root = tm_node;
+
+ return 0;
+ }
+
+ /* TC or vsi node */
+ /* check the parent node */
+ parent_node = ice_dcf_tm_node_search(dev, parent_node_id,
+ &parent_node_type);
+ if (!parent_node) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARENT_NODE_ID;
+ error->message = "parent not exist";
+ return -EINVAL;
+ }
+ if (parent_node_type != ICE_DCF_TM_NODE_TYPE_PORT &&
+ parent_node_type != ICE_DCF_TM_NODE_TYPE_TC) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARENT_NODE_ID;
+ error->message = "parent is not port or TC";
+ return -EINVAL;
+ }
+ /* check level */
+ if (level_id != RTE_TM_NODE_LEVEL_ID_ANY &&
+ level_id != (uint32_t)(parent_node_type + 1)) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_PARAMS;
+ error->message = "Wrong level";
+ return -EINVAL;
+ }
+
+ /* check the TC node number */
+ if (parent_node_type == ICE_DCF_TM_NODE_TYPE_PORT) {
+ /* check the TC number */
+ if (hw->tm_conf.nb_tc_node >= tc_nb) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message = "too many TCs";
+ return -EINVAL;
+ }
+ } else {
+ /* check the vsi node number */
+ if (parent_node->reference_count >= hw->num_vfs) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message = "too many VSI for one TC";
+ return -EINVAL;
+ }
+ /* check the vsi node id */
+ if (node_id > tc_nb * hw->num_vfs) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message = "too large VSI id";
+ return -EINVAL;
+ }
+ }
+
+ /* add the TC or vsi node */
+ tm_node = rte_zmalloc("ice_dcf_tm_node",
+ sizeof(struct ice_dcf_tm_node),
+ 0);
+ if (!tm_node)
+ return -ENOMEM;
+ tm_node->id = node_id;
+ tm_node->priority = priority;
+ tm_node->weight = weight;
+ tm_node->shaper_profile = shaper_profile;
+ tm_node->reference_count = 0;
+ tm_node->parent = parent_node;
+ rte_memcpy(&tm_node->params, params,
+ sizeof(struct rte_tm_node_params));
+ if (parent_node_type == ICE_DCF_TM_NODE_TYPE_PORT) {
+ TAILQ_INSERT_TAIL(&hw->tm_conf.tc_list,
+ tm_node, node);
+ tm_node->tc = hw->tm_conf.nb_tc_node;
+ hw->tm_conf.nb_tc_node++;
+ } else {
+ TAILQ_INSERT_TAIL(&hw->tm_conf.vsi_list,
+ tm_node, node);
+ tm_node->tc = parent_node->tc;
+ hw->tm_conf.nb_vsi_node++;
+ }
+ tm_node->parent->reference_count++;
+
+ /* increase the reference counter of the shaper profile */
+ if (shaper_profile)
+ shaper_profile->reference_count++;
+
+ return 0;
+}
+
+static int
+ice_dcf_node_delete(struct rte_eth_dev *dev, uint32_t node_id,
+ struct rte_tm_error *error)
+{
+ enum ice_dcf_tm_node_type node_type = ICE_DCF_TM_NODE_TYPE_MAX;
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct ice_dcf_tm_node *tm_node;
+
+ if (!error)
+ return -EINVAL;
+
+ /* if already committed */
+ if (hw->tm_conf.committed) {
+ error->type = RTE_TM_ERROR_TYPE_UNSPECIFIED;
+ error->message = "already committed";
+ return -EINVAL;
+ }
+
+ if (node_id == RTE_TM_NODE_ID_NULL) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message = "invalid node id";
+ return -EINVAL;
+ }
+
+ /* check if the node id exists */
+ tm_node = ice_dcf_tm_node_search(dev, node_id, &node_type);
+ if (!tm_node) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message = "no such node";
+ return -EINVAL;
+ }
+
+ /* the node should have no child */
+ if (tm_node->reference_count) {
+ error->type = RTE_TM_ERROR_TYPE_NODE_ID;
+ error->message =
+ "cannot delete a node which has children";
+ return -EINVAL;
+ }
+
+ /* root node */
+ if (node_type == ICE_DCF_TM_NODE_TYPE_PORT) {
+ if (tm_node->shaper_profile)
+ tm_node->shaper_profile->reference_count--;
+ rte_free(tm_node);
+ hw->tm_conf.root = NULL;
+ return 0;
+ }
+
+ /* TC or VSI node */
+ if (tm_node->shaper_profile)
+ tm_node->shaper_profile->reference_count--;
+ tm_node->parent->reference_count--;
+ if (node_type == ICE_DCF_TM_NODE_TYPE_TC) {
+ TAILQ_REMOVE(&hw->tm_conf.tc_list, tm_node, node);
+ hw->tm_conf.nb_tc_node--;
+ } else {
+ TAILQ_REMOVE(&hw->tm_conf.vsi_list, tm_node, node);
+ hw->tm_conf.nb_vsi_node--;
+ }
+ rte_free(tm_node);
+
+ return 0;
+}
+
+static int
+ice_dcf_shaper_profile_param_check(struct rte_tm_shaper_params *profile,
+ struct rte_tm_error *error)
+{
+ /* min bucket size not supported */
+ if (profile->committed.size) {
+ error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_COMMITTED_SIZE;
+ error->message = "committed bucket size not supported";
+ return -EINVAL;
+ }
+ /* max bucket size not supported */
+ if (profile->peak.size) {
+ error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_PEAK_SIZE;
+ error->message = "peak bucket size not supported";
+ return -EINVAL;
+ }
+ /* length adjustment not supported */
+ if (profile->pkt_length_adjust) {
+ error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_PKT_ADJUST_LEN;
+ error->message = "packet length adjustment not supported";
+ return -EINVAL;
+ }
+
+ return 0;
+}
+
+static int
+ice_dcf_shaper_profile_add(struct rte_eth_dev *dev,
+ uint32_t shaper_profile_id,
+ struct rte_tm_shaper_params *profile,
+ struct rte_tm_error *error)
+{
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct ice_dcf_tm_shaper_profile *shaper_profile;
+ int ret;
+
+ if (!profile || !error)
+ return -EINVAL;
+
+ ret = ice_dcf_shaper_profile_param_check(profile, error);
+ if (ret)
+ return ret;
+
+ shaper_profile = ice_dcf_shaper_profile_search(dev, shaper_profile_id);
+
+ if (shaper_profile) {
+ error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_ID;
+ error->message = "profile ID exist";
+ return -EINVAL;
+ }
+
+ shaper_profile = rte_zmalloc("ice_dcf_tm_shaper_profile",
+ sizeof(struct ice_dcf_tm_shaper_profile),
+ 0);
+ if (!shaper_profile)
+ return -ENOMEM;
+ shaper_profile->shaper_profile_id = shaper_profile_id;
+ rte_memcpy(&shaper_profile->profile, profile,
+ sizeof(struct rte_tm_shaper_params));
+ TAILQ_INSERT_TAIL(&hw->tm_conf.shaper_profile_list,
+ shaper_profile, node);
+
+ return 0;
+}
+
+static int
+ice_dcf_shaper_profile_del(struct rte_eth_dev *dev,
+ uint32_t shaper_profile_id,
+ struct rte_tm_error *error)
+{
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct ice_dcf_tm_shaper_profile *shaper_profile;
+
+ if (!error)
+ return -EINVAL;
+
+ shaper_profile = ice_dcf_shaper_profile_search(dev, shaper_profile_id);
+
+ if (!shaper_profile) {
+ error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE_ID;
+ error->message = "profile ID not exist";
+ return -EINVAL;
+ }
+
+ /* don't delete a profile if it's used by one or several nodes */
+ if (shaper_profile->reference_count) {
+ error->type = RTE_TM_ERROR_TYPE_SHAPER_PROFILE;
+ error->message = "profile in use";
+ return -EINVAL;
+ }
+
+ TAILQ_REMOVE(&hw->tm_conf.shaper_profile_list, shaper_profile, node);
+ rte_free(shaper_profile);
+
+ return 0;
+}
+
+static int
+ice_dcf_set_vf_bw(struct ice_dcf_hw *hw,
+ struct virtchnl_dcf_bw_cfg_list *vf_bw,
+ uint16_t len)
+{
+ struct dcf_virtchnl_cmd args;
+ int err;
+
+ memset(&args, 0, sizeof(args));
+ args.v_op = VIRTCHNL_OP_DCF_CONFIG_BW;
+ args.req_msg = (uint8_t *)vf_bw;
+ args.req_msglen = len;
+ err = ice_dcf_execute_virtchnl_cmd(hw, &args);
+ if (err)
+ PMD_DRV_LOG(ERR, "fail to execute command %s",
+ "VIRTCHNL_OP_DCF_CONFIG_BW");
+ return err;
+}
+
+static int
+ice_dcf_validate_tc_bw(struct virtchnl_dcf_bw_cfg_list *tc_bw,
+ uint32_t port_bw)
+{
+ struct virtchnl_dcf_bw_cfg *cfg;
+ bool lowest_cir_mark = false;
+ u32 total_peak, rest_peak;
+ u32 committed, peak;
+ int i;
+
+ total_peak = 0;
+ for (i = 0; i < tc_bw->num_elem; i++)
+ total_peak += tc_bw->cfg[i].shaper.peak;
+
+ for (i = 0; i < tc_bw->num_elem; i++) {
+ cfg = &tc_bw->cfg[i];
+ peak = cfg->shaper.peak;
+ committed = cfg->shaper.committed;
+ rest_peak = total_peak - peak;
+
+ if (lowest_cir_mark && peak == 0) {
+ PMD_DRV_LOG(ERR, "Max bandwidth must be configured for TC%u",
+ cfg->tc_num);
+ return -EINVAL;
+ }
+
+ if (!lowest_cir_mark && committed)
+ lowest_cir_mark = true;
+
+ if (committed && committed + rest_peak > port_bw) {
+ PMD_DRV_LOG(ERR, "Total value of TC%u min bandwidth and other TCs' max bandwidth %ukbps should be less than port link speed %ukbps",
+ cfg->tc_num, committed + rest_peak, port_bw);
+ return -EINVAL;
+ }
+
+ if (committed && committed < ICE_SCHED_MIN_BW) {
+ PMD_DRV_LOG(ERR, "If TC%u min Tx bandwidth is set, it cannot be less than 500Kbps",
+ cfg->tc_num);
+ return -EINVAL;
+ }
+
+ if (peak && committed > peak) {
+ PMD_DRV_LOG(ERR, "TC%u Min Tx bandwidth cannot be greater than max Tx bandwidth",
+ cfg->tc_num);
+ return -EINVAL;
+ }
+
+ if (peak > port_bw) {
+ PMD_DRV_LOG(ERR, "TC%u max Tx bandwidth %uKbps is greater than current link speed %uKbps",
+ cfg->tc_num, peak, port_bw);
+ return -EINVAL;
+ }
+ }
+
+ return 0;
+}
+static int ice_dcf_hierarchy_commit(struct rte_eth_dev *dev,
+ int clear_on_fail,
+ __rte_unused struct rte_tm_error *error)
+{
+ struct ice_dcf_adapter *adapter = dev->data->dev_private;
+ struct ice_dcf_hw *hw = &adapter->real_hw;
+ struct virtchnl_dcf_bw_cfg_list *vf_bw;
+ struct virtchnl_dcf_bw_cfg_list *tc_bw;
+ struct ice_dcf_tm_node_list *vsi_list = &hw->tm_conf.vsi_list;
+ struct rte_tm_shaper_params *profile;
+ struct ice_dcf_tm_node *tm_node;
+ uint32_t port_bw, cir_total;
+ uint16_t size, vf_id;
+ uint8_t num_elem = 0;
+ int i, ret_val = ICE_SUCCESS;
+
+ if (!(hw->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_QOS)) {
+ PMD_DRV_LOG(ERR, "Configure VF bandwidth is not supported");
+ ret_val = ICE_ERR_NOT_SUPPORTED;
+ goto fail_clear;
+ }
+
+ /* check if all TC nodes are set */
+ if (BIT(hw->tm_conf.nb_tc_node) & hw->ets_config->tc_valid_bits) {
+ PMD_DRV_LOG(ERR, "Not all enabled TC nodes are set");
+ ret_val = ICE_ERR_PARAM;
+ goto fail_clear;
+ }
+
+ size = sizeof(struct virtchnl_dcf_bw_cfg_list) +
+ sizeof(struct virtchnl_dcf_bw_cfg) *
+ (hw->tm_conf.nb_tc_node - 1);
+ vf_bw = rte_zmalloc("vf_bw", size, 0);
+ if (!vf_bw) {
+ ret_val = ICE_ERR_NO_MEMORY;
+ goto fail_clear;
+ }
+ tc_bw = rte_zmalloc("tc_bw", size, 0);
+ if (!tc_bw) {
+ ret_val = ICE_ERR_NO_MEMORY;
+ goto fail_clear;
+ }
+
+ /* port bandwidth (Kbps) */
+ port_bw = hw->link_speed * 1000;
+ cir_total = 0;
+
+ /* init tc bw configuration */
+#define ICE_DCF_SCHED_TC_NODE 0xffff
+ tc_bw->vf_id = ICE_DCF_SCHED_TC_NODE;
+ tc_bw->node_type = VIRTCHNL_DCF_TARGET_TC_BW;
+ tc_bw->num_elem = hw->tm_conf.nb_tc_node;
+ for (i = 0; i < tc_bw->num_elem; i++) {
+ tc_bw->cfg[i].tc_num = i;
+ tc_bw->cfg[i].type = VIRTCHNL_BW_SHAPER;
+ tc_bw->cfg[i].bw_type |=
+ VIRTCHNL_DCF_BW_PIR | VIRTCHNL_DCF_BW_CIR;
+ }
+
+ for (vf_id = 0; vf_id < hw->num_vfs; vf_id++) {
+ num_elem = 0;
+ vf_bw->vf_id = vf_id;
+ vf_bw->node_type = VIRTCHNL_DCF_TARGET_VF_BW;
+ TAILQ_FOREACH(tm_node, vsi_list, node) {
+ /* scan the nodes belong to one VSI */
+ if (tm_node->id - hw->num_vfs * tm_node->tc != vf_id)
+ continue;
+ vf_bw->cfg[num_elem].tc_num = tm_node->tc;
+ vf_bw->cfg[num_elem].type = VIRTCHNL_BW_SHAPER;
+ if (tm_node->shaper_profile) {
+ /* Transfer from Byte per seconds to Kbps */
+ profile = &tm_node->shaper_profile->profile;
+ vf_bw->cfg[num_elem].shaper.peak =
+ profile->peak.rate / 1000 * BITS_PER_BYTE;
+ vf_bw->cfg[num_elem].shaper.committed =
+ profile->committed.rate / 1000 * BITS_PER_BYTE;
+ vf_bw->cfg[num_elem].bw_type |=
+ VIRTCHNL_DCF_BW_PIR |
+ VIRTCHNL_DCF_BW_CIR;
+ }
+
+ /* update tc node bw configuration */
+ tc_bw->cfg[tm_node->tc].shaper.peak +=
+ vf_bw->cfg[num_elem].shaper.peak;
+ tc_bw->cfg[tm_node->tc].shaper.committed +=
+ vf_bw->cfg[num_elem].shaper.committed;
+
+ cir_total += vf_bw->cfg[num_elem].shaper.committed;
+ num_elem++;
+ }
+
+ /* check if all TC nodes are set with VF vsi nodes */
+ if (num_elem != hw->tm_conf.nb_tc_node) {
+ PMD_DRV_LOG(ERR, "VF%u vsi nodes are not set to all TC nodes, node id should be continuous",
+ vf_id);
+ ret_val = ICE_ERR_PARAM;
+ goto fail_clear;
+ }
+
+ vf_bw->num_elem = num_elem;
+ ret_val = ice_dcf_set_vf_bw(hw, vf_bw, size);
+ if (ret_val)
+ goto fail_clear;
+ memset(vf_bw, 0, size);
+ }
+
+ /* check if total CIR is larger than port bandwidth */
+ if (cir_total > port_bw) {
+ PMD_DRV_LOG(ERR, "Total CIR of all VFs is larger than port bandwidth");
+ ret_val = ICE_ERR_PARAM;
+ goto fail_clear;
+ }
+
+ /* check and commit tc node bw configuration */
+ ret_val = ice_dcf_validate_tc_bw(tc_bw, port_bw);
+ if (ret_val)
+ goto fail_clear;
+ ret_val = ice_dcf_set_vf_bw(hw, tc_bw, size);
+ if (ret_val)
+ goto fail_clear;
+
+ hw->tm_conf.committed = true;
+ return ret_val;
+
+fail_clear:
+ /* clear all the traffic manager configuration */
+ if (clear_on_fail) {
+ ice_dcf_tm_conf_uninit(dev);
+ ice_dcf_tm_conf_init(dev);
+ }
+ return ret_val;
+}