net/mlx5: support meter policy operations
[dpdk.git] / drivers / net / mlx5 / mlx5_flow.h
index 81cf1b5..f0509b1 100644 (file)
@@ -564,8 +564,9 @@ struct mlx5_flow_tbl_data_entry {
        uint32_t is_egress:1; /**< Egress table. */
        uint32_t is_transfer:1; /**< Transfer table. */
        uint32_t dummy:1; /**<  DR table. */
-       uint32_t reserve:27; /**< Reserved to future using. */
-       uint32_t table_id; /**< Table ID. */
+       uint32_t id:22; /**< Table ID. */
+       uint32_t reserve:5; /**< Reserved to future using. */
+       uint32_t level; /**< Table level. */
 };
 
 /* Sub rdma-core actions list. */
@@ -689,16 +690,10 @@ struct mlx5_flow_handle {
 #define MLX5_FLOW_HANDLE_VERBS_SIZE (sizeof(struct mlx5_flow_handle))
 #endif
 
-/*
- * Max number of actions per DV flow.
- * See CREATE_FLOW_MAX_FLOW_ACTIONS_SUPPORTED
- * in rdma-core file providers/mlx5/verbs.c.
- */
-#define MLX5_DV_MAX_NUMBER_OF_ACTIONS 8
-
 /** Device flow structure only for DV flow creation. */
 struct mlx5_flow_dv_workspace {
        uint32_t group; /**< The group index. */
+       uint32_t table_id; /**< Flow table identifier. */
        uint8_t transfer; /**< 1 if the flow is E-Switch flow. */
        int actions_n; /**< number of actions. */
        void *actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS]; /**< Action list. */
@@ -836,6 +831,8 @@ struct mlx5_legacy_flow_meter {
        /* Must be the first in struct. */
        TAILQ_ENTRY(mlx5_legacy_flow_meter) next;
        /**< Pointer to the next flow meter structure. */
+       uint32_t meter_id;
+       /**< Meter id. */
        uint32_t idx; /* Index to meter object. */
 };
 
@@ -1059,6 +1056,7 @@ struct mlx5_flow_split_info {
        uint32_t flow_idx; /**< This memory pool index to the flow. */
        uint32_t prefix_mark; /**< Prefix subflow mark flag. */
        uint64_t prefix_layers; /**< Prefix subflow layers. */
+       uint32_t table_id; /**< Flow table identifier. */
 };
 
 typedef int (*mlx5_flow_validate_t)(struct rte_eth_dev *dev,
@@ -1093,14 +1091,7 @@ typedef struct mlx5_meter_domains_infos *(*mlx5_flow_create_mtr_tbls_t)
                                            (struct rte_eth_dev *dev);
 typedef int (*mlx5_flow_destroy_mtr_tbls_t)(struct rte_eth_dev *dev,
                                        struct mlx5_meter_domains_infos *tbls);
-typedef int (*mlx5_flow_create_policer_rules_t)
-                                       (struct rte_eth_dev *dev,
-                                        struct mlx5_flow_meter_info *fm,
-                                        const struct rte_flow_attr *attr);
-typedef int (*mlx5_flow_destroy_policer_rules_t)
-                                       (struct rte_eth_dev *dev,
-                                        const struct mlx5_flow_meter_info *fm,
-                                        const struct rte_flow_attr *attr);
+typedef void (*mlx5_flow_destroy_mtr_drop_tbls_t)(struct rte_eth_dev *dev);
 typedef uint32_t (*mlx5_flow_mtr_alloc_t)
                                            (struct rte_eth_dev *dev);
 typedef void (*mlx5_flow_mtr_free_t)(struct rte_eth_dev *dev,
@@ -1146,6 +1137,32 @@ typedef int (*mlx5_flow_sync_domain_t)
                        (struct rte_eth_dev *dev,
                         uint32_t domains,
                         uint32_t flags);
+typedef int (*mlx5_flow_validate_mtr_acts_t)
+                       (struct rte_eth_dev *dev,
+                        const struct rte_flow_action *actions[RTE_COLORS],
+                        struct rte_flow_attr *attr,
+                        bool *is_rss,
+                        uint8_t *domain_bitmap,
+                        bool *is_def_policy,
+                        struct rte_mtr_error *error);
+typedef int (*mlx5_flow_create_mtr_acts_t)
+                       (struct rte_eth_dev *dev,
+                     struct mlx5_flow_meter_policy *mtr_policy,
+                     const struct rte_flow_action *actions[RTE_COLORS],
+                     struct rte_mtr_error *error);
+typedef void (*mlx5_flow_destroy_mtr_acts_t)
+                       (struct rte_eth_dev *dev,
+                     struct mlx5_flow_meter_policy *mtr_policy);
+typedef int (*mlx5_flow_create_policy_rules_t)
+                       (struct rte_eth_dev *dev,
+                         struct mlx5_flow_meter_policy *mtr_policy);
+typedef void (*mlx5_flow_destroy_policy_rules_t)
+                       (struct rte_eth_dev *dev,
+                         struct mlx5_flow_meter_policy *mtr_policy);
+typedef int (*mlx5_flow_create_def_policy_t)
+                       (struct rte_eth_dev *dev);
+typedef void (*mlx5_flow_destroy_def_policy_t)
+                       (struct rte_eth_dev *dev);
 
 struct mlx5_flow_driver_ops {
        mlx5_flow_validate_t validate;
@@ -1157,10 +1174,16 @@ struct mlx5_flow_driver_ops {
        mlx5_flow_query_t query;
        mlx5_flow_create_mtr_tbls_t create_mtr_tbls;
        mlx5_flow_destroy_mtr_tbls_t destroy_mtr_tbls;
-       mlx5_flow_create_policer_rules_t prepare_policer_rules;
-       mlx5_flow_destroy_policer_rules_t destroy_policer_rules;
+       mlx5_flow_destroy_mtr_drop_tbls_t destroy_mtr_drop_tbls;
        mlx5_flow_mtr_alloc_t create_meter;
        mlx5_flow_mtr_free_t free_meter;
+       mlx5_flow_validate_mtr_acts_t validate_mtr_acts;
+       mlx5_flow_create_mtr_acts_t create_mtr_acts;
+       mlx5_flow_destroy_mtr_acts_t destroy_mtr_acts;
+       mlx5_flow_create_policy_rules_t create_policy_rules;
+       mlx5_flow_destroy_policy_rules_t destroy_policy_rules;
+       mlx5_flow_create_def_policy_t create_def_policy;
+       mlx5_flow_destroy_def_policy_t destroy_def_policy;
        mlx5_flow_counter_alloc_t counter_alloc;
        mlx5_flow_counter_free_t counter_free;
        mlx5_flow_counter_query_t counter_query;
@@ -1237,12 +1260,13 @@ static inline struct mlx5_aso_mtr *
 mlx5_aso_meter_by_idx(struct mlx5_priv *priv, uint32_t idx)
 {
        struct mlx5_aso_mtr_pool *pool;
-       struct mlx5_aso_mtr_pools_mng *mtrmng = priv->sh->mtrmng;
+       struct mlx5_aso_mtr_pools_mng *pools_mng =
+                               &priv->sh->mtrmng->pools_mng;
 
        /* Decrease to original index. */
        idx--;
-       MLX5_ASSERT(idx / MLX5_ASO_MTRS_PER_POOL < mtrmng->n);
-       pool = mtrmng->pools[idx / MLX5_ASO_MTRS_PER_POOL];
+       MLX5_ASSERT(idx / MLX5_ASO_MTRS_PER_POOL < pools_mng->n);
+       pool = pools_mng->pools[idx / MLX5_ASO_MTRS_PER_POOL];
        return &pool->mtrs[idx % MLX5_ASO_MTRS_PER_POOL];
 }
 
@@ -1388,14 +1412,7 @@ struct mlx5_meter_domains_infos *mlx5_flow_create_mtr_tbls
                                        (struct rte_eth_dev *dev);
 int mlx5_flow_destroy_mtr_tbls(struct rte_eth_dev *dev,
                               struct mlx5_meter_domains_infos *tbl);
-int mlx5_flow_prepare_policer_rules(struct rte_eth_dev *dev,
-                                  struct mlx5_flow_meter_info *fm,
-                                  const struct rte_flow_attr *attr);
-int mlx5_flow_destroy_policer_rules(struct rte_eth_dev *dev,
-                                   struct mlx5_flow_meter_info *fm,
-                                   const struct rte_flow_attr *attr);
-int mlx5_flow_meter_flush(struct rte_eth_dev *dev,
-                         struct rte_mtr_error *error);
+void mlx5_flow_destroy_mtr_drop_tbls(struct rte_eth_dev *dev);
 int mlx5_flow_dv_discover_counter_offset_support(struct rte_eth_dev *dev);
 int mlx5_action_handle_flush(struct rte_eth_dev *dev);
 void mlx5_release_tunnel_hub(struct mlx5_dev_ctx_shared *sh, uint16_t port_id);
@@ -1410,9 +1427,10 @@ int flow_dv_tbl_match_cb(struct mlx5_hlist *list,
 void flow_dv_tbl_remove_cb(struct mlx5_hlist *list,
                           struct mlx5_hlist_entry *entry);
 struct mlx5_flow_tbl_resource *flow_dv_tbl_resource_get(struct rte_eth_dev *dev,
-               uint32_t table_id, uint8_t egress, uint8_t transfer,
+               uint32_t table_level, uint8_t egress, uint8_t transfer,
                bool external, const struct mlx5_flow_tunnel *tunnel,
-               uint32_t group_id, uint8_t dummy, struct rte_flow_error *error);
+               uint32_t group_id, uint8_t dummy,
+               uint32_t table_id, struct rte_flow_error *error);
 
 struct mlx5_hlist_entry *flow_dv_tag_create_cb(struct mlx5_hlist *list,
                                               uint64_t key, void *cb_ctx);
@@ -1495,4 +1513,25 @@ int mlx5_flow_os_set_specific_workspace(struct mlx5_flow_workspace *data);
 void mlx5_flow_os_release_workspace(void);
 uint32_t mlx5_flow_mtr_alloc(struct rte_eth_dev *dev);
 void mlx5_flow_mtr_free(struct rte_eth_dev *dev, uint32_t mtr_idx);
+int mlx5_flow_validate_mtr_acts(struct rte_eth_dev *dev,
+                       const struct rte_flow_action *actions[RTE_COLORS],
+                       struct rte_flow_attr *attr,
+                       bool *is_rss,
+                       uint8_t *domain_bitmap,
+                       bool *is_def_policy,
+                       struct rte_mtr_error *error);
+void mlx5_flow_destroy_mtr_acts(struct rte_eth_dev *dev,
+                     struct mlx5_flow_meter_policy *mtr_policy);
+int mlx5_flow_create_mtr_acts(struct rte_eth_dev *dev,
+                     struct mlx5_flow_meter_policy *mtr_policy,
+                     const struct rte_flow_action *actions[RTE_COLORS],
+                     struct rte_mtr_error *error);
+int mlx5_flow_create_policy_rules(struct rte_eth_dev *dev,
+                            struct mlx5_flow_meter_policy *mtr_policy);
+void mlx5_flow_destroy_policy_rules(struct rte_eth_dev *dev,
+                            struct mlx5_flow_meter_policy *mtr_policy);
+int mlx5_flow_create_def_policy(struct rte_eth_dev *dev);
+void mlx5_flow_destroy_def_policy(struct rte_eth_dev *dev);
+void flow_drv_rxq_flags_set(struct rte_eth_dev *dev,
+                      struct mlx5_flow_handle *dev_handle);
 #endif /* RTE_PMD_MLX5_FLOW_H_ */