From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ubuntu (80.173.162.73.dyn.user.ono.com [80.173.162.73]) by dpdk.org (Postfix) with ESMTP id 86A84C4EC for ; Fri, 23 Oct 2015 12:36:02 +0200 (CEST) Received: by ubuntu (Postfix, from userid 5466) id 364F3E92E4; Fri, 23 Oct 2015 11:36:03 +0100 (BST) From: "Alejandro.Lucero" To: dev@dpdk.org Date: Fri, 23 Oct 2015 11:36:01 +0100 Message-Id: <1445596563-16818-1-git-send-email-alejandro.lucero@netronome.com> X-Mailer: git-send-email 1.7.9.5 Subject: [dpdk-dev] [PATCH v4] 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: Fri, 23 Oct 2015 10:36:02 -0000 From: "Alejandro.Lucero" This patch adds a new PMD for Netronome nfp-6xxx cards. Just PCI Virtual Functions support. 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 changes to a new path file - Adding info to MAINTAINERS and release files Alejandro.Lucero (1): nfp: new poll mode driver for netronome nfp-6xxx card 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 +++++++ 5 files changed, 3382 insertions(+) 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 -- 1.7.9.5