linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Claudiu Manoil <claudiu.manoil@nxp.com>
To: "David S . Miller" <davem@davemloft.net>, netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, alexandru.marginean@nxp.com,
	catalin.horghidan@nxp.com
Subject: [PATCH net-next v2 0/4] Introduce ENETC ethernet drivers
Date: Tue, 20 Nov 2018 20:15:30 +0200	[thread overview]
Message-ID: <1542737734-21756-1-git-send-email-claudiu.manoil@nxp.com> (raw)

ENETC is a multi-port virtualized Ethernet controller supporting GbE
designs and Time-Sensitive Networking (TSN) functionality.
ENETC is operating as an SR-IOV multi-PF capable Root Complex Integrated
Endpoint (RCIE).  As such, it contains multiple physical (PF) and virtual
(VF) PCIe functions, discoverable by standard PCI Express.

The patch series adds basic enablement for these otherwise standard
buffer descriptor (BD) ring based ethernet devices (PCIe PFs and VFs),
currently included in the 64-bit dual ARMv8 processors LS1028A SoC.
The driver is portable to 32-bit designs, and it's independent of CPU
endianness.

Contributors:
Alex Marginean <alexandru.marginean@nxp.com>
Catalin Horghidan <catalin.horghidan@nxp.com>

TODO list:
* IEEE 1588 PTP support;
* TSN support;
* MDIO support and VF link management;
* power management support;
* flow control support;
* TC offloading with h/w MQPRIO;
* interrupt coalescing, configurable BD ring sizes, and other usual
config options if missing.

Claudiu Manoil (4):
  enetc: Introduce basic PF and VF ENETC ethernet drivers
  enetc: Add ethtool statistics
  enetc: Add vf to pf messaging support
  enetc: Add RFS and RSS support

 MAINTAINERS                                        |    6 +
 drivers/net/ethernet/freescale/Kconfig             |    1 +
 drivers/net/ethernet/freescale/Makefile            |    1 +
 drivers/net/ethernet/freescale/enetc/Kconfig       |   19 +
 drivers/net/ethernet/freescale/enetc/Makefile      |   15 +
 drivers/net/ethernet/freescale/enetc/enetc.c       | 1575 ++++++++++++++++++++
 drivers/net/ethernet/freescale/enetc/enetc.h       |  229 +++
 drivers/net/ethernet/freescale/enetc/enetc_cbdr.c  |  210 +++
 .../net/ethernet/freescale/enetc/enetc_ethtool.c   |  597 ++++++++
 drivers/net/ethernet/freescale/enetc/enetc_hw.h    |  519 +++++++
 drivers/net/ethernet/freescale/enetc/enetc_msg.c   |  164 ++
 drivers/net/ethernet/freescale/enetc/enetc_pf.c    |  921 ++++++++++++
 drivers/net/ethernet/freescale/enetc/enetc_pf.h    |   49 +
 drivers/net/ethernet/freescale/enetc/enetc_vf.c    |  255 ++++
 14 files changed, 4561 insertions(+)
 create mode 100644 drivers/net/ethernet/freescale/enetc/Kconfig
 create mode 100644 drivers/net/ethernet/freescale/enetc/Makefile
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc.c
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc.h
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc_cbdr.c
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc_ethtool.c
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc_hw.h
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc_msg.c
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc_pf.c
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc_pf.h
 create mode 100644 drivers/net/ethernet/freescale/enetc/enetc_vf.c

-- 
2.7.4


             reply	other threads:[~2018-11-20 18:16 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-20 18:15 Claudiu Manoil [this message]
2018-11-20 18:15 ` [PATCH net-next v2 1/4] enetc: Introduce basic PF and VF ENETC ethernet drivers Claudiu Manoil
2018-11-22  0:21   ` David Miller
2018-11-22 13:06     ` Claudiu Manoil
2018-11-22 18:05       ` Andrew Lunn
2018-11-23 10:35         ` Claudiu Manoil
2018-11-20 18:15 ` [PATCH net-next v2 2/4] enetc: Add ethtool statistics Claudiu Manoil
2018-11-20 18:15 ` [PATCH net-next v2 3/4] enetc: Add vf to pf messaging support Claudiu Manoil
2018-11-20 18:15 ` [PATCH net-next v2 4/4] enetc: Add RFS and RSS support Claudiu Manoil

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=1542737734-21756-1-git-send-email-claudiu.manoil@nxp.com \
    --to=claudiu.manoil@nxp.com \
    --cc=alexandru.marginean@nxp.com \
    --cc=catalin.horghidan@nxp.com \
    --cc=davem@davemloft.net \
    --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;
as well as URLs for NNTP newsgroup(s).