From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ubuntu (host217-39-174-19.in-addr.btopenworld.com [217.39.174.19]) by dpdk.org (Postfix) with SMTP id 7C3FF5963 for ; Tue, 6 Oct 2015 16:48:50 +0200 (CEST) Received: by ubuntu (Postfix, from userid 5466) id 33BC0E92E3; Tue, 6 Oct 2015 15:48:57 +0100 (BST) From: "Alejandro.Lucero" To: dev@dpdk.org Subject: [PATCH v2 0/4] Support for NetronomeĀ“s NFP-6xxx card Date: Tue, 6 Oct 2015 15:48:53 +0100 Message-Id: <1444142937-29789-1-git-send-email-alejandro.lucero@netronome.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Oct 2015 14:48:51 -0000 From: "Alejandro.Lucero" This patchset adds a new PMD for Netronome=C2=B4s NFP-6xxx card along wit= h a new UIO driver, documentation and minor changes to configuration scrips. Alejandro.Lucero (4): This patch adds a PMD driver for Netronome NFP PCI cards. This patch adds a new UIO driver for Netronome NFP PCI cards. This patch adds documentation about Netronome=C2=B4s NFP nic Modifying configuration scripts for Netronome's nfp_uio driver. MAINTAINERS | 9 + config/common_linuxapp | 6 + doc/guides/nics/index.rst | 1 + doc/guides/nics/nfp.rst | 270 ++++ doc/guides/rel_notes/release_2_2.rst | 8 + drivers/net/Makefile | 1 + drivers/net/nfp/Makefile | 88 + drivers/net/nfp/nfp_net.c | 2495 +++++++++++++++++++++++= ++++++ drivers/net/nfp/nfp_net_ctrl.h | 290 ++++ drivers/net/nfp/nfp_net_logs.h | 75 + drivers/net/nfp/nfp_net_pmd.h | 434 +++++ lib/librte_eal/common/include/rte_pci.h | 1 + lib/librte_eal/linuxapp/Makefile | 3 + lib/librte_eal/linuxapp/eal/eal_pci.c | 4 + lib/librte_eal/linuxapp/eal/eal_pci_uio.c | 2 +- lib/librte_eal/linuxapp/nfp_uio/Makefile | 53 + lib/librte_eal/linuxapp/nfp_uio/nfp_uio.c | 497 ++++++ lib/librte_ether/rte_ethdev.c | 1 + mk/rte.app.mk | 1 + tools/dpdk_nic_bind.py | 8 +- tools/setup.sh | 122 +- 21 files changed, 4339 insertions(+), 30 deletions(-) create mode 100644 doc/guides/nics/nfp.rst create mode 100644 drivers/net/nfp/Makefile create mode 100644 drivers/net/nfp/nfp_net.c create mode 100644 drivers/net/nfp/nfp_net_ctrl.h create mode 100644 drivers/net/nfp/nfp_net_logs.h create mode 100644 drivers/net/nfp/nfp_net_pmd.h create mode 100644 lib/librte_eal/linuxapp/nfp_uio/Makefile create mode 100644 lib/librte_eal/linuxapp/nfp_uio/nfp_uio.c --=20 1.7.9.5