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 D01668E7D for ; Mon, 2 Nov 2015 13:25:30 +0100 (CET) Received: by ubuntu (Postfix, from userid 5466) id 2069FE92E5; Mon, 2 Nov 2015 12:25:30 +0000 (GMT) From: "Alejandro.Lucero" To: dev@dpdk.org Date: Mon, 2 Nov 2015 12:25:20 +0000 Message-Id: <1446467130-300-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 Subject: [dpdk-dev] [PATCH v5 0/9] support for netronome nfp-6xxx card 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: Mon, 02 Nov 2015 12:25:31 -0000 From: "Alejandro.Lucero" This patchset adds a new PMD for Netronome nfp-6xxx cards. Just PCI Virtual Functions supported. v5: - Submitting code piece by piece as requested v4: - Just submitting PMD v3: - Making all patches independent for applying and building - changing commits messages following standard v2: - Code style changes based on checkpatch.pl and DPDK style guide - Documentation changes using the right rst format - Moving the documentation files to a new patch file - Adding info to MAINTAINERS and release files Alejandro.Lucero (9): nfp: basic initialization for netronome=C2=B4s nfp-6xxx card nfp: rx/tx functionality nfp: adding rss functionality nfp: adding stats functionality nfp: adding link functionality nfp: adding functionality to pmd nfp: integration with dpdk build system nfp: adding nic guide nfp: adding maintainers and release info MAINTAINERS | 5 + config/common_linuxapp | 6 + doc/guides/nics/index.rst | 1 + doc/guides/nics/nfp.rst | 189 +++ doc/guides/rel_notes/release_2_2.rst | 4 + drivers/net/Makefile | 1 + drivers/net/nfp/Makefile | 88 ++ drivers/net/nfp/nfp_net.c | 2366 ++++++++++++++++++++++++++++= ++++++ drivers/net/nfp/nfp_net_ctrl.h | 290 +++++ drivers/net/nfp/nfp_net_logs.h | 75 ++ drivers/net/nfp/nfp_net_pmd.h | 434 +++++++ mk/rte.app.mk | 1 + 12 files changed, 3460 insertions(+) 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 --=20 1.7.9.5