New upstream version 18.08
[deb_dpdk.git] / drivers / event / dpaa2 / dpaa2_eventdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  *   Copyright 2017 NXP
4  *
5  */
6
7 #include <assert.h>
8 #include <stdio.h>
9 #include <stdbool.h>
10 #include <errno.h>
11 #include <stdint.h>
12 #include <string.h>
13 #include <sys/epoll.h>
14
15 #include <rte_atomic.h>
16 #include <rte_byteorder.h>
17 #include <rte_common.h>
18 #include <rte_debug.h>
19 #include <rte_dev.h>
20 #include <rte_eal.h>
21 #include <rte_fslmc.h>
22 #include <rte_lcore.h>
23 #include <rte_log.h>
24 #include <rte_malloc.h>
25 #include <rte_memcpy.h>
26 #include <rte_memory.h>
27 #include <rte_pci.h>
28 #include <rte_bus_vdev.h>
29 #include <rte_ethdev_driver.h>
30 #include <rte_event_eth_rx_adapter.h>
31
32 #include <fslmc_vfio.h>
33 #include <dpaa2_hw_pvt.h>
34 #include <dpaa2_hw_mempool.h>
35 #include <dpaa2_hw_dpio.h>
36 #include <dpaa2_ethdev.h>
37 #include "dpaa2_eventdev.h"
38 #include "dpaa2_eventdev_logs.h"
39 #include <portal/dpaa2_hw_pvt.h>
40 #include <mc/fsl_dpci.h>
41
42 /* Clarifications
43  * Evendev = SoC Instance
44  * Eventport = DPIO Instance
45  * Eventqueue = DPCON Instance
46  * 1 Eventdev can have N Eventqueue
47  * Soft Event Flow is DPCI Instance
48  */
49
50 /* Dynamic logging identified for mempool */
51 int dpaa2_logtype_event;
52
53 static uint16_t
54 dpaa2_eventdev_enqueue_burst(void *port, const struct rte_event ev[],
55                              uint16_t nb_events)
56 {
57         struct rte_eventdev *ev_dev =
58                         ((struct dpaa2_io_portal_t *)port)->eventdev;
59         struct dpaa2_eventdev *priv = ev_dev->data->dev_private;
60         uint32_t queue_id = ev[0].queue_id;
61         struct evq_info_t *evq_info = &priv->evq_info[queue_id];
62         uint32_t fqid;
63         struct qbman_swp *swp;
64         struct qbman_fd fd_arr[MAX_TX_RING_SLOTS];
65         uint32_t loop, frames_to_send;
66         struct qbman_eq_desc eqdesc[MAX_TX_RING_SLOTS];
67         uint16_t num_tx = 0;
68         int ret;
69
70         RTE_SET_USED(port);
71
72         if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
73                 ret = dpaa2_affine_qbman_swp();
74                 if (ret) {
75                         DPAA2_EVENTDEV_ERR("Failure in affining portal");
76                         return 0;
77                 }
78         }
79
80         swp = DPAA2_PER_LCORE_PORTAL;
81
82         while (nb_events) {
83                 frames_to_send = (nb_events >> 3) ?
84                         MAX_TX_RING_SLOTS : nb_events;
85
86                 for (loop = 0; loop < frames_to_send; loop++) {
87                         const struct rte_event *event = &ev[num_tx + loop];
88
89                         if (event->sched_type != RTE_SCHED_TYPE_ATOMIC)
90                                 fqid = evq_info->dpci->rx_queue[
91                                         DPAA2_EVENT_DPCI_PARALLEL_QUEUE].fqid;
92                         else
93                                 fqid = evq_info->dpci->rx_queue[
94                                         DPAA2_EVENT_DPCI_ATOMIC_QUEUE].fqid;
95
96                         /* Prepare enqueue descriptor */
97                         qbman_eq_desc_clear(&eqdesc[loop]);
98                         qbman_eq_desc_set_fq(&eqdesc[loop], fqid);
99                         qbman_eq_desc_set_no_orp(&eqdesc[loop], 0);
100                         qbman_eq_desc_set_response(&eqdesc[loop], 0, 0);
101
102                         if (event->mbuf->seqn) {
103                                 uint8_t dqrr_index = event->mbuf->seqn - 1;
104
105                                 qbman_eq_desc_set_dca(&eqdesc[loop], 1,
106                                                       dqrr_index, 0);
107                                 DPAA2_PER_LCORE_DQRR_SIZE--;
108                                 DPAA2_PER_LCORE_DQRR_HELD &=
109                                         ~(1 << dqrr_index);
110                         }
111
112                         memset(&fd_arr[loop], 0, sizeof(struct qbman_fd));
113
114                         /*
115                          * todo - need to align with hw context data
116                          * to avoid copy
117                          */
118                         struct rte_event *ev_temp = rte_malloc(NULL,
119                                 sizeof(struct rte_event), 0);
120
121                         if (!ev_temp) {
122                                 if (!loop)
123                                         return num_tx;
124                                 frames_to_send = loop;
125                                 DPAA2_EVENTDEV_ERR(
126                                         "Unable to allocate event object");
127                                 goto send_partial;
128                         }
129                         rte_memcpy(ev_temp, event, sizeof(struct rte_event));
130                         DPAA2_SET_FD_ADDR((&fd_arr[loop]), (size_t)ev_temp);
131                         DPAA2_SET_FD_LEN((&fd_arr[loop]),
132                                          sizeof(struct rte_event));
133                 }
134 send_partial:
135                 loop = 0;
136                 while (loop < frames_to_send) {
137                         loop += qbman_swp_enqueue_multiple_desc(swp,
138                                         &eqdesc[loop], &fd_arr[loop],
139                                         frames_to_send - loop);
140                 }
141                 num_tx += frames_to_send;
142                 nb_events -= frames_to_send;
143         }
144
145         return num_tx;
146 }
147
148 static uint16_t
149 dpaa2_eventdev_enqueue(void *port, const struct rte_event *ev)
150 {
151         return dpaa2_eventdev_enqueue_burst(port, ev, 1);
152 }
153
154 static void dpaa2_eventdev_dequeue_wait(uint64_t timeout_ticks)
155 {
156         struct epoll_event epoll_ev;
157
158         qbman_swp_interrupt_clear_status(DPAA2_PER_LCORE_PORTAL,
159                                          QBMAN_SWP_INTERRUPT_DQRI);
160
161         epoll_wait(DPAA2_PER_LCORE_DPIO->epoll_fd,
162                          &epoll_ev, 1, timeout_ticks);
163 }
164
165 static void dpaa2_eventdev_process_parallel(struct qbman_swp *swp,
166                                             const struct qbman_fd *fd,
167                                             const struct qbman_result *dq,
168                                             struct dpaa2_queue *rxq,
169                                             struct rte_event *ev)
170 {
171         struct rte_event *ev_temp =
172                 (struct rte_event *)(size_t)DPAA2_GET_FD_ADDR(fd);
173
174         RTE_SET_USED(rxq);
175
176         rte_memcpy(ev, ev_temp, sizeof(struct rte_event));
177         rte_free(ev_temp);
178
179         qbman_swp_dqrr_consume(swp, dq);
180 }
181
182 static void dpaa2_eventdev_process_atomic(struct qbman_swp *swp,
183                                           const struct qbman_fd *fd,
184                                           const struct qbman_result *dq,
185                                           struct dpaa2_queue *rxq,
186                                           struct rte_event *ev)
187 {
188         struct rte_event *ev_temp =
189                 (struct rte_event *)(size_t)DPAA2_GET_FD_ADDR(fd);
190         uint8_t dqrr_index = qbman_get_dqrr_idx(dq);
191
192         RTE_SET_USED(swp);
193         RTE_SET_USED(rxq);
194
195         rte_memcpy(ev, ev_temp, sizeof(struct rte_event));
196         rte_free(ev_temp);
197         ev->mbuf->seqn = dqrr_index + 1;
198         DPAA2_PER_LCORE_DQRR_SIZE++;
199         DPAA2_PER_LCORE_DQRR_HELD |= 1 << dqrr_index;
200 }
201
202 static uint16_t
203 dpaa2_eventdev_dequeue_burst(void *port, struct rte_event ev[],
204                              uint16_t nb_events, uint64_t timeout_ticks)
205 {
206         const struct qbman_result *dq;
207         struct qbman_swp *swp;
208         const struct qbman_fd *fd;
209         struct dpaa2_queue *rxq;
210         int num_pkts = 0, ret, i = 0;
211
212         RTE_SET_USED(port);
213
214         if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
215                 ret = dpaa2_affine_qbman_swp();
216                 if (ret) {
217                         DPAA2_EVENTDEV_ERR("Failure in affining portal");
218                         return 0;
219                 }
220         }
221         swp = DPAA2_PER_LCORE_PORTAL;
222
223         /* Check if there are atomic contexts to be released */
224         while (DPAA2_PER_LCORE_DQRR_SIZE) {
225                 if (DPAA2_PER_LCORE_DQRR_HELD & (1 << i)) {
226                         qbman_swp_dqrr_idx_consume(swp, i);
227                         DPAA2_PER_LCORE_DQRR_SIZE--;
228                         DPAA2_PER_LCORE_DQRR_MBUF(i)->seqn =
229                                 DPAA2_INVALID_MBUF_SEQN;
230                 }
231                 i++;
232         }
233         DPAA2_PER_LCORE_DQRR_HELD = 0;
234
235         do {
236                 dq = qbman_swp_dqrr_next(swp);
237                 if (!dq) {
238                         if (!num_pkts && timeout_ticks) {
239                                 dpaa2_eventdev_dequeue_wait(timeout_ticks);
240                                 timeout_ticks = 0;
241                                 continue;
242                         }
243                         return num_pkts;
244                 }
245                 qbman_swp_prefetch_dqrr_next(swp);
246
247                 fd = qbman_result_DQ_fd(dq);
248                 rxq = (struct dpaa2_queue *)(size_t)qbman_result_DQ_fqd_ctx(dq);
249                 if (rxq) {
250                         rxq->cb(swp, fd, dq, rxq, &ev[num_pkts]);
251                 } else {
252                         qbman_swp_dqrr_consume(swp, dq);
253                         DPAA2_EVENTDEV_ERR("Null Return VQ received");
254                         return 0;
255                 }
256
257                 num_pkts++;
258         } while (num_pkts < nb_events);
259
260         return num_pkts;
261 }
262
263 static uint16_t
264 dpaa2_eventdev_dequeue(void *port, struct rte_event *ev,
265                        uint64_t timeout_ticks)
266 {
267         return dpaa2_eventdev_dequeue_burst(port, ev, 1, timeout_ticks);
268 }
269
270 static void
271 dpaa2_eventdev_info_get(struct rte_eventdev *dev,
272                         struct rte_event_dev_info *dev_info)
273 {
274         struct dpaa2_eventdev *priv = dev->data->dev_private;
275
276         EVENTDEV_INIT_FUNC_TRACE();
277
278         RTE_SET_USED(dev);
279
280         memset(dev_info, 0, sizeof(struct rte_event_dev_info));
281         dev_info->min_dequeue_timeout_ns =
282                 DPAA2_EVENT_MIN_DEQUEUE_TIMEOUT;
283         dev_info->max_dequeue_timeout_ns =
284                 DPAA2_EVENT_MAX_DEQUEUE_TIMEOUT;
285         dev_info->dequeue_timeout_ns =
286                 DPAA2_EVENT_MIN_DEQUEUE_TIMEOUT;
287         dev_info->max_event_queues = priv->max_event_queues;
288         dev_info->max_event_queue_flows =
289                 DPAA2_EVENT_MAX_QUEUE_FLOWS;
290         dev_info->max_event_queue_priority_levels =
291                 DPAA2_EVENT_MAX_QUEUE_PRIORITY_LEVELS;
292         dev_info->max_event_priority_levels =
293                 DPAA2_EVENT_MAX_EVENT_PRIORITY_LEVELS;
294         dev_info->max_event_ports = rte_fslmc_get_device_count(DPAA2_IO);
295         dev_info->max_event_port_dequeue_depth =
296                 DPAA2_EVENT_MAX_PORT_DEQUEUE_DEPTH;
297         dev_info->max_event_port_enqueue_depth =
298                 DPAA2_EVENT_MAX_PORT_ENQUEUE_DEPTH;
299         dev_info->max_num_events = DPAA2_EVENT_MAX_NUM_EVENTS;
300         dev_info->event_dev_cap = RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED |
301                 RTE_EVENT_DEV_CAP_BURST_MODE|
302                 RTE_EVENT_DEV_CAP_RUNTIME_PORT_LINK |
303                 RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT |
304                 RTE_EVENT_DEV_CAP_NONSEQ_MODE;
305
306 }
307
308 static int
309 dpaa2_eventdev_configure(const struct rte_eventdev *dev)
310 {
311         struct dpaa2_eventdev *priv = dev->data->dev_private;
312         struct rte_event_dev_config *conf = &dev->data->dev_conf;
313
314         EVENTDEV_INIT_FUNC_TRACE();
315
316         priv->dequeue_timeout_ns = conf->dequeue_timeout_ns;
317         priv->nb_event_queues = conf->nb_event_queues;
318         priv->nb_event_ports = conf->nb_event_ports;
319         priv->nb_event_queue_flows = conf->nb_event_queue_flows;
320         priv->nb_event_port_dequeue_depth = conf->nb_event_port_dequeue_depth;
321         priv->nb_event_port_enqueue_depth = conf->nb_event_port_enqueue_depth;
322         priv->event_dev_cfg = conf->event_dev_cfg;
323
324         DPAA2_EVENTDEV_DEBUG("Configured eventdev devid=%d",
325                              dev->data->dev_id);
326         return 0;
327 }
328
329 static int
330 dpaa2_eventdev_start(struct rte_eventdev *dev)
331 {
332         EVENTDEV_INIT_FUNC_TRACE();
333
334         RTE_SET_USED(dev);
335
336         return 0;
337 }
338
339 static void
340 dpaa2_eventdev_stop(struct rte_eventdev *dev)
341 {
342         EVENTDEV_INIT_FUNC_TRACE();
343
344         RTE_SET_USED(dev);
345 }
346
347 static int
348 dpaa2_eventdev_close(struct rte_eventdev *dev)
349 {
350         EVENTDEV_INIT_FUNC_TRACE();
351
352         RTE_SET_USED(dev);
353
354         return 0;
355 }
356
357 static void
358 dpaa2_eventdev_queue_def_conf(struct rte_eventdev *dev, uint8_t queue_id,
359                               struct rte_event_queue_conf *queue_conf)
360 {
361         EVENTDEV_INIT_FUNC_TRACE();
362
363         RTE_SET_USED(dev);
364         RTE_SET_USED(queue_id);
365         RTE_SET_USED(queue_conf);
366
367         queue_conf->nb_atomic_flows = DPAA2_EVENT_QUEUE_ATOMIC_FLOWS;
368         queue_conf->schedule_type = RTE_SCHED_TYPE_ATOMIC |
369                                       RTE_SCHED_TYPE_PARALLEL;
370         queue_conf->priority = RTE_EVENT_DEV_PRIORITY_NORMAL;
371 }
372
373 static void
374 dpaa2_eventdev_queue_release(struct rte_eventdev *dev, uint8_t queue_id)
375 {
376         EVENTDEV_INIT_FUNC_TRACE();
377
378         RTE_SET_USED(dev);
379         RTE_SET_USED(queue_id);
380 }
381
382 static int
383 dpaa2_eventdev_queue_setup(struct rte_eventdev *dev, uint8_t queue_id,
384                            const struct rte_event_queue_conf *queue_conf)
385 {
386         struct dpaa2_eventdev *priv = dev->data->dev_private;
387         struct evq_info_t *evq_info =
388                 &priv->evq_info[queue_id];
389
390         EVENTDEV_INIT_FUNC_TRACE();
391
392         evq_info->event_queue_cfg = queue_conf->event_queue_cfg;
393
394         return 0;
395 }
396
397 static void
398 dpaa2_eventdev_port_def_conf(struct rte_eventdev *dev, uint8_t port_id,
399                              struct rte_event_port_conf *port_conf)
400 {
401         EVENTDEV_INIT_FUNC_TRACE();
402
403         RTE_SET_USED(dev);
404         RTE_SET_USED(port_id);
405         RTE_SET_USED(port_conf);
406
407         port_conf->new_event_threshold =
408                 DPAA2_EVENT_MAX_NUM_EVENTS;
409         port_conf->dequeue_depth =
410                 DPAA2_EVENT_MAX_PORT_DEQUEUE_DEPTH;
411         port_conf->enqueue_depth =
412                 DPAA2_EVENT_MAX_PORT_ENQUEUE_DEPTH;
413         port_conf->disable_implicit_release = 0;
414 }
415
416 static void
417 dpaa2_eventdev_port_release(void *port)
418 {
419         EVENTDEV_INIT_FUNC_TRACE();
420
421         RTE_SET_USED(port);
422 }
423
424 static int
425 dpaa2_eventdev_port_setup(struct rte_eventdev *dev, uint8_t port_id,
426                           const struct rte_event_port_conf *port_conf)
427 {
428         EVENTDEV_INIT_FUNC_TRACE();
429
430         RTE_SET_USED(port_conf);
431
432         if (!dpaa2_io_portal[port_id].dpio_dev) {
433                 dpaa2_io_portal[port_id].dpio_dev =
434                                 dpaa2_get_qbman_swp(port_id);
435                 rte_atomic16_inc(&dpaa2_io_portal[port_id].dpio_dev->ref_count);
436                 if (!dpaa2_io_portal[port_id].dpio_dev)
437                         return -1;
438         }
439
440         dpaa2_io_portal[port_id].eventdev = dev;
441         dev->data->ports[port_id] = &dpaa2_io_portal[port_id];
442         return 0;
443 }
444
445 static int
446 dpaa2_eventdev_port_unlink(struct rte_eventdev *dev, void *port,
447                            uint8_t queues[], uint16_t nb_unlinks)
448 {
449         struct dpaa2_eventdev *priv = dev->data->dev_private;
450         struct dpaa2_io_portal_t *dpaa2_portal = port;
451         struct evq_info_t *evq_info;
452         int i;
453
454         EVENTDEV_INIT_FUNC_TRACE();
455
456         for (i = 0; i < nb_unlinks; i++) {
457                 evq_info = &priv->evq_info[queues[i]];
458                 qbman_swp_push_set(dpaa2_portal->dpio_dev->sw_portal,
459                                    evq_info->dpcon->channel_index, 0);
460                 dpio_remove_static_dequeue_channel(dpaa2_portal->dpio_dev->dpio,
461                                         0, dpaa2_portal->dpio_dev->token,
462                         evq_info->dpcon->dpcon_id);
463         }
464
465         return (int)nb_unlinks;
466 }
467
468 static int
469 dpaa2_eventdev_port_link(struct rte_eventdev *dev, void *port,
470                          const uint8_t queues[], const uint8_t priorities[],
471                         uint16_t nb_links)
472 {
473         struct dpaa2_eventdev *priv = dev->data->dev_private;
474         struct dpaa2_io_portal_t *dpaa2_portal = port;
475         struct evq_info_t *evq_info;
476         uint8_t channel_index;
477         int ret, i, n;
478
479         EVENTDEV_INIT_FUNC_TRACE();
480
481         for (i = 0; i < nb_links; i++) {
482                 evq_info = &priv->evq_info[queues[i]];
483
484                 ret = dpio_add_static_dequeue_channel(
485                         dpaa2_portal->dpio_dev->dpio,
486                         CMD_PRI_LOW, dpaa2_portal->dpio_dev->token,
487                         evq_info->dpcon->dpcon_id, &channel_index);
488                 if (ret < 0) {
489                         DPAA2_EVENTDEV_ERR(
490                                 "Static dequeue config failed: err(%d)", ret);
491                         goto err;
492                 }
493
494                 qbman_swp_push_set(dpaa2_portal->dpio_dev->sw_portal,
495                                    channel_index, 1);
496                 evq_info->dpcon->channel_index = channel_index;
497         }
498
499         RTE_SET_USED(priorities);
500
501         return (int)nb_links;
502 err:
503         for (n = 0; n < i; n++) {
504                 evq_info = &priv->evq_info[queues[n]];
505                 qbman_swp_push_set(dpaa2_portal->dpio_dev->sw_portal,
506                                    evq_info->dpcon->channel_index, 0);
507                 dpio_remove_static_dequeue_channel(dpaa2_portal->dpio_dev->dpio,
508                                         0, dpaa2_portal->dpio_dev->token,
509                         evq_info->dpcon->dpcon_id);
510         }
511         return ret;
512 }
513
514 static int
515 dpaa2_eventdev_timeout_ticks(struct rte_eventdev *dev, uint64_t ns,
516                              uint64_t *timeout_ticks)
517 {
518         uint32_t scale = 1;
519
520         EVENTDEV_INIT_FUNC_TRACE();
521
522         RTE_SET_USED(dev);
523         *timeout_ticks = ns * scale;
524
525         return 0;
526 }
527
528 static void
529 dpaa2_eventdev_dump(struct rte_eventdev *dev, FILE *f)
530 {
531         EVENTDEV_INIT_FUNC_TRACE();
532
533         RTE_SET_USED(dev);
534         RTE_SET_USED(f);
535 }
536
537 static int
538 dpaa2_eventdev_eth_caps_get(const struct rte_eventdev *dev,
539                             const struct rte_eth_dev *eth_dev,
540                             uint32_t *caps)
541 {
542         const char *ethdev_driver = eth_dev->device->driver->name;
543
544         EVENTDEV_INIT_FUNC_TRACE();
545
546         RTE_SET_USED(dev);
547
548         if (!strcmp(ethdev_driver, "net_dpaa2"))
549                 *caps = RTE_EVENT_ETH_RX_ADAPTER_DPAA2_CAP;
550         else
551                 *caps = RTE_EVENT_ETH_RX_ADAPTER_SW_CAP;
552
553         return 0;
554 }
555
556 static int
557 dpaa2_eventdev_eth_queue_add_all(const struct rte_eventdev *dev,
558                 const struct rte_eth_dev *eth_dev,
559                 const struct rte_event_eth_rx_adapter_queue_conf *queue_conf)
560 {
561         struct dpaa2_eventdev *priv = dev->data->dev_private;
562         uint8_t ev_qid = queue_conf->ev.queue_id;
563         uint16_t dpcon_id = priv->evq_info[ev_qid].dpcon->dpcon_id;
564         int i, ret;
565
566         EVENTDEV_INIT_FUNC_TRACE();
567
568         for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
569                 ret = dpaa2_eth_eventq_attach(eth_dev, i,
570                                 dpcon_id, queue_conf);
571                 if (ret) {
572                         DPAA2_EVENTDEV_ERR(
573                                 "Event queue attach failed: err(%d)", ret);
574                         goto fail;
575                 }
576         }
577         return 0;
578 fail:
579         for (i = (i - 1); i >= 0 ; i--)
580                 dpaa2_eth_eventq_detach(eth_dev, i);
581
582         return ret;
583 }
584
585 static int
586 dpaa2_eventdev_eth_queue_add(const struct rte_eventdev *dev,
587                 const struct rte_eth_dev *eth_dev,
588                 int32_t rx_queue_id,
589                 const struct rte_event_eth_rx_adapter_queue_conf *queue_conf)
590 {
591         struct dpaa2_eventdev *priv = dev->data->dev_private;
592         uint8_t ev_qid = queue_conf->ev.queue_id;
593         uint16_t dpcon_id = priv->evq_info[ev_qid].dpcon->dpcon_id;
594         int ret;
595
596         EVENTDEV_INIT_FUNC_TRACE();
597
598         if (rx_queue_id == -1)
599                 return dpaa2_eventdev_eth_queue_add_all(dev,
600                                 eth_dev, queue_conf);
601
602         ret = dpaa2_eth_eventq_attach(eth_dev, rx_queue_id,
603                         dpcon_id, queue_conf);
604         if (ret) {
605                 DPAA2_EVENTDEV_ERR(
606                         "Event queue attach failed: err(%d)", ret);
607                 return ret;
608         }
609         return 0;
610 }
611
612 static int
613 dpaa2_eventdev_eth_queue_del_all(const struct rte_eventdev *dev,
614                              const struct rte_eth_dev *eth_dev)
615 {
616         int i, ret;
617
618         EVENTDEV_INIT_FUNC_TRACE();
619
620         RTE_SET_USED(dev);
621
622         for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
623                 ret = dpaa2_eth_eventq_detach(eth_dev, i);
624                 if (ret) {
625                         DPAA2_EVENTDEV_ERR(
626                                 "Event queue detach failed: err(%d)", ret);
627                         return ret;
628                 }
629         }
630
631         return 0;
632 }
633
634 static int
635 dpaa2_eventdev_eth_queue_del(const struct rte_eventdev *dev,
636                              const struct rte_eth_dev *eth_dev,
637                              int32_t rx_queue_id)
638 {
639         int ret;
640
641         EVENTDEV_INIT_FUNC_TRACE();
642
643         if (rx_queue_id == -1)
644                 return dpaa2_eventdev_eth_queue_del_all(dev, eth_dev);
645
646         ret = dpaa2_eth_eventq_detach(eth_dev, rx_queue_id);
647         if (ret) {
648                 DPAA2_EVENTDEV_ERR(
649                         "Event queue detach failed: err(%d)", ret);
650                 return ret;
651         }
652
653         return 0;
654 }
655
656 static int
657 dpaa2_eventdev_eth_start(const struct rte_eventdev *dev,
658                          const struct rte_eth_dev *eth_dev)
659 {
660         EVENTDEV_INIT_FUNC_TRACE();
661
662         RTE_SET_USED(dev);
663         RTE_SET_USED(eth_dev);
664
665         return 0;
666 }
667
668 static int
669 dpaa2_eventdev_eth_stop(const struct rte_eventdev *dev,
670                         const struct rte_eth_dev *eth_dev)
671 {
672         EVENTDEV_INIT_FUNC_TRACE();
673
674         RTE_SET_USED(dev);
675         RTE_SET_USED(eth_dev);
676
677         return 0;
678 }
679
680 static struct rte_eventdev_ops dpaa2_eventdev_ops = {
681         .dev_infos_get    = dpaa2_eventdev_info_get,
682         .dev_configure    = dpaa2_eventdev_configure,
683         .dev_start        = dpaa2_eventdev_start,
684         .dev_stop         = dpaa2_eventdev_stop,
685         .dev_close        = dpaa2_eventdev_close,
686         .queue_def_conf   = dpaa2_eventdev_queue_def_conf,
687         .queue_setup      = dpaa2_eventdev_queue_setup,
688         .queue_release    = dpaa2_eventdev_queue_release,
689         .port_def_conf    = dpaa2_eventdev_port_def_conf,
690         .port_setup       = dpaa2_eventdev_port_setup,
691         .port_release     = dpaa2_eventdev_port_release,
692         .port_link        = dpaa2_eventdev_port_link,
693         .port_unlink      = dpaa2_eventdev_port_unlink,
694         .timeout_ticks    = dpaa2_eventdev_timeout_ticks,
695         .dump             = dpaa2_eventdev_dump,
696         .eth_rx_adapter_caps_get = dpaa2_eventdev_eth_caps_get,
697         .eth_rx_adapter_queue_add = dpaa2_eventdev_eth_queue_add,
698         .eth_rx_adapter_queue_del = dpaa2_eventdev_eth_queue_del,
699         .eth_rx_adapter_start = dpaa2_eventdev_eth_start,
700         .eth_rx_adapter_stop = dpaa2_eventdev_eth_stop,
701 };
702
703 static int
704 dpaa2_eventdev_setup_dpci(struct dpaa2_dpci_dev *dpci_dev,
705                           struct dpaa2_dpcon_dev *dpcon_dev)
706 {
707         struct dpci_rx_queue_cfg rx_queue_cfg;
708         int ret, i;
709
710         /*Do settings to get the frame on a DPCON object*/
711         rx_queue_cfg.options = DPCI_QUEUE_OPT_DEST |
712                   DPCI_QUEUE_OPT_USER_CTX;
713         rx_queue_cfg.dest_cfg.dest_type = DPCI_DEST_DPCON;
714         rx_queue_cfg.dest_cfg.dest_id = dpcon_dev->dpcon_id;
715         rx_queue_cfg.dest_cfg.priority = DPAA2_EVENT_DEFAULT_DPCI_PRIO;
716
717         dpci_dev->rx_queue[DPAA2_EVENT_DPCI_PARALLEL_QUEUE].cb =
718                 dpaa2_eventdev_process_parallel;
719         dpci_dev->rx_queue[DPAA2_EVENT_DPCI_ATOMIC_QUEUE].cb =
720                 dpaa2_eventdev_process_atomic;
721
722         for (i = 0 ; i < DPAA2_EVENT_DPCI_MAX_QUEUES; i++) {
723                 rx_queue_cfg.user_ctx = (size_t)(&dpci_dev->rx_queue[i]);
724                 ret = dpci_set_rx_queue(&dpci_dev->dpci,
725                                         CMD_PRI_LOW,
726                                         dpci_dev->token, i,
727                                         &rx_queue_cfg);
728                 if (ret) {
729                         DPAA2_EVENTDEV_ERR(
730                                 "DPCI Rx queue setup failed: err(%d)",
731                                 ret);
732                         return ret;
733                 }
734         }
735         return 0;
736 }
737
738 static int
739 dpaa2_eventdev_create(const char *name)
740 {
741         struct rte_eventdev *eventdev;
742         struct dpaa2_eventdev *priv;
743         struct dpaa2_dpcon_dev *dpcon_dev = NULL;
744         struct dpaa2_dpci_dev *dpci_dev = NULL;
745         int ret;
746
747         eventdev = rte_event_pmd_vdev_init(name,
748                                            sizeof(struct dpaa2_eventdev),
749                                            rte_socket_id());
750         if (eventdev == NULL) {
751                 DPAA2_EVENTDEV_ERR("Failed to create Event device %s", name);
752                 goto fail;
753         }
754
755         eventdev->dev_ops       = &dpaa2_eventdev_ops;
756         eventdev->enqueue       = dpaa2_eventdev_enqueue;
757         eventdev->enqueue_burst = dpaa2_eventdev_enqueue_burst;
758         eventdev->enqueue_new_burst = dpaa2_eventdev_enqueue_burst;
759         eventdev->enqueue_forward_burst = dpaa2_eventdev_enqueue_burst;
760         eventdev->dequeue       = dpaa2_eventdev_dequeue;
761         eventdev->dequeue_burst = dpaa2_eventdev_dequeue_burst;
762
763         /* For secondary processes, the primary has done all the work */
764         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
765                 return 0;
766
767         priv = eventdev->data->dev_private;
768         priv->max_event_queues = 0;
769
770         do {
771                 dpcon_dev = rte_dpaa2_alloc_dpcon_dev();
772                 if (!dpcon_dev)
773                         break;
774                 priv->evq_info[priv->max_event_queues].dpcon = dpcon_dev;
775
776                 dpci_dev = rte_dpaa2_alloc_dpci_dev();
777                 if (!dpci_dev) {
778                         rte_dpaa2_free_dpcon_dev(dpcon_dev);
779                         break;
780                 }
781                 priv->evq_info[priv->max_event_queues].dpci = dpci_dev;
782
783                 ret = dpaa2_eventdev_setup_dpci(dpci_dev, dpcon_dev);
784                 if (ret) {
785                         DPAA2_EVENTDEV_ERR(
786                                     "DPCI setup failed: err(%d)", ret);
787                         return ret;
788                 }
789                 priv->max_event_queues++;
790         } while (dpcon_dev && dpci_dev);
791
792         return 0;
793 fail:
794         return -EFAULT;
795 }
796
797 static int
798 dpaa2_eventdev_probe(struct rte_vdev_device *vdev)
799 {
800         const char *name;
801
802         name = rte_vdev_device_name(vdev);
803         DPAA2_EVENTDEV_INFO("Initializing %s", name);
804         return dpaa2_eventdev_create(name);
805 }
806
807 static int
808 dpaa2_eventdev_remove(struct rte_vdev_device *vdev)
809 {
810         const char *name;
811
812         name = rte_vdev_device_name(vdev);
813         DPAA2_EVENTDEV_INFO("Closing %s", name);
814
815         return rte_event_pmd_vdev_uninit(name);
816 }
817
818 static struct rte_vdev_driver vdev_eventdev_dpaa2_pmd = {
819         .probe = dpaa2_eventdev_probe,
820         .remove = dpaa2_eventdev_remove
821 };
822
823 RTE_PMD_REGISTER_VDEV(EVENTDEV_NAME_DPAA2_PMD, vdev_eventdev_dpaa2_pmd);
824
825 RTE_INIT(dpaa2_eventdev_init_log)
826 {
827         dpaa2_logtype_event = rte_log_register("pmd.event.dpaa2");
828         if (dpaa2_logtype_event >= 0)
829                 rte_log_set_level(dpaa2_logtype_event, RTE_LOG_NOTICE);
830 }