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:
parent
5787cf0cbb
commit
8558dcaa05
@ -1219,6 +1219,12 @@ M: Timothy McDaniel <timothy.mcdaniel@intel.com>
|
||||
F: drivers/event/dlb2/
|
||||
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
|
||||
M: Pavan Nikhilesh <pbhagavatula@marvell.com>
|
||||
M: Jerin Jacob <jerinj@marvell.com>
|
||||
|
55
doc/guides/eventdevs/cnxk.rst
Normal file
55
doc/guides/eventdevs/cnxk.rst
Normal 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' |
|
||||
+---+------------+-------------------------------------------------------+
|
@ -11,6 +11,7 @@ application through the eventdev API.
|
||||
:maxdepth: 2
|
||||
:numbered:
|
||||
|
||||
cnxk
|
||||
dlb2
|
||||
dpaa
|
||||
dpaa2
|
||||
|
@ -75,6 +75,8 @@ New Features
|
||||
net, crypto and event PMD's.
|
||||
* Added mempool/cnxk driver which provides the support for the integrated
|
||||
mempool device.
|
||||
* Added event/cnxk driver which provides the support for integrated event
|
||||
device.
|
||||
|
||||
* **Enhanced ethdev representor syntax.**
|
||||
|
||||
|
68
drivers/event/cnxk/cnxk_eventdev.c
Normal file
68
drivers/event/cnxk/cnxk_eventdev.c
Normal 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);
|
||||
}
|
39
drivers/event/cnxk/cnxk_eventdev.h
Normal file
39
drivers/event/cnxk/cnxk_eventdev.h
Normal 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__ */
|
13
drivers/event/cnxk/meson.build
Normal file
13
drivers/event/cnxk/meson.build
Normal 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']
|
3
drivers/event/cnxk/version.map
Normal file
3
drivers/event/cnxk/version.map
Normal file
@ -0,0 +1,3 @@
|
||||
INTERNAL {
|
||||
local: *;
|
||||
};
|
@ -6,6 +6,7 @@ if is_windows
|
||||
endif
|
||||
|
||||
drivers = [
|
||||
'cnxk',
|
||||
'dlb2',
|
||||
'dpaa',
|
||||
'dpaa2',
|
||||
|
Loading…
Reference in New Issue
Block a user