From: Veerasenareddy Burru <vburru@marvell.com>
To: <vburru@marvell.com>, <davem@davemloft.net>, <kuba@kernel.org>,
<corbet@lwn.net>, <netdev@vger.kernel.org>,
<linux-doc@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: [net-next PATCH v5 0/7] Add octeon_ep driver
Date: Tue, 12 Apr 2022 20:34:56 -0700 [thread overview]
Message-ID: <20220413033503.3962-1-vburru@marvell.com> (raw)
This driver implements networking functionality of Marvell's Octeon
PCI Endpoint NIC.
This driver support following devices:
* Network controller: Cavium, Inc. Device b200
V4 -> V5:
- Fix warnings reported by clang.
- Address comments from community reviews.
V3 -> V4:
- Fix warnings and errors reported by "make W=1 C=1".
V2 -> V3:
- Fix warnings and errors reported by kernel test robot:
"Reported-by: kernel test robot <lkp@intel.com>"
V1 -> V2:
- Address review comments on original patch series.
- Divide PATCH 1/4 from the original series into 4 patches in
v2 patch series: PATCH 1/7 to PATCH 4/7.
- Fix clang build errors.
Veerasenareddy Burru (7):
octeon_ep: Add driver framework and device initialization
octeon_ep: add hardware configuration APIs
octeon_ep: Add mailbox for control commands
octeon_ep: add Tx/Rx ring resource setup and cleanup
octeon_ep: add support for ndo ops
octeon_ep: add Tx/Rx processing and interrupt support
octeon_ep: add ethtool support for Octeon PCI Endpoint NIC
.../device_drivers/ethernet/index.rst | 1 +
.../ethernet/marvell/octeon_ep.rst | 35 +
MAINTAINERS | 7 +
drivers/net/ethernet/marvell/Kconfig | 1 +
drivers/net/ethernet/marvell/Makefile | 1 +
.../net/ethernet/marvell/octeon_ep/Kconfig | 20 +
.../net/ethernet/marvell/octeon_ep/Makefile | 9 +
.../marvell/octeon_ep/octep_cn9k_pf.c | 737 +++++++++++
.../ethernet/marvell/octeon_ep/octep_config.h | 204 +++
.../marvell/octeon_ep/octep_ctrl_mbox.c | 256 ++++
.../marvell/octeon_ep/octep_ctrl_mbox.h | 170 +++
.../marvell/octeon_ep/octep_ctrl_net.c | 194 +++
.../marvell/octeon_ep/octep_ctrl_net.h | 299 +++++
.../marvell/octeon_ep/octep_ethtool.c | 463 +++++++
.../ethernet/marvell/octeon_ep/octep_main.c | 1177 +++++++++++++++++
.../ethernet/marvell/octeon_ep/octep_main.h | 366 +++++
.../marvell/octeon_ep/octep_regs_cn9k_pf.h | 367 +++++
.../net/ethernet/marvell/octeon_ep/octep_rx.c | 508 +++++++
.../net/ethernet/marvell/octeon_ep/octep_rx.h | 199 +++
.../net/ethernet/marvell/octeon_ep/octep_tx.c | 335 +++++
.../net/ethernet/marvell/octeon_ep/octep_tx.h | 284 ++++
21 files changed, 5633 insertions(+)
create mode 100644 Documentation/networking/device_drivers/ethernet/marvell/octeon_ep.rst
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/Kconfig
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/Makefile
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_cn9k_pf.c
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_config.h
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_ctrl_mbox.c
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_ctrl_mbox.h
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_ctrl_net.c
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_ctrl_net.h
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_ethtool.c
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_main.c
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_main.h
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_regs_cn9k_pf.h
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_rx.c
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_rx.h
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_tx.c
create mode 100644 drivers/net/ethernet/marvell/octeon_ep/octep_tx.h
base-commit: f45ba67eb74ab4b775616af731bdf8944afce3f1
--
2.17.1
next reply other threads:[~2022-04-13 3:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-13 3:34 Veerasenareddy Burru [this message]
2022-04-13 3:34 ` [net-next PATCH v5 1/7] octeon_ep: Add driver framework and device initialization Veerasenareddy Burru
2022-04-13 8:53 ` Bagas Sanjaya
2022-04-13 9:51 ` Leon Romanovsky
2022-04-13 3:34 ` [net-next PATCH v5 2/7] octeon_ep: add hardware configuration APIs Veerasenareddy Burru
2022-04-13 3:34 ` [net-next PATCH v5 3/7] octeon_ep: Add mailbox for control commands Veerasenareddy Burru
2022-04-13 3:35 ` [net-next PATCH v5 4/7] octeon_ep: add Tx/Rx ring resource setup and cleanup Veerasenareddy Burru
2022-04-13 3:35 ` [net-next PATCH v5 5/7] octeon_ep: add support for ndo ops Veerasenareddy Burru
2022-04-13 3:35 ` [net-next PATCH v5 6/7] octeon_ep: add Tx/Rx processing and interrupt support Veerasenareddy Burru
2022-04-13 3:35 ` [net-next PATCH v5 7/7] octeon_ep: add ethtool support for Octeon PCI Endpoint NIC Veerasenareddy Burru
2022-04-13 12:00 ` [net-next PATCH v5 0/7] Add octeon_ep driver patchwork-bot+netdevbpf
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=20220413033503.3962-1-vburru@marvell.com \
--to=vburru@marvell.com \
--cc=corbet@lwn.net \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/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
all inboxes | Powered by JetHome®