common/mlx5: extend flex parser capabilities
[dpdk.git] / drivers / common / mlx5 / mlx5_common.c
index 459cf4b..e6ff045 100644 (file)
@@ -13,7 +13,9 @@
 
 #include "mlx5_common.h"
 #include "mlx5_common_os.h"
+#include "mlx5_common_mp.h"
 #include "mlx5_common_log.h"
+#include "mlx5_common_defs.h"
 #include "mlx5_common_private.h"
 
 uint8_t haswell_broadwell_cpu;
@@ -50,6 +52,7 @@ static TAILQ_HEAD(mlx5_drivers, mlx5_class_driver) drivers_list =
 /* Head of devices. */
 static TAILQ_HEAD(mlx5_devices, mlx5_common_device) devices_list =
                                TAILQ_HEAD_INITIALIZER(devices_list);
+static pthread_mutex_t devices_list_lock;
 
 static const struct {
        const char *name;
@@ -88,6 +91,93 @@ driver_get(uint32_t class)
        return NULL;
 }
 
+/**
+ * Verify and store value for devargs.
+ *
+ * @param[in] key
+ *   Key argument to verify.
+ * @param[in] val
+ *   Value associated with key.
+ * @param opaque
+ *   User data.
+ *
+ * @return
+ *   0 on success, a negative errno value otherwise and rte_errno is set.
+ */
+static int
+mlx5_common_args_check_handler(const char *key, const char *val, void *opaque)
+{
+       struct mlx5_common_dev_config *config = opaque;
+       signed long tmp;
+
+       errno = 0;
+       tmp = strtol(val, NULL, 0);
+       if (errno) {
+               rte_errno = errno;
+               DRV_LOG(WARNING, "%s: \"%s\" is an invalid integer.", key, val);
+               return -rte_errno;
+       }
+       if (strcmp(key, "tx_db_nc") == 0) {
+               if (tmp != MLX5_TXDB_CACHED &&
+                   tmp != MLX5_TXDB_NCACHED &&
+                   tmp != MLX5_TXDB_HEURISTIC) {
+                       DRV_LOG(ERR, "Invalid Tx doorbell mapping parameter.");
+                       rte_errno = EINVAL;
+                       return -rte_errno;
+               }
+               config->dbnc = tmp;
+       } else if (strcmp(key, "mr_ext_memseg_en") == 0) {
+               config->mr_ext_memseg_en = !!tmp;
+       } else if (strcmp(key, "mr_mempool_reg_en") == 0) {
+               config->mr_mempool_reg_en = !!tmp;
+       } else if (strcmp(key, "sys_mem_en") == 0) {
+               config->sys_mem_en = !!tmp;
+       }
+       return 0;
+}
+
+/**
+ * Parse common device parameters.
+ *
+ * @param devargs
+ *   Device arguments structure.
+ * @param config
+ *   Pointer to device configuration structure.
+ *
+ * @return
+ *   0 on success, a negative errno value otherwise and rte_errno is set.
+ */
+static int
+mlx5_common_config_get(struct rte_devargs *devargs,
+                      struct mlx5_common_dev_config *config)
+{
+       struct rte_kvargs *kvlist;
+       int ret = 0;
+
+       /* Set defaults. */
+       config->mr_ext_memseg_en = 1;
+       config->mr_mempool_reg_en = 1;
+       config->sys_mem_en = 0;
+       config->dbnc = MLX5_ARG_UNSET;
+       if (devargs == NULL)
+               return 0;
+       kvlist = rte_kvargs_parse(devargs->args, NULL);
+       if (kvlist == NULL) {
+               rte_errno = EINVAL;
+               return -rte_errno;
+       }
+       ret = rte_kvargs_process(kvlist, NULL, mlx5_common_args_check_handler,
+                                config);
+       if (ret)
+               ret = -rte_errno;
+       rte_kvargs_free(kvlist);
+       DRV_LOG(DEBUG, "mr_ext_memseg_en is %u.", config->mr_ext_memseg_en);
+       DRV_LOG(DEBUG, "mr_mempool_reg_en is %u.", config->mr_mempool_reg_en);
+       DRV_LOG(DEBUG, "sys_mem_en is %u.", config->sys_mem_en);
+       DRV_LOG(DEBUG, "Tx doorbell mapping parameter is %d.", config->dbnc);
+       return ret;
+}
+
 static int
 devargs_class_handler(__rte_unused const char *key,
                      const char *class_names, void *opaque)
@@ -169,12 +259,6 @@ is_valid_class_combination(uint32_t user_classes)
        return 0;
 }
 
-static bool
-device_class_enabled(const struct mlx5_common_device *device, uint32_t class)
-{
-       return (device->classes_loaded & class) > 0;
-}
-
 static bool
 mlx5_bus_match(const struct mlx5_class_driver *drv,
               const struct rte_device *dev)
@@ -187,11 +271,11 @@ mlx5_bus_match(const struct mlx5_class_driver *drv,
 static struct mlx5_common_device *
 to_mlx5_device(const struct rte_device *rte_dev)
 {
-       struct mlx5_common_device *dev;
+       struct mlx5_common_device *cdev;
 
-       TAILQ_FOREACH(dev, &devices_list, next) {
-               if (rte_dev == dev->dev)
-                       return dev;
+       TAILQ_FOREACH(cdev, &devices_list, next) {
+               if (rte_dev == cdev->dev)
+                       return cdev;
        }
        return NULL;
 }
@@ -219,28 +303,331 @@ mlx5_dev_to_pci_str(const struct rte_device *dev, char *addr, size_t size)
 #endif
 }
 
+/**
+ * Register the mempool for the protection domain.
+ *
+ * @param cdev
+ *   Pointer to the mlx5 common device.
+ * @param mp
+ *   Mempool being registered.
+ *
+ * @return
+ *   0 on success, (-1) on failure and rte_errno is set.
+ */
+static int
+mlx5_dev_mempool_register(struct mlx5_common_device *cdev,
+                         struct rte_mempool *mp)
+{
+       struct mlx5_mp_id mp_id;
+
+       mlx5_mp_id_init(&mp_id, 0);
+       return mlx5_mr_mempool_register(&cdev->mr_scache, cdev->pd, mp, &mp_id);
+}
+
+/**
+ * Unregister the mempool from the protection domain.
+ *
+ * @param cdev
+ *   Pointer to the mlx5 common device.
+ * @param mp
+ *   Mempool being unregistered.
+ */
+void
+mlx5_dev_mempool_unregister(struct mlx5_common_device *cdev,
+                           struct rte_mempool *mp)
+{
+       struct mlx5_mp_id mp_id;
+
+       mlx5_mp_id_init(&mp_id, 0);
+       if (mlx5_mr_mempool_unregister(&cdev->mr_scache, mp, &mp_id) < 0)
+               DRV_LOG(WARNING, "Failed to unregister mempool %s for PD %p: %s",
+                       mp->name, cdev->pd, rte_strerror(rte_errno));
+}
+
+/**
+ * rte_mempool_walk() callback to register mempools for the protection domain.
+ *
+ * @param mp
+ *   The mempool being walked.
+ * @param arg
+ *   Pointer to the device shared context.
+ */
+static void
+mlx5_dev_mempool_register_cb(struct rte_mempool *mp, void *arg)
+{
+       struct mlx5_common_device *cdev = arg;
+       int ret;
+
+       ret = mlx5_dev_mempool_register(cdev, mp);
+       if (ret < 0 && rte_errno != EEXIST)
+               DRV_LOG(ERR,
+                       "Failed to register existing mempool %s for PD %p: %s",
+                       mp->name, cdev->pd, rte_strerror(rte_errno));
+}
+
+/**
+ * rte_mempool_walk() callback to unregister mempools
+ * from the protection domain.
+ *
+ * @param mp
+ *   The mempool being walked.
+ * @param arg
+ *   Pointer to the device shared context.
+ */
 static void
-dev_release(struct mlx5_common_device *dev)
+mlx5_dev_mempool_unregister_cb(struct rte_mempool *mp, void *arg)
 {
-       TAILQ_REMOVE(&devices_list, dev, next);
-       rte_free(dev);
+       mlx5_dev_mempool_unregister((struct mlx5_common_device *)arg, mp);
 }
 
+/**
+ * Mempool life cycle callback for mlx5 common devices.
+ *
+ * @param event
+ *   Mempool life cycle event.
+ * @param mp
+ *   Associated mempool.
+ * @param arg
+ *   Pointer to a device shared context.
+ */
+static void
+mlx5_dev_mempool_event_cb(enum rte_mempool_event event, struct rte_mempool *mp,
+                         void *arg)
+{
+       struct mlx5_common_device *cdev = arg;
+
+       switch (event) {
+       case RTE_MEMPOOL_EVENT_READY:
+               if (mlx5_dev_mempool_register(cdev, mp) < 0)
+                       DRV_LOG(ERR,
+                               "Failed to register new mempool %s for PD %p: %s",
+                               mp->name, cdev->pd, rte_strerror(rte_errno));
+               break;
+       case RTE_MEMPOOL_EVENT_DESTROY:
+               mlx5_dev_mempool_unregister(cdev, mp);
+               break;
+       }
+}
+
+int
+mlx5_dev_mempool_subscribe(struct mlx5_common_device *cdev)
+{
+       int ret = 0;
+
+       if (!cdev->config.mr_mempool_reg_en)
+               return 0;
+       rte_rwlock_write_lock(&cdev->mr_scache.mprwlock);
+       if (cdev->mr_scache.mp_cb_registered)
+               goto exit;
+       /* Callback for this device may be already registered. */
+       ret = rte_mempool_event_callback_register(mlx5_dev_mempool_event_cb,
+                                                 cdev);
+       if (ret != 0 && rte_errno != EEXIST)
+               goto exit;
+       /* Register mempools only once for this device. */
+       if (ret == 0)
+               rte_mempool_walk(mlx5_dev_mempool_register_cb, cdev);
+       ret = 0;
+       cdev->mr_scache.mp_cb_registered = 1;
+exit:
+       rte_rwlock_write_unlock(&cdev->mr_scache.mprwlock);
+       return ret;
+}
+
+static void
+mlx5_dev_mempool_unsubscribe(struct mlx5_common_device *cdev)
+{
+       int ret;
+
+       if (!cdev->mr_scache.mp_cb_registered ||
+           !cdev->config.mr_mempool_reg_en)
+               return;
+       /* Stop watching for mempool events and unregister all mempools. */
+       ret = rte_mempool_event_callback_unregister(mlx5_dev_mempool_event_cb,
+                                                   cdev);
+       if (ret == 0)
+               rte_mempool_walk(mlx5_dev_mempool_unregister_cb, cdev);
+}
+
+/**
+ * Callback for memory event.
+ *
+ * @param event_type
+ *   Memory event type.
+ * @param addr
+ *   Address of memory.
+ * @param len
+ *   Size of memory.
+ */
+static void
+mlx5_mr_mem_event_cb(enum rte_mem_event event_type, const void *addr,
+                    size_t len, void *arg __rte_unused)
+{
+       struct mlx5_common_device *cdev;
+
+       /* Must be called from the primary process. */
+       MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
+       switch (event_type) {
+       case RTE_MEM_EVENT_FREE:
+               pthread_mutex_lock(&devices_list_lock);
+               /* Iterate all the existing mlx5 devices. */
+               TAILQ_FOREACH(cdev, &devices_list, next)
+                       mlx5_free_mr_by_addr(&cdev->mr_scache,
+                                            mlx5_os_get_ctx_device_name
+                                                                   (cdev->ctx),
+                                            addr, len);
+               pthread_mutex_unlock(&devices_list_lock);
+               break;
+       case RTE_MEM_EVENT_ALLOC:
+       default:
+               break;
+       }
+}
+
+/**
+ * Uninitialize all HW global of device context.
+ *
+ * @param cdev
+ *   Pointer to mlx5 device structure.
+ *
+ * @return
+ *   0 on success, a negative errno value otherwise and rte_errno is set.
+ */
+static void
+mlx5_dev_hw_global_release(struct mlx5_common_device *cdev)
+{
+       if (cdev->pd != NULL) {
+               claim_zero(mlx5_os_dealloc_pd(cdev->pd));
+               cdev->pd = NULL;
+       }
+       if (cdev->ctx != NULL) {
+               claim_zero(mlx5_glue->close_device(cdev->ctx));
+               cdev->ctx = NULL;
+       }
+}
+
+/**
+ * Initialize all HW global of device context.
+ *
+ * @param cdev
+ *   Pointer to mlx5 device structure.
+ * @param classes
+ *   Chosen classes come from user device arguments.
+ *
+ * @return
+ *   0 on success, a negative errno value otherwise and rte_errno is set.
+ */
 static int
-drivers_remove(struct mlx5_common_device *dev, uint32_t enabled_classes)
+mlx5_dev_hw_global_prepare(struct mlx5_common_device *cdev, uint32_t classes)
+{
+       int ret;
+
+       /* Create context device */
+       ret = mlx5_os_open_device(cdev, classes);
+       if (ret < 0)
+               return ret;
+       /* Allocate Protection Domain object and extract its pdn. */
+       ret = mlx5_os_pd_create(cdev);
+       if (ret)
+               goto error;
+       /* All actions taken below are relevant only when DevX is supported */
+       if (cdev->config.devx == 0)
+               return 0;
+       /* Query HCA attributes. */
+       ret = mlx5_devx_cmd_query_hca_attr(cdev->ctx, &cdev->config.hca_attr);
+       if (ret) {
+               DRV_LOG(ERR, "Unable to read HCA capabilities.");
+               rte_errno = ENOTSUP;
+               goto error;
+       }
+       return 0;
+error:
+       mlx5_dev_hw_global_release(cdev);
+       return ret;
+}
+
+static void
+mlx5_common_dev_release(struct mlx5_common_device *cdev)
+{
+       pthread_mutex_lock(&devices_list_lock);
+       TAILQ_REMOVE(&devices_list, cdev, next);
+       pthread_mutex_unlock(&devices_list_lock);
+       if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
+               if (TAILQ_EMPTY(&devices_list))
+                       rte_mem_event_callback_unregister("MLX5_MEM_EVENT_CB",
+                                                         NULL);
+               mlx5_dev_mempool_unsubscribe(cdev);
+               mlx5_mr_release_cache(&cdev->mr_scache);
+               mlx5_dev_hw_global_release(cdev);
+       }
+       rte_free(cdev);
+}
+
+static struct mlx5_common_device *
+mlx5_common_dev_create(struct rte_device *eal_dev, uint32_t classes)
+{
+       struct mlx5_common_device *cdev;
+       int ret;
+
+       cdev = rte_zmalloc("mlx5_common_device", sizeof(*cdev), 0);
+       if (!cdev) {
+               DRV_LOG(ERR, "Device allocation failure.");
+               rte_errno = ENOMEM;
+               return NULL;
+       }
+       cdev->dev = eal_dev;
+       if (rte_eal_process_type() != RTE_PROC_PRIMARY)
+               goto exit;
+       /* Parse device parameters. */
+       ret = mlx5_common_config_get(eal_dev->devargs, &cdev->config);
+       if (ret < 0) {
+               DRV_LOG(ERR, "Failed to process device arguments: %s",
+                       strerror(rte_errno));
+               rte_free(cdev);
+               return NULL;
+       }
+       mlx5_malloc_mem_select(cdev->config.sys_mem_en);
+       /* Initialize all HW global of device context. */
+       ret = mlx5_dev_hw_global_prepare(cdev, classes);
+       if (ret) {
+               DRV_LOG(ERR, "Failed to initialize device context.");
+               rte_free(cdev);
+               return NULL;
+       }
+       /* Initialize global MR cache resources and update its functions. */
+       ret = mlx5_mr_create_cache(&cdev->mr_scache, eal_dev->numa_node);
+       if (ret) {
+               DRV_LOG(ERR, "Failed to initialize global MR share cache.");
+               mlx5_dev_hw_global_release(cdev);
+               rte_free(cdev);
+               return NULL;
+       }
+       /* Register callback function for global shared MR cache management. */
+       if (TAILQ_EMPTY(&devices_list))
+               rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
+                                               mlx5_mr_mem_event_cb, NULL);
+exit:
+       pthread_mutex_lock(&devices_list_lock);
+       TAILQ_INSERT_HEAD(&devices_list, cdev, next);
+       pthread_mutex_unlock(&devices_list_lock);
+       return cdev;
+}
+
+static int
+drivers_remove(struct mlx5_common_device *cdev, uint32_t enabled_classes)
 {
        struct mlx5_class_driver *driver;
        int local_ret = -ENODEV;
        unsigned int i = 0;
        int ret = 0;
 
-       enabled_classes &= dev->classes_loaded;
+       enabled_classes &= cdev->classes_loaded;
        while (enabled_classes) {
                driver = driver_get(RTE_BIT64(i));
                if (driver != NULL) {
-                       local_ret = driver->remove(dev->dev);
+                       local_ret = driver->remove(cdev);
                        if (local_ret == 0)
-                               dev->classes_loaded &= ~RTE_BIT64(i);
+                               cdev->classes_loaded &= ~RTE_BIT64(i);
                        else if (ret == 0)
                                ret = local_ret;
                }
@@ -253,7 +640,7 @@ drivers_remove(struct mlx5_common_device *dev, uint32_t enabled_classes)
 }
 
 static int
-drivers_probe(struct mlx5_common_device *dev, uint32_t user_classes)
+drivers_probe(struct mlx5_common_device *cdev, uint32_t user_classes)
 {
        struct mlx5_class_driver *driver;
        uint32_t enabled_classes = 0;
@@ -263,16 +650,16 @@ drivers_probe(struct mlx5_common_device *dev, uint32_t user_classes)
        TAILQ_FOREACH(driver, &drivers_list, next) {
                if ((driver->drv_class & user_classes) == 0)
                        continue;
-               if (!mlx5_bus_match(driver, dev->dev))
+               if (!mlx5_bus_match(driver, cdev->dev))
                        continue;
-               already_loaded = dev->classes_loaded & driver->drv_class;
+               already_loaded = cdev->classes_loaded & driver->drv_class;
                if (already_loaded && driver->probe_again == 0) {
                        DRV_LOG(ERR, "Device %s is already probed",
-                               dev->dev->name);
+                               cdev->dev->name);
                        ret = -EEXIST;
                        goto probe_err;
                }
-               ret = driver->probe(dev->dev);
+               ret = driver->probe(cdev);
                if (ret < 0) {
                        DRV_LOG(ERR, "Failed to load driver %s",
                                driver->name);
@@ -280,20 +667,20 @@ drivers_probe(struct mlx5_common_device *dev, uint32_t user_classes)
                }
                enabled_classes |= driver->drv_class;
        }
-       dev->classes_loaded |= enabled_classes;
+       cdev->classes_loaded |= enabled_classes;
        return 0;
 probe_err:
        /* Only unload drivers which are enabled which were enabled
         * in this probe instance.
         */
-       drivers_remove(dev, enabled_classes);
+       drivers_remove(cdev, enabled_classes);
        return ret;
 }
 
 int
 mlx5_common_dev_probe(struct rte_device *eal_dev)
 {
-       struct mlx5_common_device *dev;
+       struct mlx5_common_device *cdev;
        uint32_t classes = 0;
        bool new_device = false;
        int ret;
@@ -309,105 +696,149 @@ mlx5_common_dev_probe(struct rte_device *eal_dev)
        if (classes == 0)
                /* Default to net class. */
                classes = MLX5_CLASS_ETH;
-       dev = to_mlx5_device(eal_dev);
-       if (!dev) {
-               dev = rte_zmalloc("mlx5_common_device", sizeof(*dev), 0);
-               if (!dev)
+       cdev = to_mlx5_device(eal_dev);
+       if (!cdev) {
+               cdev = mlx5_common_dev_create(eal_dev, classes);
+               if (!cdev)
                        return -ENOMEM;
-               dev->dev = eal_dev;
-               TAILQ_INSERT_HEAD(&devices_list, dev, next);
                new_device = true;
-       } else {
-               /* Validate combination here. */
-               ret = is_valid_class_combination(classes |
-                                                dev->classes_loaded);
-               if (ret != 0) {
-                       DRV_LOG(ERR, "Unsupported mlx5 classes combination.");
-                       return ret;
-               }
        }
-       ret = drivers_probe(dev, classes);
+       /*
+        * Validate combination here.
+        * For new device, the classes_loaded field is 0 and it check only
+        * the classes given as user device arguments.
+        */
+       ret = is_valid_class_combination(classes | cdev->classes_loaded);
+       if (ret != 0) {
+               DRV_LOG(ERR, "Unsupported mlx5 classes combination.");
+               goto class_err;
+       }
+       ret = drivers_probe(cdev, classes);
        if (ret)
                goto class_err;
        return 0;
 class_err:
        if (new_device)
-               dev_release(dev);
+               mlx5_common_dev_release(cdev);
        return ret;
 }
 
 int
 mlx5_common_dev_remove(struct rte_device *eal_dev)
 {
-       struct mlx5_common_device *dev;
+       struct mlx5_common_device *cdev;
        int ret;
 
-       dev = to_mlx5_device(eal_dev);
-       if (!dev)
+       cdev = to_mlx5_device(eal_dev);
+       if (!cdev)
                return -ENODEV;
        /* Matching device found, cleanup and unload drivers. */
-       ret = drivers_remove(dev, dev->classes_loaded);
-       if (ret != 0)
-               dev_release(dev);
+       ret = drivers_remove(cdev, cdev->classes_loaded);
+       if (ret == 0)
+               mlx5_common_dev_release(cdev);
        return ret;
 }
 
+/**
+ * Callback to DMA map external memory to a device.
+ *
+ * @param rte_dev
+ *   Pointer to the generic device.
+ * @param addr
+ *   Starting virtual address of memory to be mapped.
+ * @param iova
+ *   Starting IOVA address of memory to be mapped.
+ * @param len
+ *   Length of memory segment being mapped.
+ *
+ * @return
+ *   0 on success, negative value on error.
+ */
 int
-mlx5_common_dev_dma_map(struct rte_device *dev, void *addr, uint64_t iova,
-                       size_t len)
+mlx5_common_dev_dma_map(struct rte_device *rte_dev, void *addr,
+                       uint64_t iova __rte_unused, size_t len)
 {
-       struct mlx5_class_driver *driver = NULL;
-       struct mlx5_class_driver *temp;
-       struct mlx5_common_device *mdev;
-       int ret = -EINVAL;
+       struct mlx5_common_device *dev;
+       struct mlx5_mr *mr;
 
-       mdev = to_mlx5_device(dev);
-       if (!mdev)
-               return -ENODEV;
-       TAILQ_FOREACH(driver, &drivers_list, next) {
-               if (!device_class_enabled(mdev, driver->drv_class) ||
-                   driver->dma_map == NULL)
-                       continue;
-               ret = driver->dma_map(dev, addr, iova, len);
-               if (ret)
-                       goto map_err;
+       dev = to_mlx5_device(rte_dev);
+       if (!dev) {
+               DRV_LOG(WARNING,
+                       "Unable to find matching mlx5 device to device %s",
+                       rte_dev->name);
+               rte_errno = ENODEV;
+               return -1;
        }
-       return ret;
-map_err:
-       TAILQ_FOREACH(temp, &drivers_list, next) {
-               if (temp == driver)
-                       break;
-               if (device_class_enabled(mdev, temp->drv_class) &&
-                   temp->dma_map && temp->dma_unmap)
-                       temp->dma_unmap(dev, addr, iova, len);
+       mr = mlx5_create_mr_ext(dev->pd, (uintptr_t)addr, len,
+                               SOCKET_ID_ANY, dev->mr_scache.reg_mr_cb);
+       if (!mr) {
+               DRV_LOG(WARNING, "Device %s unable to DMA map", rte_dev->name);
+               rte_errno = EINVAL;
+               return -1;
        }
-       return ret;
+       rte_rwlock_write_lock(&dev->mr_scache.rwlock);
+       LIST_INSERT_HEAD(&dev->mr_scache.mr_list, mr, mr);
+       /* Insert to the global cache table. */
+       mlx5_mr_insert_cache(&dev->mr_scache, mr);
+       rte_rwlock_write_unlock(&dev->mr_scache.rwlock);
+       return 0;
 }
 
+/**
+ * Callback to DMA unmap external memory to a device.
+ *
+ * @param rte_dev
+ *   Pointer to the generic device.
+ * @param addr
+ *   Starting virtual address of memory to be unmapped.
+ * @param iova
+ *   Starting IOVA address of memory to be unmapped.
+ * @param len
+ *   Length of memory segment being unmapped.
+ *
+ * @return
+ *   0 on success, negative value on error.
+ */
 int
-mlx5_common_dev_dma_unmap(struct rte_device *dev, void *addr, uint64_t iova,
-                         size_t len)
+mlx5_common_dev_dma_unmap(struct rte_device *rte_dev, void *addr,
+                         uint64_t iova __rte_unused, size_t len __rte_unused)
 {
-       struct mlx5_class_driver *driver;
-       struct mlx5_common_device *mdev;
-       int local_ret = -EINVAL;
-       int ret = 0;
+       struct mlx5_common_device *dev;
+       struct mr_cache_entry entry;
+       struct mlx5_mr *mr;
 
-       mdev = to_mlx5_device(dev);
-       if (!mdev)
-               return -ENODEV;
-       /* There is no unmap error recovery in current implementation. */
-       TAILQ_FOREACH_REVERSE(driver, &drivers_list, mlx5_drivers, next) {
-               if (!device_class_enabled(mdev, driver->drv_class) ||
-                   driver->dma_unmap == NULL)
-                       continue;
-               local_ret = driver->dma_unmap(dev, addr, iova, len);
-               if (local_ret && (ret == 0))
-                       ret = local_ret;
+       dev = to_mlx5_device(rte_dev);
+       if (!dev) {
+               DRV_LOG(WARNING,
+                       "Unable to find matching mlx5 device to device %s.",
+                       rte_dev->name);
+               rte_errno = ENODEV;
+               return -1;
        }
-       if (local_ret)
-               ret = local_ret;
-       return ret;
+       rte_rwlock_read_lock(&dev->mr_scache.rwlock);
+       mr = mlx5_mr_lookup_list(&dev->mr_scache, &entry, (uintptr_t)addr);
+       if (!mr) {
+               rte_rwlock_read_unlock(&dev->mr_scache.rwlock);
+               DRV_LOG(WARNING,
+                       "Address 0x%" PRIxPTR " wasn't registered to device %s",
+                       (uintptr_t)addr, rte_dev->name);
+               rte_errno = EINVAL;
+               return -1;
+       }
+       LIST_REMOVE(mr, mr);
+       DRV_LOG(DEBUG, "MR(%p) is removed from list.", (void *)mr);
+       mlx5_mr_free(mr, dev->mr_scache.dereg_mr_cb);
+       mlx5_mr_rebuild_cache(&dev->mr_scache);
+       /*
+        * No explicit wmb is needed after updating dev_gen due to
+        * store-release ordering in unlock that provides the
+        * implicit barrier at the software visible level.
+        */
+       ++dev->mr_scache.dev_gen;
+       DRV_LOG(DEBUG, "Broadcasting local cache flush, gen=%d.",
+               dev->mr_scache.dev_gen);
+       rte_rwlock_read_unlock(&dev->mr_scache.rwlock);
+       return 0;
 }
 
 void
@@ -438,6 +869,7 @@ mlx5_common_init(void)
        if (mlx5_common_initialized)
                return;
 
+       pthread_mutex_init(&devices_list_lock, NULL);
        mlx5_glue_constructor();
        mlx5_common_driver_init();
        mlx5_common_initialized = true;