event/octeontx2: add device capabilities function
authorPavan Nikhilesh <pbhagavatula@marvell.com>
Fri, 28 Jun 2019 18:23:14 +0000 (23:53 +0530)
committerJerin Jacob <jerinj@marvell.com>
Wed, 3 Jul 2019 04:55:47 +0000 (06:55 +0200)
Add the info_get function to return details on the queues, flow,
prioritization capabilities, etc. which this device has.

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
drivers/event/octeontx2/otx2_evdev.c

index 08ae820..839a5cc 100644 (file)
 
 #include "otx2_evdev.h"
 
+static void
+otx2_sso_info_get(struct rte_eventdev *event_dev,
+                 struct rte_event_dev_info *dev_info)
+{
+       struct otx2_sso_evdev *dev = sso_pmd_priv(event_dev);
+
+       dev_info->driver_name = RTE_STR(EVENTDEV_NAME_OCTEONTX2_PMD);
+       dev_info->min_dequeue_timeout_ns = dev->min_dequeue_timeout_ns;
+       dev_info->max_dequeue_timeout_ns = dev->max_dequeue_timeout_ns;
+       dev_info->max_event_queues = dev->max_event_queues;
+       dev_info->max_event_queue_flows = (1ULL << 20);
+       dev_info->max_event_queue_priority_levels = 8;
+       dev_info->max_event_priority_levels = 1;
+       dev_info->max_event_ports = dev->max_event_ports;
+       dev_info->max_event_port_dequeue_depth = 1;
+       dev_info->max_event_port_enqueue_depth = 1;
+       dev_info->max_num_events =  dev->max_num_events;
+       dev_info->event_dev_cap = RTE_EVENT_DEV_CAP_QUEUE_QOS |
+                                       RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED |
+                                       RTE_EVENT_DEV_CAP_QUEUE_ALL_TYPES |
+                                       RTE_EVENT_DEV_CAP_RUNTIME_PORT_LINK |
+                                       RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT |
+                                       RTE_EVENT_DEV_CAP_NONSEQ_MODE;
+}
+
+/* Initialize and register event driver with DPDK Application */
+static struct rte_eventdev_ops otx2_sso_ops = {
+       .dev_infos_get    = otx2_sso_info_get,
+};
+
 static int
 otx2_sso_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
 {
@@ -51,6 +81,7 @@ otx2_sso_init(struct rte_eventdev *event_dev)
        struct otx2_sso_evdev *dev;
        int rc;
 
+       event_dev->dev_ops = &otx2_sso_ops;
        /* For secondary processes, the primary has done all the work */
        if (rte_eal_process_type() != RTE_PROC_PRIMARY)
                return 0;