From: Razvan Stefanescu <razvan.stefanescu@nxp.com>
To: gregkh@linuxfoundation.org
Cc: devel@driverdev.osuosl.org, arnd@arndb.de,
netdev@vger.kernel.org, alexandru.marginean@nxp.com,
linux-kernel@vger.kernel.org, agraf@suse.de, stuyoder@gmail.com,
ioana.ciornei@nxp.com, laurentiu.tudor@nxp.com
Subject: [PATCH v6 0/6] staging: Introduce DPAA2 Ethernet Switch driver
Date: Wed, 14 Mar 2018 10:55:52 -0500 [thread overview]
Message-ID: <20180314155558.6898-1-razvan.stefanescu@nxp.com> (raw)
This patchset introduces the Ethernet Switch Driver for Freescale/NXP SoCs
with DPAA2 (DataPath Acceleration Architecture v2). The driver manages
switch objects discovered on the fsl-mc bus. A description of the driver
can be found in the associated README file.
The patchset consists of:
* A set of libraries containing APIs for configuring and controlling
Management Complex (MC) switch objects
* The DPAA2 Ethernet Switch driver
* Patch adding ethtool support
Limitations:
* no support for control traffic to/from CPU
* only DPSW ports can be added to a bridge
Changelog:
v2: addressed comments from Bogdan P.
v3: addressed comments from Andrew L. (patch 3/6 updated)
v4: adjust to moving MC-bus out of staging
support adding/deleting multicast entries to/from FDB
avoid triggering console stack traces due to benign MC errors
refactor TCI setting code to avoid code duplication
fix sparse warning
v5: addresed comments from Andrew L. (patch 2/6 updated)
replace ethsw_irq0_handler() with NULL
do not allow adding ports of the same switch to multiple bridges
v6: addressed comment from Andrew L. and Greg KH.
add port partitioning in the TODO file
replace licensing text with SPDX identifier
Razvan Stefanescu (6):
staging: fsl-dpaa2/ethsw: Add APIs for DPSW object
staging: fsl-dpaa2/ethsw: Add Freescale DPAA2 Ethernet Switch driver
staging: fsl-dpaa2/ethsw: Add ethtool support
staging: fsl-dpaa2/ethsw: Add maintainer for Ethernet Switch driver
staging: fsl-dpaa2/ethsw: Add README
staging: fsl-dpaa2/ethsw: Add TODO
MAINTAINERS | 6 +
drivers/staging/fsl-dpaa2/Kconfig | 8 +
drivers/staging/fsl-dpaa2/Makefile | 1 +
drivers/staging/fsl-dpaa2/ethsw/Makefile | 10 +
drivers/staging/fsl-dpaa2/ethsw/README | 106 ++
drivers/staging/fsl-dpaa2/ethsw/TODO | 14 +
drivers/staging/fsl-dpaa2/ethsw/dpsw-cmd.h | 346 ++++++
drivers/staging/fsl-dpaa2/ethsw/dpsw.c | 1123 +++++++++++++++++
drivers/staging/fsl-dpaa2/ethsw/dpsw.h | 586 +++++++++
drivers/staging/fsl-dpaa2/ethsw/ethsw-ethtool.c | 182 +++
drivers/staging/fsl-dpaa2/ethsw/ethsw.c | 1508 +++++++++++++++++++++++
drivers/staging/fsl-dpaa2/ethsw/ethsw.h | 67 +
12 files changed, 3957 insertions(+)
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/Makefile
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/README
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/TODO
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/dpsw-cmd.h
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/dpsw.c
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/dpsw.h
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/ethsw-ethtool.c
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/ethsw.c
create mode 100644 drivers/staging/fsl-dpaa2/ethsw/ethsw.h
--
1.9.1
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
next reply other threads:[~2018-03-14 15:55 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-14 15:55 Razvan Stefanescu [this message]
2018-03-14 15:55 ` [PATCH v6 1/6] staging: fsl-dpaa2/ethsw: Add APIs for DPSW object Razvan Stefanescu
2018-03-14 15:55 ` [PATCH v6 2/6] staging: fsl-dpaa2/ethsw: Add Freescale DPAA2 Ethernet Switch driver Razvan Stefanescu
2018-03-14 15:55 ` [PATCH v6 3/6] staging: fsl-dpaa2/ethsw: Add ethtool support Razvan Stefanescu
2018-03-14 15:55 ` [PATCH v6 4/6] staging: fsl-dpaa2/ethsw: Add maintainer for Ethernet Switch driver Razvan Stefanescu
2018-03-14 15:55 ` [PATCH v6 5/6] staging: fsl-dpaa2/ethsw: Add README Razvan Stefanescu
2018-03-14 15:55 ` [PATCH v6 6/6] staging: fsl-dpaa2/ethsw: Add TODO Razvan Stefanescu
2018-03-14 23:44 ` [PATCH v6 0/6] staging: Introduce DPAA2 Ethernet Switch driver Andrew Lunn
2018-03-15 10:56 ` Dan Carpenter
2018-03-16 0:15 ` Andrew Lunn
2018-03-16 10:59 ` Laurentiu Tudor
2018-03-16 11:36 ` Razvan Stefanescu
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=20180314155558.6898-1-razvan.stefanescu@nxp.com \
--to=razvan.stefanescu@nxp.com \
--cc=agraf@suse.de \
--cc=alexandru.marginean@nxp.com \
--cc=arnd@arndb.de \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=ioana.ciornei@nxp.com \
--cc=laurentiu.tudor@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=stuyoder@gmail.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
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).