1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2017 Cavium, Inc
7 #include <rte_common.h>
11 #include <rte_ethdev_driver.h>
12 #include <rte_event_eth_rx_adapter.h>
13 #include <rte_kvargs.h>
14 #include <rte_lcore.h>
16 #include <rte_malloc.h>
17 #include <rte_memory.h>
18 #include <rte_bus_vdev.h>
20 #include "ssovf_evdev.h"
21 #include "timvf_evdev.h"
23 int otx_logtype_ssovf;
24 static uint8_t timvf_enable_stats;
26 RTE_INIT(otx_ssovf_init_log)
28 otx_logtype_ssovf = rte_log_register("pmd.event.octeontx");
29 if (otx_logtype_ssovf >= 0)
30 rte_log_set_level(otx_logtype_ssovf, RTE_LOG_NOTICE);
33 /* SSOPF Mailbox messages */
35 struct ssovf_mbox_dev_info {
36 uint64_t min_deq_timeout_ns;
37 uint64_t max_deq_timeout_ns;
38 uint32_t max_num_events;
42 ssovf_mbox_dev_info(struct ssovf_mbox_dev_info *info)
44 struct octeontx_mbox_hdr hdr = {0};
45 uint16_t len = sizeof(struct ssovf_mbox_dev_info);
47 hdr.coproc = SSO_COPROC;
48 hdr.msg = SSO_GET_DEV_INFO;
52 return octeontx_mbox_send(&hdr, NULL, 0, info, len);
55 struct ssovf_mbox_getwork_wait {
60 ssovf_mbox_getwork_tmo_set(uint32_t timeout_ns)
62 struct octeontx_mbox_hdr hdr = {0};
63 struct ssovf_mbox_getwork_wait tmo_set;
64 uint16_t len = sizeof(struct ssovf_mbox_getwork_wait);
67 hdr.coproc = SSO_COPROC;
68 hdr.msg = SSO_SET_GETWORK_WAIT;
71 tmo_set.wait_ns = timeout_ns;
72 ret = octeontx_mbox_send(&hdr, &tmo_set, len, NULL, 0);
74 ssovf_log_err("Failed to set getwork timeout(%d)", ret);
79 struct ssovf_mbox_grp_pri {
80 uint8_t wgt_left; /* Read only */
87 ssovf_mbox_priority_set(uint8_t queue, uint8_t prio)
89 struct octeontx_mbox_hdr hdr = {0};
90 struct ssovf_mbox_grp_pri grp;
91 uint16_t len = sizeof(struct ssovf_mbox_grp_pri);
94 hdr.coproc = SSO_COPROC;
95 hdr.msg = SSO_GRP_SET_PRIORITY;
100 grp.priority = prio / 32; /* Normalize to 0 to 7 */
102 ret = octeontx_mbox_send(&hdr, &grp, len, NULL, 0);
104 ssovf_log_err("Failed to set grp=%d prio=%d", queue, prio);
109 struct ssovf_mbox_convert_ns_getworks_iter {
111 uint32_t getwork_iter;/* Get_work iterations for the given wait_ns */
115 ssovf_mbox_timeout_ticks(uint64_t ns, uint64_t *tmo_ticks)
117 struct octeontx_mbox_hdr hdr = {0};
118 struct ssovf_mbox_convert_ns_getworks_iter ns2iter;
119 uint16_t len = sizeof(ns2iter);
122 hdr.coproc = SSO_COPROC;
123 hdr.msg = SSO_CONVERT_NS_GETWORK_ITER;
126 memset(&ns2iter, 0, len);
127 ns2iter.wait_ns = ns;
128 ret = octeontx_mbox_send(&hdr, &ns2iter, len, &ns2iter, len);
129 if (ret < 0 || (ret != len)) {
130 ssovf_log_err("Failed to get tmo ticks ns=%"PRId64"", ns);
134 *tmo_ticks = ns2iter.getwork_iter;
139 ssovf_fastpath_fns_set(struct rte_eventdev *dev)
141 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
143 dev->enqueue = ssows_enq;
144 dev->enqueue_burst = ssows_enq_burst;
145 dev->enqueue_new_burst = ssows_enq_new_burst;
146 dev->enqueue_forward_burst = ssows_enq_fwd_burst;
147 dev->dequeue = ssows_deq;
148 dev->dequeue_burst = ssows_deq_burst;
149 dev->txa_enqueue = sso_event_tx_adapter_enqueue;
151 if (edev->is_timeout_deq) {
152 dev->dequeue = ssows_deq_timeout;
153 dev->dequeue_burst = ssows_deq_timeout_burst;
158 ssovf_info_get(struct rte_eventdev *dev, struct rte_event_dev_info *dev_info)
160 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
162 dev_info->driver_name = RTE_STR(EVENTDEV_NAME_OCTEONTX_PMD);
163 dev_info->min_dequeue_timeout_ns = edev->min_deq_timeout_ns;
164 dev_info->max_dequeue_timeout_ns = edev->max_deq_timeout_ns;
165 dev_info->max_event_queues = edev->max_event_queues;
166 dev_info->max_event_queue_flows = (1ULL << 20);
167 dev_info->max_event_queue_priority_levels = 8;
168 dev_info->max_event_priority_levels = 1;
169 dev_info->max_event_ports = edev->max_event_ports;
170 dev_info->max_event_port_dequeue_depth = 1;
171 dev_info->max_event_port_enqueue_depth = 1;
172 dev_info->max_num_events = edev->max_num_events;
173 dev_info->event_dev_cap = RTE_EVENT_DEV_CAP_QUEUE_QOS |
174 RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED |
175 RTE_EVENT_DEV_CAP_QUEUE_ALL_TYPES|
176 RTE_EVENT_DEV_CAP_RUNTIME_PORT_LINK |
177 RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT |
178 RTE_EVENT_DEV_CAP_NONSEQ_MODE;
183 ssovf_configure(const struct rte_eventdev *dev)
185 struct rte_event_dev_config *conf = &dev->data->dev_conf;
186 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
190 deq_tmo_ns = conf->dequeue_timeout_ns;
192 deq_tmo_ns = edev->min_deq_timeout_ns;
194 if (conf->event_dev_cfg & RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT) {
195 edev->is_timeout_deq = 1;
196 deq_tmo_ns = edev->min_deq_timeout_ns;
198 edev->nb_event_queues = conf->nb_event_queues;
199 edev->nb_event_ports = conf->nb_event_ports;
201 return ssovf_mbox_getwork_tmo_set(deq_tmo_ns);
205 ssovf_queue_def_conf(struct rte_eventdev *dev, uint8_t queue_id,
206 struct rte_event_queue_conf *queue_conf)
209 RTE_SET_USED(queue_id);
211 queue_conf->nb_atomic_flows = (1ULL << 20);
212 queue_conf->nb_atomic_order_sequences = (1ULL << 20);
213 queue_conf->event_queue_cfg = RTE_EVENT_QUEUE_CFG_ALL_TYPES;
214 queue_conf->priority = RTE_EVENT_DEV_PRIORITY_NORMAL;
218 ssovf_queue_release(struct rte_eventdev *dev, uint8_t queue_id)
221 RTE_SET_USED(queue_id);
225 ssovf_queue_setup(struct rte_eventdev *dev, uint8_t queue_id,
226 const struct rte_event_queue_conf *queue_conf)
229 ssovf_func_trace("queue=%d prio=%d", queue_id, queue_conf->priority);
231 return ssovf_mbox_priority_set(queue_id, queue_conf->priority);
235 ssovf_port_def_conf(struct rte_eventdev *dev, uint8_t port_id,
236 struct rte_event_port_conf *port_conf)
238 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
240 RTE_SET_USED(port_id);
241 port_conf->new_event_threshold = edev->max_num_events;
242 port_conf->dequeue_depth = 1;
243 port_conf->enqueue_depth = 1;
244 port_conf->disable_implicit_release = 0;
248 ssovf_port_release(void *port)
254 ssovf_port_setup(struct rte_eventdev *dev, uint8_t port_id,
255 const struct rte_event_port_conf *port_conf)
260 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
262 ssovf_func_trace("port=%d", port_id);
263 RTE_SET_USED(port_conf);
265 /* Free memory prior to re-allocation if needed */
266 if (dev->data->ports[port_id] != NULL) {
267 ssovf_port_release(dev->data->ports[port_id]);
268 dev->data->ports[port_id] = NULL;
271 /* Allocate event port memory */
272 ws = rte_zmalloc_socket("eventdev ssows",
273 sizeof(struct ssows), RTE_CACHE_LINE_SIZE,
274 dev->data->socket_id);
276 ssovf_log_err("Failed to alloc memory for port=%d", port_id);
280 ws->base = ssovf_bar(OCTEONTX_SSO_HWS, port_id, 0);
281 if (ws->base == NULL) {
283 ssovf_log_err("Failed to get hws base addr port=%d", port_id);
287 reg_off = SSOW_VHWS_OP_GET_WORK0;
288 reg_off |= 1 << 4; /* Index_ggrp_mask (Use maskset zero) */
289 reg_off |= 1 << 16; /* Wait */
290 ws->getwork = ws->base + reg_off;
293 for (q = 0; q < edev->nb_event_queues; q++) {
294 ws->grps[q] = ssovf_bar(OCTEONTX_SSO_GROUP, q, 2);
295 if (ws->grps[q] == NULL) {
297 ssovf_log_err("Failed to get grp%d base addr", q);
302 dev->data->ports[port_id] = ws;
303 ssovf_log_dbg("port=%d ws=%p", port_id, ws);
308 ssovf_port_link(struct rte_eventdev *dev, void *port, const uint8_t queues[],
309 const uint8_t priorities[], uint16_t nb_links)
313 struct ssows *ws = port;
315 ssovf_func_trace("port=%d nb_links=%d", ws->port, nb_links);
317 RTE_SET_USED(priorities);
319 for (link = 0; link < nb_links; link++) {
321 val |= (1ULL << 24); /* Set membership */
322 ssovf_write64(val, ws->base + SSOW_VHWS_GRPMSK_CHGX(0));
324 return (int)nb_links;
328 ssovf_port_unlink(struct rte_eventdev *dev, void *port, uint8_t queues[],
333 struct ssows *ws = port;
335 ssovf_func_trace("port=%d nb_links=%d", ws->port, nb_unlinks);
338 for (unlink = 0; unlink < nb_unlinks; unlink++) {
339 val = queues[unlink];
340 val &= ~(1ULL << 24); /* Clear membership */
341 ssovf_write64(val, ws->base + SSOW_VHWS_GRPMSK_CHGX(0));
343 return (int)nb_unlinks;
347 ssovf_timeout_ticks(struct rte_eventdev *dev, uint64_t ns, uint64_t *tmo_ticks)
351 return ssovf_mbox_timeout_ticks(ns, tmo_ticks);
355 ssows_dump(struct ssows *ws, FILE *f)
357 uint8_t *base = ws->base;
360 fprintf(f, "\t---------------port%d---------------\n", ws->port);
361 val = ssovf_read64(base + SSOW_VHWS_TAG);
362 fprintf(f, "\ttag=0x%x tt=%d head=%d tail=%d grp=%d index=%d tail=%d\n",
363 (uint32_t)(val & 0xffffffff), (int)(val >> 32) & 0x3,
364 (int)(val >> 34) & 0x1, (int)(val >> 35) & 0x1,
365 (int)(val >> 36) & 0x3ff, (int)(val >> 48) & 0x3ff,
366 (int)(val >> 63) & 0x1);
368 val = ssovf_read64(base + SSOW_VHWS_WQP);
369 fprintf(f, "\twqp=0x%"PRIx64"\n", val);
371 val = ssovf_read64(base + SSOW_VHWS_LINKS);
372 fprintf(f, "\tindex=%d valid=%d revlink=%d tail=%d head=%d grp=%d\n",
373 (int)(val & 0x3ff), (int)(val >> 10) & 0x1,
374 (int)(val >> 11) & 0x3ff, (int)(val >> 26) & 0x1,
375 (int)(val >> 27) & 0x1, (int)(val >> 28) & 0x3ff);
377 val = ssovf_read64(base + SSOW_VHWS_PENDTAG);
378 fprintf(f, "\tptag=0x%x ptt=%d pgwi=%d pdesc=%d pgw=%d pgww=%d ps=%d\n",
379 (uint32_t)(val & 0xffffffff), (int)(val >> 32) & 0x3,
380 (int)(val >> 56) & 0x1, (int)(val >> 58) & 0x1,
381 (int)(val >> 61) & 0x1, (int)(val >> 62) & 0x1,
382 (int)(val >> 63) & 0x1);
384 val = ssovf_read64(base + SSOW_VHWS_PENDWQP);
385 fprintf(f, "\tpwqp=0x%"PRIx64"\n", val);
389 ssovf_eth_rx_adapter_caps_get(const struct rte_eventdev *dev,
390 const struct rte_eth_dev *eth_dev, uint32_t *caps)
395 ret = strncmp(eth_dev->data->name, "eth_octeontx", 12);
397 *caps = RTE_EVENT_ETH_RX_ADAPTER_SW_CAP;
399 *caps = RTE_EVENT_ETH_RX_ADAPTER_CAP_INTERNAL_PORT;
405 ssovf_eth_rx_adapter_queue_add(const struct rte_eventdev *dev,
406 const struct rte_eth_dev *eth_dev, int32_t rx_queue_id,
407 const struct rte_event_eth_rx_adapter_queue_conf *queue_conf)
410 const struct octeontx_nic *nic = eth_dev->data->dev_private;
411 pki_mod_qos_t pki_qos;
414 ret = strncmp(eth_dev->data->name, "eth_octeontx", 12);
418 if (rx_queue_id >= 0)
421 if (queue_conf->ev.sched_type == RTE_SCHED_TYPE_PARALLEL)
424 memset(&pki_qos, 0, sizeof(pki_mod_qos_t));
426 pki_qos.port_type = 0;
428 pki_qos.mmask.f_tag_type = 1;
429 pki_qos.mmask.f_port_add = 1;
430 pki_qos.mmask.f_grp_ok = 1;
431 pki_qos.mmask.f_grp_bad = 1;
432 pki_qos.mmask.f_grptag_ok = 1;
433 pki_qos.mmask.f_grptag_bad = 1;
435 pki_qos.tag_type = queue_conf->ev.sched_type;
436 pki_qos.qos_entry.port_add = 0;
437 pki_qos.qos_entry.ggrp_ok = queue_conf->ev.queue_id;
438 pki_qos.qos_entry.ggrp_bad = queue_conf->ev.queue_id;
439 pki_qos.qos_entry.grptag_bad = 0;
440 pki_qos.qos_entry.grptag_ok = 0;
442 ret = octeontx_pki_port_modify_qos(nic->port_id, &pki_qos);
444 ssovf_log_err("failed to modify QOS, port=%d, q=%d",
445 nic->port_id, queue_conf->ev.queue_id);
451 ssovf_eth_rx_adapter_queue_del(const struct rte_eventdev *dev,
452 const struct rte_eth_dev *eth_dev, int32_t rx_queue_id)
455 const struct octeontx_nic *nic = eth_dev->data->dev_private;
456 pki_del_qos_t pki_qos;
459 ret = strncmp(eth_dev->data->name, "eth_octeontx", 12);
463 pki_qos.port_type = 0;
465 memset(&pki_qos, 0, sizeof(pki_del_qos_t));
466 ret = octeontx_pki_port_delete_qos(nic->port_id, &pki_qos);
468 ssovf_log_err("Failed to delete QOS port=%d, q=%d",
469 nic->port_id, rx_queue_id);
474 ssovf_eth_rx_adapter_start(const struct rte_eventdev *dev,
475 const struct rte_eth_dev *eth_dev)
478 RTE_SET_USED(eth_dev);
485 ssovf_eth_rx_adapter_stop(const struct rte_eventdev *dev,
486 const struct rte_eth_dev *eth_dev)
489 RTE_SET_USED(eth_dev);
495 ssovf_eth_tx_adapter_caps_get(const struct rte_eventdev *dev,
496 const struct rte_eth_dev *eth_dev, uint32_t *caps)
501 ret = strncmp(eth_dev->data->name, "eth_octeontx", 12);
505 *caps = RTE_EVENT_ETH_TX_ADAPTER_CAP_INTERNAL_PORT;
511 ssovf_eth_tx_adapter_create(uint8_t id, const struct rte_eventdev *dev)
519 ssovf_eth_tx_adapter_free(uint8_t id, const struct rte_eventdev *dev)
527 ssovf_eth_tx_adapter_queue_add(uint8_t id, const struct rte_eventdev *dev,
528 const struct rte_eth_dev *eth_dev, int32_t tx_queue_id)
532 RTE_SET_USED(eth_dev);
533 RTE_SET_USED(tx_queue_id);
538 ssovf_eth_tx_adapter_queue_del(uint8_t id, const struct rte_eventdev *dev,
539 const struct rte_eth_dev *eth_dev, int32_t tx_queue_id)
543 RTE_SET_USED(eth_dev);
544 RTE_SET_USED(tx_queue_id);
549 ssovf_eth_tx_adapter_start(uint8_t id, const struct rte_eventdev *dev)
557 ssovf_eth_tx_adapter_stop(uint8_t id, const struct rte_eventdev *dev)
566 ssovf_dump(struct rte_eventdev *dev, FILE *f)
568 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
571 /* Dump SSOWVF debug registers */
572 for (port = 0; port < edev->nb_event_ports; port++)
573 ssows_dump(dev->data->ports[port], f);
577 ssovf_start(struct rte_eventdev *dev)
579 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
585 for (i = 0; i < edev->nb_event_ports; i++) {
586 ws = dev->data->ports[i];
591 for (i = 0; i < edev->nb_event_queues; i++) {
592 /* Consume all the events through HWS0 */
593 ssows_flush_events(dev->data->ports[0], i, NULL, NULL);
595 base = ssovf_bar(OCTEONTX_SSO_GROUP, i, 0);
596 base += SSO_VHGRP_QCTL;
597 ssovf_write64(1, base); /* Enable SSO group */
600 ssovf_fastpath_fns_set(dev);
605 ssows_handle_event(void *arg, struct rte_event event)
607 struct rte_eventdev *dev = arg;
609 if (dev->dev_ops->dev_stop_flush != NULL)
610 dev->dev_ops->dev_stop_flush(dev->data->dev_id, event,
611 dev->data->dev_stop_flush_arg);
615 ssovf_stop(struct rte_eventdev *dev)
617 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
623 for (i = 0; i < edev->nb_event_ports; i++) {
624 ws = dev->data->ports[i];
629 for (i = 0; i < edev->nb_event_queues; i++) {
630 /* Consume all the events through HWS0 */
631 ssows_flush_events(dev->data->ports[0], i,
632 ssows_handle_event, dev);
634 base = ssovf_bar(OCTEONTX_SSO_GROUP, i, 0);
635 base += SSO_VHGRP_QCTL;
636 ssovf_write64(0, base); /* Disable SSO group */
641 ssovf_close(struct rte_eventdev *dev)
643 struct ssovf_evdev *edev = ssovf_pmd_priv(dev);
644 uint8_t all_queues[RTE_EVENT_MAX_QUEUES_PER_DEV];
647 for (i = 0; i < edev->nb_event_queues; i++)
650 for (i = 0; i < edev->nb_event_ports; i++)
651 ssovf_port_unlink(dev, dev->data->ports[i], all_queues,
652 edev->nb_event_queues);
657 ssovf_selftest(const char *key __rte_unused, const char *value,
661 *flag = !!atoi(value);
666 ssovf_timvf_caps_get(const struct rte_eventdev *dev, uint64_t flags,
667 uint32_t *caps, const struct rte_event_timer_adapter_ops **ops)
669 return timvf_timer_adapter_caps_get(dev, flags, caps, ops,
673 /* Initialize and register event driver with DPDK Application */
674 static struct rte_eventdev_ops ssovf_ops = {
675 .dev_infos_get = ssovf_info_get,
676 .dev_configure = ssovf_configure,
677 .queue_def_conf = ssovf_queue_def_conf,
678 .queue_setup = ssovf_queue_setup,
679 .queue_release = ssovf_queue_release,
680 .port_def_conf = ssovf_port_def_conf,
681 .port_setup = ssovf_port_setup,
682 .port_release = ssovf_port_release,
683 .port_link = ssovf_port_link,
684 .port_unlink = ssovf_port_unlink,
685 .timeout_ticks = ssovf_timeout_ticks,
687 .eth_rx_adapter_caps_get = ssovf_eth_rx_adapter_caps_get,
688 .eth_rx_adapter_queue_add = ssovf_eth_rx_adapter_queue_add,
689 .eth_rx_adapter_queue_del = ssovf_eth_rx_adapter_queue_del,
690 .eth_rx_adapter_start = ssovf_eth_rx_adapter_start,
691 .eth_rx_adapter_stop = ssovf_eth_rx_adapter_stop,
693 .eth_tx_adapter_caps_get = ssovf_eth_tx_adapter_caps_get,
694 .eth_tx_adapter_create = ssovf_eth_tx_adapter_create,
695 .eth_tx_adapter_free = ssovf_eth_tx_adapter_free,
696 .eth_tx_adapter_queue_add = ssovf_eth_tx_adapter_queue_add,
697 .eth_tx_adapter_queue_del = ssovf_eth_tx_adapter_queue_del,
698 .eth_tx_adapter_start = ssovf_eth_tx_adapter_start,
699 .eth_tx_adapter_stop = ssovf_eth_tx_adapter_stop,
701 .timer_adapter_caps_get = ssovf_timvf_caps_get,
703 .dev_selftest = test_eventdev_octeontx,
706 .dev_start = ssovf_start,
707 .dev_stop = ssovf_stop,
708 .dev_close = ssovf_close
712 ssovf_vdev_probe(struct rte_vdev_device *vdev)
714 struct ssovf_info oinfo;
715 struct ssovf_mbox_dev_info info;
716 struct ssovf_evdev *edev;
717 struct rte_eventdev *eventdev;
718 static int ssovf_init_once;
724 static const char *const args[] = {
726 TIMVF_ENABLE_STATS_ARG,
730 name = rte_vdev_device_name(vdev);
731 /* More than one instance is not supported */
732 if (ssovf_init_once) {
733 ssovf_log_err("Request to create >1 %s instance", name);
737 params = rte_vdev_device_args(vdev);
738 if (params != NULL && params[0] != '\0') {
739 struct rte_kvargs *kvlist = rte_kvargs_parse(params, args);
743 "Ignoring unsupported params supplied '%s'",
746 int ret = rte_kvargs_process(kvlist,
748 ssovf_selftest, &selftest);
750 ssovf_log_err("%s: Error in selftest", name);
751 rte_kvargs_free(kvlist);
755 ret = rte_kvargs_process(kvlist,
756 TIMVF_ENABLE_STATS_ARG,
757 ssovf_selftest, &timvf_enable_stats);
759 ssovf_log_err("%s: Error in timvf stats", name);
760 rte_kvargs_free(kvlist);
765 rte_kvargs_free(kvlist);
768 eventdev = rte_event_pmd_vdev_init(name, sizeof(struct ssovf_evdev),
770 if (eventdev == NULL) {
771 ssovf_log_err("Failed to create eventdev vdev %s", name);
774 eventdev->dev_ops = &ssovf_ops;
776 /* For secondary processes, the primary has done all the work */
777 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
778 ssovf_fastpath_fns_set(eventdev);
782 ret = ssovf_info(&oinfo);
784 ssovf_log_err("Failed to probe and validate ssovfs %d", ret);
788 edev = ssovf_pmd_priv(eventdev);
789 edev->max_event_ports = oinfo.total_ssowvfs;
790 edev->max_event_queues = oinfo.total_ssovfs;
791 edev->is_timeout_deq = 0;
793 ret = ssovf_mbox_dev_info(&info);
794 if (ret < 0 || ret != sizeof(struct ssovf_mbox_dev_info)) {
795 ssovf_log_err("Failed to get mbox devinfo %d", ret);
799 edev->min_deq_timeout_ns = info.min_deq_timeout_ns;
800 edev->max_deq_timeout_ns = info.max_deq_timeout_ns;
801 edev->max_num_events = info.max_num_events;
802 ssovf_log_dbg("min_deq_tmo=%"PRId64" max_deq_tmo=%"PRId64" max_evts=%d",
803 info.min_deq_timeout_ns, info.max_deq_timeout_ns,
804 info.max_num_events);
806 if (!edev->max_event_ports || !edev->max_event_queues) {
807 ssovf_log_err("Not enough eventdev resource queues=%d ports=%d",
808 edev->max_event_queues, edev->max_event_ports);
813 ssovf_log_info("Initializing %s domain=%d max_queues=%d max_ports=%d",
814 name, oinfo.domain, edev->max_event_queues,
815 edev->max_event_ports);
819 test_eventdev_octeontx();
823 rte_event_pmd_vdev_uninit(name);
828 ssovf_vdev_remove(struct rte_vdev_device *vdev)
832 name = rte_vdev_device_name(vdev);
833 ssovf_log_info("Closing %s", name);
834 return rte_event_pmd_vdev_uninit(name);
837 static struct rte_vdev_driver vdev_ssovf_pmd = {
838 .probe = ssovf_vdev_probe,
839 .remove = ssovf_vdev_remove
842 RTE_PMD_REGISTER_VDEV(EVENTDEV_NAME_OCTEONTX_PMD, vdev_ssovf_pmd);