1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2020 Mellanox Technologies, Ltd
5 #include <rte_malloc.h>
8 #include <rte_bus_pci.h>
10 #include <rte_regexdev.h>
11 #include <rte_regexdev_core.h>
12 #include <rte_regexdev_driver.h>
14 #include <mlx5_glue.h>
15 #include <mlx5_devx_cmds.h>
18 #include "mlx5_regex.h"
19 #include "mlx5_regex_utils.h"
20 #include "mlx5_rxp_csrs.h"
22 int mlx5_regex_logtype;
24 const struct rte_regexdev_ops mlx5_regexdev_ops = {
25 .dev_info_get = mlx5_regex_info_get,
28 static struct ibv_device *
29 mlx5_regex_get_ib_device_match(struct rte_pci_addr *addr)
32 struct ibv_device **ibv_list = mlx5_glue->get_device_list(&n);
33 struct ibv_device *ibv_match = NULL;
40 struct rte_pci_addr pci_addr;
42 DRV_LOG(DEBUG, "Checking device \"%s\"..", ibv_list[n]->name);
43 if (mlx5_dev_to_pci_addr(ibv_list[n]->ibdev_path, &pci_addr))
45 if (rte_pci_addr_cmp(addr, &pci_addr))
47 ibv_match = ibv_list[n];
52 mlx5_glue->free_device_list(ibv_list);
56 mlx5_regex_engines_status(struct ibv_context *ctx, int num_engines)
58 uint32_t fpga_ident = 0;
62 for (i = 0; i < num_engines; i++) {
63 err = mlx5_devx_regex_register_read(ctx, i,
64 MLX5_RXP_CSR_IDENTIFIER,
66 fpga_ident = (fpga_ident & (0x0000FFFF));
67 if (err || fpga_ident != MLX5_RXP_IDENTIFIER) {
68 DRV_LOG(ERR, "Failed setup RXP %d err %d database "
69 "memory 0x%x", i, err, fpga_ident);
79 mlx5_regex_get_name(char *name, struct rte_pci_device *pci_dev __rte_unused)
81 sprintf(name, "mlx5_regex_%02x:%02x.%02x", pci_dev->addr.bus,
82 pci_dev->addr.devid, pci_dev->addr.function);
86 mlx5_regex_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
87 struct rte_pci_device *pci_dev)
89 struct ibv_device *ibv;
90 struct mlx5_regex_priv *priv = NULL;
91 struct ibv_context *ctx = NULL;
92 struct mlx5_hca_attr attr;
93 char name[RTE_REGEXDEV_NAME_MAX_LEN];
96 ibv = mlx5_regex_get_ib_device_match(&pci_dev->addr);
98 DRV_LOG(ERR, "No matching IB device for PCI slot "
99 PCI_PRI_FMT ".", pci_dev->addr.domain,
100 pci_dev->addr.bus, pci_dev->addr.devid,
101 pci_dev->addr.function);
104 DRV_LOG(INFO, "PCI information matches for device \"%s\".",
106 ctx = mlx5_glue->dv_open_device(ibv);
108 DRV_LOG(ERR, "Failed to open IB device \"%s\".", ibv->name);
112 ret = mlx5_devx_cmd_query_hca_attr(ctx, &attr);
114 DRV_LOG(ERR, "Unable to read HCA capabilities.");
117 } else if (!attr.regex || attr.regexp_num_of_engines == 0) {
118 DRV_LOG(ERR, "Not enough capabilities to support RegEx, maybe "
119 "old FW/OFED version?");
123 if (mlx5_regex_engines_status(ctx, 2)) {
124 DRV_LOG(ERR, "RegEx engine error.");
128 priv = rte_zmalloc("mlx5 regex device private", sizeof(*priv),
129 RTE_CACHE_LINE_SIZE);
131 DRV_LOG(ERR, "Failed to allocate private memory.");
136 mlx5_regex_get_name(name, pci_dev);
137 priv->regexdev = rte_regexdev_register(name);
138 if (priv->regexdev == NULL) {
139 DRV_LOG(ERR, "Failed to register RegEx device.");
140 rte_errno = rte_errno ? rte_errno : EINVAL;
143 priv->regexdev->dev_ops = &mlx5_regexdev_ops;
144 priv->regexdev->device = (struct rte_device *)pci_dev;
145 priv->regexdev->data->dev_private = priv;
150 mlx5_glue->close_device(ctx);
157 mlx5_regex_pci_remove(struct rte_pci_device *pci_dev)
159 char name[RTE_REGEXDEV_NAME_MAX_LEN];
160 struct rte_regexdev *dev;
161 struct mlx5_regex_priv *priv = NULL;
163 mlx5_regex_get_name(name, pci_dev);
164 dev = rte_regexdev_get_device_by_name(name);
167 priv = dev->data->dev_private;
170 mlx5_glue->close_device(priv->ctx);
172 rte_regexdev_unregister(priv->regexdev);
178 static const struct rte_pci_id mlx5_regex_pci_id_map[] = {
180 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
181 PCI_DEVICE_ID_MELLANOX_CONNECTX6DXBF)
188 static struct rte_pci_driver mlx5_regex_driver = {
190 .name = "mlx5_regex",
192 .id_table = mlx5_regex_pci_id_map,
193 .probe = mlx5_regex_pci_probe,
194 .remove = mlx5_regex_pci_remove,
198 RTE_INIT(rte_mlx5_regex_init)
201 rte_pci_register(&mlx5_regex_driver);
204 RTE_LOG_REGISTER(mlx5_regex_logtype, pmd.regex.mlx5, NOTICE)
205 RTE_PMD_EXPORT_NAME(net_mlx5_regex, __COUNTER__);
206 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5_regex, mlx5_regex_pci_id_map);
207 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5_regex, "* ib_uverbs & mlx5_core & mlx5_ib");