test/crypto: skip unsupported session
[dpdk.git] / drivers / common / mlx5 / mlx5_glue.h
index 33afaf4..184c410 100644 (file)
@@ -66,6 +66,7 @@ enum mlx5dv_flow_table_type { flow_table_type = 0, };
 #ifndef HAVE_IBV_DEVX_OBJ
 struct mlx5dv_devx_obj;
 struct mlx5dv_devx_umem { uint32_t umem_id; };
+struct mlx5dv_devx_uar { void *reg_addr; void *base_addr; uint32_t page_id; };
 #endif
 
 #ifndef HAVE_IBV_DEVX_ASYNC
@@ -86,6 +87,21 @@ struct mlx5dv_devx_port;
 struct mlx5dv_dr_flow_meter_attr;
 #endif
 
+#ifndef HAVE_IBV_DEVX_EVENT
+struct mlx5dv_devx_event_channel { int fd; };
+struct mlx5dv_devx_async_event_hdr;
+#define MLX5DV_DEVX_CREATE_EVENT_CHANNEL_FLAGS_OMIT_EV_DATA 1
+#endif
+
+#ifndef HAVE_IBV_VAR
+struct mlx5dv_var { uint32_t page_id; uint32_t length; off_t mmap_off;
+                       uint64_t comp_mask; };
+#endif
+
+#ifndef IBV_ACCESS_RELAXED_ORDERING
+#define IBV_ACCESS_RELAXED_ORDERING 0
+#endif
+
 /* LIB_GLUE_VERSION must be updated every time this structure is modified. */
 struct mlx5_glue {
        const char *version;
@@ -224,6 +240,12 @@ struct mlx5_glue {
        int (*dv_destroy_flow)(void *flow);
        int (*dv_destroy_flow_matcher)(void *matcher);
        struct ibv_context *(*dv_open_device)(struct ibv_device *device);
+       struct mlx5dv_var *(*dv_alloc_var)(struct ibv_context *context,
+                                          uint32_t flags);
+       void (*dv_free_var)(struct mlx5dv_var *var);
+       struct mlx5dv_devx_uar *(*devx_alloc_uar)(struct ibv_context *context,
+                                                 uint32_t flags);
+       void (*devx_free_uar)(struct mlx5dv_devx_uar *devx_uar);
        struct mlx5dv_devx_obj *(*devx_obj_create)
                                        (struct ibv_context *ctx,
                                         const void *in, size_t inlen,
@@ -259,8 +281,29 @@ struct mlx5_glue {
                               uint32_t port_num,
                               struct mlx5dv_devx_port *mlx5_devx_port);
        int (*dr_dump_domain)(FILE *file, void *domain);
+       int (*devx_query_eqn)(struct ibv_context *context, uint32_t cpus,
+                             uint32_t *eqn);
+       struct mlx5dv_devx_event_channel *(*devx_create_event_channel)
+                               (struct ibv_context *context, int flags);
+       void (*devx_destroy_event_channel)
+                       (struct mlx5dv_devx_event_channel *event_channel);
+       int (*devx_subscribe_devx_event)
+                       (struct mlx5dv_devx_event_channel *event_channel,
+                        struct mlx5dv_devx_obj *obj,
+                        uint16_t events_sz,
+                        uint16_t events_num[],
+                        uint64_t cookie);
+       int (*devx_subscribe_devx_event_fd)
+                       (struct mlx5dv_devx_event_channel *event_channel,
+                        int fd,
+                        struct mlx5dv_devx_obj *obj,
+                        uint16_t event_num);
+       ssize_t (*devx_get_event)
+                       (struct mlx5dv_devx_event_channel *event_channel,
+                        struct mlx5dv_devx_async_event_hdr *event_data,
+                        size_t event_resp_len);
 };
 
-const struct mlx5_glue *mlx5_glue;
+extern const struct mlx5_glue *mlx5_glue;
 
 #endif /* MLX5_GLUE_H_ */