From: Jerin Jacob Kollanukkaran <jerinj@marvell.com>
To: Thomas Monjalon <thomas@monjalon.net>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: [dpdk-dev] [pull-request] next-eventdev 19.08 RC1
Date: Wed, 3 Jul 2019 03:55:27 +0000 [thread overview]
Message-ID: <BYAPR18MB242483FB62F9288DA930B23FC8FB0@BYAPR18MB2424.namprd18.prod.outlook.com> (raw)
The following changes since commit 19f3f971123429b92fbfaa5175fa29724e94c8c9:
mk: fix -march for octeontx2 target (2019-07-02 23:55:35 +0200)
are available in the Git repository at:
http://dpdk.org/git/next/dpdk-next-eventdev
for you to fetch changes up to 22ea5755e1f5bcd151bf99c18e6084b356d6370f:
event/octeontx2: add devargs to control adapter parameters (2019-07-03 09:18:33 +0530)
----------------------------------------------------------------
Erik Gabriel Carrillo (1):
eventdev: add new software event timer adapter
Jerin Jacob (1):
eventdev: fix doxygen comment
Nikhil Rao (3):
eventdev: remove event copy in Rx adapter
eventdev: optimize Rx adapter event enqueue
eventdev: change Rx adapter callback and stats structure
Nipun Gupta (1):
event/dpaa2: fix to return correct value for timeout ticks
Pavan Nikhilesh (44):
app/eventdev: fix order test port creation
test/eventdev: fix producer core validity checks
event/octeontx2: add build infra and device probe
event/octeontx2: add init and fini for octeontx2 SSO object
event/octeontx2: add device capabilities function
event/octeontx2: add device configure function
event/octeontx2: add event queue config functions
event/octeontx2: allocate event inflight buffers
event/octeontx2: add devargs for inflight buffer count
event/octeontx2: add event port config functions
event/octeontx2: support linking queues to ports
event/octeontx2: support dequeue timeout tick conversion
event/octeontx2: add SSO GWS and GGRP IRQ handlers
event/octeontx2: add register dump functions
event/octeontx2: add xstats support
event/octeontx2: add SSO HW device operations
event/octeontx2: add worker enqueue functions
event/octeontx2: add worker dequeue functions
event/octeontx2: add octeontx2 SSO dual workslot mode
event/octeontx2: add SSO dual GWS HW device operations
event/octeontx2: add worker dual GWS enqueue functions
event/octeontx2: add worker dual GWS dequeue functions
event/octeontx2: add devargs to force legacy mode
event/octeontx2: add device start function
event/octeontx2: add devargs to control SSO GGRP QoS
event/octeontx2: add device stop and close functions
event/octeontx2: add SSO selftest
event/octeontx2: add event timer support
event/octeontx2: add timer adapter capabilities
event/octeontx2: create and free timer adapter
event/octeontx2: allow TIM to optimize config
event/octeontx2: add devargs to disable NPA
event/octeontx2: add devargs to modify chunk slots
event/octeontx2: add TIM IRQ handlers
event/octeontx2: allow adapters to resize inflight buffers
event/octeontx2: add timer adapter info get function
event/octeontx2: add TIM bucket operations
event/octeontx2: add event timer arm routine
event/octeontx2: add event timer arm timeout burst
event/octeontx2: add event timer cancel function
event/octeontx2: add event timer stats get and reset
event/octeontx2: add even timer adapter start and stop
event/octeontx2: add devargs to limit timer adapters
event/octeontx2: add devargs to control adapter parameters
MAINTAINERS | 8 +-
app/test-eventdev/test_order_common.c | 32 +-
app/test-eventdev/test_perf_common.c | 3 +-
app/test/test_eventdev.c | 8 +
config/common_base | 5 +
doc/guides/eventdevs/index.rst | 1 +
doc/guides/eventdevs/octeontx2.rst | 158 ++
doc/guides/platform/octeontx2.rst | 3 +
doc/guides/rel_notes/release_19_08.rst | 20 +-
drivers/event/Makefile | 1 +
drivers/event/dpaa2/dpaa2_eventdev.c | 2 +-
drivers/event/meson.build | 2 +-
drivers/event/octeontx2/Makefile | 49 +
drivers/event/octeontx2/meson.build | 29 +
drivers/event/octeontx2/otx2_evdev.c | 1395 ++++++++++++++++++
drivers/event/octeontx2/otx2_evdev.h | 266 ++++
drivers/event/octeontx2/otx2_evdev_adptr.c | 19 +
drivers/event/octeontx2/otx2_evdev_irq.c | 272 ++++
drivers/event/octeontx2/otx2_evdev_selftest.c | 1511 ++++++++++++++++++++
drivers/event/octeontx2/otx2_evdev_stats.h | 286 ++++
drivers/event/octeontx2/otx2_tim_evdev.c | 735 ++++++++++
drivers/event/octeontx2/otx2_tim_evdev.h | 249 ++++
drivers/event/octeontx2/otx2_tim_worker.c | 171 +++
drivers/event/octeontx2/otx2_tim_worker.h | 450 ++++++
drivers/event/octeontx2/otx2_worker.c | 270 ++++
drivers/event/octeontx2/otx2_worker.h | 187 +++
drivers/event/octeontx2/otx2_worker_dual.c | 207 +++
drivers/event/octeontx2/otx2_worker_dual.h | 76 +
.../octeontx2/rte_pmd_octeontx2_event_version.map | 4 +
lib/librte_eventdev/Makefile | 2 +-
lib/librte_eventdev/meson.build | 2 +-
lib/librte_eventdev/rte_event_eth_rx_adapter.c | 87 +-
lib/librte_eventdev/rte_event_eth_rx_adapter.h | 85 +-
lib/librte_eventdev/rte_event_timer_adapter.c | 738 ++++------
lib/librte_eventdev/rte_eventdev.h | 5 +-
lib/librte_eventdev/rte_eventdev_version.map | 4 +-
mk/rte.app.mk | 2 +
37 files changed, 6803 insertions(+), 541 deletions(-)
create mode 100644 doc/guides/eventdevs/octeontx2.rst
create mode 100644 drivers/event/octeontx2/Makefile
create mode 100644 drivers/event/octeontx2/meson.build
create mode 100644 drivers/event/octeontx2/otx2_evdev.c
create mode 100644 drivers/event/octeontx2/otx2_evdev.h
create mode 100644 drivers/event/octeontx2/otx2_evdev_adptr.c
create mode 100644 drivers/event/octeontx2/otx2_evdev_irq.c
create mode 100644 drivers/event/octeontx2/otx2_evdev_selftest.c
create mode 100644 drivers/event/octeontx2/otx2_evdev_stats.h
create mode 100644 drivers/event/octeontx2/otx2_tim_evdev.c
create mode 100644 drivers/event/octeontx2/otx2_tim_evdev.h
create mode 100644 drivers/event/octeontx2/otx2_tim_worker.c
create mode 100644 drivers/event/octeontx2/otx2_tim_worker.h
create mode 100644 drivers/event/octeontx2/otx2_worker.c
create mode 100644 drivers/event/octeontx2/otx2_worker.h
create mode 100644 drivers/event/octeontx2/otx2_worker_dual.c
create mode 100644 drivers/event/octeontx2/otx2_worker_dual.h
create mode 100644 drivers/event/octeontx2/rte_pmd_octeontx2_event_version.map
next reply other threads:[~2019-07-03 3:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-03 3:55 Jerin Jacob Kollanukkaran [this message]
2019-07-03 15:03 ` Thomas Monjalon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=BYAPR18MB242483FB62F9288DA930B23FC8FB0@BYAPR18MB2424.namprd18.prod.outlook.com \
--to=jerinj@marvell.com \
--cc=dev@dpdk.org \
--cc=thomas@monjalon.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).