From: <lironh@marvell.com> To: <jerinj@marvell.com> Cc: <dev@dpdk.org>, Liron Himi <lironh@marvell.com> Subject: [PATCH v4 0/4] regex/cn9k: use cnxk infrastructure Date: Tue, 7 Dec 2021 20:31:39 +0200 Message-ID: <20211207183143.27145-1-lironh@marvell.com> (raw) In-Reply-To: <20211129194736.14518-3-lironh@marvell.com> From: Liron Himi <lironh@marvell.com> 3 patches add support for REE into cnkx infrastructure. the last patch change the octeontx2 driver to use the new cnxk code. in addition all references to octeontx2/otx2 were replaced with cn9k. v4: - squashed the 4th patch v3: - fix documentation issues v2: - fix review comments. - split original patch. - add the driver patch. Liron Himi (4): common/cnxk: add REE HW definitions common/cnxk: add REE mbox definitions common/cnxk: add REE support regex/cn9k: use cnxk infrastructure MAINTAINERS | 8 +- doc/guides/platform/cnxk.rst | 3 + doc/guides/platform/octeontx2.rst | 3 - .../regexdevs/{octeontx2.rst => cn9k.rst} | 20 +- .../features/{octeontx2.ini => cn9k.ini} | 2 +- doc/guides/regexdevs/index.rst | 2 +- doc/guides/rel_notes/release_20_11.rst | 2 +- drivers/common/cnxk/hw/ree.h | 126 ++++ drivers/common/cnxk/hw/rvu.h | 5 + drivers/common/cnxk/meson.build | 1 + drivers/common/cnxk/roc_api.h | 4 + drivers/common/cnxk/roc_constants.h | 2 + drivers/common/cnxk/roc_mbox.h | 100 +++ drivers/common/cnxk/roc_platform.c | 1 + drivers/common/cnxk/roc_platform.h | 2 + drivers/common/cnxk/roc_priv.h | 3 + drivers/common/cnxk/roc_ree.c | 647 ++++++++++++++++++ drivers/common/cnxk/roc_ree.h | 137 ++++ drivers/common/cnxk/roc_ree_priv.h | 18 + drivers/common/cnxk/version.map | 18 +- .../otx2_regexdev.c => cn9k/cn9k_regexdev.c} | 405 +++++------ drivers/regex/cn9k/cn9k_regexdev.h | 44 ++ .../cn9k_regexdev_compiler.c} | 34 +- drivers/regex/cn9k/cn9k_regexdev_compiler.h | 11 + drivers/regex/{octeontx2 => cn9k}/meson.build | 10 +- drivers/regex/{octeontx2 => cn9k}/version.map | 0 drivers/regex/meson.build | 2 +- drivers/regex/octeontx2/otx2_regexdev.h | 109 --- .../regex/octeontx2/otx2_regexdev_compiler.h | 11 - .../regex/octeontx2/otx2_regexdev_hw_access.c | 167 ----- .../regex/octeontx2/otx2_regexdev_hw_access.h | 202 ------ drivers/regex/octeontx2/otx2_regexdev_mbox.c | 401 ----------- drivers/regex/octeontx2/otx2_regexdev_mbox.h | 38 - 33 files changed, 1332 insertions(+), 1206 deletions(-) rename doc/guides/regexdevs/{octeontx2.rst => cn9k.rst} (69%) rename doc/guides/regexdevs/features/{octeontx2.ini => cn9k.ini} (80%) create mode 100644 drivers/common/cnxk/hw/ree.h create mode 100644 drivers/common/cnxk/roc_ree.c create mode 100644 drivers/common/cnxk/roc_ree.h create mode 100644 drivers/common/cnxk/roc_ree_priv.h rename drivers/regex/{octeontx2/otx2_regexdev.c => cn9k/cn9k_regexdev.c} (61%) create mode 100644 drivers/regex/cn9k/cn9k_regexdev.h rename drivers/regex/{octeontx2/otx2_regexdev_compiler.c => cn9k/cn9k_regexdev_compiler.c} (86%) create mode 100644 drivers/regex/cn9k/cn9k_regexdev_compiler.h rename drivers/regex/{octeontx2 => cn9k}/meson.build (65%) rename drivers/regex/{octeontx2 => cn9k}/version.map (100%) delete mode 100644 drivers/regex/octeontx2/otx2_regexdev.h delete mode 100644 drivers/regex/octeontx2/otx2_regexdev_compiler.h delete mode 100644 drivers/regex/octeontx2/otx2_regexdev_hw_access.c delete mode 100644 drivers/regex/octeontx2/otx2_regexdev_hw_access.h delete mode 100644 drivers/regex/octeontx2/otx2_regexdev_mbox.c delete mode 100644 drivers/regex/octeontx2/otx2_regexdev_mbox.h -- 2.28.0
next prev parent reply other threads:[~2021-12-07 18:31 UTC|newest] Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-10-03 6:23 [dpdk-dev] [PATCH] common/cnxk: add REE support lironh 2021-10-28 9:30 ` Jerin Jacob 2021-11-23 19:13 ` [PATCH v2 0/5] regex/cn9k: use cnxk infrastructure lironh 2021-11-23 19:13 ` [PATCH v2 1/5] common/cnxk: add REE HW definitions lironh 2021-11-23 19:13 ` [PATCH v2 2/5] common/cnxk: add REE mbox definitions lironh 2021-11-23 19:13 ` [PATCH v2 3/5] common/cnxk: add REE support lironh 2021-11-23 19:13 ` [PATCH v2 4/5] common/cnxk: link REE support to ROC files lironh 2021-11-23 19:13 ` [PATCH v2 5/5] regex/cn9k: use cnxk infrastructure lironh [not found] ` <20211123193835.20601-1-robot@bytheb.org> 2021-11-28 20:17 ` [EXT] |FAILURE| pw104631 " Liron Himi 2021-11-28 20:37 ` Thomas Monjalon 2021-11-29 9:55 ` Liron Himi 2021-11-29 10:10 ` Thomas Monjalon 2021-11-29 19:47 ` [PATCH v2 0/5] " lironh 2021-11-29 19:47 ` [PATCH v3 " lironh 2021-11-29 19:47 ` [PATCH v3 1/5] common/cnxk: add REE HW definitions lironh 2021-12-07 18:31 ` lironh [this message] 2021-12-07 18:31 ` [PATCH v4 1/4] " lironh 2021-12-07 18:31 ` [PATCH v4 2/4] common/cnxk: add REE mbox definitions lironh 2021-12-07 18:31 ` [PATCH v4 3/4] common/cnxk: add REE support lironh 2021-12-07 18:31 ` [PATCH v4 4/4] regex/cn9k: use cnxk infrastructure lironh 2021-12-08 9:14 ` [PATCH v4 0/4] " Jerin Jacob 2021-12-11 9:04 ` [dpdk-dev] [PATCH v5 0/5] remove octeontx2 drivers jerinj 2021-12-11 9:04 ` [dpdk-dev] [PATCH v5 1/5] common/cnxk: add REE HW definitions jerinj 2021-12-11 9:04 ` [dpdk-dev] [PATCH v5 2/5] common/cnxk: add REE mbox definitions jerinj 2021-12-11 9:04 ` [dpdk-dev] [PATCH v5 3/5] common/cnxk: add REE support jerinj 2021-12-11 9:04 ` [dpdk-dev] [PATCH v5 4/5] regex/cn9k: use cnxk infrastructure jerinj 2021-12-11 9:04 ` [dpdk-dev] [PATCH v5 5/5] drivers: remove octeontx2 drivers jerinj 2021-12-14 8:57 ` Ruifeng Wang 2022-01-12 14:37 ` [dpdk-dev] [PATCH v5 0/5] " Thomas Monjalon 2021-11-29 19:47 ` [PATCH v3 2/5] common/cnxk: add REE mbox definitions lironh 2021-11-29 19:47 ` [PATCH v3 3/5] common/cnxk: add REE support lironh 2021-11-29 19:47 ` [PATCH v3 4/5] common/cnxk: link REE support to ROC files lironh 2021-11-29 19:47 ` [PATCH v3 5/5] regex/cn9k: use cnxk infrastructure lironh 2021-11-29 19:49 ` [PATCH v3 0/5] " lironh 2021-11-29 19:49 ` [PATCH v3 1/5] common/cnxk: add REE HW definitions lironh 2021-11-29 19:49 ` [PATCH v3 2/5] common/cnxk: add REE mbox definitions lironh 2021-11-29 19:49 ` [PATCH v3 3/5] common/cnxk: add REE support lironh 2021-11-29 19:49 ` [PATCH v3 4/5] common/cnxk: link REE support to ROC files lironh 2021-11-29 19:49 ` [PATCH v3 5/5] regex/cn9k: use cnxk infrastructure lironh 2021-11-29 19:59 ` [PATCH v3 0/5] " lironh 2021-11-29 19:59 ` [PATCH v3 1/5] common/cnxk: add REE HW definitions lironh 2021-11-29 19:59 ` [PATCH v3 2/5] common/cnxk: add REE mbox definitions lironh 2021-11-29 19:59 ` [PATCH v3 3/5] common/cnxk: add REE support lironh 2021-11-29 19:59 ` [PATCH v3 4/5] common/cnxk: link REE support to ROC files lironh 2021-12-06 5:07 ` Jerin Jacob 2021-12-06 6:54 ` [EXT] " Liron Himi 2021-12-06 8:08 ` Jerin Jacob 2021-11-29 19:59 ` [PATCH v3 5/5] regex/cn9k: use cnxk infrastructure lironh
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=20211207183143.27145-1-lironh@marvell.com \ --to=lironh@marvell.com \ --cc=dev@dpdk.org \ --cc=jerinj@marvell.com \ /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
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://inbox.dpdk.org/dev/0 dev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dev dev/ http://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git