regex/mlx5: support info query
authorOri Kam <orika@mellanox.com>
Mon, 20 Jul 2020 06:26:08 +0000 (06:26 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 21 Jul 2020 17:04:05 +0000 (19:04 +0200)
This commit adds the get info function.

Signed-off-by: Ori Kam <orika@mellanox.com>
drivers/regex/mlx5/Makefile
drivers/regex/mlx5/meson.build
drivers/regex/mlx5/mlx5_regex.c
drivers/regex/mlx5/mlx5_regex.h
drivers/regex/mlx5/mlx5_rxp.c [new file with mode: 0644]

index c5978b5..aea9824 100644 (file)
@@ -8,6 +8,7 @@ LIB = librte_pmd_mlx5_regex.a
 
 # Sources.
 SRCS-$(CONFIG_RTE_LIBRTE_MLX5_REGEX_PMD) += mlx5_regex.c
+SRCS-$(CONFIG_RTE_LIBRTE_MLX5_REGEX_PMD) += mlx5_rxp.c
 
 # Basic CFLAGS.
 CFLAGS += -O3
index 6ebe6d4..0a4d410 100644 (file)
@@ -11,6 +11,7 @@ fmt_name = 'mlx5_regex'
 deps += ['common_mlx5', 'bus_pci', 'eal', 'regexdev']
 sources = files(
        'mlx5_regex.c',
+       'mlx5_rxp.c',
 )
 cflags_options = [
        '-std=c11',
index 5c0b2c4..ce2216b 100644 (file)
@@ -20,7 +20,9 @@
 
 int mlx5_regex_logtype;
 
-static const struct rte_regexdev_ops mlx5_regexdev_ops = {0};
+const struct rte_regexdev_ops mlx5_regexdev_ops = {
+       .dev_info_get = mlx5_regex_info_get,
+};
 
 static struct ibv_device *
 mlx5_regex_get_ib_device_match(struct rte_pci_addr *addr)
index 0ce1e4d..9d0fc16 100644 (file)
@@ -11,4 +11,9 @@ struct mlx5_regex_priv {
        struct rte_pci_device *pci_dev;
        struct rte_regexdev *regexdev; /* Pointer to the RegEx dev. */
 };
+
+/* mlx5_rxp.c */
+int mlx5_regex_info_get(struct rte_regexdev *dev,
+                       struct rte_regexdev_info *info);
+
 #endif /* MLX5_REGEX_H */
diff --git a/drivers/regex/mlx5/mlx5_rxp.c b/drivers/regex/mlx5/mlx5_rxp.c
new file mode 100644 (file)
index 0000000..9a9645f
--- /dev/null
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright 2020 Mellanox Technologies, Ltd
+ */
+
+#include <rte_log.h>
+#include <rte_errno.h>
+#include <rte_regexdev.h>
+#include <rte_regexdev_core.h>
+#include <rte_regexdev_driver.h>
+
+#include "mlx5_regex.h"
+
+#define MLX5_REGEX_MAX_MATCHES 255
+#define MLX5_REGEX_MAX_PAYLOAD_SIZE UINT16_MAX
+#define MLX5_REGEX_MAX_RULES_PER_GROUP UINT16_MAX
+#define MLX5_REGEX_MAX_GROUPS UINT16_MAX
+
+int
+mlx5_regex_info_get(struct rte_regexdev *dev __rte_unused,
+                   struct rte_regexdev_info *info)
+{
+       info->max_matches = MLX5_REGEX_MAX_MATCHES;
+       info->max_payload_size = MLX5_REGEX_MAX_PAYLOAD_SIZE;
+       info->max_rules_per_group = MLX5_REGEX_MAX_RULES_PER_GROUP;
+       info->max_groups = MLX5_REGEX_MAX_GROUPS;
+       info->regexdev_capa = RTE_REGEXDEV_SUPP_PCRE_GREEDY_F;
+       info->rule_flags = 0;
+       return 0;
+}