From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f180.google.com (mail-pd0-f180.google.com [209.85.192.180]) by dpdk.org (Postfix) with ESMTP id 36910C380 for ; Wed, 17 Jun 2015 01:51:41 +0200 (CEST) Received: by pdbnf5 with SMTP id nf5so24845968pdb.2 for ; Tue, 16 Jun 2015 16:51:40 -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=I4Y4huQEH4wuqEHnQKwbBUSGlUCBM9HbzJqEHwu6xqI=; b=ksn45mwK0gDZ93tS/VvAlvhgoQq1YeJudt73oDkABycr2+9cUjT3sLH0OTwPMj1LDj YABVTBFfVbNHZ6JlGUKi3mgHl9WzT9HWy6FT9wuKoavmOfrbCeTsQSlMs+thyMG8llYY Jz/B/Hecmq+eXjpjsu9doDf40YkKSCvgk2SEOO0EDxvdjcVRZl2x7Ssie7llCsP96QdN GshgtQxKtAR8yPR1kWeHppiGkYEgOtzgxiF+sGrNkeGhcVs0O6Gw+qn9xfJ9/3qJyOOU ldguL3yomLHndlpGd8x/jE7T34O6SlrgkZw3V0pf8F9YIGnLNHOjtfct0nhTDSWNlYkw l2Qw== X-Gm-Message-State: ALoCoQls5Omoy82g1uFbw/IxP8v/1EIqurMLR7aiLlYWsBpijkAItqvb9ufs5v6wKOVqG+lMKUOd X-Received: by 10.70.42.134 with SMTP id o6mr5150494pdl.11.1434498700588; Tue, 16 Jun 2015 16:51:40 -0700 (PDT) Received: from urahara.home.lan (static-50-53-82-155.bvtn.or.frontiernet.net. [50.53.82.155]) by mx.google.com with ESMTPSA id pp6sm2501917pbb.79.2015.06.16.16.51.39 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 16 Jun 2015 16:51:39 -0700 (PDT) From: Stephen Hemminger To: ameen.rahman@qlogic.com Date: Tue, 16 Jun 2015 16:51:36 -0700 Message-Id: <1434498700-8522-1-git-send-email-stephen@networkplumber.org> X-Mailer: git-send-email 2.1.4 Cc: dev@dpdk.org, Stephen Hemminger Subject: [dpdk-dev] [PATCH 0/4 v5] bnx2x: poll mode driver 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, 16 Jun 2015 23:51:41 -0000 From: Stephen Hemminger Changes since last time: 1. Support pci_config on BSD. Although since BSD probably doesn't have same filesystem (/lib/firmware) the driver won't work. 2. Change location of driver to match new filesystem hierarchy 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 | 2 + lib/librte_eal/common/include/rte_pci.h | 28 + lib/librte_eal/common/include/rte_pci_dev_ids.h | 30 + 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 | 2 + mk/rte.app.mk | 2 + 37 files changed, 52226 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