2018-01-29 14:11:25 +01:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2014 Intel Corporation.
|
|
|
|
* Copyright(c) 2014 6WIND S.A.
|
2013-09-18 12:00:00 +02:00
|
|
|
*/
|
|
|
|
|
2015-02-26 04:32:25 +09:00
|
|
|
#include <stdio.h>
|
2014-03-01 13:14:34 +01:00
|
|
|
#include <string.h>
|
2013-09-18 12:00:00 +02:00
|
|
|
#include <inttypes.h>
|
2014-04-11 09:36:52 +02:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
2018-01-21 20:48:06 -05:00
|
|
|
#include <rte_compat.h>
|
2017-06-30 20:19:41 +02:00
|
|
|
#include <rte_bus.h>
|
2018-07-11 23:45:00 +02:00
|
|
|
#include <rte_class.h>
|
2014-04-21 10:59:31 -04:00
|
|
|
#include <rte_dev.h>
|
2014-04-11 09:36:52 +02:00
|
|
|
#include <rte_devargs.h>
|
2014-03-01 13:14:34 +01:00
|
|
|
#include <rte_debug.h>
|
2018-07-11 23:45:00 +02:00
|
|
|
#include <rte_errno.h>
|
|
|
|
#include <rte_kvargs.h>
|
2015-02-26 04:32:25 +09:00
|
|
|
#include <rte_log.h>
|
2018-04-13 16:30:38 +08:00
|
|
|
#include <rte_spinlock.h>
|
|
|
|
#include <rte_malloc.h>
|
2014-04-11 09:36:52 +02:00
|
|
|
|
2013-09-18 12:00:00 +02:00
|
|
|
#include "eal_private.h"
|
|
|
|
|
2018-04-13 16:30:38 +08:00
|
|
|
/**
|
|
|
|
* The device event callback description.
|
|
|
|
*
|
|
|
|
* It contains callback address to be registered by user application,
|
|
|
|
* the pointer to the parameters for callback, and the device name.
|
|
|
|
*/
|
|
|
|
struct dev_event_callback {
|
|
|
|
TAILQ_ENTRY(dev_event_callback) next; /**< Callbacks list */
|
|
|
|
rte_dev_event_cb_fn cb_fn; /**< Callback address */
|
|
|
|
void *cb_arg; /**< Callback parameter */
|
|
|
|
char *dev_name; /**< Callback device name, NULL is for all device */
|
|
|
|
uint32_t active; /**< Callback is executing */
|
|
|
|
};
|
|
|
|
|
|
|
|
/** @internal Structure to keep track of registered callbacks */
|
|
|
|
TAILQ_HEAD(dev_event_cb_list, dev_event_callback);
|
|
|
|
|
|
|
|
/* The device event callback list for all registered callbacks. */
|
|
|
|
static struct dev_event_cb_list dev_event_cbs;
|
|
|
|
|
|
|
|
/* spinlock for device callbacks */
|
|
|
|
static rte_spinlock_t dev_event_lock = RTE_SPINLOCK_INITIALIZER;
|
|
|
|
|
2017-06-30 20:19:41 +02:00
|
|
|
static int cmp_detached_dev_name(const struct rte_device *dev,
|
|
|
|
const void *_name)
|
|
|
|
{
|
|
|
|
const char *name = _name;
|
|
|
|
|
|
|
|
/* skip attached devices */
|
|
|
|
if (dev->driver != NULL)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return strcmp(dev->name, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmp_dev_name(const struct rte_device *dev, const void *_name)
|
|
|
|
{
|
|
|
|
const char *name = _name;
|
|
|
|
|
|
|
|
return strcmp(dev->name, name);
|
|
|
|
}
|
|
|
|
|
2016-09-20 18:11:24 +05:30
|
|
|
int rte_eal_dev_attach(const char *name, const char *devargs)
|
|
|
|
{
|
2017-07-31 14:58:29 +02:00
|
|
|
struct rte_bus *bus;
|
2016-09-20 18:11:24 +05:30
|
|
|
|
|
|
|
if (name == NULL || devargs == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Invalid device or arguments provided\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-07-31 14:58:29 +02:00
|
|
|
bus = rte_bus_find_by_device_name(name);
|
|
|
|
if (bus == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Unable to find a bus for the device '%s'\n",
|
|
|
|
name);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2017-11-07 06:54:20 +00:00
|
|
|
if (strcmp(bus->name, "pci") == 0 || strcmp(bus->name, "vdev") == 0)
|
|
|
|
return rte_eal_hotplug_add(bus->name, name, devargs);
|
2016-09-20 18:11:24 +05:30
|
|
|
|
2017-11-07 06:54:20 +00:00
|
|
|
RTE_LOG(ERR, EAL,
|
|
|
|
"Device attach is only supported for PCI and vdev devices.\n");
|
|
|
|
|
|
|
|
return -ENOTSUP;
|
2016-09-20 18:11:24 +05:30
|
|
|
}
|
|
|
|
|
2017-06-30 20:19:42 +02:00
|
|
|
int rte_eal_dev_detach(struct rte_device *dev)
|
2016-09-20 18:11:24 +05:30
|
|
|
{
|
2017-06-30 20:19:42 +02:00
|
|
|
struct rte_bus *bus;
|
|
|
|
int ret;
|
2016-09-20 18:11:24 +05:30
|
|
|
|
2017-06-30 20:19:42 +02:00
|
|
|
if (dev == NULL) {
|
2016-09-20 18:11:24 +05:30
|
|
|
RTE_LOG(ERR, EAL, "Invalid device provided.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-06-30 20:19:42 +02:00
|
|
|
bus = rte_bus_find_by_device(dev);
|
|
|
|
if (bus == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Cannot find bus for device (%s)\n",
|
|
|
|
dev->name);
|
|
|
|
return -EINVAL;
|
2016-09-20 18:11:24 +05:30
|
|
|
}
|
|
|
|
|
2017-06-30 20:19:42 +02:00
|
|
|
if (bus->unplug == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Bus function not supported\n");
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = bus->unplug(dev);
|
|
|
|
if (ret)
|
|
|
|
RTE_LOG(ERR, EAL, "Driver cannot detach the device (%s)\n",
|
|
|
|
dev->name);
|
|
|
|
return ret;
|
2016-09-20 18:11:24 +05:30
|
|
|
}
|
2017-06-30 20:19:41 +02:00
|
|
|
|
2018-01-21 20:48:06 -05:00
|
|
|
int __rte_experimental rte_eal_hotplug_add(const char *busname, const char *devname,
|
2017-06-30 20:19:41 +02:00
|
|
|
const char *devargs)
|
|
|
|
{
|
|
|
|
struct rte_bus *bus;
|
|
|
|
struct rte_device *dev;
|
2017-07-15 19:56:38 +02:00
|
|
|
struct rte_devargs *da;
|
2017-06-30 20:19:41 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
bus = rte_bus_find_by_name(busname);
|
|
|
|
if (bus == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Cannot find bus (%s)\n", busname);
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bus->plug == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Function plug not supported by bus (%s)\n",
|
|
|
|
bus->name);
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
2017-07-15 19:56:38 +02:00
|
|
|
da = calloc(1, sizeof(*da));
|
2018-04-24 01:54:49 +02:00
|
|
|
if (da == NULL)
|
|
|
|
return -ENOMEM;
|
2017-07-15 19:56:38 +02:00
|
|
|
|
2018-07-11 23:44:52 +02:00
|
|
|
ret = rte_devargs_parsef(da, "%s:%s,%s",
|
|
|
|
busname, devname, devargs);
|
2017-07-15 19:56:38 +02:00
|
|
|
if (ret)
|
|
|
|
goto err_devarg;
|
|
|
|
|
2018-04-24 01:54:51 +02:00
|
|
|
ret = rte_devargs_insert(da);
|
2017-07-15 19:56:38 +02:00
|
|
|
if (ret)
|
|
|
|
goto err_devarg;
|
|
|
|
|
2017-06-30 20:19:41 +02:00
|
|
|
ret = bus->scan();
|
|
|
|
if (ret)
|
2017-07-15 19:56:38 +02:00
|
|
|
goto err_devarg;
|
2017-06-30 20:19:41 +02:00
|
|
|
|
|
|
|
dev = bus->find_device(NULL, cmp_detached_dev_name, devname);
|
|
|
|
if (dev == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Cannot find unplugged device (%s)\n",
|
|
|
|
devname);
|
2017-07-15 19:56:38 +02:00
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_devarg;
|
2017-06-30 20:19:41 +02:00
|
|
|
}
|
|
|
|
|
2017-07-15 19:56:42 +02:00
|
|
|
ret = bus->plug(dev);
|
2017-07-15 19:56:38 +02:00
|
|
|
if (ret) {
|
2017-06-30 20:19:41 +02:00
|
|
|
RTE_LOG(ERR, EAL, "Driver cannot attach the device (%s)\n",
|
|
|
|
dev->name);
|
2017-07-15 19:56:38 +02:00
|
|
|
goto err_devarg;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_devarg:
|
2018-04-24 01:54:51 +02:00
|
|
|
if (rte_devargs_remove(busname, devname)) {
|
2017-08-03 14:34:31 +02:00
|
|
|
free(da->args);
|
|
|
|
free(da);
|
|
|
|
}
|
2017-06-30 20:19:41 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-01-21 20:48:06 -05:00
|
|
|
int __rte_experimental
|
|
|
|
rte_eal_hotplug_remove(const char *busname, const char *devname)
|
2017-06-30 20:19:41 +02:00
|
|
|
{
|
|
|
|
struct rte_bus *bus;
|
|
|
|
struct rte_device *dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
bus = rte_bus_find_by_name(busname);
|
|
|
|
if (bus == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Cannot find bus (%s)\n", busname);
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bus->unplug == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Function unplug not supported by bus (%s)\n",
|
|
|
|
bus->name);
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = bus->find_device(NULL, cmp_dev_name, devname);
|
|
|
|
if (dev == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Cannot find plugged device (%s)\n", devname);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = bus->unplug(dev);
|
|
|
|
if (ret)
|
|
|
|
RTE_LOG(ERR, EAL, "Driver cannot detach the device (%s)\n",
|
|
|
|
dev->name);
|
2018-04-24 01:54:51 +02:00
|
|
|
rte_devargs_remove(busname, devname);
|
2017-06-30 20:19:41 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2018-04-13 16:30:38 +08:00
|
|
|
|
|
|
|
int __rte_experimental
|
|
|
|
rte_dev_event_callback_register(const char *device_name,
|
|
|
|
rte_dev_event_cb_fn cb_fn,
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
|
|
|
struct dev_event_callback *event_cb;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!cb_fn)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
rte_spinlock_lock(&dev_event_lock);
|
|
|
|
|
|
|
|
if (TAILQ_EMPTY(&dev_event_cbs))
|
|
|
|
TAILQ_INIT(&dev_event_cbs);
|
|
|
|
|
|
|
|
TAILQ_FOREACH(event_cb, &dev_event_cbs, next) {
|
|
|
|
if (event_cb->cb_fn == cb_fn && event_cb->cb_arg == cb_arg) {
|
|
|
|
if (device_name == NULL && event_cb->dev_name == NULL)
|
|
|
|
break;
|
|
|
|
if (device_name == NULL || event_cb->dev_name == NULL)
|
|
|
|
continue;
|
|
|
|
if (!strcmp(event_cb->dev_name, device_name))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create a new callback. */
|
|
|
|
if (event_cb == NULL) {
|
|
|
|
event_cb = malloc(sizeof(struct dev_event_callback));
|
|
|
|
if (event_cb != NULL) {
|
|
|
|
event_cb->cb_fn = cb_fn;
|
|
|
|
event_cb->cb_arg = cb_arg;
|
|
|
|
event_cb->active = 0;
|
|
|
|
if (!device_name) {
|
|
|
|
event_cb->dev_name = NULL;
|
|
|
|
} else {
|
|
|
|
event_cb->dev_name = strdup(device_name);
|
|
|
|
if (event_cb->dev_name == NULL) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TAILQ_INSERT_TAIL(&dev_event_cbs, event_cb, next);
|
|
|
|
} else {
|
|
|
|
RTE_LOG(ERR, EAL,
|
|
|
|
"Failed to allocate memory for device "
|
|
|
|
"event callback.");
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
RTE_LOG(ERR, EAL,
|
|
|
|
"The callback is already exist, no need "
|
|
|
|
"to register again.\n");
|
|
|
|
ret = -EEXIST;
|
|
|
|
}
|
|
|
|
|
|
|
|
rte_spinlock_unlock(&dev_event_lock);
|
|
|
|
return 0;
|
|
|
|
error:
|
|
|
|
free(event_cb);
|
|
|
|
rte_spinlock_unlock(&dev_event_lock);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int __rte_experimental
|
|
|
|
rte_dev_event_callback_unregister(const char *device_name,
|
|
|
|
rte_dev_event_cb_fn cb_fn,
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
struct dev_event_callback *event_cb, *next;
|
|
|
|
|
|
|
|
if (!cb_fn)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
rte_spinlock_lock(&dev_event_lock);
|
|
|
|
/*walk through the callbacks and remove all that match. */
|
|
|
|
for (event_cb = TAILQ_FIRST(&dev_event_cbs); event_cb != NULL;
|
|
|
|
event_cb = next) {
|
|
|
|
|
|
|
|
next = TAILQ_NEXT(event_cb, next);
|
|
|
|
|
|
|
|
if (device_name != NULL && event_cb->dev_name != NULL) {
|
|
|
|
if (!strcmp(event_cb->dev_name, device_name)) {
|
|
|
|
if (event_cb->cb_fn != cb_fn ||
|
|
|
|
(cb_arg != (void *)-1 &&
|
|
|
|
event_cb->cb_arg != cb_arg))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else if (device_name != NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if this callback is not executing right now,
|
|
|
|
* then remove it.
|
|
|
|
*/
|
|
|
|
if (event_cb->active == 0) {
|
|
|
|
TAILQ_REMOVE(&dev_event_cbs, event_cb, next);
|
|
|
|
free(event_cb);
|
|
|
|
ret++;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rte_spinlock_unlock(&dev_event_lock);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dev_callback_process(char *device_name, enum rte_dev_event_type event)
|
|
|
|
{
|
|
|
|
struct dev_event_callback *cb_lst;
|
|
|
|
|
|
|
|
if (device_name == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
rte_spinlock_lock(&dev_event_lock);
|
|
|
|
|
|
|
|
TAILQ_FOREACH(cb_lst, &dev_event_cbs, next) {
|
|
|
|
if (cb_lst->dev_name) {
|
|
|
|
if (strcmp(cb_lst->dev_name, device_name))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cb_lst->active = 1;
|
|
|
|
rte_spinlock_unlock(&dev_event_lock);
|
|
|
|
cb_lst->cb_fn(device_name, event,
|
|
|
|
cb_lst->cb_arg);
|
|
|
|
rte_spinlock_lock(&dev_event_lock);
|
|
|
|
cb_lst->active = 0;
|
|
|
|
}
|
|
|
|
rte_spinlock_unlock(&dev_event_lock);
|
|
|
|
}
|
2018-07-11 23:45:00 +02:00
|
|
|
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_dev_iterator_init(struct rte_dev_iterator *it,
|
|
|
|
const char *dev_str)
|
|
|
|
{
|
|
|
|
struct rte_devargs devargs;
|
|
|
|
struct rte_class *cls = NULL;
|
|
|
|
struct rte_bus *bus = NULL;
|
|
|
|
|
|
|
|
/* Having both bus_str and cls_str NULL is illegal,
|
|
|
|
* marking this iterator as invalid unless
|
|
|
|
* everything goes well.
|
|
|
|
*/
|
|
|
|
it->bus_str = NULL;
|
|
|
|
it->cls_str = NULL;
|
|
|
|
|
|
|
|
devargs.data = dev_str;
|
|
|
|
if (rte_devargs_layers_parse(&devargs, dev_str))
|
|
|
|
goto get_out;
|
|
|
|
|
|
|
|
bus = devargs.bus;
|
|
|
|
cls = devargs.cls;
|
|
|
|
/* The string should have at least
|
|
|
|
* one layer specified.
|
|
|
|
*/
|
|
|
|
if (bus == NULL && cls == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL,
|
|
|
|
"Either bus or class must be specified.\n");
|
|
|
|
rte_errno = EINVAL;
|
|
|
|
goto get_out;
|
|
|
|
}
|
|
|
|
if (bus != NULL && bus->dev_iterate == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Bus %s not supported\n", bus->name);
|
|
|
|
rte_errno = ENOTSUP;
|
|
|
|
goto get_out;
|
|
|
|
}
|
|
|
|
if (cls != NULL && cls->dev_iterate == NULL) {
|
|
|
|
RTE_LOG(ERR, EAL, "Class %s not supported\n", cls->name);
|
|
|
|
rte_errno = ENOTSUP;
|
|
|
|
goto get_out;
|
|
|
|
}
|
|
|
|
it->bus_str = devargs.bus_str;
|
|
|
|
it->cls_str = devargs.cls_str;
|
|
|
|
it->dev_str = dev_str;
|
|
|
|
it->bus = bus;
|
|
|
|
it->cls = cls;
|
|
|
|
it->device = NULL;
|
|
|
|
it->class_device = NULL;
|
|
|
|
get_out:
|
|
|
|
return -rte_errno;
|
|
|
|
}
|