net/mlx5: fix flow age event triggering
[dpdk.git] / drivers / net / sfc / sfc_mae.h
index bf43263..9740e54 100644 (file)
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: BSD-3-Clause
  *
- * Copyright(c) 2019-2020 Xilinx, Inc.
+ * Copyright(c) 2019-2021 Xilinx, Inc.
  * Copyright(c) 2019 Solarflare Communications Inc.
  *
  * This software was jointly developed between OKTET Labs (under contract
@@ -27,6 +27,7 @@ struct sfc_mae_fw_rsrc {
        union {
                efx_mae_aset_id_t       aset_id;
                efx_mae_rule_id_t       rule_id;
+               efx_mae_eh_id_t         eh_id;
        };
 };
 
@@ -41,11 +42,24 @@ struct sfc_mae_outer_rule {
 
 TAILQ_HEAD(sfc_mae_outer_rules, sfc_mae_outer_rule);
 
+/** Encap. header registry entry */
+struct sfc_mae_encap_header {
+       TAILQ_ENTRY(sfc_mae_encap_header)       entries;
+       unsigned int                            refcnt;
+       uint8_t                                 *buf;
+       size_t                                  size;
+       efx_tunnel_protocol_t                   type;
+       struct sfc_mae_fw_rsrc                  fw_rsrc;
+};
+
+TAILQ_HEAD(sfc_mae_encap_headers, sfc_mae_encap_header);
+
 /** Action set registry entry */
 struct sfc_mae_action_set {
        TAILQ_ENTRY(sfc_mae_action_set) entries;
        unsigned int                    refcnt;
        efx_mae_actions_t               *spec;
+       struct sfc_mae_encap_header     *encap_header;
        struct sfc_mae_fw_rsrc          fw_rsrc;
 };
 
@@ -58,6 +72,17 @@ enum sfc_mae_status {
        SFC_MAE_STATUS_SUPPORTED
 };
 
+/*
+ * Encap. header bounce buffer. It is used to store header data
+ * when parsing the header definition in the action VXLAN_ENCAP.
+ */
+struct sfc_mae_bounce_eh {
+       uint8_t                         *buf;
+       size_t                          buf_size;
+       size_t                          size;
+       efx_tunnel_protocol_t           type;
+};
+
 struct sfc_mae {
        /** Assigned switch domain identifier */
        uint16_t                        switch_domain_id;
@@ -73,8 +98,12 @@ struct sfc_mae {
        uint32_t                        encap_types_supported;
        /** Outer rule registry */
        struct sfc_mae_outer_rules      outer_rules;
+       /** Encap. header registry */
+       struct sfc_mae_encap_headers    encap_headers;
        /** Action set registry */
        struct sfc_mae_action_sets      action_sets;
+       /** Encap. header bounce buffer */
+       struct sfc_mae_bounce_eh        bounce_eh;
 };
 
 struct sfc_adapter;
@@ -197,7 +226,7 @@ int sfc_mae_rule_parse_pattern(struct sfc_adapter *sa,
                               struct rte_flow_error *error);
 int sfc_mae_rule_parse_actions(struct sfc_adapter *sa,
                               const struct rte_flow_action actions[],
-                              struct sfc_mae_action_set **action_setp,
+                              struct sfc_flow_spec_mae *spec_mae,
                               struct rte_flow_error *error);
 sfc_flow_verify_cb_t sfc_mae_flow_verify;
 sfc_flow_insert_cb_t sfc_mae_flow_insert;