((struct dpaa2_io_portal_t *)port)->eventdev;
struct dpaa2_eventdev *priv = ev_dev->data->dev_private;
uint32_t queue_id = ev[0].queue_id;
- struct evq_info_t *evq_info = &priv->evq_info[queue_id];
+ struct dpaa2_eventq *evq_info = &priv->evq_info[queue_id];
uint32_t fqid;
struct qbman_swp *swp;
struct qbman_fd fd_arr[MAX_TX_RING_SLOTS];
const struct rte_event_queue_conf *queue_conf)
{
struct dpaa2_eventdev *priv = dev->data->dev_private;
- struct evq_info_t *evq_info =
+ struct dpaa2_eventq *evq_info =
&priv->evq_info[queue_id];
EVENTDEV_INIT_FUNC_TRACE();
{
struct dpaa2_eventdev *priv = dev->data->dev_private;
struct dpaa2_io_portal_t *dpaa2_portal = port;
- struct evq_info_t *evq_info;
+ struct dpaa2_eventq *evq_info;
int i;
EVENTDEV_INIT_FUNC_TRACE();
{
struct dpaa2_eventdev *priv = dev->data->dev_private;
struct dpaa2_io_portal_t *dpaa2_portal = port;
- struct evq_info_t *evq_info;
+ struct dpaa2_eventq *evq_info;
uint8_t channel_index;
int ret, i, n;
uint8_t channel_index;
};
-struct evq_info_t {
+struct dpaa2_eventq {
/* DPcon device */
struct dpaa2_dpcon_dev *dpcon;
/* Attached DPCI device */
struct dpaa2_dpci_dev *dpci;
/* Configuration provided by the user */
uint32_t event_queue_cfg;
+ uint32_t event_queue_id;
};
struct dpaa2_eventdev {
- struct evq_info_t evq_info[DPAA2_EVENT_MAX_QUEUES];
+ struct dpaa2_eventq evq_info[DPAA2_EVENT_MAX_QUEUES];
uint32_t dequeue_timeout_ns;
uint8_t max_event_queues;
uint8_t nb_event_queues;