1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2016-2017 Cavium, Inc
5 #ifndef _RTE_EVENTDEV_PMD_VDEV_H_
6 #define _RTE_EVENTDEV_PMD_VDEV_H_
9 * RTE Eventdev VDEV PMD APIs
12 * These API are from event VDEV PMD only and user applications should not call
22 #include <rte_config.h>
23 #include <rte_debug.h>
25 #include <rte_bus_vdev.h>
27 #include "eventdev_pmd.h"
31 * Creates a new virtual event device and returns the pointer to that device.
35 * @param dev_private_size
36 * Size of event PMDs private data
38 * Socket to allocate resources on.
41 * - Eventdev pointer if device is successfully created.
42 * - NULL if device cannot be created.
44 static inline struct rte_eventdev *
45 rte_event_pmd_vdev_init(const char *name, size_t dev_private_size,
49 struct rte_eventdev *eventdev;
51 /* Allocate device structure */
52 eventdev = rte_event_pmd_allocate(name, socket_id);
56 /* Allocate private device structure */
57 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
58 eventdev->data->dev_private =
59 rte_zmalloc_socket("eventdev device private",
64 if (eventdev->data->dev_private == NULL)
65 rte_panic("Cannot allocate memzone for private device"
74 * Destroy the given virtual event device
79 * - 0 on success, negative on error
82 rte_event_pmd_vdev_uninit(const char *name)
85 struct rte_eventdev *eventdev;
90 eventdev = rte_event_pmd_get_named_dev(name);
94 ret = rte_event_dev_close(eventdev->data->dev_id);
98 /* Free the event device */
99 rte_event_pmd_release(eventdev);
108 #endif /* _RTE_EVENTDEV_PMD_VDEV_H_ */