event/cnxk: add build infra and device setup

Add meson build infra structure along with the event device
SSO initialization and teardown functions.

Signed-off-by: Shijith Thotton <sthotton@marvell.com>
Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
This commit is contained in:
Pavan Nikhilesh 2021-05-04 05:56:53 +05:30 committed by Jerin Jacob
parent 5787cf0cbb
commit 8558dcaa05
9 changed files with 188 additions and 0 deletions

View File

@ -1219,6 +1219,12 @@ M: Timothy McDaniel <timothy.mcdaniel@intel.com>
F: drivers/event/dlb2/ F: drivers/event/dlb2/
F: doc/guides/eventdevs/dlb2.rst F: doc/guides/eventdevs/dlb2.rst
Marvell cnxk
M: Pavan Nikhilesh <pbhagavatula@marvell.com>
M: Shijith Thotton <sthotton@marvell.com>
F: drivers/event/cnxk/
F: doc/guides/eventdevs/cnxk.rst
Marvell OCTEON TX2 Marvell OCTEON TX2
M: Pavan Nikhilesh <pbhagavatula@marvell.com> M: Pavan Nikhilesh <pbhagavatula@marvell.com>
M: Jerin Jacob <jerinj@marvell.com> M: Jerin Jacob <jerinj@marvell.com>

View File

@ -0,0 +1,55 @@
.. SPDX-License-Identifier: BSD-3-Clause
Copyright(c) 2021 Marvell.
Marvell cnxk SSO Eventdev Driver
================================
The SSO PMD (**librte_event_cnxk**) and provides poll mode
eventdev driver support for the inbuilt event device found in the
**Marvell OCTEON cnxk** SoC family.
More information about OCTEON cnxk SoC can be found at `Marvell Official Website
<https://www.marvell.com/embedded-processors/infrastructure-processors/>`_.
Supported OCTEON cnxk SoCs
--------------------------
- CN9XX
- CN10XX
Features
--------
Features of the OCTEON cnxk SSO PMD are:
- 256 Event queues
- 26 (dual) and 52 (single) Event ports on CN9XX
- 52 Event ports on CN10XX
- HW event scheduler
- Supports 1M flows per event queue
- Flow based event pipelining
- Flow pinning support in flow based event pipelining
- Queue based event pipelining
- Supports ATOMIC, ORDERED, PARALLEL schedule types per flow
- Event scheduling QoS based on event queue priority
- Open system with configurable amount of outstanding events limited only by
DRAM
- HW accelerated dequeue timeout support to enable power management
Prerequisites and Compilation procedure
---------------------------------------
See :doc:`../platform/cnxk` for setup information.
Debugging Options
-----------------
.. _table_octeon_cnxk_event_debug_options:
.. table:: OCTEON cnxk event device debug options
+---+------------+-------------------------------------------------------+
| # | Component | EAL log command |
+===+============+=======================================================+
| 1 | SSO | --log-level='pmd\.event\.cnxk,8' |
+---+------------+-------------------------------------------------------+

View File

@ -11,6 +11,7 @@ application through the eventdev API.
:maxdepth: 2 :maxdepth: 2
:numbered: :numbered:
cnxk
dlb2 dlb2
dpaa dpaa
dpaa2 dpaa2

View File

@ -75,6 +75,8 @@ New Features
net, crypto and event PMD's. net, crypto and event PMD's.
* Added mempool/cnxk driver which provides the support for the integrated * Added mempool/cnxk driver which provides the support for the integrated
mempool device. mempool device.
* Added event/cnxk driver which provides the support for integrated event
device.
* **Enhanced ethdev representor syntax.** * **Enhanced ethdev representor syntax.**

View File

@ -0,0 +1,68 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2021 Marvell.
*/
#include "cnxk_eventdev.h"
int
cnxk_sso_init(struct rte_eventdev *event_dev)
{
const struct rte_memzone *mz = NULL;
struct rte_pci_device *pci_dev;
struct cnxk_sso_evdev *dev;
int rc;
mz = rte_memzone_reserve(CNXK_SSO_MZ_NAME, sizeof(uint64_t),
SOCKET_ID_ANY, 0);
if (mz == NULL) {
plt_err("Failed to create eventdev memzone");
return -ENOMEM;
}
dev = cnxk_sso_pmd_priv(event_dev);
pci_dev = container_of(event_dev->dev, struct rte_pci_device, device);
dev->sso.pci_dev = pci_dev;
*(uint64_t *)mz->addr = (uint64_t)dev;
/* Initialize the base cnxk_dev object */
rc = roc_sso_dev_init(&dev->sso);
if (rc < 0) {
plt_err("Failed to initialize RoC SSO rc=%d", rc);
goto error;
}
dev->is_timeout_deq = 0;
dev->min_dequeue_timeout_ns = USEC2NSEC(1);
dev->max_dequeue_timeout_ns = USEC2NSEC(0x3FF);
dev->max_num_events = -1;
dev->nb_event_queues = 0;
dev->nb_event_ports = 0;
return 0;
error:
rte_memzone_free(mz);
return rc;
}
int
cnxk_sso_fini(struct rte_eventdev *event_dev)
{
struct cnxk_sso_evdev *dev = cnxk_sso_pmd_priv(event_dev);
/* For secondary processes, nothing to be done */
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;
roc_sso_rsrc_fini(&dev->sso);
roc_sso_dev_fini(&dev->sso);
return 0;
}
int
cnxk_sso_remove(struct rte_pci_device *pci_dev)
{
return rte_event_pmd_pci_remove(pci_dev, cnxk_sso_fini);
}

View File

@ -0,0 +1,39 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2021 Marvell.
*/
#ifndef __CNXK_EVENTDEV_H__
#define __CNXK_EVENTDEV_H__
#include <rte_pci.h>
#include <eventdev_pmd_pci.h>
#include "roc_api.h"
#define USEC2NSEC(__us) ((__us)*1E3)
#define CNXK_SSO_MZ_NAME "cnxk_evdev_mz"
struct cnxk_sso_evdev {
struct roc_sso sso;
uint8_t is_timeout_deq;
uint8_t nb_event_queues;
uint8_t nb_event_ports;
uint32_t min_dequeue_timeout_ns;
uint32_t max_dequeue_timeout_ns;
int32_t max_num_events;
} __rte_cache_aligned;
static inline struct cnxk_sso_evdev *
cnxk_sso_pmd_priv(const struct rte_eventdev *event_dev)
{
return event_dev->data->dev_private;
}
/* Common ops API. */
int cnxk_sso_init(struct rte_eventdev *event_dev);
int cnxk_sso_fini(struct rte_eventdev *event_dev);
int cnxk_sso_remove(struct rte_pci_device *pci_dev);
#endif /* __CNXK_EVENTDEV_H__ */

View File

@ -0,0 +1,13 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(C) 2021 Marvell.
#
if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
build = false
reason = 'only supported on 64-bit Linux'
subdir_done()
endif
sources = files('cnxk_eventdev.c')
deps += ['bus_pci', 'common_cnxk']

View File

@ -0,0 +1,3 @@
INTERNAL {
local: *;
};

View File

@ -6,6 +6,7 @@ if is_windows
endif endif
drivers = [ drivers = [
'cnxk',
'dlb2', 'dlb2',
'dpaa', 'dpaa',
'dpaa2', 'dpaa2',