1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2016 Cavium, Inc.
3 * Copyright(c) 2016-2018 Intel Corporation.
8 #ifndef _RTE_EVENTDEV_H_
9 #define _RTE_EVENTDEV_H_
14 * RTE Event Device API
16 * In a polling model, lcores poll ethdev ports and associated rx queues
17 * directly to look for packet. In an event driven model, by contrast, lcores
18 * call the scheduler that selects packets for them based on programmer
19 * specified criteria. Eventdev library adds support for event driven
20 * programming model, which offer applications automatic multicore scaling,
21 * dynamic load balancing, pipelining, packet ingress order maintenance and
22 * synchronization services to simplify application packet processing.
24 * The Event Device API is composed of two parts:
26 * - The application-oriented Event API that includes functions to setup
27 * an event device (configure it, setup its queues, ports and start it), to
28 * establish the link between queues to port and to receive events, and so on.
30 * - The driver-oriented Event API that exports a function allowing
31 * an event poll Mode Driver (PMD) to simultaneously register itself as
32 * an event device driver.
34 * Event device components:
38 * +-------+ | | flow 0 | |
39 * |Packet | | +-------------+ |
40 * |event | | +-------------+ |
41 * | | | | flow 1 | |port_link(port0, queue0)
42 * +-------+ | +-------------+ | | +--------+
43 * +-------+ | +-------------+ o-----v-----o |dequeue +------+
44 * |Crypto | | | flow n | | | event +------->|Core 0|
45 * |work | | +-------------+ o----+ | port 0 | | |
46 * |done ev| | event queue 0 | | +--------+ +------+
47 * +-------+ +-----------------+ |
49 * |Timer | +-----------------+ | +--------+
50 * |expiry | | +-------------+ | +------o |dequeue +------+
51 * |event | | | flow 0 | o-----------o event +------->|Core 1|
52 * +-------+ | +-------------+ | +----o port 1 | | |
53 * Event enqueue | +-------------+ | | +--------+ +------+
54 * o-------------> | | flow 1 | | |
55 * enqueue( | +-------------+ | |
56 * queue_id, | | | +--------+ +------+
57 * flow_id, | +-------------+ | | | |dequeue |Core 2|
58 * sched_type, | | flow n | o-----------o event +------->| |
59 * event_type, | +-------------+ | | | port 2 | +------+
60 * subev_type, | event queue 1 | | +--------+
61 * event) +-----------------+ | +--------+
62 * | | |dequeue +------+
63 * +-------+ +-----------------+ | | event +------->|Core n|
64 * |Core | | +-------------+ o-----------o port n | | |
65 * |(SW) | | | flow 0 | | | +--------+ +--+---+
66 * |event | | +-------------+ | | |
67 * +-------+ | +-------------+ | | |
68 * ^ | | flow 1 | | | |
69 * | | +-------------+ o------+ |
70 * | | +-------------+ | |
72 * | | +-------------+ | |
73 * | | event queue n | |
74 * | +-----------------+ |
76 * +-----------------------------------------------------------+
78 * Event device: A hardware or software-based event scheduler.
80 * Event: A unit of scheduling that encapsulates a packet or other datatype
81 * like SW generated event from the CPU, Crypto work completion notification,
82 * Timer expiry event notification etc as well as metadata.
83 * The metadata includes flow ID, scheduling type, event priority, event_type,
86 * Event queue: A queue containing events that are scheduled by the event dev.
87 * An event queue contains events of different flows associated with scheduling
88 * types, such as atomic, ordered, or parallel.
90 * Event port: An application's interface into the event dev for enqueue and
91 * dequeue operations. Each event port can be linked with one or more
92 * event queues for dequeue operations.
94 * By default, all the functions of the Event Device API exported by a PMD
95 * are lock-free functions which assume to not be invoked in parallel on
96 * different logical cores to work on the same target object. For instance,
97 * the dequeue function of a PMD cannot be invoked in parallel on two logical
98 * cores to operates on same event port. Of course, this function
99 * can be invoked in parallel by different logical cores on different ports.
100 * It is the responsibility of the upper level application to enforce this rule.
102 * In all functions of the Event API, the Event device is
103 * designated by an integer >= 0 named the device identifier *dev_id*
105 * At the Event driver level, Event devices are represented by a generic
106 * data structure of type *rte_event_dev*.
108 * Event devices are dynamically registered during the PCI/SoC device probing
109 * phase performed at EAL initialization time.
110 * When an Event device is being probed, a *rte_event_dev* structure and
111 * a new device identifier are allocated for that device. Then, the
112 * event_dev_init() function supplied by the Event driver matching the probed
113 * device is invoked to properly initialize the device.
115 * The role of the device init function consists of resetting the hardware or
116 * software event driver implementations.
118 * If the device init operation is successful, the correspondence between
119 * the device identifier assigned to the new device and its associated
120 * *rte_event_dev* structure is effectively registered.
121 * Otherwise, both the *rte_event_dev* structure and the device identifier are
124 * The functions exported by the application Event API to setup a device
125 * designated by its device identifier must be invoked in the following order:
126 * - rte_event_dev_configure()
127 * - rte_event_queue_setup()
128 * - rte_event_port_setup()
129 * - rte_event_port_link()
130 * - rte_event_dev_start()
132 * Then, the application can invoke, in any order, the functions
133 * exported by the Event API to schedule events, dequeue events, enqueue events,
134 * change event queue(s) to event port [un]link establishment and so on.
136 * Application may use rte_event_[queue/port]_default_conf_get() to get the
137 * default configuration to set up an event queue or event port by
138 * overriding few default values.
140 * If the application wants to change the configuration (i.e. call
141 * rte_event_dev_configure(), rte_event_queue_setup(), or
142 * rte_event_port_setup()), it must call rte_event_dev_stop() first to stop the
143 * device and then do the reconfiguration before calling rte_event_dev_start()
144 * again. The schedule, enqueue and dequeue functions should not be invoked
145 * when the device is stopped.
147 * Finally, an application can close an Event device by invoking the
148 * rte_event_dev_close() function.
150 * Each function of the application Event API invokes a specific function
151 * of the PMD that controls the target device designated by its device
154 * For this purpose, all device-specific functions of an Event driver are
155 * supplied through a set of pointers contained in a generic structure of type
157 * The address of the *event_dev_ops* structure is stored in the *rte_event_dev*
158 * structure by the device init function of the Event driver, which is
159 * invoked during the PCI/SoC device probing phase, as explained earlier.
161 * In other words, each function of the Event API simply retrieves the
162 * *rte_event_dev* structure associated with the device identifier and
163 * performs an indirect invocation of the corresponding driver function
164 * supplied in the *event_dev_ops* structure of the *rte_event_dev* structure.
166 * For performance reasons, the address of the fast-path functions of the
167 * Event driver is not contained in the *event_dev_ops* structure.
168 * Instead, they are directly stored at the beginning of the *rte_event_dev*
169 * structure to avoid an extra indirect memory access during their invocation.
171 * RTE event device drivers do not use interrupts for enqueue or dequeue
172 * operation. Instead, Event drivers export Poll-Mode enqueue and dequeue
173 * functions to applications.
175 * The events are injected to event device through *enqueue* operation by
176 * event producers in the system. The typical event producers are ethdev
177 * subsystem for generating packet events, CPU(SW) for generating events based
178 * on different stages of application processing, cryptodev for generating
179 * crypto work completion notification etc
181 * The *dequeue* operation gets one or more events from the event ports.
182 * The application process the events and send to downstream event queue through
183 * rte_event_enqueue_burst() if it is an intermediate stage of event processing,
184 * on the final stage, the application may send to different subsystem like
185 * ethdev to send the packet/event on the wire using ethdev
186 * rte_eth_tx_burst() API.
188 * The point at which events are scheduled to ports depends on the device.
189 * For hardware devices, scheduling occurs asynchronously without any software
190 * intervention. Software schedulers can either be distributed
191 * (each worker thread schedules events to its own port) or centralized
192 * (a dedicated thread schedules to all ports). Distributed software schedulers
193 * perform the scheduling in rte_event_dequeue_burst(), whereas centralized
194 * scheduler logic need a dedicated service core for scheduling.
195 * The RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED capability flag is not set
196 * indicates the device is centralized and thus needs a dedicated scheduling
197 * thread that repeatedly calls software specific scheduling function.
199 * An event driven worker thread has following typical workflow on fastpath:
202 * rte_event_dequeue_burst(...);
204 * rte_event_enqueue_burst(...);
214 #include <rte_common.h>
215 #include <rte_config.h>
216 #include <rte_memory.h>
217 #include <rte_errno.h>
219 struct rte_mbuf; /* we just use mbuf pointers; no need to include rte_mbuf.h */
222 /* Event device capability bitmap flags */
223 #define RTE_EVENT_DEV_CAP_QUEUE_QOS (1ULL << 0)
224 /**< Event scheduling prioritization is based on the priority associated with
227 * @see rte_event_queue_setup()
229 #define RTE_EVENT_DEV_CAP_EVENT_QOS (1ULL << 1)
230 /**< Event scheduling prioritization is based on the priority associated with
231 * each event. Priority of each event is supplied in *rte_event* structure
232 * on each enqueue operation.
234 * @see rte_event_enqueue_burst()
236 #define RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED (1ULL << 2)
237 /**< Event device operates in distributed scheduling mode.
238 * In distributed scheduling mode, event scheduling happens in HW or
239 * rte_event_dequeue_burst() or the combination of these two.
240 * If the flag is not set then eventdev is centralized and thus needs a
241 * dedicated service core that acts as a scheduling thread .
243 * @see rte_event_dequeue_burst()
245 #define RTE_EVENT_DEV_CAP_QUEUE_ALL_TYPES (1ULL << 3)
246 /**< Event device is capable of enqueuing events of any type to any queue.
247 * If this capability is not set, the queue only supports events of the
248 * *RTE_SCHED_TYPE_* type that it was created with.
250 * @see RTE_SCHED_TYPE_* values
252 #define RTE_EVENT_DEV_CAP_BURST_MODE (1ULL << 4)
253 /**< Event device is capable of operating in burst mode for enqueue(forward,
254 * release) and dequeue operation. If this capability is not set, application
255 * still uses the rte_event_dequeue_burst() and rte_event_enqueue_burst() but
256 * PMD accepts only one event at a time.
258 * @see rte_event_dequeue_burst() rte_event_enqueue_burst()
260 #define RTE_EVENT_DEV_CAP_IMPLICIT_RELEASE_DISABLE (1ULL << 5)
261 /**< Event device ports support disabling the implicit release feature, in
262 * which the port will release all unreleased events in its dequeue operation.
263 * If this capability is set and the port is configured with implicit release
264 * disabled, the application is responsible for explicitly releasing events
265 * using either the RTE_EVENT_OP_FORWARD or the RTE_EVENT_OP_RELEASE event
266 * enqueue operations.
268 * @see rte_event_dequeue_burst() rte_event_enqueue_burst()
271 #define RTE_EVENT_DEV_CAP_NONSEQ_MODE (1ULL << 6)
272 /**< Event device is capable of operating in none sequential mode. The path
273 * of the event is not necessary to be sequential. Application can change
274 * the path of event at runtime. If the flag is not set, then event each event
275 * will follow a path from queue 0 to queue 1 to queue 2 etc. If the flag is
276 * set, events may be sent to queues in any order. If the flag is not set, the
277 * eventdev will return an error when the application enqueues an event for a
278 * qid which is not the next in the sequence.
281 #define RTE_EVENT_DEV_CAP_RUNTIME_PORT_LINK (1ULL << 7)
282 /**< Event device is capable of configuring the queue/port link at runtime.
283 * If the flag is not set, the eventdev queue/port link is only can be
284 * configured during initialization.
287 #define RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT (1ULL << 8)
288 /**< Event device is capable of setting up the link between multiple queue
289 * with single port. If the flag is not set, the eventdev can only map a
290 * single queue to each port or map a single queue to many port.
293 /* Event device priority levels */
294 #define RTE_EVENT_DEV_PRIORITY_HIGHEST 0
295 /**< Highest priority expressed across eventdev subsystem
296 * @see rte_event_queue_setup(), rte_event_enqueue_burst()
297 * @see rte_event_port_link()
299 #define RTE_EVENT_DEV_PRIORITY_NORMAL 128
300 /**< Normal priority expressed across eventdev subsystem
301 * @see rte_event_queue_setup(), rte_event_enqueue_burst()
302 * @see rte_event_port_link()
304 #define RTE_EVENT_DEV_PRIORITY_LOWEST 255
305 /**< Lowest priority expressed across eventdev subsystem
306 * @see rte_event_queue_setup(), rte_event_enqueue_burst()
307 * @see rte_event_port_link()
311 * Get the total number of event devices that have been successfully
315 * The total number of usable event devices.
318 rte_event_dev_count(void);
321 * Get the device identifier for the named event device.
324 * Event device name to select the event device identifier.
327 * Returns event device identifier on success.
328 * - <0: Failure to find named event device.
331 rte_event_dev_get_dev_id(const char *name);
334 * Return the NUMA socket to which a device is connected.
337 * The identifier of the device.
339 * The NUMA socket id to which the device is connected or
340 * a default of zero if the socket could not be determined.
341 * -(-EINVAL) dev_id value is out of range.
344 rte_event_dev_socket_id(uint8_t dev_id);
347 * Event device information
349 struct rte_event_dev_info {
350 const char *driver_name; /**< Event driver name */
351 struct rte_device *dev; /**< Device information */
352 uint32_t min_dequeue_timeout_ns;
353 /**< Minimum supported global dequeue timeout(ns) by this device */
354 uint32_t max_dequeue_timeout_ns;
355 /**< Maximum supported global dequeue timeout(ns) by this device */
356 uint32_t dequeue_timeout_ns;
357 /**< Configured global dequeue timeout(ns) for this device */
358 uint8_t max_event_queues;
359 /**< Maximum event_queues supported by this device */
360 uint32_t max_event_queue_flows;
361 /**< Maximum supported flows in an event queue by this device*/
362 uint8_t max_event_queue_priority_levels;
363 /**< Maximum number of event queue priority levels by this device.
364 * Valid when the device has RTE_EVENT_DEV_CAP_QUEUE_QOS capability
366 uint8_t max_event_priority_levels;
367 /**< Maximum number of event priority levels by this device.
368 * Valid when the device has RTE_EVENT_DEV_CAP_EVENT_QOS capability
370 uint8_t max_event_ports;
371 /**< Maximum number of event ports supported by this device */
372 uint8_t max_event_port_dequeue_depth;
373 /**< Maximum number of events can be dequeued at a time from an
374 * event port by this device.
375 * A device that does not support bulk dequeue will set this as 1.
377 uint32_t max_event_port_enqueue_depth;
378 /**< Maximum number of events can be enqueued at a time from an
379 * event port by this device.
380 * A device that does not support bulk enqueue will set this as 1.
382 int32_t max_num_events;
383 /**< A *closed system* event dev has a limit on the number of events it
384 * can manage at a time. An *open system* event dev does not have a
385 * limit and will specify this as -1.
387 uint32_t event_dev_cap;
388 /**< Event device capabilities(RTE_EVENT_DEV_CAP_)*/
392 * Retrieve the contextual information of an event device.
395 * The identifier of the device.
397 * @param[out] dev_info
398 * A pointer to a structure of type *rte_event_dev_info* to be filled with the
399 * contextual information of the device.
402 * - 0: Success, driver updates the contextual information of the event device
403 * - <0: Error code returned by the driver info get function.
407 rte_event_dev_info_get(uint8_t dev_id, struct rte_event_dev_info *dev_info);
410 * The count of ports.
412 #define RTE_EVENT_DEV_ATTR_PORT_COUNT 0
414 * The count of queues.
416 #define RTE_EVENT_DEV_ATTR_QUEUE_COUNT 1
418 * The status of the device, zero for stopped, non-zero for started.
420 #define RTE_EVENT_DEV_ATTR_STARTED 2
423 * Get an attribute from a device.
425 * @param dev_id Eventdev id
426 * @param attr_id The attribute ID to retrieve
427 * @param[out] attr_value A pointer that will be filled in with the attribute
428 * value if successful.
431 * - 0: Successfully retrieved attribute value
432 * - -EINVAL: Invalid device or *attr_id* provided, or *attr_value* is NULL
435 rte_event_dev_attr_get(uint8_t dev_id, uint32_t attr_id,
436 uint32_t *attr_value);
439 /* Event device configuration bitmap flags */
440 #define RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT (1ULL << 0)
441 /**< Override the global *dequeue_timeout_ns* and use per dequeue timeout in ns.
442 * @see rte_event_dequeue_timeout_ticks(), rte_event_dequeue_burst()
445 /** Event device configuration structure */
446 struct rte_event_dev_config {
447 uint32_t dequeue_timeout_ns;
448 /**< rte_event_dequeue_burst() timeout on this device.
449 * This value should be in the range of *min_dequeue_timeout_ns* and
450 * *max_dequeue_timeout_ns* which previously provided in
451 * rte_event_dev_info_get()
452 * The value 0 is allowed, in which case, default dequeue timeout used.
453 * @see RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT
455 int32_t nb_events_limit;
456 /**< In a *closed system* this field is the limit on maximum number of
457 * events that can be inflight in the eventdev at a given time. The
458 * limit is required to ensure that the finite space in a closed system
459 * is not overwhelmed. The value cannot exceed the *max_num_events*
460 * as provided by rte_event_dev_info_get().
461 * This value should be set to -1 for *open system*.
463 uint8_t nb_event_queues;
464 /**< Number of event queues to configure on this device.
465 * This value cannot exceed the *max_event_queues* which previously
466 * provided in rte_event_dev_info_get()
468 uint8_t nb_event_ports;
469 /**< Number of event ports to configure on this device.
470 * This value cannot exceed the *max_event_ports* which previously
471 * provided in rte_event_dev_info_get()
473 uint32_t nb_event_queue_flows;
474 /**< Number of flows for any event queue on this device.
475 * This value cannot exceed the *max_event_queue_flows* which previously
476 * provided in rte_event_dev_info_get()
478 uint32_t nb_event_port_dequeue_depth;
479 /**< Maximum number of events can be dequeued at a time from an
480 * event port by this device.
481 * This value cannot exceed the *max_event_port_dequeue_depth*
482 * which previously provided in rte_event_dev_info_get().
483 * Ignored when device is not RTE_EVENT_DEV_CAP_BURST_MODE capable.
484 * @see rte_event_port_setup()
486 uint32_t nb_event_port_enqueue_depth;
487 /**< Maximum number of events can be enqueued at a time from an
488 * event port by this device.
489 * This value cannot exceed the *max_event_port_enqueue_depth*
490 * which previously provided in rte_event_dev_info_get().
491 * Ignored when device is not RTE_EVENT_DEV_CAP_BURST_MODE capable.
492 * @see rte_event_port_setup()
494 uint32_t event_dev_cfg;
495 /**< Event device config flags(RTE_EVENT_DEV_CFG_)*/
499 * Configure an event device.
501 * This function must be invoked first before any other function in the
502 * API. This function can also be re-invoked when a device is in the
505 * The caller may use rte_event_dev_info_get() to get the capability of each
506 * resources available for this event device.
509 * The identifier of the device to configure.
511 * The event device configuration structure.
514 * - 0: Success, device configured.
515 * - <0: Error code returned by the driver configuration function.
518 rte_event_dev_configure(uint8_t dev_id,
519 const struct rte_event_dev_config *dev_conf);
522 /* Event queue specific APIs */
524 /* Event queue configuration bitmap flags */
525 #define RTE_EVENT_QUEUE_CFG_ALL_TYPES (1ULL << 0)
526 /**< Allow ATOMIC,ORDERED,PARALLEL schedule type enqueue
528 * @see RTE_SCHED_TYPE_ORDERED, RTE_SCHED_TYPE_ATOMIC, RTE_SCHED_TYPE_PARALLEL
529 * @see rte_event_enqueue_burst()
531 #define RTE_EVENT_QUEUE_CFG_SINGLE_LINK (1ULL << 1)
532 /**< This event queue links only to a single event port.
534 * @see rte_event_port_setup(), rte_event_port_link()
537 /** Event queue configuration structure */
538 struct rte_event_queue_conf {
539 uint32_t nb_atomic_flows;
540 /**< The maximum number of active flows this queue can track at any
541 * given time. If the queue is configured for atomic scheduling (by
542 * applying the RTE_EVENT_QUEUE_CFG_ALL_TYPES flag to event_queue_cfg
543 * or RTE_SCHED_TYPE_ATOMIC flag to schedule_type), then the
544 * value must be in the range of [1, nb_event_queue_flows], which was
545 * previously provided in rte_event_dev_configure().
547 uint32_t nb_atomic_order_sequences;
548 /**< The maximum number of outstanding events waiting to be
549 * reordered by this queue. In other words, the number of entries in
550 * this queue’s reorder buffer.When the number of events in the
551 * reorder buffer reaches to *nb_atomic_order_sequences* then the
552 * scheduler cannot schedule the events from this queue and invalid
553 * event will be returned from dequeue until one or more entries are
555 * If the queue is configured for ordered scheduling (by applying the
556 * RTE_EVENT_QUEUE_CFG_ALL_TYPES flag to event_queue_cfg or
557 * RTE_SCHED_TYPE_ORDERED flag to schedule_type), then the value must
558 * be in the range of [1, nb_event_queue_flows], which was
559 * previously supplied to rte_event_dev_configure().
561 uint32_t event_queue_cfg;
562 /**< Queue cfg flags(EVENT_QUEUE_CFG_) */
563 uint8_t schedule_type;
564 /**< Queue schedule type(RTE_SCHED_TYPE_*).
565 * Valid when RTE_EVENT_QUEUE_CFG_ALL_TYPES bit is not set in
569 /**< Priority for this event queue relative to other event queues.
570 * The requested priority should in the range of
571 * [RTE_EVENT_DEV_PRIORITY_HIGHEST, RTE_EVENT_DEV_PRIORITY_LOWEST].
572 * The implementation shall normalize the requested priority to
573 * event device supported priority value.
574 * Valid when the device has RTE_EVENT_DEV_CAP_QUEUE_QOS capability
579 * Retrieve the default configuration information of an event queue designated
580 * by its *queue_id* from the event driver for an event device.
582 * This function intended to be used in conjunction with rte_event_queue_setup()
583 * where caller needs to set up the queue by overriding few default values.
586 * The identifier of the device.
588 * The index of the event queue to get the configuration information.
589 * The value must be in the range [0, nb_event_queues - 1]
590 * previously supplied to rte_event_dev_configure().
591 * @param[out] queue_conf
592 * The pointer to the default event queue configuration data.
594 * - 0: Success, driver updates the default event queue configuration data.
595 * - <0: Error code returned by the driver info get function.
597 * @see rte_event_queue_setup()
601 rte_event_queue_default_conf_get(uint8_t dev_id, uint8_t queue_id,
602 struct rte_event_queue_conf *queue_conf);
605 * Allocate and set up an event queue for an event device.
608 * The identifier of the device.
610 * The index of the event queue to setup. The value must be in the range
611 * [0, nb_event_queues - 1] previously supplied to rte_event_dev_configure().
613 * The pointer to the configuration data to be used for the event queue.
614 * NULL value is allowed, in which case default configuration used.
616 * @see rte_event_queue_default_conf_get()
619 * - 0: Success, event queue correctly set up.
620 * - <0: event queue configuration failed
623 rte_event_queue_setup(uint8_t dev_id, uint8_t queue_id,
624 const struct rte_event_queue_conf *queue_conf);
627 * The priority of the queue.
629 #define RTE_EVENT_QUEUE_ATTR_PRIORITY 0
631 * The number of atomic flows configured for the queue.
633 #define RTE_EVENT_QUEUE_ATTR_NB_ATOMIC_FLOWS 1
635 * The number of atomic order sequences configured for the queue.
637 #define RTE_EVENT_QUEUE_ATTR_NB_ATOMIC_ORDER_SEQUENCES 2
639 * The cfg flags for the queue.
641 #define RTE_EVENT_QUEUE_ATTR_EVENT_QUEUE_CFG 3
643 * The schedule type of the queue.
645 #define RTE_EVENT_QUEUE_ATTR_SCHEDULE_TYPE 4
648 * Get an attribute from a queue.
655 * The attribute ID to retrieve
656 * @param[out] attr_value
657 * A pointer that will be filled in with the attribute value if successful
660 * - 0: Successfully returned value
661 * - -EINVAL: invalid device, queue or attr_id provided, or attr_value was
663 * - -EOVERFLOW: returned when attr_id is set to
664 * RTE_EVENT_QUEUE_ATTR_SCHEDULE_TYPE and event_queue_cfg is set to
665 * RTE_EVENT_QUEUE_CFG_ALL_TYPES
668 rte_event_queue_attr_get(uint8_t dev_id, uint8_t queue_id, uint32_t attr_id,
669 uint32_t *attr_value);
671 /* Event port specific APIs */
673 /** Event port configuration structure */
674 struct rte_event_port_conf {
675 int32_t new_event_threshold;
676 /**< A backpressure threshold for new event enqueues on this port.
677 * Use for *closed system* event dev where event capacity is limited,
678 * and cannot exceed the capacity of the event dev.
679 * Configuring ports with different thresholds can make higher priority
680 * traffic less likely to be backpressured.
681 * For example, a port used to inject NIC Rx packets into the event dev
682 * can have a lower threshold so as not to overwhelm the device,
683 * while ports used for worker pools can have a higher threshold.
684 * This value cannot exceed the *nb_events_limit*
685 * which was previously supplied to rte_event_dev_configure().
686 * This should be set to '-1' for *open system*.
688 uint16_t dequeue_depth;
689 /**< Configure number of bulk dequeues for this event port.
690 * This value cannot exceed the *nb_event_port_dequeue_depth*
691 * which previously supplied to rte_event_dev_configure().
692 * Ignored when device is not RTE_EVENT_DEV_CAP_BURST_MODE capable.
694 uint16_t enqueue_depth;
695 /**< Configure number of bulk enqueues for this event port.
696 * This value cannot exceed the *nb_event_port_enqueue_depth*
697 * which previously supplied to rte_event_dev_configure().
698 * Ignored when device is not RTE_EVENT_DEV_CAP_BURST_MODE capable.
700 uint8_t disable_implicit_release;
701 /**< Configure the port not to release outstanding events in
702 * rte_event_dev_dequeue_burst(). If true, all events received through
703 * the port must be explicitly released with RTE_EVENT_OP_RELEASE or
704 * RTE_EVENT_OP_FORWARD. Must be false when the device is not
705 * RTE_EVENT_DEV_CAP_IMPLICIT_RELEASE_DISABLE capable.
710 * Retrieve the default configuration information of an event port designated
711 * by its *port_id* from the event driver for an event device.
713 * This function intended to be used in conjunction with rte_event_port_setup()
714 * where caller needs to set up the port by overriding few default values.
717 * The identifier of the device.
719 * The index of the event port to get the configuration information.
720 * The value must be in the range [0, nb_event_ports - 1]
721 * previously supplied to rte_event_dev_configure().
722 * @param[out] port_conf
723 * The pointer to the default event port configuration data
725 * - 0: Success, driver updates the default event port configuration data.
726 * - <0: Error code returned by the driver info get function.
728 * @see rte_event_port_setup()
732 rte_event_port_default_conf_get(uint8_t dev_id, uint8_t port_id,
733 struct rte_event_port_conf *port_conf);
736 * Allocate and set up an event port for an event device.
739 * The identifier of the device.
741 * The index of the event port to setup. The value must be in the range
742 * [0, nb_event_ports - 1] previously supplied to rte_event_dev_configure().
744 * The pointer to the configuration data to be used for the queue.
745 * NULL value is allowed, in which case default configuration used.
747 * @see rte_event_port_default_conf_get()
750 * - 0: Success, event port correctly set up.
751 * - <0: Port configuration failed
752 * - (-EDQUOT) Quota exceeded(Application tried to link the queue configured
753 * with RTE_EVENT_QUEUE_CFG_SINGLE_LINK to more than one event ports)
756 rte_event_port_setup(uint8_t dev_id, uint8_t port_id,
757 const struct rte_event_port_conf *port_conf);
760 * The queue depth of the port on the enqueue side
762 #define RTE_EVENT_PORT_ATTR_ENQ_DEPTH 0
764 * The queue depth of the port on the dequeue side
766 #define RTE_EVENT_PORT_ATTR_DEQ_DEPTH 1
768 * The new event threshold of the port
770 #define RTE_EVENT_PORT_ATTR_NEW_EVENT_THRESHOLD 2
773 * Get an attribute from a port.
780 * The attribute ID to retrieve
781 * @param[out] attr_value
782 * A pointer that will be filled in with the attribute value if successful
785 * - 0: Successfully returned value
786 * - (-EINVAL) Invalid device, port or attr_id, or attr_value was NULL
789 rte_event_port_attr_get(uint8_t dev_id, uint8_t port_id, uint32_t attr_id,
790 uint32_t *attr_value);
793 * Start an event device.
795 * The device start step is the last one and consists of setting the event
796 * queues to start accepting the events and schedules to event ports.
798 * On success, all basic functions exported by the API (event enqueue,
799 * event dequeue and so on) can be invoked.
802 * Event device identifier
804 * - 0: Success, device started.
805 * - -ESTALE : Not all ports of the device are configured
806 * - -ENOLINK: Not all queues are linked, which could lead to deadlock.
809 rte_event_dev_start(uint8_t dev_id);
812 * Stop an event device.
814 * This function causes all queued events to be drained, including those
815 * residing in event ports. While draining events out of the device, this
816 * function calls the user-provided flush callback (if one was registered) once
819 * The device can be restarted with a call to rte_event_dev_start(). Threads
820 * that continue to enqueue/dequeue while the device is stopped, or being
821 * stopped, will result in undefined behavior. This includes event adapters,
822 * which must be stopped prior to stopping the eventdev.
825 * Event device identifier.
827 * @see rte_event_dev_stop_flush_callback_register()
830 rte_event_dev_stop(uint8_t dev_id);
832 typedef void (*eventdev_stop_flush_t)(uint8_t dev_id, struct rte_event event,
834 /**< Callback function called during rte_event_dev_stop(), invoked once per
839 * Registers a callback function to be invoked during rte_event_dev_stop() for
840 * each flushed event. This function can be used to properly dispose of queued
841 * events, for example events containing memory pointers.
843 * The callback function is only registered for the calling process. The
844 * callback function must be registered in every process that can call
845 * rte_event_dev_stop().
847 * To unregister a callback, call this function with a NULL callback pointer.
850 * The identifier of the device.
852 * Callback function invoked once per flushed event.
854 * Argument supplied to callback.
858 * - -EINVAL if *dev_id* is invalid
860 * @see rte_event_dev_stop()
863 rte_event_dev_stop_flush_callback_register(uint8_t dev_id,
864 eventdev_stop_flush_t callback, void *userdata);
867 * Close an event device. The device cannot be restarted!
870 * Event device identifier
873 * - 0 on successfully closing device
874 * - <0 on failure to close device
875 * - (-EAGAIN) if device is busy
878 rte_event_dev_close(uint8_t dev_id);
880 /* Scheduler type definitions */
881 #define RTE_SCHED_TYPE_ORDERED 0
882 /**< Ordered scheduling
884 * Events from an ordered flow of an event queue can be scheduled to multiple
885 * ports for concurrent processing while maintaining the original event order.
886 * This scheme enables the user to achieve high single flow throughput by
887 * avoiding SW synchronization for ordering between ports which bound to cores.
889 * The source flow ordering from an event queue is maintained when events are
890 * enqueued to their destination queue within the same ordered flow context.
891 * An event port holds the context until application call
892 * rte_event_dequeue_burst() from the same port, which implicitly releases
894 * User may allow the scheduler to release the context earlier than that
895 * by invoking rte_event_enqueue_burst() with RTE_EVENT_OP_RELEASE operation.
897 * Events from the source queue appear in their original order when dequeued
898 * from a destination queue.
899 * Event ordering is based on the received event(s), but also other
900 * (newly allocated or stored) events are ordered when enqueued within the same
901 * ordered context. Events not enqueued (e.g. released or stored) within the
902 * context are considered missing from reordering and are skipped at this time
903 * (but can be ordered again within another context).
905 * @see rte_event_queue_setup(), rte_event_dequeue_burst(), RTE_EVENT_OP_RELEASE
908 #define RTE_SCHED_TYPE_ATOMIC 1
909 /**< Atomic scheduling
911 * Events from an atomic flow of an event queue can be scheduled only to a
912 * single port at a time. The port is guaranteed to have exclusive (atomic)
913 * access to the associated flow context, which enables the user to avoid SW
914 * synchronization. Atomic flows also help to maintain event ordering
915 * since only one port at a time can process events from a flow of an
918 * The atomic queue synchronization context is dedicated to the port until
919 * application call rte_event_dequeue_burst() from the same port,
920 * which implicitly releases the context. User may allow the scheduler to
921 * release the context earlier than that by invoking rte_event_enqueue_burst()
922 * with RTE_EVENT_OP_RELEASE operation.
924 * @see rte_event_queue_setup(), rte_event_dequeue_burst(), RTE_EVENT_OP_RELEASE
927 #define RTE_SCHED_TYPE_PARALLEL 2
928 /**< Parallel scheduling
930 * The scheduler performs priority scheduling, load balancing, etc. functions
931 * but does not provide additional event synchronization or ordering.
932 * It is free to schedule events from a single parallel flow of an event queue
933 * to multiple events ports for concurrent processing.
934 * The application is responsible for flow context synchronization and
935 * event ordering (SW synchronization).
937 * @see rte_event_queue_setup(), rte_event_dequeue_burst()
940 /* Event types to classify the event source */
941 #define RTE_EVENT_TYPE_ETHDEV 0x0
942 /**< The event generated from ethdev subsystem */
943 #define RTE_EVENT_TYPE_CRYPTODEV 0x1
944 /**< The event generated from crypodev subsystem */
945 #define RTE_EVENT_TYPE_TIMER 0x2
946 /**< The event generated from event timer adapter */
947 #define RTE_EVENT_TYPE_CPU 0x3
948 /**< The event generated from cpu for pipelining.
949 * Application may use *sub_event_type* to further classify the event
951 #define RTE_EVENT_TYPE_ETH_RX_ADAPTER 0x4
952 /**< The event generated from event eth Rx adapter */
953 #define RTE_EVENT_TYPE_MAX 0x10
954 /**< Maximum number of event types */
956 /* Event enqueue operations */
957 #define RTE_EVENT_OP_NEW 0
958 /**< The event producers use this operation to inject a new event to the
961 #define RTE_EVENT_OP_FORWARD 1
962 /**< The CPU use this operation to forward the event to different event queue or
963 * change to new application specific flow or schedule type to enable
966 * This operation must only be enqueued to the same port that the
967 * event to be forwarded was dequeued from.
969 #define RTE_EVENT_OP_RELEASE 2
970 /**< Release the flow context associated with the schedule type.
972 * If current flow's scheduler type method is *RTE_SCHED_TYPE_ATOMIC*
973 * then this function hints the scheduler that the user has completed critical
974 * section processing in the current atomic context.
975 * The scheduler is now allowed to schedule events from the same flow from
976 * an event queue to another port. However, the context may be still held
977 * until the next rte_event_dequeue_burst() call, this call allows but does not
978 * force the scheduler to release the context early.
980 * Early atomic context release may increase parallelism and thus system
981 * performance, but the user needs to design carefully the split into critical
982 * vs non-critical sections.
984 * If current flow's scheduler type method is *RTE_SCHED_TYPE_ORDERED*
985 * then this function hints the scheduler that the user has done all that need
986 * to maintain event order in the current ordered context.
987 * The scheduler is allowed to release the ordered context of this port and
988 * avoid reordering any following enqueues.
990 * Early ordered context release may increase parallelism and thus system
993 * If current flow's scheduler type method is *RTE_SCHED_TYPE_PARALLEL*
994 * or no scheduling context is held then this function may be an NOOP,
995 * depending on the implementation.
997 * This operation must only be enqueued to the same port that the
998 * event to be released was dequeued from.
1003 * The generic *rte_event* structure to hold the event attributes
1004 * for dequeue and enqueue operation
1011 /** Event attributes for dequeue or enqueue operation */
1013 uint32_t flow_id:20;
1014 /**< Targeted flow identifier for the enqueue and
1015 * dequeue operation.
1016 * The value must be in the range of
1017 * [0, nb_event_queue_flows - 1] which
1018 * previously supplied to rte_event_dev_configure().
1020 uint32_t sub_event_type:8;
1021 /**< Sub-event types based on the event source.
1022 * @see RTE_EVENT_TYPE_CPU
1024 uint32_t event_type:4;
1025 /**< Event type to classify the event source.
1026 * @see RTE_EVENT_TYPE_ETHDEV, (RTE_EVENT_TYPE_*)
1029 /**< The type of event enqueue operation - new/forward/
1030 * etc.This field is not preserved across an instance
1031 * and is undefined on dequeue.
1032 * @see RTE_EVENT_OP_NEW, (RTE_EVENT_OP_*)
1035 /**< Reserved for future use */
1036 uint8_t sched_type:2;
1037 /**< Scheduler synchronization type (RTE_SCHED_TYPE_*)
1038 * associated with flow id on a given event queue
1039 * for the enqueue and dequeue operation.
1042 /**< Targeted event queue identifier for the enqueue or
1043 * dequeue operation.
1044 * The value must be in the range of
1045 * [0, nb_event_queues - 1] which previously supplied to
1046 * rte_event_dev_configure().
1049 /**< Event priority relative to other events in the
1050 * event queue. The requested priority should in the
1051 * range of [RTE_EVENT_DEV_PRIORITY_HIGHEST,
1052 * RTE_EVENT_DEV_PRIORITY_LOWEST].
1053 * The implementation shall normalize the requested
1054 * priority to supported priority value.
1055 * Valid when the device has
1056 * RTE_EVENT_DEV_CAP_EVENT_QOS capability.
1058 uint8_t impl_opaque;
1059 /**< Implementation specific opaque value.
1060 * An implementation may use this field to hold
1061 * implementation specific value to share between
1062 * dequeue and enqueue operation.
1063 * The application should not modify this field.
1070 /**< Opaque 64-bit value */
1072 /**< Opaque event pointer */
1073 struct rte_mbuf *mbuf;
1074 /**< mbuf pointer if dequeued event is associated with mbuf */
1078 /* Ethdev Rx adapter capability bitmap flags */
1079 #define RTE_EVENT_ETH_RX_ADAPTER_CAP_INTERNAL_PORT 0x1
1080 /**< This flag is sent when the packet transfer mechanism is in HW.
1081 * Ethdev can send packets to the event device using internal event port.
1083 #define RTE_EVENT_ETH_RX_ADAPTER_CAP_MULTI_EVENTQ 0x2
1084 /**< Adapter supports multiple event queues per ethdev. Every ethdev
1085 * Rx queue can be connected to a unique event queue.
1087 #define RTE_EVENT_ETH_RX_ADAPTER_CAP_OVERRIDE_FLOW_ID 0x4
1088 /**< The application can override the adapter generated flow ID in the
1089 * event. This flow ID can be specified when adding an ethdev Rx queue
1090 * to the adapter using the ev member of struct rte_event_eth_rx_adapter
1091 * @see struct rte_event_eth_rx_adapter_queue_conf::ev
1092 * @see struct rte_event_eth_rx_adapter_queue_conf::rx_queue_flags
1096 * Retrieve the event device's ethdev Rx adapter capabilities for the
1097 * specified ethernet port
1100 * The identifier of the device.
1102 * @param eth_port_id
1103 * The identifier of the ethernet device.
1106 * A pointer to memory filled with Rx event adapter capabilities.
1109 * - 0: Success, driver provides Rx event adapter capabilities for the
1111 * - <0: Error code returned by the driver function.
1115 rte_event_eth_rx_adapter_caps_get(uint8_t dev_id, uint8_t eth_port_id,
1118 #define RTE_EVENT_TIMER_ADAPTER_CAP_INTERNAL_PORT (1ULL << 0)
1119 /**< This flag is set when the timer mechanism is in HW. */
1122 * Retrieve the event device's timer adapter capabilities.
1125 * The identifier of the device.
1128 * A pointer to memory to be filled with event timer adapter capabilities.
1131 * - 0: Success, driver provided event timer adapter capabilities.
1132 * - <0: Error code returned by the driver function.
1134 int __rte_experimental
1135 rte_event_timer_adapter_caps_get(uint8_t dev_id, uint32_t *caps);
1137 /* Crypto adapter capability bitmap flag */
1138 #define RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW 0x1
1139 /**< Flag indicates HW is capable of generating events in
1140 * RTE_EVENT_OP_NEW enqueue operation. Cryptodev will send
1141 * packets to the event device as new events using an internal
1145 #define RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_FWD 0x2
1146 /**< Flag indicates HW is capable of generating events in
1147 * RTE_EVENT_OP_FORWARD enqueue operation. Cryptodev will send
1148 * packets to the event device as forwarded event using an
1149 * internal event port.
1152 #define RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_QP_EV_BIND 0x4
1153 /**< Flag indicates HW is capable of mapping crypto queue pair to
1157 #define RTE_EVENT_CRYPTO_ADAPTER_CAP_SESSION_PRIVATE_DATA 0x8
1158 /**< Flag indicates HW/SW suports a mechanism to store and retrieve
1159 * the private data information along with the crypto session.
1164 * @b EXPERIMENTAL: this API may change without prior notice
1166 * Retrieve the event device's crypto adapter capabilities for the
1167 * specified cryptodev device
1170 * The identifier of the device.
1173 * The identifier of the cryptodev device.
1176 * A pointer to memory filled with event adapter capabilities.
1177 * It is expected to be pre-allocated & initialized by caller.
1180 * - 0: Success, driver provides event adapter capabilities for the
1182 * - <0: Error code returned by the driver function.
1185 int __rte_experimental
1186 rte_event_crypto_adapter_caps_get(uint8_t dev_id, uint8_t cdev_id,
1189 struct rte_eventdev_ops;
1190 struct rte_eventdev;
1192 typedef uint16_t (*event_enqueue_t)(void *port, const struct rte_event *ev);
1193 /**< @internal Enqueue event on port of a device */
1195 typedef uint16_t (*event_enqueue_burst_t)(void *port,
1196 const struct rte_event ev[], uint16_t nb_events);
1197 /**< @internal Enqueue burst of events on port of a device */
1199 typedef uint16_t (*event_dequeue_t)(void *port, struct rte_event *ev,
1200 uint64_t timeout_ticks);
1201 /**< @internal Dequeue event from port of a device */
1203 typedef uint16_t (*event_dequeue_burst_t)(void *port, struct rte_event ev[],
1204 uint16_t nb_events, uint64_t timeout_ticks);
1205 /**< @internal Dequeue burst of events from port of a device */
1207 #define RTE_EVENTDEV_NAME_MAX_LEN (64)
1208 /**< @internal Max length of name of event PMD */
1212 * The data part, with no function pointers, associated with each device.
1214 * This structure is safe to place in shared memory to be common among
1215 * different processes in a multi-process configuration.
1217 struct rte_eventdev_data {
1219 /**< Socket ID where memory is allocated */
1221 /**< Device ID for this instance */
1223 /**< Number of event queues. */
1225 /**< Number of event ports. */
1227 /**< Array of pointers to ports. */
1228 struct rte_event_port_conf *ports_cfg;
1229 /**< Array of port configuration structures. */
1230 struct rte_event_queue_conf *queues_cfg;
1231 /**< Array of queue configuration structures. */
1232 uint16_t *links_map;
1233 /**< Memory to store queues to port connections. */
1235 /**< PMD-specific private data */
1236 uint32_t event_dev_cap;
1237 /**< Event device capabilities(RTE_EVENT_DEV_CAP_)*/
1238 struct rte_event_dev_config dev_conf;
1239 /**< Configuration applied to device. */
1240 uint8_t service_inited;
1241 /* Service initialization state */
1242 uint32_t service_id;
1244 void *dev_stop_flush_arg;
1245 /**< User-provided argument for event flush function */
1248 uint8_t dev_started : 1;
1249 /**< Device state: STARTED(1)/STOPPED(0) */
1251 char name[RTE_EVENTDEV_NAME_MAX_LEN];
1252 /**< Unique identifier name */
1253 } __rte_cache_aligned;
1255 /** @internal The data structure associated with each event device. */
1256 struct rte_eventdev {
1257 event_enqueue_t enqueue;
1258 /**< Pointer to PMD enqueue function. */
1259 event_enqueue_burst_t enqueue_burst;
1260 /**< Pointer to PMD enqueue burst function. */
1261 event_enqueue_burst_t enqueue_new_burst;
1262 /**< Pointer to PMD enqueue burst function(op new variant) */
1263 event_enqueue_burst_t enqueue_forward_burst;
1264 /**< Pointer to PMD enqueue burst function(op forward variant) */
1265 event_dequeue_t dequeue;
1266 /**< Pointer to PMD dequeue function. */
1267 event_dequeue_burst_t dequeue_burst;
1268 /**< Pointer to PMD dequeue burst function. */
1270 struct rte_eventdev_data *data;
1271 /**< Pointer to device data */
1272 struct rte_eventdev_ops *dev_ops;
1273 /**< Functions exported by PMD */
1274 struct rte_device *dev;
1275 /**< Device info. supplied by probing */
1278 uint8_t attached : 1;
1279 /**< Flag indicating the device is attached */
1280 } __rte_cache_aligned;
1282 extern struct rte_eventdev *rte_eventdevs;
1283 /** @internal The pool of rte_eventdev structures. */
1285 static __rte_always_inline uint16_t
1286 __rte_event_enqueue_burst(uint8_t dev_id, uint8_t port_id,
1287 const struct rte_event ev[], uint16_t nb_events,
1288 const event_enqueue_burst_t fn)
1290 const struct rte_eventdev *dev = &rte_eventdevs[dev_id];
1292 #ifdef RTE_LIBRTE_EVENTDEV_DEBUG
1293 if (dev_id >= RTE_EVENT_MAX_DEVS || !rte_eventdevs[dev_id].attached) {
1294 rte_errno = -EINVAL;
1298 if (port_id >= dev->data->nb_ports) {
1299 rte_errno = -EINVAL;
1304 * Allow zero cost non burst mode routine invocation if application
1305 * requests nb_events as const one
1308 return (*dev->enqueue)(dev->data->ports[port_id], ev);
1310 return fn(dev->data->ports[port_id], ev, nb_events);
1314 * Enqueue a burst of events objects or an event object supplied in *rte_event*
1315 * structure on an event device designated by its *dev_id* through the event
1316 * port specified by *port_id*. Each event object specifies the event queue on
1317 * which it will be enqueued.
1319 * The *nb_events* parameter is the number of event objects to enqueue which are
1320 * supplied in the *ev* array of *rte_event* structure.
1322 * Event operations RTE_EVENT_OP_FORWARD and RTE_EVENT_OP_RELEASE must only be
1323 * enqueued to the same port that their associated events were dequeued from.
1325 * The rte_event_enqueue_burst() function returns the number of
1326 * events objects it actually enqueued. A return value equal to *nb_events*
1327 * means that all event objects have been enqueued.
1330 * The identifier of the device.
1332 * The identifier of the event port.
1334 * Points to an array of *nb_events* objects of type *rte_event* structure
1335 * which contain the event object enqueue operations to be processed.
1337 * The number of event objects to enqueue, typically number of
1338 * rte_event_port_enqueue_depth() available for this port.
1341 * The number of event objects actually enqueued on the event device. The
1342 * return value can be less than the value of the *nb_events* parameter when
1343 * the event devices queue is full or if invalid parameters are specified in a
1344 * *rte_event*. If the return value is less than *nb_events*, the remaining
1345 * events at the end of ev[] are not consumed and the caller has to take care
1346 * of them, and rte_errno is set accordingly. Possible errno values include:
1347 * - -EINVAL The port ID is invalid, device ID is invalid, an event's queue
1348 * ID is invalid, or an event's sched type doesn't match the
1349 * capabilities of the destination queue.
1350 * - -ENOSPC The event port was backpressured and unable to enqueue
1351 * one or more events. This error code is only applicable to
1353 * @see rte_event_port_enqueue_depth()
1355 static inline uint16_t
1356 rte_event_enqueue_burst(uint8_t dev_id, uint8_t port_id,
1357 const struct rte_event ev[], uint16_t nb_events)
1359 const struct rte_eventdev *dev = &rte_eventdevs[dev_id];
1361 return __rte_event_enqueue_burst(dev_id, port_id, ev, nb_events,
1362 dev->enqueue_burst);
1366 * Enqueue a burst of events objects of operation type *RTE_EVENT_OP_NEW* on
1367 * an event device designated by its *dev_id* through the event port specified
1370 * Provides the same functionality as rte_event_enqueue_burst(), expect that
1371 * application can use this API when the all objects in the burst contains
1372 * the enqueue operation of the type *RTE_EVENT_OP_NEW*. This specialized
1373 * function can provide the additional hint to the PMD and optimize if possible.
1375 * The rte_event_enqueue_new_burst() result is undefined if the enqueue burst
1376 * has event object of operation type != RTE_EVENT_OP_NEW.
1379 * The identifier of the device.
1381 * The identifier of the event port.
1383 * Points to an array of *nb_events* objects of type *rte_event* structure
1384 * which contain the event object enqueue operations to be processed.
1386 * The number of event objects to enqueue, typically number of
1387 * rte_event_port_enqueue_depth() available for this port.
1390 * The number of event objects actually enqueued on the event device. The
1391 * return value can be less than the value of the *nb_events* parameter when
1392 * the event devices queue is full or if invalid parameters are specified in a
1393 * *rte_event*. If the return value is less than *nb_events*, the remaining
1394 * events at the end of ev[] are not consumed and the caller has to take care
1395 * of them, and rte_errno is set accordingly. Possible errno values include:
1396 * - -EINVAL The port ID is invalid, device ID is invalid, an event's queue
1397 * ID is invalid, or an event's sched type doesn't match the
1398 * capabilities of the destination queue.
1399 * - -ENOSPC The event port was backpressured and unable to enqueue
1400 * one or more events. This error code is only applicable to
1402 * @see rte_event_port_enqueue_depth() rte_event_enqueue_burst()
1404 static inline uint16_t
1405 rte_event_enqueue_new_burst(uint8_t dev_id, uint8_t port_id,
1406 const struct rte_event ev[], uint16_t nb_events)
1408 const struct rte_eventdev *dev = &rte_eventdevs[dev_id];
1410 return __rte_event_enqueue_burst(dev_id, port_id, ev, nb_events,
1411 dev->enqueue_new_burst);
1415 * Enqueue a burst of events objects of operation type *RTE_EVENT_OP_FORWARD*
1416 * on an event device designated by its *dev_id* through the event port
1417 * specified by *port_id*.
1419 * Provides the same functionality as rte_event_enqueue_burst(), expect that
1420 * application can use this API when the all objects in the burst contains
1421 * the enqueue operation of the type *RTE_EVENT_OP_FORWARD*. This specialized
1422 * function can provide the additional hint to the PMD and optimize if possible.
1424 * The rte_event_enqueue_new_burst() result is undefined if the enqueue burst
1425 * has event object of operation type != RTE_EVENT_OP_FORWARD.
1428 * The identifier of the device.
1430 * The identifier of the event port.
1432 * Points to an array of *nb_events* objects of type *rte_event* structure
1433 * which contain the event object enqueue operations to be processed.
1435 * The number of event objects to enqueue, typically number of
1436 * rte_event_port_enqueue_depth() available for this port.
1439 * The number of event objects actually enqueued on the event device. The
1440 * return value can be less than the value of the *nb_events* parameter when
1441 * the event devices queue is full or if invalid parameters are specified in a
1442 * *rte_event*. If the return value is less than *nb_events*, the remaining
1443 * events at the end of ev[] are not consumed and the caller has to take care
1444 * of them, and rte_errno is set accordingly. Possible errno values include:
1445 * - -EINVAL The port ID is invalid, device ID is invalid, an event's queue
1446 * ID is invalid, or an event's sched type doesn't match the
1447 * capabilities of the destination queue.
1448 * - -ENOSPC The event port was backpressured and unable to enqueue
1449 * one or more events. This error code is only applicable to
1451 * @see rte_event_port_enqueue_depth() rte_event_enqueue_burst()
1453 static inline uint16_t
1454 rte_event_enqueue_forward_burst(uint8_t dev_id, uint8_t port_id,
1455 const struct rte_event ev[], uint16_t nb_events)
1457 const struct rte_eventdev *dev = &rte_eventdevs[dev_id];
1459 return __rte_event_enqueue_burst(dev_id, port_id, ev, nb_events,
1460 dev->enqueue_forward_burst);
1464 * Converts nanoseconds to *timeout_ticks* value for rte_event_dequeue_burst()
1466 * If the device is configured with RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT flag
1467 * then application can use this function to convert timeout value in
1468 * nanoseconds to implementations specific timeout value supplied in
1469 * rte_event_dequeue_burst()
1472 * The identifier of the device.
1474 * Wait time in nanosecond
1475 * @param[out] timeout_ticks
1476 * Value for the *timeout_ticks* parameter in rte_event_dequeue_burst()
1480 * - -ENOTSUP if the device doesn't support timeouts
1481 * - -EINVAL if *dev_id* is invalid or *timeout_ticks* is NULL
1482 * - other values < 0 on failure.
1484 * @see rte_event_dequeue_burst(), RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT
1485 * @see rte_event_dev_configure()
1489 rte_event_dequeue_timeout_ticks(uint8_t dev_id, uint64_t ns,
1490 uint64_t *timeout_ticks);
1493 * Dequeue a burst of events objects or an event object from the event port
1494 * designated by its *event_port_id*, on an event device designated
1497 * rte_event_dequeue_burst() does not dictate the specifics of scheduling
1498 * algorithm as each eventdev driver may have different criteria to schedule
1499 * an event. However, in general, from an application perspective scheduler may
1500 * use the following scheme to dispatch an event to the port.
1502 * 1) Selection of event queue based on
1503 * a) The list of event queues are linked to the event port.
1504 * b) If the device has RTE_EVENT_DEV_CAP_QUEUE_QOS capability then event
1505 * queue selection from list is based on event queue priority relative to
1506 * other event queue supplied as *priority* in rte_event_queue_setup()
1507 * c) If the device has RTE_EVENT_DEV_CAP_EVENT_QOS capability then event
1508 * queue selection from the list is based on event priority supplied as
1509 * *priority* in rte_event_enqueue_burst()
1510 * 2) Selection of event
1511 * a) The number of flows available in selected event queue.
1512 * b) Schedule type method associated with the event
1514 * The *nb_events* parameter is the maximum number of event objects to dequeue
1515 * which are returned in the *ev* array of *rte_event* structure.
1517 * The rte_event_dequeue_burst() function returns the number of events objects
1518 * it actually dequeued. A return value equal to *nb_events* means that all
1519 * event objects have been dequeued.
1521 * The number of events dequeued is the number of scheduler contexts held by
1522 * this port. These contexts are automatically released in the next
1523 * rte_event_dequeue_burst() invocation if the port supports implicit
1524 * releases, or invoking rte_event_enqueue_burst() with RTE_EVENT_OP_RELEASE
1525 * operation can be used to release the contexts early.
1527 * Event operations RTE_EVENT_OP_FORWARD and RTE_EVENT_OP_RELEASE must only be
1528 * enqueued to the same port that their associated events were dequeued from.
1531 * The identifier of the device.
1533 * The identifier of the event port.
1535 * Points to an array of *nb_events* objects of type *rte_event* structure
1536 * for output to be populated with the dequeued event objects.
1538 * The maximum number of event objects to dequeue, typically number of
1539 * rte_event_port_dequeue_depth() available for this port.
1541 * @param timeout_ticks
1542 * - 0 no-wait, returns immediately if there is no event.
1543 * - >0 wait for the event, if the device is configured with
1544 * RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT then this function will wait until
1545 * at least one event is available or *timeout_ticks* time.
1546 * if the device is not configured with RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT
1547 * then this function will wait until the event available or
1548 * *dequeue_timeout_ns* ns which was previously supplied to
1549 * rte_event_dev_configure()
1552 * The number of event objects actually dequeued from the port. The return
1553 * value can be less than the value of the *nb_events* parameter when the
1554 * event port's queue is not full.
1556 * @see rte_event_port_dequeue_depth()
1558 static inline uint16_t
1559 rte_event_dequeue_burst(uint8_t dev_id, uint8_t port_id, struct rte_event ev[],
1560 uint16_t nb_events, uint64_t timeout_ticks)
1562 struct rte_eventdev *dev = &rte_eventdevs[dev_id];
1564 #ifdef RTE_LIBRTE_EVENTDEV_DEBUG
1565 if (dev_id >= RTE_EVENT_MAX_DEVS || !rte_eventdevs[dev_id].attached) {
1566 rte_errno = -EINVAL;
1570 if (port_id >= dev->data->nb_ports) {
1571 rte_errno = -EINVAL;
1577 * Allow zero cost non burst mode routine invocation if application
1578 * requests nb_events as const one
1581 return (*dev->dequeue)(
1582 dev->data->ports[port_id], ev, timeout_ticks);
1584 return (*dev->dequeue_burst)(
1585 dev->data->ports[port_id], ev, nb_events,
1590 * Link multiple source event queues supplied in *queues* to the destination
1591 * event port designated by its *port_id* with associated service priority
1592 * supplied in *priorities* on the event device designated by its *dev_id*.
1594 * The link establishment shall enable the event port *port_id* from
1595 * receiving events from the specified event queue(s) supplied in *queues*
1597 * An event queue may link to one or more event ports.
1598 * The number of links can be established from an event queue to event port is
1599 * implementation defined.
1601 * Event queue(s) to event port link establishment can be changed at runtime
1602 * without re-configuring the device to support scaling and to reduce the
1603 * latency of critical work by establishing the link with more event ports
1607 * The identifier of the device.
1610 * Event port identifier to select the destination port to link.
1613 * Points to an array of *nb_links* event queues to be linked
1614 * to the event port.
1615 * NULL value is allowed, in which case this function links all the configured
1616 * event queues *nb_event_queues* which previously supplied to
1617 * rte_event_dev_configure() to the event port *port_id*
1620 * Points to an array of *nb_links* service priorities associated with each
1621 * event queue link to event port.
1622 * The priority defines the event port's servicing priority for
1623 * event queue, which may be ignored by an implementation.
1624 * The requested priority should in the range of
1625 * [RTE_EVENT_DEV_PRIORITY_HIGHEST, RTE_EVENT_DEV_PRIORITY_LOWEST].
1626 * The implementation shall normalize the requested priority to
1627 * implementation supported priority value.
1628 * NULL value is allowed, in which case this function links the event queues
1629 * with RTE_EVENT_DEV_PRIORITY_NORMAL servicing priority
1632 * The number of links to establish. This parameter is ignored if queues is
1636 * The number of links actually established. The return value can be less than
1637 * the value of the *nb_links* parameter when the implementation has the
1638 * limitation on specific queue to port link establishment or if invalid
1639 * parameters are specified in *queues*
1640 * If the return value is less than *nb_links*, the remaining links at the end
1641 * of link[] are not established, and the caller has to take care of them.
1642 * If return value is less than *nb_links* then implementation shall update the
1643 * rte_errno accordingly, Possible rte_errno values are
1644 * (-EDQUOT) Quota exceeded(Application tried to link the queue configured with
1645 * RTE_EVENT_QUEUE_CFG_SINGLE_LINK to more than one event ports)
1646 * (-EINVAL) Invalid parameter
1650 rte_event_port_link(uint8_t dev_id, uint8_t port_id,
1651 const uint8_t queues[], const uint8_t priorities[],
1655 * Unlink multiple source event queues supplied in *queues* from the destination
1656 * event port designated by its *port_id* on the event device designated
1659 * The unlink establishment shall disable the event port *port_id* from
1660 * receiving events from the specified event queue *queue_id*
1662 * Event queue(s) to event port unlink establishment can be changed at runtime
1663 * without re-configuring the device.
1666 * The identifier of the device.
1669 * Event port identifier to select the destination port to unlink.
1672 * Points to an array of *nb_unlinks* event queues to be unlinked
1673 * from the event port.
1674 * NULL value is allowed, in which case this function unlinks all the
1675 * event queue(s) from the event port *port_id*.
1678 * The number of unlinks to establish. This parameter is ignored if queues is
1682 * The number of unlinks actually established. The return value can be less
1683 * than the value of the *nb_unlinks* parameter when the implementation has the
1684 * limitation on specific queue to port unlink establishment or
1685 * if invalid parameters are specified.
1686 * If the return value is less than *nb_unlinks*, the remaining queues at the
1687 * end of queues[] are not established, and the caller has to take care of them.
1688 * If return value is less than *nb_unlinks* then implementation shall update
1689 * the rte_errno accordingly, Possible rte_errno values are
1690 * (-EINVAL) Invalid parameter
1694 rte_event_port_unlink(uint8_t dev_id, uint8_t port_id,
1695 uint8_t queues[], uint16_t nb_unlinks);
1698 * Retrieve the list of source event queues and its associated service priority
1699 * linked to the destination event port designated by its *port_id*
1700 * on the event device designated by its *dev_id*.
1703 * The identifier of the device.
1706 * Event port identifier.
1708 * @param[out] queues
1709 * Points to an array of *queues* for output.
1710 * The caller has to allocate *RTE_EVENT_MAX_QUEUES_PER_DEV* bytes to
1711 * store the event queue(s) linked with event port *port_id*
1713 * @param[out] priorities
1714 * Points to an array of *priorities* for output.
1715 * The caller has to allocate *RTE_EVENT_MAX_QUEUES_PER_DEV* bytes to
1716 * store the service priority associated with each event queue linked
1719 * The number of links established on the event port designated by its
1725 rte_event_port_links_get(uint8_t dev_id, uint8_t port_id,
1726 uint8_t queues[], uint8_t priorities[]);
1729 * Retrieve the service ID of the event dev. If the adapter doesn't use
1730 * a rte_service function, this function returns -ESRCH.
1733 * The identifier of the device.
1735 * @param [out] service_id
1736 * A pointer to a uint32_t, to be filled in with the service id.
1740 * - <0: Error code on failure, if the event dev doesn't use a rte_service
1741 * function, this function returns -ESRCH.
1744 rte_event_dev_service_id_get(uint8_t dev_id, uint32_t *service_id);
1747 * Dump internal information about *dev_id* to the FILE* provided in *f*.
1750 * The identifier of the device.
1753 * A pointer to a file for output
1760 rte_event_dev_dump(uint8_t dev_id, FILE *f);
1762 /** Maximum name length for extended statistics counters */
1763 #define RTE_EVENT_DEV_XSTATS_NAME_SIZE 64
1766 * Selects the component of the eventdev to retrieve statistics from.
1768 enum rte_event_dev_xstats_mode {
1769 RTE_EVENT_DEV_XSTATS_DEVICE,
1770 RTE_EVENT_DEV_XSTATS_PORT,
1771 RTE_EVENT_DEV_XSTATS_QUEUE,
1775 * A name-key lookup element for extended statistics.
1777 * This structure is used to map between names and ID numbers
1778 * for extended ethdev statistics.
1780 struct rte_event_dev_xstats_name {
1781 char name[RTE_EVENT_DEV_XSTATS_NAME_SIZE];
1785 * Retrieve names of extended statistics of an event device.
1788 * The identifier of the event device.
1790 * The mode of statistics to retrieve. Choices include the device statistics,
1791 * port statistics or queue statistics.
1792 * @param queue_port_id
1793 * Used to specify the port or queue number in queue or port mode, and is
1794 * ignored in device mode.
1795 * @param[out] xstats_names
1796 * Block of memory to insert names into. Must be at least size in capacity.
1797 * If set to NULL, function returns required capacity.
1799 * Block of memory to insert ids into. Must be at least size in capacity.
1800 * If set to NULL, function returns required capacity. The id values returned
1801 * can be passed to *rte_event_dev_xstats_get* to select statistics.
1803 * Capacity of xstats_names (number of names).
1805 * - positive value lower or equal to size: success. The return value
1806 * is the number of entries filled in the stats table.
1807 * - positive value higher than size: error, the given statistics table
1808 * is too small. The return value corresponds to the size that should
1809 * be given to succeed. The entries in the table are not valid and
1810 * shall not be used by the caller.
1811 * - negative value on error:
1812 * -ENODEV for invalid *dev_id*
1813 * -EINVAL for invalid mode, queue port or id parameters
1814 * -ENOTSUP if the device doesn't support this function.
1817 rte_event_dev_xstats_names_get(uint8_t dev_id,
1818 enum rte_event_dev_xstats_mode mode,
1819 uint8_t queue_port_id,
1820 struct rte_event_dev_xstats_name *xstats_names,
1825 * Retrieve extended statistics of an event device.
1828 * The identifier of the device.
1830 * The mode of statistics to retrieve. Choices include the device statistics,
1831 * port statistics or queue statistics.
1832 * @param queue_port_id
1833 * Used to specify the port or queue number in queue or port mode, and is
1834 * ignored in device mode.
1836 * The id numbers of the stats to get. The ids can be got from the stat
1837 * position in the stat list from rte_event_dev_get_xstats_names(), or
1838 * by using rte_eventdev_get_xstats_by_name()
1839 * @param[out] values
1840 * The values for each stats request by ID.
1842 * The number of stats requested
1844 * - positive value: number of stat entries filled into the values array
1845 * - negative value on error:
1846 * -ENODEV for invalid *dev_id*
1847 * -EINVAL for invalid mode, queue port or id parameters
1848 * -ENOTSUP if the device doesn't support this function.
1851 rte_event_dev_xstats_get(uint8_t dev_id,
1852 enum rte_event_dev_xstats_mode mode,
1853 uint8_t queue_port_id,
1854 const unsigned int ids[],
1855 uint64_t values[], unsigned int n);
1858 * Retrieve the value of a single stat by requesting it by name.
1861 * The identifier of the device
1863 * The stat name to retrieve
1865 * If non-NULL, the numerical id of the stat will be returned, so that further
1866 * requests for the stat can be got using rte_eventdev_xstats_get, which will
1867 * be faster as it doesn't need to scan a list of names for the stat.
1868 * If the stat cannot be found, the id returned will be (unsigned)-1.
1870 * - positive value or zero: the stat value
1871 * - negative value: -EINVAL if stat not found, -ENOTSUP if not supported.
1874 rte_event_dev_xstats_by_name_get(uint8_t dev_id, const char *name,
1878 * Reset the values of the xstats of the selected component in the device.
1881 * The identifier of the device
1883 * The mode of the statistics to reset. Choose from device, queue or port.
1884 * @param queue_port_id
1885 * The queue or port to reset. 0 and positive values select ports and queues,
1886 * while -1 indicates all ports or queues.
1888 * Selects specific statistics to be reset. When NULL, all statistics selected
1889 * by *mode* will be reset. If non-NULL, must point to array of at least
1892 * The number of ids available from the *ids* array. Ignored when ids is NULL.
1894 * - zero: successfully reset the statistics to zero
1895 * - negative value: -EINVAL invalid parameters, -ENOTSUP if not supported.
1898 rte_event_dev_xstats_reset(uint8_t dev_id,
1899 enum rte_event_dev_xstats_mode mode,
1900 int16_t queue_port_id,
1901 const uint32_t ids[],
1905 * Trigger the eventdev self test.
1908 * The identifier of the device
1910 * - 0: Selftest successful
1911 * - -ENOTSUP if the device doesn't support selftest
1912 * - other values < 0 on failure.
1914 int rte_event_dev_selftest(uint8_t dev_id);
1920 #endif /* _RTE_EVENTDEV_H_ */