From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <alucero@ubuntu.org>
Received: from ubuntu (host217-39-174-19.in-addr.btopenworld.com
 [217.39.174.19]) by dpdk.org (Postfix) with SMTP id C3D29924F
 for <dev@dpdk.org>; Wed, 25 Nov 2015 17:19:55 +0100 (CET)
Received: by ubuntu (Postfix, from userid 5466)
 id 41231EA785; Wed, 25 Nov 2015 16:19:55 +0000 (GMT)
From: "Alejandro.Lucero" <alejandro.lucero@netronome.com>
To: dev@dpdk.org
Date: Wed, 25 Nov 2015 16:19:46 +0000
Message-Id: <1448468395-15577-1-git-send-email-alejandro.lucero@netronome.com>
X-Mailer: git-send-email 1.7.9.5
Subject: [dpdk-dev] [PATCH v8 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 <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Wed, 25 Nov 2015 16:19:56 -0000

From: "Alejandro.Lucero" <alejandro.lucero@netronome.com>

This patchset adds a new PMD for Netronome nfp-6xxx card.
Just PCI Virtual Functions supported.
Using this PMD requires previous Netronome BSP installation.

v8:
 - removing remaining unnecessary flags to PMD Makefile

v7:
 - Adding support for link status changes interrupts.
 - removing unnecessary flags when compiling the PMD.

v6:
 - Making each patch compilable.

v5:
 - Splitting up patches per functionality.

v4:
 - Getting rid of nfp_uio. 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
  nfp: adding tx/tx functionality
  nfp: adding rss
  nfp: adding stats
  nfp: adding link functionality
  nfp: adding extra functionality
  nfp: link status change interrupt support
  nfp: adding nic guide
  nfp: Updating MAINTAINERS

 MAINTAINERS                          |    4 +
 config/common_linuxapp               |    6 +
 doc/guides/nics/index.rst            |    1 +
 doc/guides/nics/nfp.rst              |  265 ++++
 doc/guides/rel_notes/release_2_2.rst |    4 +
 drivers/net/Makefile                 |    1 +
 drivers/net/nfp/Makefile             |   54 +
 drivers/net/nfp/nfp_net.c            | 2499 ++++++++++++++++++++++++++++++++++
 drivers/net/nfp/nfp_net_ctrl.h       |  324 +++++
 drivers/net/nfp/nfp_net_logs.h       |   75 +
 drivers/net/nfp/nfp_net_pmd.h        |  453 ++++++
 mk/rte.app.mk                        |    1 +
 12 files changed, 3687 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

-- 
1.7.9.5