net/i40e: support adding TM node
[dpdk.git] / drivers / net / i40e / i40e_ethdev.h
index af035cb..38a86f6 100644 (file)
@@ -662,9 +662,55 @@ struct i40e_tm_shaper_profile {
 
 TAILQ_HEAD(i40e_shaper_profile_list, i40e_tm_shaper_profile);
 
+/* node type of Traffic Manager */
+enum i40e_tm_node_type {
+       I40E_TM_NODE_TYPE_PORT,
+       I40E_TM_NODE_TYPE_TC,
+       I40E_TM_NODE_TYPE_QUEUE,
+       I40E_TM_NODE_TYPE_MAX,
+};
+
+/* Struct to store Traffic Manager node configuration. */
+struct i40e_tm_node {
+       TAILQ_ENTRY(i40e_tm_node) node;
+       uint32_t id;
+       uint32_t priority;
+       uint32_t weight;
+       uint32_t reference_count;
+       struct i40e_tm_node *parent;
+       struct i40e_tm_shaper_profile *shaper_profile;
+       struct rte_tm_node_params params;
+};
+
+TAILQ_HEAD(i40e_tm_node_list, i40e_tm_node);
+
 /* Struct to store all the Traffic Manager configuration. */
 struct i40e_tm_conf {
        struct i40e_shaper_profile_list shaper_profile_list;
+       struct i40e_tm_node *root; /* root node - port */
+       struct i40e_tm_node_list tc_list; /* node list for all the TCs */
+       struct i40e_tm_node_list queue_list; /* node list for all the queues */
+       /**
+        * The number of added TC nodes.
+        * It should be no more than the TC number of this port.
+        */
+       uint32_t nb_tc_node;
+       /**
+        * The number of added queue nodes.
+        * It should be no more than the queue number of this port.
+        */
+       uint32_t nb_queue_node;
+       /**
+        * This flag is used to check if APP can change the TM node
+        * configuration.
+        * When it's true, means the configuration is applied to HW,
+        * APP should not change the configuration.
+        * As we don't support on-the-fly configuration, when starting
+        * the port, APP should call the hierarchy_commit API to set this
+        * flag to true. When stopping the port, this flag should be set
+        * to false.
+        */
+       bool committed;
 };
 
 /*