1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2014 6WIND S.A.
11 * RTE PMD Driver Registration Interface
13 * This file manages the list of device drivers.
21 #include <sys/queue.h>
23 #include <rte_config.h>
24 #include <rte_compat.h>
28 * The device event type.
30 enum rte_dev_event_type {
31 RTE_DEV_EVENT_ADD, /**< device being added */
32 RTE_DEV_EVENT_REMOVE, /**< device being removed */
33 RTE_DEV_EVENT_MAX /**< max value of this enum */
36 struct rte_dev_event {
37 enum rte_dev_event_type type; /**< device event type */
38 int subsystem; /**< subsystem id */
39 char *devname; /**< device name */
42 typedef void (*rte_dev_event_cb_fn)(const char *device_name,
43 enum rte_dev_event_type event,
46 __attribute__((format(printf, 2, 0)))
48 rte_pmd_debug_trace(const char *func_name, const char *fmt, ...)
55 char buffer[vsnprintf(NULL, 0, fmt, ap) + 1];
60 vsnprintf(buffer, sizeof(buffer), fmt, ap);
63 rte_log(RTE_LOG_ERR, RTE_LOGTYPE_PMD, "%s: %s",
69 * Enable RTE_PMD_DEBUG_TRACE() when at least one component relying on the
70 * RTE_*_RET() macros defined below is compiled in debug mode.
72 #if defined(RTE_LIBRTE_EVENTDEV_DEBUG)
73 #define RTE_PMD_DEBUG_TRACE(...) \
74 rte_pmd_debug_trace(__func__, __VA_ARGS__)
76 #define RTE_PMD_DEBUG_TRACE(...) (void)0
79 /* Macros for checking for restricting functions to primary instance only */
80 #define RTE_PROC_PRIMARY_OR_ERR_RET(retval) do { \
81 if (rte_eal_process_type() != RTE_PROC_PRIMARY) { \
82 RTE_PMD_DEBUG_TRACE("Cannot run in secondary processes\n"); \
87 #define RTE_PROC_PRIMARY_OR_RET() do { \
88 if (rte_eal_process_type() != RTE_PROC_PRIMARY) { \
89 RTE_PMD_DEBUG_TRACE("Cannot run in secondary processes\n"); \
94 /* Macros to check for invalid function pointers */
95 #define RTE_FUNC_PTR_OR_ERR_RET(func, retval) do { \
96 if ((func) == NULL) { \
97 RTE_PMD_DEBUG_TRACE("Function not supported\n"); \
102 #define RTE_FUNC_PTR_OR_RET(func) do { \
103 if ((func) == NULL) { \
104 RTE_PMD_DEBUG_TRACE("Function not supported\n"); \
112 enum rte_kernel_driver {
113 RTE_KDRV_UNKNOWN = 0,
116 RTE_KDRV_UIO_GENERIC,
124 enum rte_dev_policy {
130 * A generic memory resource representation.
132 struct rte_mem_resource {
133 uint64_t phys_addr; /**< Physical address, 0 if not resource. */
134 uint64_t len; /**< Length of the resource. */
135 void *addr; /**< Virtual address, NULL when not mapped. */
139 * A structure describing a device driver.
142 TAILQ_ENTRY(rte_driver) next; /**< Next in list. */
143 const char *name; /**< Driver name. */
144 const char *alias; /**< Driver alias. */
148 * Internal identifier length
149 * Sufficiently large to allow for UUID or PCI address
151 #define RTE_DEV_NAME_MAX_LEN 64
154 * A structure describing a generic device.
157 TAILQ_ENTRY(rte_device) next; /**< Next device */
158 const char *name; /**< Device name */
159 const struct rte_driver *driver;/**< Associated driver */
160 const struct rte_bus *bus; /**< Bus handle assigned on scan */
161 int numa_node; /**< NUMA node connection */
162 struct rte_devargs *devargs; /**< Device user arguments */
166 * Attach a device to a registered driver.
169 * The device name, that refers to a pci device (or some private
170 * way of designating a vdev device). Based on this device name, eal
171 * will identify a driver capable of handling it and pass it to the
172 * driver probing function.
174 * Device arguments to be passed to the driver.
176 * 0 on success, negative on error.
179 int rte_eal_dev_attach(const char *name, const char *devargs);
182 * Detach a device from its driver.
185 * A pointer to a rte_device structure.
187 * 0 on success, negative on error.
190 int rte_eal_dev_detach(struct rte_device *dev);
193 * Hotplug add a given device to a specific bus.
195 * In multi-process, it will request other processes to add the same device.
196 * A failure, in any process, will rollback the action
199 * The bus name the device is added to.
201 * The device name. Based on this device name, eal will identify a driver
202 * capable of handling it and pass it to the driver probing function.
204 * Device arguments to be passed to the driver.
206 * 0 on success, negative on error.
208 int rte_eal_hotplug_add(const char *busname, const char *devname,
209 const char *drvargs);
213 * @b EXPERIMENTAL: this API may change without prior notice
215 * Add matching devices.
217 * In multi-process, it will request other processes to add the same device.
218 * A failure, in any process, will rollback the action
221 * Device arguments including bus, class and driver properties.
223 * 0 on success, negative on error.
225 int __rte_experimental rte_dev_probe(const char *devargs);
228 * Hotplug remove a given device from a specific bus.
230 * In multi-process, it will request other processes to remove the same device.
231 * A failure, in any process, will rollback the action
234 * The bus name the device is removed from.
236 * The device name being removed.
238 * 0 on success, negative on error.
240 int rte_eal_hotplug_remove(const char *busname, const char *devname);
244 * @b EXPERIMENTAL: this API may change without prior notice
248 * In multi-process, it will request other processes to remove the same device.
249 * A failure, in any process, will rollback the action
252 * Data structure of the device to remove.
254 * 0 on success, negative on error.
256 int __rte_experimental rte_dev_remove(struct rte_device *dev);
259 * Device comparison function.
261 * This type of function is used to compare an rte_device with arbitrary
268 * Data to compare against. The type of this parameter is determined by
269 * the kind of comparison performed by the function.
272 * 0 if the device matches the data.
273 * !0 if the device does not match.
274 * <0 if ordering is possible and the device is lower than the data.
275 * >0 if ordering is possible and the device is greater than the data.
277 typedef int (*rte_dev_cmp_t)(const struct rte_device *dev, const void *data);
279 #define RTE_PMD_EXPORT_NAME_ARRAY(n, idx) n##idx[]
281 #define RTE_PMD_EXPORT_NAME(name, idx) \
282 static const char RTE_PMD_EXPORT_NAME_ARRAY(this_pmd_name, idx) \
283 __attribute__((used)) = RTE_STR(name)
285 #define DRV_EXP_TAG(name, tag) __##name##_##tag
287 #define RTE_PMD_REGISTER_PCI_TABLE(name, table) \
288 static const char DRV_EXP_TAG(name, pci_tbl_export)[] __attribute__((used)) = \
291 #define RTE_PMD_REGISTER_PARAM_STRING(name, str) \
292 static const char DRV_EXP_TAG(name, param_string_export)[] \
293 __attribute__((used)) = str
296 * Advertise the list of kernel modules required to run this driver
298 * This string lists the kernel modules required for the devices
299 * associated to a PMD. The format of each line of the string is:
300 * "<device-pattern> <kmod-expression>".
302 * The possible formats for the device pattern are:
303 * "*" all devices supported by this driver
304 * "pci:*" all PCI devices supported by this driver
305 * "pci:v8086:d*:sv*:sd*" all PCI devices supported by this driver
306 * whose vendor id is 0x8086.
308 * The format of the kernel modules list is a parenthesed expression
309 * containing logical-and (&) and logical-or (|).
311 * The device pattern and the kmod expression are separated by a space.
314 * - "* igb_uio | uio_pci_generic | vfio"
316 #define RTE_PMD_REGISTER_KMOD_DEP(name, str) \
317 static const char DRV_EXP_TAG(name, kmod_dep_export)[] \
318 __attribute__((used)) = str
323 * This context carries over the current iteration state.
325 struct rte_dev_iterator {
326 const char *dev_str; /**< device string. */
327 const char *bus_str; /**< bus-related part of device string. */
328 const char *cls_str; /**< class-related part of device string. */
329 struct rte_bus *bus; /**< bus handle. */
330 struct rte_class *cls; /**< class handle. */
331 struct rte_device *device; /**< current position. */
332 void *class_device; /**< additional specialized context. */
336 * Device iteration function.
338 * Find the next device matching properties passed in parameters.
339 * The function takes an additional ``start`` parameter, that is
340 * used as starting context when relevant.
342 * The function returns the current element in the iteration.
343 * This return value will potentially be used as a start parameter
344 * in subsequent calls to the function.
346 * The additional iterator parameter is only there if a specific
347 * implementation needs additional context. It must not be modified by
348 * the iteration function itself.
351 * Starting iteration context.
354 * Device description string.
360 * The address of the current element matching the device description
363 typedef void *(*rte_dev_iterate_t)(const void *start,
365 const struct rte_dev_iterator *it);
368 * Initializes a device iterator.
370 * This iterator allows accessing a list of devices matching a criteria.
371 * The device matching is made among all buses and classes currently registered,
372 * filtered by the device description given as parameter.
374 * This function will not allocate any memory. It is safe to stop the
375 * iteration at any moment and let the iterator go out of context.
378 * Device iterator handle.
381 * Device description string.
384 * 0 on successful initialization.
389 rte_dev_iterator_init(struct rte_dev_iterator *it, const char *str);
392 * Iterates on a device iterator.
394 * Generates a new rte_device handle corresponding to the next element
395 * in the list described in comprehension by the iterator.
397 * The next object is returned, and the iterator is updated.
400 * Device iterator handle.
403 * An rte_device handle if found.
404 * NULL if an error occurred (rte_errno is set).
405 * NULL if no device could be found (rte_errno is not set).
409 rte_dev_iterator_next(struct rte_dev_iterator *it);
411 #define RTE_DEV_FOREACH(dev, devstr, it) \
412 for (rte_dev_iterator_init(it, devstr), \
413 dev = rte_dev_iterator_next(it); \
415 dev = rte_dev_iterator_next(it))
423 * @b EXPERIMENTAL: this API may change without prior notice
425 * It registers the callback for the specific device.
426 * Multiple callbacks cal be registered at the same time.
429 * The device name, that is the param name of the struct rte_device,
430 * null value means for all devices.
434 * address of parameter for callback.
437 * - On success, zero.
438 * - On failure, a negative value.
440 int __rte_experimental
441 rte_dev_event_callback_register(const char *device_name,
442 rte_dev_event_cb_fn cb_fn,
447 * @b EXPERIMENTAL: this API may change without prior notice
449 * It unregisters the callback according to the specified device.
452 * The device name, that is the param name of the struct rte_device,
453 * null value means for all devices and their callbacks.
457 * address of parameter for callback, (void *)-1 means to remove all
458 * registered which has the same callback address.
461 * - On success, return the number of callback entities removed.
462 * - On failure, a negative value.
464 int __rte_experimental
465 rte_dev_event_callback_unregister(const char *device_name,
466 rte_dev_event_cb_fn cb_fn,
471 * @b EXPERIMENTAL: this API may change without prior notice
473 * Executes all the user application registered callbacks for
474 * the specific device.
479 * the device event type.
481 void __rte_experimental
482 rte_dev_event_callback_process(const char *device_name,
483 enum rte_dev_event_type event);
487 * @b EXPERIMENTAL: this API may change without prior notice
489 * Start the device event monitoring.
492 * - On success, zero.
493 * - On failure, a negative value.
495 int __rte_experimental
496 rte_dev_event_monitor_start(void);
500 * @b EXPERIMENTAL: this API may change without prior notice
502 * Stop the device event monitoring.
505 * - On success, zero.
506 * - On failure, a negative value.
508 int __rte_experimental
509 rte_dev_event_monitor_stop(void);
513 * @b EXPERIMENTAL: this API may change without prior notice
515 * Enable hotplug handling for devices.
518 * - On success, zero.
519 * - On failure, a negative value.
521 int __rte_experimental
522 rte_dev_hotplug_handle_enable(void);
526 * @b EXPERIMENTAL: this API may change without prior notice
528 * Disable hotplug handling for devices.
531 * - On success, zero.
532 * - On failure, a negative value.
534 int __rte_experimental
535 rte_dev_hotplug_handle_disable(void);
537 #endif /* _RTE_DEV_H_ */