* [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support
@ 2015-09-25 2:31 Michael Qiu
2015-10-15 5:25 ` Chen, Jing D
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Michael Qiu @ 2015-09-25 2:31 UTC (permalink / raw)
To: dev
Boulder Rapid is Intel new NIC within fm10k family.
This patch make DPDK driver support this new NIC.
Signed-off-by: Michael Qiu <michael.qiu@intel.com>
---
drivers/net/fm10k/base/fm10k_osdep.h | 4 ++++
lib/librte_eal/common/include/rte_pci_dev_ids.h | 2 ++
2 files changed, 6 insertions(+)
diff --git a/drivers/net/fm10k/base/fm10k_osdep.h b/drivers/net/fm10k/base/fm10k_osdep.h
index 64f09dc..4ba96f1 100644
--- a/drivers/net/fm10k/base/fm10k_osdep.h
+++ b/drivers/net/fm10k/base/fm10k_osdep.h
@@ -44,6 +44,10 @@ POSSIBILITY OF SUCH DAMAGE.
/* TODO: this does not look like it should be used... */
#define ERROR_REPORT2(v1, v2, v3) do { } while (0)
+#ifndef BOULDER_RAPIDS_HW
+#define BOULDER_RAPIDS_HW
+#endif
+
#define STATIC static
#define DEBUGFUNC(F) DEBUGOUT(F "\n");
#define DEBUGOUT(S, args...) PMD_DRV_LOG_RAW(DEBUG, S, ##args)
diff --git a/lib/librte_eal/common/include/rte_pci_dev_ids.h b/lib/librte_eal/common/include/rte_pci_dev_ids.h
index cf2cf70..b2d6964 100644
--- a/lib/librte_eal/common/include/rte_pci_dev_ids.h
+++ b/lib/librte_eal/common/include/rte_pci_dev_ids.h
@@ -510,8 +510,10 @@ RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_10G_BASE_T)
/*************** Physical FM10K devices from fm10k_type.h ***************/
#define FM10K_DEV_ID_PF 0x15A4
+#define FM10K_DEV_ID_SDI_FM10420_QDA2 0x15D0
RTE_PCI_DEV_ID_DECL_FM10K(PCI_VENDOR_ID_INTEL, FM10K_DEV_ID_PF)
+RTE_PCI_DEV_ID_DECL_FM10K(PCI_VENDOR_ID_INTEL, FM10K_DEV_ID_SDI_FM10420_QDA2)
/****************** Virtual IGB devices from e1000_hw.h ******************/
--
1.9.3
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support
2015-09-25 2:31 [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
@ 2015-10-15 5:25 ` Chen, Jing D
2015-10-19 8:44 ` He, Shaopeng
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support Michael Qiu
2 siblings, 0 replies; 8+ messages in thread
From: Chen, Jing D @ 2015-10-15 5:25 UTC (permalink / raw)
To: Qiu, Michael, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Michael Qiu
> Sent: Friday, September 25, 2015 10:31 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support
>
> Boulder Rapid is Intel new NIC within fm10k family.
> This patch make DPDK driver support this new NIC.
>
> Signed-off-by: Michael Qiu <michael.qiu@intel.com>
Acked-by : Jing Chen <jing.d.chen@intel.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support
2015-09-25 2:31 [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
2015-10-15 5:25 ` Chen, Jing D
@ 2015-10-19 8:44 ` He, Shaopeng
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support Michael Qiu
2 siblings, 0 replies; 8+ messages in thread
From: He, Shaopeng @ 2015-10-19 8:44 UTC (permalink / raw)
To: Qiu, Michael, dev
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Michael Qiu
> Sent: Friday, September 25, 2015 10:31 AM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support
>
> Boulder Rapid is Intel new NIC within fm10k family.
> This patch make DPDK driver support this new NIC.
>
> Signed-off-by: Michael Qiu <michael.qiu@intel.com>
Acked-by : Shaopeng He <shaopeng.he@intel.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support
2015-09-25 2:31 [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
2015-10-15 5:25 ` Chen, Jing D
2015-10-19 8:44 ` He, Shaopeng
@ 2015-10-26 4:53 ` Michael Qiu
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 1/2] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
` (3 more replies)
2 siblings, 4 replies; 8+ messages in thread
From: Michael Qiu @ 2015-10-26 4:53 UTC (permalink / raw)
To: dev
Boulder Rapid is a new 100G NIC of Intel fm10k family, this patch
set enable it in DPDK.
change log:
V2 --> v1
update the release notes
Michael Qiu (2):
fm10k: add Intel Boulder Rapid NIC support
doc: release note update for Boulder Rapid Support
doc/guides/rel_notes/release_2_2.rst | 3 +++
drivers/net/fm10k/base/fm10k_osdep.h | 4 ++++
lib/librte_eal/common/include/rte_pci_dev_ids.h | 2 ++
3 files changed, 9 insertions(+)
--
1.9.3
^ permalink raw reply [flat|nested] 8+ messages in thread
* [dpdk-dev] [PATCH v2 1/2] fm10k: add Intel Boulder Rapid NIC support
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support Michael Qiu
@ 2015-10-26 4:53 ` Michael Qiu
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 2/2] doc: release note update for Boulder Rapid Support Michael Qiu
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Michael Qiu @ 2015-10-26 4:53 UTC (permalink / raw)
To: dev
Boulder Rapid is Intel new NIC within fm10k family.
This patch make DPDK driver support this new NIC.
Signed-off-by: Michael Qiu <michael.qiu@intel.com>
Acked-by : Jing Chen <jing.d.chen@intel.com>
Acked-by : Shaopeng He <shaopeng.he@intel.com>
---
drivers/net/fm10k/base/fm10k_osdep.h | 4 ++++
lib/librte_eal/common/include/rte_pci_dev_ids.h | 2 ++
2 files changed, 6 insertions(+)
diff --git a/drivers/net/fm10k/base/fm10k_osdep.h b/drivers/net/fm10k/base/fm10k_osdep.h
index 64f09dc..4ba96f1 100644
--- a/drivers/net/fm10k/base/fm10k_osdep.h
+++ b/drivers/net/fm10k/base/fm10k_osdep.h
@@ -44,6 +44,10 @@ POSSIBILITY OF SUCH DAMAGE.
/* TODO: this does not look like it should be used... */
#define ERROR_REPORT2(v1, v2, v3) do { } while (0)
+#ifndef BOULDER_RAPIDS_HW
+#define BOULDER_RAPIDS_HW
+#endif
+
#define STATIC static
#define DEBUGFUNC(F) DEBUGOUT(F "\n");
#define DEBUGOUT(S, args...) PMD_DRV_LOG_RAW(DEBUG, S, ##args)
diff --git a/lib/librte_eal/common/include/rte_pci_dev_ids.h b/lib/librte_eal/common/include/rte_pci_dev_ids.h
index 265e66c..5a44cbe 100644
--- a/lib/librte_eal/common/include/rte_pci_dev_ids.h
+++ b/lib/librte_eal/common/include/rte_pci_dev_ids.h
@@ -516,8 +516,10 @@ RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_10G_BASE_T4)
/*************** Physical FM10K devices from fm10k_type.h ***************/
#define FM10K_DEV_ID_PF 0x15A4
+#define FM10K_DEV_ID_SDI_FM10420_QDA2 0x15D0
RTE_PCI_DEV_ID_DECL_FM10K(PCI_VENDOR_ID_INTEL, FM10K_DEV_ID_PF)
+RTE_PCI_DEV_ID_DECL_FM10K(PCI_VENDOR_ID_INTEL, FM10K_DEV_ID_SDI_FM10420_QDA2)
/****************** Virtual IGB devices from e1000_hw.h ******************/
--
1.9.3
^ permalink raw reply [flat|nested] 8+ messages in thread
* [dpdk-dev] [PATCH v2 2/2] doc: release note update for Boulder Rapid Support
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support Michael Qiu
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 1/2] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
@ 2015-10-26 4:53 ` Michael Qiu
2015-10-28 8:29 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support He, Shaopeng
2015-10-29 22:45 ` Thomas Monjalon
3 siblings, 0 replies; 8+ messages in thread
From: Michael Qiu @ 2015-10-26 4:53 UTC (permalink / raw)
To: dev
Update the release note for Intel's new NIC Boulder Rapid.
Signed-off-by: Michael Qiu <michael.qiu@intel.com>
---
doc/guides/rel_notes/release_2_2.rst | 3 +++
1 file changed, 3 insertions(+)
diff --git a/doc/guides/rel_notes/release_2_2.rst b/doc/guides/rel_notes/release_2_2.rst
index ab1c25f..7b34786 100644
--- a/doc/guides/rel_notes/release_2_2.rst
+++ b/doc/guides/rel_notes/release_2_2.rst
@@ -9,6 +9,9 @@ New Features
* Added support for Jumbo Frames.
* Optimize forwarding performance for Chelsio T5 40GbE cards.
+* **Intel new NIC Boulder Rapid support.**
+
+ Boulder Rapid is a new NIC of Intel's fm10k family.
Resolved Issues
---------------
--
1.9.3
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support Michael Qiu
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 1/2] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 2/2] doc: release note update for Boulder Rapid Support Michael Qiu
@ 2015-10-28 8:29 ` He, Shaopeng
2015-10-29 22:45 ` Thomas Monjalon
3 siblings, 0 replies; 8+ messages in thread
From: He, Shaopeng @ 2015-10-28 8:29 UTC (permalink / raw)
To: Qiu, Michael, dev
> -----Original Message-----
> From: Qiu, Michael
> Sent: Monday, October 26, 2015 12:54 PM
> To: dev@dpdk.org
> Cc: He, Shaopeng; Chen, Jing D; Qiu, Michael
> Subject: [PATCH v2 0/2] Intel new NIC Boulder Rapid support
>
> Boulder Rapid is a new 100G NIC of Intel fm10k family, this patch set enable it
> in DPDK.
>
> change log:
> V2 --> v1
> update the release notes
>
> Michael Qiu (2):
> fm10k: add Intel Boulder Rapid NIC support
> doc: release note update for Boulder Rapid Support
>
> doc/guides/rel_notes/release_2_2.rst | 3 +++
> drivers/net/fm10k/base/fm10k_osdep.h | 4 ++++
> lib/librte_eal/common/include/rte_pci_dev_ids.h | 2 ++
> 3 files changed, 9 insertions(+)
>
> --
> 1.9.3
Acked-by : Shaopeng He <shaopeng.he@intel.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support Michael Qiu
` (2 preceding siblings ...)
2015-10-28 8:29 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support He, Shaopeng
@ 2015-10-29 22:45 ` Thomas Monjalon
3 siblings, 0 replies; 8+ messages in thread
From: Thomas Monjalon @ 2015-10-29 22:45 UTC (permalink / raw)
To: Michael Qiu; +Cc: dev
2015-10-26 12:53, Michael Qiu:
> Boulder Rapid is a new 100G NIC of Intel fm10k family, this patch
> set enable it in DPDK.
>
> change log:
> V2 --> v1
> update the release notes
>
> Michael Qiu (2):
> fm10k: add Intel Boulder Rapid NIC support
> doc: release note update for Boulder Rapid Support
Applied, thanks
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2015-10-29 22:46 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-25 2:31 [dpdk-dev] [PATCH] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
2015-10-15 5:25 ` Chen, Jing D
2015-10-19 8:44 ` He, Shaopeng
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support Michael Qiu
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 1/2] fm10k: add Intel Boulder Rapid NIC support Michael Qiu
2015-10-26 4:53 ` [dpdk-dev] [PATCH v2 2/2] doc: release note update for Boulder Rapid Support Michael Qiu
2015-10-28 8:29 ` [dpdk-dev] [PATCH v2 0/2] Intel new NIC Boulder Rapid support He, Shaopeng
2015-10-29 22:45 ` 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).