From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <stephen@networkplumber.org>
Received: from mail-pd0-f176.google.com (mail-pd0-f176.google.com
 [209.85.192.176]) by dpdk.org (Postfix) with ESMTP id 41E14C316
 for <dev@dpdk.org>; Thu,  9 Jul 2015 20:15:29 +0200 (CEST)
Received: by pdjr16 with SMTP id r16so8081900pdj.3
 for <dev@dpdk.org>; Thu, 09 Jul 2015 11:15:28 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id;
 bh=tMnNGgmWWCBcwRAgh5/EFkDWWUIpwVerQw2DKUGk/6k=;
 b=VFEPxYKV3hbLlkzP0gpl9LgtOfEcN2RWf/PlOxEqVsUwdT4ch758BA+t++6e8Aqc1u
 /y+ACm0oP3dI/S49gYWf1EPMPEee7qrZOAbzL8+aoM9Z9s0FHgAgjy3Kv3XTZtpPKhnO
 qkG76/GpDmWWerk7o5iucyYaCCBcQO8w0d+ILTWxlu4LkgOvH5bzZxse7u/L6OdZNzHT
 hNy0M4iVKSpvL41vFljkQGFZhkzEUZzqXS6SiujcKUZ2E0REVjU3Jr4g3dq9ZJEfKQP0
 z7iB0Zur48CIi3vMxIYm6K4D8tnf5ZeByBNX/O+Z5vWLtpURcYxoF6SXc4ClEBDBJHJy
 91Hw==
X-Gm-Message-State: ALoCoQk0XiFzWl/YrjbH5yQIqcTDhek+eqQb9OW/lqkBrsEmzW0ekhaONrlTj+L1TrqpRr/O/m96
X-Received: by 10.70.130.144 with SMTP id oe16mr34309171pdb.116.1436465728361; 
 Thu, 09 Jul 2015 11:15:28 -0700 (PDT)
Received: from urahara.home.lan (static-50-53-82-155.bvtn.or.frontiernet.net.
 [50.53.82.155])
 by smtp.gmail.com with ESMTPSA id nt6sm6701045pbc.18.2015.07.09.11.15.27
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
 Thu, 09 Jul 2015 11:15:27 -0700 (PDT)
From: Stephen Hemminger <stephen@networkplumber.org>
To: harish.patil@qlogic.com
Date: Thu,  9 Jul 2015 11:15:33 -0700
Message-Id: <1436465737-16818-1-git-send-email-stephen@networkplumber.org>
X-Mailer: git-send-email 2.1.4
Cc: dev@dpdk.org
Subject: [dpdk-dev] [PATCH v4 0/4] bnx2x: new poll mode driver
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: Thu, 09 Jul 2015 18:15:29 -0000

Changes in this version:
  - rebase for PCI uio changes
  - fix version map for 2.1
  - add BCM57840 support

Stephen Hemminger (4):
  eal: provide functions to access PCI config
  bnx2x: driver core
  bnx2x: driver support routines
  bnx2x: enable PMD build

 MAINTAINERS                                     |     3 +
 config/common_linuxapp                          |    10 +
 drivers/net/Makefile                            |     1 +
 drivers/net/bnx2x/Makefile                      |    28 +
 drivers/net/bnx2x/bnx2x.c                       | 11821 +++++++++++++++++++
 drivers/net/bnx2x/bnx2x.h                       |  1998 ++++
 drivers/net/bnx2x/bnx2x_ethdev.c                |   542 +
 drivers/net/bnx2x/bnx2x_ethdev.h                |    79 +
 drivers/net/bnx2x/bnx2x_logs.h                  |    51 +
 drivers/net/bnx2x/bnx2x_rxtx.c                  |   487 +
 drivers/net/bnx2x/bnx2x_rxtx.h                  |    85 +
 drivers/net/bnx2x/bnx2x_stats.c                 |  1619 +++
 drivers/net/bnx2x/bnx2x_stats.h                 |   632 +
 drivers/net/bnx2x/bnx2x_vfpf.c                  |   597 +
 drivers/net/bnx2x/bnx2x_vfpf.h                  |   315 +
 drivers/net/bnx2x/debug.c                       |   113 +
 drivers/net/bnx2x/ecore_fw_defs.h               |   422 +
 drivers/net/bnx2x/ecore_hsi.h                   |  6348 ++++++++++
 drivers/net/bnx2x/ecore_init.h                  |   841 ++
 drivers/net/bnx2x/ecore_init_ops.h              |   886 ++
 drivers/net/bnx2x/ecore_mfw_req.h               |   206 +
 drivers/net/bnx2x/ecore_reg.h                   |  3663 ++++++
 drivers/net/bnx2x/ecore_sp.c                    |  5455 +++++++++
 drivers/net/bnx2x/ecore_sp.h                    |  1795 +++
 drivers/net/bnx2x/elink.c                       | 13378 ++++++++++++++++++++++
 drivers/net/bnx2x/elink.h                       |   609 +
 drivers/net/bnx2x/rte_pmd_bnx2x_version.map     |     4 +
 lib/librte_eal/bsdapp/eal/eal_pci.c             |    83 +
 lib/librte_eal/bsdapp/eal/rte_eal_version.map   |     5 +
 lib/librte_eal/common/include/rte_pci.h         |    28 +
 lib/librte_eal/common/include/rte_pci_dev_ids.h |    61 +
 lib/librte_eal/linuxapp/eal/eal_pci.c           |    50 +
 lib/librte_eal/linuxapp/eal/eal_pci_init.h      |    11 +
 lib/librte_eal/linuxapp/eal/eal_pci_uio.c       |    14 +
 lib/librte_eal/linuxapp/eal/eal_pci_vfio.c      |    16 +
 lib/librte_eal/linuxapp/eal/rte_eal_version.map |     5 +
 mk/rte.app.mk                                   |     2 +
 37 files changed, 52263 insertions(+)
 create mode 100644 drivers/net/bnx2x/Makefile
 create mode 100644 drivers/net/bnx2x/bnx2x.c
 create mode 100644 drivers/net/bnx2x/bnx2x.h
 create mode 100644 drivers/net/bnx2x/bnx2x_ethdev.c
 create mode 100644 drivers/net/bnx2x/bnx2x_ethdev.h
 create mode 100644 drivers/net/bnx2x/bnx2x_logs.h
 create mode 100644 drivers/net/bnx2x/bnx2x_rxtx.c
 create mode 100644 drivers/net/bnx2x/bnx2x_rxtx.h
 create mode 100644 drivers/net/bnx2x/bnx2x_stats.c
 create mode 100644 drivers/net/bnx2x/bnx2x_stats.h
 create mode 100644 drivers/net/bnx2x/bnx2x_vfpf.c
 create mode 100644 drivers/net/bnx2x/bnx2x_vfpf.h
 create mode 100644 drivers/net/bnx2x/debug.c
 create mode 100644 drivers/net/bnx2x/ecore_fw_defs.h
 create mode 100644 drivers/net/bnx2x/ecore_hsi.h
 create mode 100644 drivers/net/bnx2x/ecore_init.h
 create mode 100644 drivers/net/bnx2x/ecore_init_ops.h
 create mode 100644 drivers/net/bnx2x/ecore_mfw_req.h
 create mode 100644 drivers/net/bnx2x/ecore_reg.h
 create mode 100644 drivers/net/bnx2x/ecore_sp.c
 create mode 100644 drivers/net/bnx2x/ecore_sp.h
 create mode 100644 drivers/net/bnx2x/elink.c
 create mode 100644 drivers/net/bnx2x/elink.h
 create mode 100644 drivers/net/bnx2x/rte_pmd_bnx2x_version.map

-- 
2.1.4