eventdev: add new software timer adapter
[dpdk.git] / lib / librte_bbdev / rte_bbdev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017 Intel Corporation
3  */
4
5 #ifndef _RTE_BBDEV_H_
6 #define _RTE_BBDEV_H_
7
8 /**
9  * @file rte_bbdev.h
10  *
11  * Wireless base band device abstraction APIs.
12  *
13  * @warning
14  * @b EXPERIMENTAL: this API may change without prior notice
15  *
16  * This API allows an application to discover, configure and use a device to
17  * process operations. An asynchronous API (enqueue, followed by later dequeue)
18  * is used for processing operations.
19  *
20  * The functions in this API are not thread-safe when called on the same
21  * target object (a device, or a queue on a device), with the exception that
22  * one thread can enqueue operations to a queue while another thread dequeues
23  * from the same queue.
24  */
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 #include <stdint.h>
31 #include <stdbool.h>
32 #include <string.h>
33
34 #include <rte_compat.h>
35 #include <rte_atomic.h>
36 #include <rte_bus.h>
37 #include <rte_cpuflags.h>
38 #include <rte_memory.h>
39
40 #include "rte_bbdev_op.h"
41
42 #ifndef RTE_BBDEV_MAX_DEVS
43 #define RTE_BBDEV_MAX_DEVS 128  /**< Max number of devices */
44 #endif
45
46 /** Flags indicate current state of BBDEV device */
47 enum rte_bbdev_state {
48         RTE_BBDEV_UNUSED,
49         RTE_BBDEV_INITIALIZED
50 };
51
52 /**
53  * Get the total number of devices that have been successfully initialised.
54  *
55  * @return
56  *   The total number of usable devices.
57  */
58 __rte_experimental
59 uint16_t
60 rte_bbdev_count(void);
61
62 /**
63  * Check if a device is valid.
64  *
65  * @param dev_id
66  *   The identifier of the device.
67  *
68  * @return
69  *   true if device ID is valid and device is attached, false otherwise.
70  */
71 __rte_experimental
72 bool
73 rte_bbdev_is_valid(uint16_t dev_id);
74
75 /**
76  * Get the next enabled device.
77  *
78  * @param dev_id
79  *   The current device
80  *
81  * @return
82  *   - The next device, or
83  *   - RTE_BBDEV_MAX_DEVS if none found
84  */
85 __rte_experimental
86 uint16_t
87 rte_bbdev_find_next(uint16_t dev_id);
88
89 /** Iterate through all enabled devices */
90 #define RTE_BBDEV_FOREACH(i) for (i = rte_bbdev_find_next(-1); \
91                 i < RTE_BBDEV_MAX_DEVS; \
92                 i = rte_bbdev_find_next(i))
93
94 /**
95  * Setup up device queues.
96  * This function must be called on a device before setting up the queues and
97  * starting the device. It can also be called when a device is in the stopped
98  * state. If any device queues have been configured their configuration will be
99  * cleared by a call to this function.
100  *
101  * @param dev_id
102  *   The identifier of the device.
103  * @param num_queues
104  *   Number of queues to configure on device.
105  * @param socket_id
106  *   ID of a socket which will be used to allocate memory.
107  *
108  * @return
109  *   - 0 on success
110  *   - -ENODEV if dev_id is invalid or the device is corrupted
111  *   - -EINVAL if num_queues is invalid, 0 or greater than maximum
112  *   - -EBUSY if the identified device has already started
113  *   - -ENOMEM if unable to allocate memory
114  */
115 __rte_experimental
116 int
117 rte_bbdev_setup_queues(uint16_t dev_id, uint16_t num_queues, int socket_id);
118
119 /**
120  * Enable interrupts.
121  * This function may be called before starting the device to enable the
122  * interrupts if they are available.
123  *
124  * @param dev_id
125  *   The identifier of the device.
126  *
127  * @return
128  *   - 0 on success
129  *   - -ENODEV if dev_id is invalid or the device is corrupted
130  *   - -EBUSY if the identified device has already started
131  *   - -ENOTSUP if the interrupts are not supported by the device
132  */
133 __rte_experimental
134 int
135 rte_bbdev_intr_enable(uint16_t dev_id);
136
137 /** Device queue configuration structure */
138 struct rte_bbdev_queue_conf {
139         int socket;  /**< NUMA socket used for memory allocation */
140         uint32_t queue_size;  /**< Size of queue */
141         uint8_t priority;  /**< Queue priority */
142         bool deferred_start; /**< Do not start queue when device is started. */
143         enum rte_bbdev_op_type op_type; /**< Operation type */
144 };
145
146 /**
147  * Configure a queue on a device.
148  * This function can be called after device configuration, and before starting.
149  * It can also be called when the device or the queue is in the stopped state.
150  *
151  * @param dev_id
152  *   The identifier of the device.
153  * @param queue_id
154  *   The index of the queue.
155  * @param conf
156  *   The queue configuration. If NULL, a default configuration will be used.
157  *
158  * @return
159  *   - 0 on success
160  *   - EINVAL if the identified queue size or priority are invalid
161  *   - EBUSY if the identified queue or its device have already started
162  */
163 __rte_experimental
164 int
165 rte_bbdev_queue_configure(uint16_t dev_id, uint16_t queue_id,
166                 const struct rte_bbdev_queue_conf *conf);
167
168 /**
169  * Start a device.
170  * This is the last step needed before enqueuing operations is possible.
171  *
172  * @param dev_id
173  *   The identifier of the device.
174  *
175  * @return
176  *   - 0 on success
177  *   - negative value on failure - as returned from PMD driver
178  */
179 __rte_experimental
180 int
181 rte_bbdev_start(uint16_t dev_id);
182
183 /**
184  * Stop a device.
185  * The device can be reconfigured, and restarted after being stopped.
186  *
187  * @param dev_id
188  *   The identifier of the device.
189  *
190  * @return
191  *   - 0 on success
192  */
193 __rte_experimental
194 int
195 rte_bbdev_stop(uint16_t dev_id);
196
197 /**
198  * Close a device.
199  * The device cannot be restarted without reconfiguration!
200  *
201  * @param dev_id
202  *   The identifier of the device.
203  *
204  * @return
205  *   - 0 on success
206  */
207 __rte_experimental
208 int
209 rte_bbdev_close(uint16_t dev_id);
210
211 /**
212  * Start a specified queue on a device.
213  * This is only needed if the queue has been stopped, or if the deferred_start
214  * flag has been set when configuring the queue.
215  *
216  * @param dev_id
217  *   The identifier of the device.
218  * @param queue_id
219  *   The index of the queue.
220  *
221  * @return
222  *   - 0 on success
223  *   - negative value on failure - as returned from PMD driver
224  */
225 __rte_experimental
226 int
227 rte_bbdev_queue_start(uint16_t dev_id, uint16_t queue_id);
228
229 /**
230  * Stop a specified queue on a device, to allow re configuration.
231  *
232  * @param dev_id
233  *   The identifier of the device.
234  * @param queue_id
235  *   The index of the queue.
236  *
237  * @return
238  *   - 0 on success
239  *   - negative value on failure - as returned from PMD driver
240  */
241 __rte_experimental
242 int
243 rte_bbdev_queue_stop(uint16_t dev_id, uint16_t queue_id);
244
245 /** Device statistics. */
246 struct rte_bbdev_stats {
247         uint64_t enqueued_count;  /**< Count of all operations enqueued */
248         uint64_t dequeued_count;  /**< Count of all operations dequeued */
249         /** Total error count on operations enqueued */
250         uint64_t enqueue_err_count;
251         /** Total error count on operations dequeued */
252         uint64_t dequeue_err_count;
253         /** CPU cycles consumed by the (HW/SW) accelerator device to offload
254          *  the enqueue request to its internal queues.
255          *  - For a HW device this is the cycles consumed in MMIO write
256          *  - For a SW (vdev) device, this is the processing time of the
257          *     bbdev operation
258          */
259         uint64_t acc_offload_cycles;
260 };
261
262 /**
263  * Retrieve the general I/O statistics of a device.
264  *
265  * @param dev_id
266  *   The identifier of the device.
267  * @param stats
268  *   Pointer to structure to where statistics will be copied. On error, this
269  *   location may or may not have been modified.
270  *
271  * @return
272  *   - 0 on success
273  *   - EINVAL if invalid parameter pointer is provided
274  */
275 __rte_experimental
276 int
277 rte_bbdev_stats_get(uint16_t dev_id, struct rte_bbdev_stats *stats);
278
279 /**
280  * Reset the statistics of a device.
281  *
282  * @param dev_id
283  *   The identifier of the device.
284  * @return
285  *   - 0 on success
286  */
287 __rte_experimental
288 int
289 rte_bbdev_stats_reset(uint16_t dev_id);
290
291 /** Device information supplied by the device's driver */
292 struct rte_bbdev_driver_info {
293         /** Driver name */
294         const char *driver_name;
295
296         /** Maximum number of queues supported by the device */
297         unsigned int max_num_queues;
298         /** Queue size limit (queue size must also be power of 2) */
299         uint32_t queue_size_lim;
300         /** Set if device off-loads operation to hardware  */
301         bool hardware_accelerated;
302         /** Max value supported by queue priority for DL */
303         uint8_t max_dl_queue_priority;
304         /** Max value supported by queue priority for UL */
305         uint8_t max_ul_queue_priority;
306         /** Set if device supports per-queue interrupts */
307         bool queue_intr_supported;
308         /** Minimum alignment of buffers, in bytes */
309         uint16_t min_alignment;
310         /** Default queue configuration used if none is supplied  */
311         struct rte_bbdev_queue_conf default_queue_conf;
312         /** Device operation capabilities */
313         const struct rte_bbdev_op_cap *capabilities;
314         /** Device cpu_flag requirements */
315         const enum rte_cpu_flag_t *cpu_flag_reqs;
316 };
317
318 /** Macro used at end of bbdev PMD list */
319 #define RTE_BBDEV_END_OF_CAPABILITIES_LIST() \
320         { RTE_BBDEV_OP_NONE }
321
322 /**
323  * Device information structure used by an application to discover a devices
324  * capabilities and current configuration
325  */
326 struct rte_bbdev_info {
327         int socket_id;  /**< NUMA socket that device is on */
328         const char *dev_name;  /**< Unique device name */
329         const struct rte_bus *bus;  /**< Bus information */
330         uint16_t num_queues;  /**< Number of queues currently configured */
331         bool started;  /**< Set if device is currently started */
332         struct rte_bbdev_driver_info drv;  /**< Info from device driver */
333 };
334
335 /**
336  * Retrieve information about a device.
337  *
338  * @param dev_id
339  *   The identifier of the device.
340  * @param dev_info
341  *   Pointer to structure to where information will be copied. On error, this
342  *   location may or may not have been modified.
343  *
344  * @return
345  *   - 0 on success
346  *   - EINVAL if invalid parameter pointer is provided
347  */
348 __rte_experimental
349 int
350 rte_bbdev_info_get(uint16_t dev_id, struct rte_bbdev_info *dev_info);
351
352 /** Queue information */
353 struct rte_bbdev_queue_info {
354         /** Current device configuration */
355         struct rte_bbdev_queue_conf conf;
356         /** Set if queue is currently started */
357         bool started;
358 };
359
360 /**
361  * Retrieve information about a specific queue on a device.
362  *
363  * @param dev_id
364  *   The identifier of the device.
365  * @param queue_id
366  *   The index of the queue.
367  * @param queue_info
368  *   Pointer to structure to where information will be copied. On error, this
369  *   location may or may not have been modified.
370  *
371  * @return
372  *   - 0 on success
373  *   - EINVAL if invalid parameter pointer is provided
374  */
375 __rte_experimental
376 int
377 rte_bbdev_queue_info_get(uint16_t dev_id, uint16_t queue_id,
378                 struct rte_bbdev_queue_info *queue_info);
379
380 /** @internal The data structure associated with each queue of a device. */
381 struct rte_bbdev_queue_data {
382         void *queue_private;  /**< Driver-specific per-queue data */
383         struct rte_bbdev_queue_conf conf;  /**< Current configuration */
384         struct rte_bbdev_stats queue_stats;  /**< Queue statistics */
385         bool started;  /**< Queue state */
386 };
387
388 /** @internal Enqueue encode operations for processing on queue of a device. */
389 typedef uint16_t (*rte_bbdev_enqueue_enc_ops_t)(
390                 struct rte_bbdev_queue_data *q_data,
391                 struct rte_bbdev_enc_op **ops,
392                 uint16_t num);
393
394 /** @internal Enqueue decode operations for processing on queue of a device. */
395 typedef uint16_t (*rte_bbdev_enqueue_dec_ops_t)(
396                 struct rte_bbdev_queue_data *q_data,
397                 struct rte_bbdev_dec_op **ops,
398                 uint16_t num);
399
400 /** @internal Dequeue encode operations from a queue of a device. */
401 typedef uint16_t (*rte_bbdev_dequeue_enc_ops_t)(
402                 struct rte_bbdev_queue_data *q_data,
403                 struct rte_bbdev_enc_op **ops, uint16_t num);
404
405 /** @internal Dequeue decode operations from a queue of a device. */
406 typedef uint16_t (*rte_bbdev_dequeue_dec_ops_t)(
407                 struct rte_bbdev_queue_data *q_data,
408                 struct rte_bbdev_dec_op **ops, uint16_t num);
409
410 #define RTE_BBDEV_NAME_MAX_LEN  64  /**< Max length of device name */
411
412 /**
413  * @internal The data associated with a device, with no function pointers.
414  * This structure is safe to place in shared memory to be common among
415  * different processes in a multi-process configuration. Drivers can access
416  * these fields, but should never write to them!
417  */
418 struct rte_bbdev_data {
419         char name[RTE_BBDEV_NAME_MAX_LEN]; /**< Unique identifier name */
420         void *dev_private;  /**< Driver-specific private data */
421         uint16_t num_queues;  /**< Number of currently configured queues */
422         struct rte_bbdev_queue_data *queues;  /**< Queue structures */
423         uint16_t dev_id;  /**< Device ID */
424         int socket_id;  /**< NUMA socket that device is on */
425         bool started;  /**< Device run-time state */
426         /** Counter of processes using the device */
427         rte_atomic16_t process_cnt;
428 };
429
430 /* Forward declarations */
431 struct rte_bbdev_ops;
432 struct rte_bbdev_callback;
433 struct rte_intr_handle;
434
435 /** Structure to keep track of registered callbacks */
436 TAILQ_HEAD(rte_bbdev_cb_list, rte_bbdev_callback);
437
438 /**
439  * @internal The data structure associated with a device. Drivers can access
440  * these fields, but should only write to the *_ops fields.
441  */
442 struct __rte_cache_aligned rte_bbdev {
443         /**< Enqueue encode function */
444         rte_bbdev_enqueue_enc_ops_t enqueue_enc_ops;
445         /**< Enqueue decode function */
446         rte_bbdev_enqueue_dec_ops_t enqueue_dec_ops;
447         /**< Dequeue encode function */
448         rte_bbdev_dequeue_enc_ops_t dequeue_enc_ops;
449         /**< Dequeue decode function */
450         rte_bbdev_dequeue_dec_ops_t dequeue_dec_ops;
451         const struct rte_bbdev_ops *dev_ops;  /**< Functions exported by PMD */
452         struct rte_bbdev_data *data;  /**< Pointer to device data */
453         enum rte_bbdev_state state;  /**< If device is currently used or not */
454         struct rte_device *device; /**< Backing device */
455         /** User application callback for interrupts if present */
456         struct rte_bbdev_cb_list list_cbs;
457         struct rte_intr_handle *intr_handle; /**< Device interrupt handle */
458 };
459
460 /** @internal array of all devices */
461 extern struct rte_bbdev rte_bbdev_devices[];
462
463 /**
464  * Enqueue a burst of processed encode operations to a queue of the device.
465  * This functions only enqueues as many operations as currently possible and
466  * does not block until @p num_ops entries in the queue are available.
467  * This function does not provide any error notification to avoid the
468  * corresponding overhead.
469  *
470  * @param dev_id
471  *   The identifier of the device.
472  * @param queue_id
473  *   The index of the queue.
474  * @param ops
475  *   Pointer array containing operations to be enqueued Must have at least
476  *   @p num_ops entries
477  * @param num_ops
478  *   The maximum number of operations to enqueue.
479  *
480  * @return
481  *   The number of operations actually enqueued (this is the number of processed
482  *   entries in the @p ops array).
483  */
484 __rte_experimental
485 static inline uint16_t
486 rte_bbdev_enqueue_enc_ops(uint16_t dev_id, uint16_t queue_id,
487                 struct rte_bbdev_enc_op **ops, uint16_t num_ops)
488 {
489         struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
490         struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
491         return dev->enqueue_enc_ops(q_data, ops, num_ops);
492 }
493
494 /**
495  * Enqueue a burst of processed decode operations to a queue of the device.
496  * This functions only enqueues as many operations as currently possible and
497  * does not block until @p num_ops entries in the queue are available.
498  * This function does not provide any error notification to avoid the
499  * corresponding overhead.
500  *
501  * @param dev_id
502  *   The identifier of the device.
503  * @param queue_id
504  *   The index of the queue.
505  * @param ops
506  *   Pointer array containing operations to be enqueued Must have at least
507  *   @p num_ops entries
508  * @param num_ops
509  *   The maximum number of operations to enqueue.
510  *
511  * @return
512  *   The number of operations actually enqueued (this is the number of processed
513  *   entries in the @p ops array).
514  */
515 __rte_experimental
516 static inline uint16_t
517 rte_bbdev_enqueue_dec_ops(uint16_t dev_id, uint16_t queue_id,
518                 struct rte_bbdev_dec_op **ops, uint16_t num_ops)
519 {
520         struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
521         struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
522         return dev->enqueue_dec_ops(q_data, ops, num_ops);
523 }
524
525 /**
526  * Dequeue a burst of processed encode operations from a queue of the device.
527  * This functions returns only the current contents of the queue, and does not
528  * block until @ num_ops is available.
529  * This function does not provide any error notification to avoid the
530  * corresponding overhead.
531  *
532  * @param dev_id
533  *   The identifier of the device.
534  * @param queue_id
535  *   The index of the queue.
536  * @param ops
537  *   Pointer array where operations will be dequeued to. Must have at least
538  *   @p num_ops entries
539  * @param num_ops
540  *   The maximum number of operations to dequeue.
541  *
542  * @return
543  *   The number of operations actually dequeued (this is the number of entries
544  *   copied into the @p ops array).
545  */
546 __rte_experimental
547 static inline uint16_t
548 rte_bbdev_dequeue_enc_ops(uint16_t dev_id, uint16_t queue_id,
549                 struct rte_bbdev_enc_op **ops, uint16_t num_ops)
550 {
551         struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
552         struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
553         return dev->dequeue_enc_ops(q_data, ops, num_ops);
554 }
555
556 /**
557  * Dequeue a burst of processed decode operations from a queue of the device.
558  * This functions returns only the current contents of the queue, and does not
559  * block until @ num_ops is available.
560  * This function does not provide any error notification to avoid the
561  * corresponding overhead.
562  *
563  * @param dev_id
564  *   The identifier of the device.
565  * @param queue_id
566  *   The index of the queue.
567  * @param ops
568  *   Pointer array where operations will be dequeued to. Must have at least
569  *   @p num_ops entries
570  * @param num_ops
571  *   The maximum number of operations to dequeue.
572  *
573  * @return
574  *   The number of operations actually dequeued (this is the number of entries
575  *   copied into the @p ops array).
576  */
577
578 __rte_experimental
579 static inline uint16_t
580 rte_bbdev_dequeue_dec_ops(uint16_t dev_id, uint16_t queue_id,
581                 struct rte_bbdev_dec_op **ops, uint16_t num_ops)
582 {
583         struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
584         struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
585         return dev->dequeue_dec_ops(q_data, ops, num_ops);
586 }
587
588 /** Definitions of device event types */
589 enum rte_bbdev_event_type {
590         RTE_BBDEV_EVENT_UNKNOWN,  /**< unknown event type */
591         RTE_BBDEV_EVENT_ERROR,  /**< error interrupt event */
592         RTE_BBDEV_EVENT_DEQUEUE,  /**< dequeue event */
593         RTE_BBDEV_EVENT_MAX  /**< max value of this enum */
594 };
595
596 /**
597  * Typedef for application callback function registered by application
598  * software for notification of device events
599  *
600  * @param dev_id
601  *   Device identifier
602  * @param event
603  *   Device event to register for notification of.
604  * @param cb_arg
605  *   User specified parameter to be passed to user's callback function.
606  * @param ret_param
607  *   To pass data back to user application.
608  */
609 typedef void (*rte_bbdev_cb_fn)(uint16_t dev_id,
610                 enum rte_bbdev_event_type event, void *cb_arg,
611                 void *ret_param);
612
613 /**
614  * Register a callback function for specific device id. Multiple callbacks can
615  * be added and will be called in the order they are added when an event is
616  * triggered. Callbacks are called in a separate thread created by the DPDK EAL.
617  *
618  * @param dev_id
619  *   Device id.
620  * @param event
621  *   The event that the callback will be registered for.
622  * @param cb_fn
623  *   User supplied callback function to be called.
624  * @param cb_arg
625  *   Pointer to parameter that will be passed to the callback.
626  *
627  * @return
628  *   Zero on success, negative value on failure.
629  */
630 __rte_experimental
631 int
632 rte_bbdev_callback_register(uint16_t dev_id, enum rte_bbdev_event_type event,
633                 rte_bbdev_cb_fn cb_fn, void *cb_arg);
634
635 /**
636  * Unregister a callback function for specific device id.
637  *
638  * @param dev_id
639  *   The device identifier.
640  * @param event
641  *   The event that the callback will be unregistered for.
642  * @param cb_fn
643  *   User supplied callback function to be unregistered.
644  * @param cb_arg
645  *   Pointer to the parameter supplied when registering the callback.
646  *   (void *)-1 means to remove all registered callbacks with the specified
647  *   function address.
648  *
649  * @return
650  *   - 0 on success
651  *   - EINVAL if invalid parameter pointer is provided
652  *   - EAGAIN if the provided callback pointer does not exist
653  */
654 __rte_experimental
655 int
656 rte_bbdev_callback_unregister(uint16_t dev_id, enum rte_bbdev_event_type event,
657                 rte_bbdev_cb_fn cb_fn, void *cb_arg);
658
659 /**
660  * Enable a one-shot interrupt on the next operation enqueued to a particular
661  * queue. The interrupt will be triggered when the operation is ready to be
662  * dequeued. To handle the interrupt, an epoll file descriptor must be
663  * registered using rte_bbdev_queue_intr_ctl(), and then an application
664  * thread/lcore can wait for the interrupt using rte_epoll_wait().
665  *
666  * @param dev_id
667  *   The device identifier.
668  * @param queue_id
669  *   The index of the queue.
670  *
671  * @return
672  *   - 0 on success
673  *   - negative value on failure - as returned from PMD driver
674  */
675 __rte_experimental
676 int
677 rte_bbdev_queue_intr_enable(uint16_t dev_id, uint16_t queue_id);
678
679 /**
680  * Disable a one-shot interrupt on the next operation enqueued to a particular
681  * queue (if it has been enabled).
682  *
683  * @param dev_id
684  *   The device identifier.
685  * @param queue_id
686  *   The index of the queue.
687  *
688  * @return
689  *   - 0 on success
690  *   - negative value on failure - as returned from PMD driver
691  */
692 __rte_experimental
693 int
694 rte_bbdev_queue_intr_disable(uint16_t dev_id, uint16_t queue_id);
695
696 /**
697  * Control interface for per-queue interrupts.
698  *
699  * @param dev_id
700  *   The device identifier.
701  * @param queue_id
702  *   The index of the queue.
703  * @param epfd
704  *   Epoll file descriptor that will be associated with the interrupt source.
705  *   If the special value RTE_EPOLL_PER_THREAD is provided, a per thread epoll
706  *   file descriptor created by the EAL is used (RTE_EPOLL_PER_THREAD can also
707  *   be used when calling rte_epoll_wait()).
708  * @param op
709  *   The operation be performed for the vector.RTE_INTR_EVENT_ADD or
710  *   RTE_INTR_EVENT_DEL.
711  * @param data
712  *   User context, that will be returned in the epdata.data field of the
713  *   rte_epoll_event structure filled in by rte_epoll_wait().
714  *
715  * @return
716  *   - 0 on success
717  *   - ENOTSUP if interrupts are not supported by the identified device
718  *   - negative value on failure - as returned from PMD driver
719  */
720 __rte_experimental
721 int
722 rte_bbdev_queue_intr_ctl(uint16_t dev_id, uint16_t queue_id, int epfd, int op,
723                 void *data);
724
725 #ifdef __cplusplus
726 }
727 #endif
728
729 #endif /* _RTE_BBDEV_H_ */