All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v3 0/4] Introduce ENETC ethernet drivers
@ 2018-11-23 10:45 Claudiu Manoil
  2018-11-23 10:46 ` [PATCH net-next v3 1/4] enetc: Introduce basic PF and VF " Claudiu Manoil
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Claudiu Manoil @ 2018-11-23 10:45 UTC (permalink / raw)
  To: David S . Miller, netdev
  Cc: linux-kernel, alexandru.marginean, catalin.horghidan

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            |    3 +
 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, 4563 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


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-11-25  7:29 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-23 10:45 [PATCH net-next v3 0/4] Introduce ENETC ethernet drivers Claudiu Manoil
2018-11-23 10:46 ` [PATCH net-next v3 1/4] enetc: Introduce basic PF and VF " Claudiu Manoil
2018-11-24  6:29   ` David Miller
2018-11-24 15:40   ` kbuild test robot
2018-11-23 10:46 ` [PATCH net-next v3 2/4] enetc: Add ethtool statistics Claudiu Manoil
2018-11-23 10:46 ` [PATCH net-next v3 3/4] enetc: Add vf to pf messaging support Claudiu Manoil
2018-11-23 10:46 ` [PATCH net-next v3 4/4] enetc: Add RFS and RSS support Claudiu Manoil
2018-11-25  7:28   ` kbuild test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.