linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ioana Radulescu <ruxandra.radulescu@nxp.com>
To: <gregkh@linuxfoundation.org>
Cc: <devel@driverdev.osuosl.org>, <linux-kernel@vger.kernel.org>,
	<agraf@suse.de>, <arnd@arndb.de>,
	<linux-arm-kernel@lists.infradead.org>,
	<alexandru.marginean@nxp.com>, <bogdan.hamciuc@nxp.com>,
	<stuyoder@gmail.com>, <laurentiu.tudor@nxp.com>,
	<ruxandra.radulescu@nxp.com>, <roy.pledge@nxp.com>,
	<haiying.wang@nxp.com>
Subject: [PATCH v2 0/9] staging: Introduce the DPAA2 Ethernet driver
Date: Wed, 12 Apr 2017 11:25:29 -0500	[thread overview]
Message-ID: <20170412162538.25302-1-ruxandra.radulescu@nxp.com> (raw)

This patchset introduces the Ethernet driver for Freescale/NXP SoCs
with DPAA2 (DataPath Acceleration Architecture v2). The driver manages
network 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) networking objects
* The DPAA2 Ethernet basic driver
* A couple of patches adding ethtool and debug support

v2 changes:
 - update path of include header files since fsl-mc bus driver
   is still in staging
 - minor updates in patch #4 due to networking API changes

Ioana Radulescu (9):
  bus: fsl-mc: add DPCON object APIs
  staging: fsl-dpaa2/eth: Add Ethernet driver overview document
  staging: fsl-dpaa2/eth: Add APIs for DPNI objects
  staging: fsl-dpaa2/eth: Add Freescale DPAA2 Ethernet driver
  staging: fsl-dpaa2/eth: Add ethtool support
  staging: fsl-dpaa2/eth: Add driver specific stats
  staging: fsl-dpaa2/eth: Add trace points
  staging: fsl-dpaa2/eth: Add TODO file
  staging: fsl-dpaa2/eth: Add maintainer for Ethernet driver

 MAINTAINERS                                        |    6 +
 drivers/staging/Kconfig                            |    2 +
 drivers/staging/Makefile                           |    1 +
 drivers/staging/fsl-dpaa2/Kconfig                  |   17 +
 drivers/staging/fsl-dpaa2/Makefile                 |    5 +
 drivers/staging/fsl-dpaa2/ethernet/Makefile        |   10 +
 drivers/staging/fsl-dpaa2/ethernet/README          |  186 ++
 drivers/staging/fsl-dpaa2/ethernet/TODO            |   14 +
 .../staging/fsl-dpaa2/ethernet/dpaa2-eth-trace.h   |  185 ++
 drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth.c     | 2520 ++++++++++++++++++++
 drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth.h     |  348 +++
 drivers/staging/fsl-dpaa2/ethernet/dpaa2-ethtool.c |  279 +++
 drivers/staging/fsl-dpaa2/ethernet/dpkg.h          |  176 ++
 drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h      |  541 +++++
 drivers/staging/fsl-dpaa2/ethernet/dpni.c          | 1595 +++++++++++++
 drivers/staging/fsl-dpaa2/ethernet/dpni.h          |  832 +++++++
 drivers/staging/fsl-dpaa2/ethernet/net.h           |  480 ++++
 drivers/staging/fsl-mc/bus/Makefile                |    3 +-
 drivers/staging/fsl-mc/bus/dpcon-cmd.h             |   69 +-
 drivers/staging/fsl-mc/bus/dpcon.c                 |  317 +++
 drivers/staging/fsl-mc/include/dpcon.h             |  115 +
 21 files changed, 7677 insertions(+), 24 deletions(-)
 create mode 100644 drivers/staging/fsl-dpaa2/Kconfig
 create mode 100644 drivers/staging/fsl-dpaa2/Makefile
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/Makefile
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/README
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/TODO
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth-trace.h
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth.c
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpaa2-eth.h
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpaa2-ethtool.c
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpkg.h
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpni.c
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/dpni.h
 create mode 100644 drivers/staging/fsl-dpaa2/ethernet/net.h
 create mode 100644 drivers/staging/fsl-mc/bus/dpcon.c
 create mode 100644 drivers/staging/fsl-mc/include/dpcon.h

-- 
2.11.0

             reply	other threads:[~2017-04-12 16:26 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-12 16:25 Ioana Radulescu [this message]
2017-04-12 16:25 ` [PATCH v2 1/9] bus: fsl-mc: add DPCON object APIs Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 2/9] staging: fsl-dpaa2/eth: Add Ethernet driver overview document Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 3/9] staging: fsl-dpaa2/eth: Add APIs for DPNI objects Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 4/9] staging: fsl-dpaa2/eth: Add Freescale DPAA2 Ethernet driver Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 5/9] staging: fsl-dpaa2/eth: Add ethtool support Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 6/9] staging: fsl-dpaa2/eth: Add driver specific stats Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 7/9] staging: fsl-dpaa2/eth: Add trace points Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 8/9] staging: fsl-dpaa2/eth: Add TODO file Ioana Radulescu
2017-04-19  3:44   ` Stuart Yoder
2017-04-20  8:31     ` Ruxandra Ioana Radulescu
2017-04-12 16:25 ` [PATCH v2 9/9] staging: fsl-dpaa2/eth: Add maintainer for Ethernet driver Ioana Radulescu

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=20170412162538.25302-1-ruxandra.radulescu@nxp.com \
    --to=ruxandra.radulescu@nxp.com \
    --cc=agraf@suse.de \
    --cc=alexandru.marginean@nxp.com \
    --cc=arnd@arndb.de \
    --cc=bogdan.hamciuc@nxp.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=haiying.wang@nxp.com \
    --cc=laurentiu.tudor@nxp.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=roy.pledge@nxp.com \
    --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).