dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] Broadcom 10G NIC Poll Mode Driver
@ 2015-02-06 18:36 Stephen Hemminger
       [not found] ` <1423247795-22399-1-git-send-email-stephen-OTpzqLSitTUnbdJkjeBofR2eb7JE58TQ@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Stephen Hemminger @ 2015-02-06 18:36 UTC (permalink / raw)
  To: dev-VfR2kkLFssw; +Cc: Stephen Hemminger

From: Stephen Hemminger <shemming-43mecJUBy8ZBDgjK7y7TUQ@public.gmane.org>

These are the patches to enable supporting the Broadcom
NetExtreme II 10G devices (show up as bnx2x on Linux).

The driver has only been tested on Linux, there maybe issues
with firmware loading and PCI config access on BSD.

Stephen Hemminger (4):
  pci: allow access to PCI config space
  bcm: add BCM pci device ids
  bcm: new poll mode driver
  bcm: enable BCM poll mode driver in config

 config/common_linuxapp                          |    10 +
 lib/Makefile                                    |     1 +
 lib/librte_eal/common/include/rte_pci.h         |    29 +
 lib/librte_eal/common/include/rte_pci_dev_ids.h |    30 +
 lib/librte_eal/linuxapp/eal/eal_pci.c           |    15 +
 lib/librte_eal/linuxapp/eal/eal_pci_uio.c       |    10 +
 lib/librte_eal/linuxapp/eal/rte_eal_version.map |     2 +
 lib/librte_pmd_bcm/Makefile                     |    28 +
 lib/librte_pmd_bcm/bcm.c                        | 11817 +++++++++++++++++++
 lib/librte_pmd_bcm/bcm.h                        |  1998 ++++
 lib/librte_pmd_bcm/bcm_ethdev.c                 |   544 +
 lib/librte_pmd_bcm/bcm_ethdev.h                 |    79 +
 lib/librte_pmd_bcm/bcm_logs.h                   |    51 +
 lib/librte_pmd_bcm/bcm_rxtx.c                   |   487 +
 lib/librte_pmd_bcm/bcm_rxtx.h                   |    85 +
 lib/librte_pmd_bcm/bcm_stats.c                  |  1619 +++
 lib/librte_pmd_bcm/bcm_stats.h                  |   633 +
 lib/librte_pmd_bcm/bcm_vfpf.c                   |   597 +
 lib/librte_pmd_bcm/bcm_vfpf.h                   |   315 +
 lib/librte_pmd_bcm/debug.c                      |   113 +
 lib/librte_pmd_bcm/ecore_fw_defs.h              |   423 +
 lib/librte_pmd_bcm/ecore_hsi.h                  |  6349 ++++++++++
 lib/librte_pmd_bcm/ecore_init.h                 |   842 ++
 lib/librte_pmd_bcm/ecore_init_ops.h             |   886 ++
 lib/librte_pmd_bcm/ecore_mfw_req.h              |   207 +
 lib/librte_pmd_bcm/ecore_reg.h                  |  3664 ++++++
 lib/librte_pmd_bcm/ecore_sp.c                   |  5455 +++++++++
 lib/librte_pmd_bcm/ecore_sp.h                   |  1796 +++
 lib/librte_pmd_bcm/elink.c                      | 13378 ++++++++++++++++++++++
 lib/librte_pmd_bcm/elink.h                      |   610 +
 30 files changed, 52073 insertions(+)
 create mode 100644 lib/librte_pmd_bcm/Makefile
 create mode 100644 lib/librte_pmd_bcm/bcm.c
 create mode 100644 lib/librte_pmd_bcm/bcm.h
 create mode 100644 lib/librte_pmd_bcm/bcm_ethdev.c
 create mode 100644 lib/librte_pmd_bcm/bcm_ethdev.h
 create mode 100644 lib/librte_pmd_bcm/bcm_logs.h
 create mode 100644 lib/librte_pmd_bcm/bcm_rxtx.c
 create mode 100644 lib/librte_pmd_bcm/bcm_rxtx.h
 create mode 100644 lib/librte_pmd_bcm/bcm_stats.c
 create mode 100644 lib/librte_pmd_bcm/bcm_stats.h
 create mode 100644 lib/librte_pmd_bcm/bcm_vfpf.c
 create mode 100644 lib/librte_pmd_bcm/bcm_vfpf.h
 create mode 100644 lib/librte_pmd_bcm/debug.c
 create mode 100644 lib/librte_pmd_bcm/ecore_fw_defs.h
 create mode 100644 lib/librte_pmd_bcm/ecore_hsi.h
 create mode 100644 lib/librte_pmd_bcm/ecore_init.h
 create mode 100644 lib/librte_pmd_bcm/ecore_init_ops.h
 create mode 100644 lib/librte_pmd_bcm/ecore_mfw_req.h
 create mode 100644 lib/librte_pmd_bcm/ecore_reg.h
 create mode 100644 lib/librte_pmd_bcm/ecore_sp.c
 create mode 100644 lib/librte_pmd_bcm/ecore_sp.h
 create mode 100644 lib/librte_pmd_bcm/elink.c
 create mode 100644 lib/librte_pmd_bcm/elink.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2015-02-13  8:31 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-06 18:36 [PATCH 0/4] Broadcom 10G NIC Poll Mode Driver Stephen Hemminger
     [not found] ` <1423247795-22399-1-git-send-email-stephen-OTpzqLSitTUnbdJkjeBofR2eb7JE58TQ@public.gmane.org>
2015-02-06 18:36   ` [PATCH 1/4] pci: allow access to PCI config space Stephen Hemminger
     [not found]     ` <1423247795-22399-2-git-send-email-stephen-OTpzqLSitTUnbdJkjeBofR2eb7JE58TQ@public.gmane.org>
2015-02-09  9:45       ` David Marchand
     [not found]         ` <CALwxeUu7Ur-yXMcKu7Zkq16zqR6f5vU8DEX4Z8CET9G2ttjKgA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-10 23:49           ` Stephen Hemminger
     [not found]     ` <c058fdefd5564f3f96bd21593c9ea19a@BRMWP-EXMB11.corp.brocade.com>
     [not found]       ` <c058fdefd5564f3f96bd21593c9ea19a-sI283RzA5cMA50eAn2D9H4CDckiq/fhJZeezCHUQhQ4@public.gmane.org>
2015-02-11  1:23         ` Stephen Hemminger
2015-02-06 18:36   ` [PATCH 2/4] bcm: add BCM pci device ids Stephen Hemminger
2015-02-06 18:36   ` [PATCH 3/4] bcm: new poll mode driver Stephen Hemminger
2015-02-06 18:36   ` [PATCH 4/4] bcm: enable BCM poll mode driver in config Stephen Hemminger
2015-02-07  9:15   ` [PATCH 0/4] Broadcom 10G NIC Poll Mode Driver Jun Xiao
     [not found]     ` <CACyt=TG8EgADhVpiWN4cu56z904hBFH4LyUJAPvgrWhddqemBQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-07 15:15       ` Stephen Hemminger
     [not found]         ` <CAOaVG17Yb0yYVxrpm_qo1w3mEyZXDzXN+LX2K8GAZ=7pc5Hv_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-07 16:05           ` Jun Xiao
     [not found]             ` <CACyt=TFiM3m3GkDs8HhoYRat7GEf6TE4hJYn31rR-TU=+=N4EQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-07 22:23               ` Stephen Hemminger
2015-02-12 14:00           ` Thomas Monjalon
2015-02-12 14:33             ` Stephen Hemminger
     [not found]               ` <20150212063353.6fb8d6a6-CA4OZQ/Yy2Lykuyl+CZolw@public.gmane.org>
2015-02-12 14:56                 ` Thomas Monjalon
     [not found]               ` <0a8c8ae93e354bf0a74dd8ade9d1cc70@BRMWP-EXMB11.corp.brocade.com>
     [not found]                 ` <0a8c8ae93e354bf0a74dd8ade9d1cc70-sI283RzA5cMA50eAn2D9H4CDckiq/fhJZeezCHUQhQ4@public.gmane.org>
2015-02-12 21:45                   ` Stephen Hemminger
     [not found]                     ` <20150212164550.0a2b8e2a-CA4OZQ/Yy2Lykuyl+CZolw@public.gmane.org>
2015-02-13  8:31                       ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).