DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids
@ 2017-04-26 19:20 Ajit Khaparde
  2017-04-26 19:20 ` [dpdk-dev] [PATCH v2 2/2] doc: update bnxt.rst Ajit Khaparde
  2017-04-26 19:36 ` [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids Ferruh Yigit
  0 siblings, 2 replies; 3+ messages in thread
From: Ajit Khaparde @ 2017-04-26 19:20 UTC (permalink / raw)
  To: dev

Add support for new device ids.

v2:
Send an updated doc/guides/nics/bnxt.rst along with this.

Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
---
 drivers/net/bnxt/bnxt_ethdev.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c
index 5dc3ff0..7805221 100644
--- a/drivers/net/bnxt/bnxt_ethdev.c
+++ b/drivers/net/bnxt/bnxt_ethdev.c
@@ -60,6 +60,8 @@ static const char bnxt_version[] =
 
 #define PCI_VENDOR_ID_BROADCOM 0x14E4
 
+#define BROADCOM_DEV_ID_STRATUS_NIC 0x1614
+#define BROADCOM_DEV_ID_57414_VF 0x16c1
 #define BROADCOM_DEV_ID_57301 0x16c8
 #define BROADCOM_DEV_ID_57302 0x16c9
 #define BROADCOM_DEV_ID_57304_PF 0x16ca
@@ -94,6 +96,8 @@ static const char bnxt_version[] =
 #define BROADCOM_DEV_ID_57416_MF 0x16ee
 
 static const struct rte_pci_id bnxt_pci_id_map[] = {
+	{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_STRATUS_NIC) },
+	{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57414_VF) },
 	{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57301) },
 	{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57302) },
 	{ RTE_PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, BROADCOM_DEV_ID_57304_PF) },
-- 
2.10.1 (Apple Git-78)

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

* [dpdk-dev] [PATCH v2 2/2] doc: update bnxt.rst
  2017-04-26 19:20 [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids Ajit Khaparde
@ 2017-04-26 19:20 ` Ajit Khaparde
  2017-04-26 19:36 ` [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids Ferruh Yigit
  1 sibling, 0 replies; 3+ messages in thread
From: Ajit Khaparde @ 2017-04-26 19:20 UTC (permalink / raw)
  To: dev

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 947 bytes --]

Update the product family and supported speeds in bnxt.rst

Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
---
 doc/guides/nics/bnxt.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/guides/nics/bnxt.rst b/doc/guides/nics/bnxt.rst
index ad33cd5..9826b35 100644
--- a/doc/guides/nics/bnxt.rst
+++ b/doc/guides/nics/bnxt.rst
@@ -32,10 +32,10 @@ BNXT Poll Mode Driver
 
 The bnxt poll mode library (**librte_pmd_bnxt**) implements support for:
 
-  * **Broadcom NetXtreme-C®/NetXtreme-E® BCM5730X and BCM5740X family of
+  * **Broadcom NetXtreme-C®/NetXtreme-E® BCM5730X and BCM574XX family of
     Ethernet Network Controllers**
 
-    These adapters support Standards compliant 10/25/50Gbps 30MPPS
+    These adapters support Standards compliant 10/25/50/100Gbps 30MPPS
     full-duplex throughput.
 
     Information about the NetXtreme family of adapters can be found in the
-- 
2.10.1 (Apple Git-78)

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

* Re: [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids
  2017-04-26 19:20 [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids Ajit Khaparde
  2017-04-26 19:20 ` [dpdk-dev] [PATCH v2 2/2] doc: update bnxt.rst Ajit Khaparde
@ 2017-04-26 19:36 ` Ferruh Yigit
  1 sibling, 0 replies; 3+ messages in thread
From: Ferruh Yigit @ 2017-04-26 19:36 UTC (permalink / raw)
  To: Ajit Khaparde, dev

On 4/26/2017 8:20 PM, Ajit Khaparde wrote:
> Add support for new device ids.
> 
> v2:
> Send an updated doc/guides/nics/bnxt.rst along with this.
> 
> Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>

Applied to dpdk-next-net/master, thanks.

(squashed into single patch)

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

end of thread, other threads:[~2017-04-26 19:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-26 19:20 [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids Ajit Khaparde
2017-04-26 19:20 ` [dpdk-dev] [PATCH v2 2/2] doc: update bnxt.rst Ajit Khaparde
2017-04-26 19:36 ` [dpdk-dev] [PATCH v2 1/2] bnxt: Add new device ids Ferruh Yigit

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).