DPDK website maintenance
 help / color / mirror / Atom feed
* [PATCH] add supported raw devices
@ 2023-03-29  7:33 Junfeng Guo
  2024-01-05 16:40 ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: Junfeng Guo @ 2023-03-29  7:33 UTC (permalink / raw)
  To: thomas, bruce.richardson; +Cc: web, Junfeng Guo

cnxk_bphy was added in DPDK 21.08.
cnxk_gpio was added in DPDK 22.03.
dpaa2_cmdif was added in DPDK 18.05.
ifpga was added in DPDK 18.05.
ntb was added in DPDK 19.08.

Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
---
 content/supported/_index.md                | 6 +++++-
 content/supported/miscellaneous/_index.md  | 6 ++++++
 content/supported/miscellaneous/intel.md   | 8 ++++++++
 content/supported/miscellaneous/marvell.md | 8 ++++++++
 content/supported/miscellaneous/nxp.md     | 7 +++++++
 5 files changed, 34 insertions(+), 1 deletion(-)
 create mode 100644 content/supported/miscellaneous/_index.md
 create mode 100644 content/supported/miscellaneous/intel.md
 create mode 100644 content/supported/miscellaneous/marvell.md
 create mode 100644 content/supported/miscellaneous/nxp.md

diff --git a/content/supported/_index.md b/content/supported/_index.md
index b3bf729..63d6c45 100644
--- a/content/supported/_index.md
+++ b/content/supported/_index.md
@@ -1,6 +1,6 @@
 +++
 title = "Supported Hardware"
-weight = "6"
+weight = "7"
 +++
 
 ## CPUs
@@ -26,3 +26,7 @@ weight = "6"
 ## Baseband Accelerators
 
 {{% children style="card" page="supported/baseband" showhidden="true" sort="name" description="true" %}}
+
+## Miscellaneous
+
+{{% children style="card" page="supported/miscellaneous" showhidden="true" sort="name" description="true" %}}
diff --git a/content/supported/miscellaneous/_index.md b/content/supported/miscellaneous/_index.md
new file mode 100644
index 0000000..a34c7c8
--- /dev/null
+++ b/content/supported/miscellaneous/_index.md
@@ -0,0 +1,6 @@
++++
+title = "Miscellaneous"
+weight = 7
++++
+
+{{% children style="card" showhidden="true" sort="name" description="true" %}}
diff --git a/content/supported/miscellaneous/intel.md b/content/supported/miscellaneous/intel.md
new file mode 100644
index 0000000..2a0d065
--- /dev/null
+++ b/content/supported/miscellaneous/intel.md
@@ -0,0 +1,8 @@
++++
+title = "Intel"
+description = "ifpga, ntb"
+hidden = true
++++
+
+- [ifpga](//doc.dpdk.org/guides/rawdevs/ifpga.html)
+- [ntb](//doc.dpdk.org/guides/rawdevs/ntb.html)
diff --git a/content/supported/miscellaneous/marvell.md b/content/supported/miscellaneous/marvell.md
new file mode 100644
index 0000000..675dfaf
--- /dev/null
+++ b/content/supported/miscellaneous/marvell.md
@@ -0,0 +1,8 @@
++++
+title = "Marvell"
+description = "cnxk_bphy, cnxk_gpio"
+hidden = true
++++
+
+- [cnxk_bphy](//doc.dpdk.org/guides/rawdevs/cnxk_bphy.html)
+- [cnxk_gpio](//doc.dpdk.org/guides/rawdevs/cnxk_gpio.html)
diff --git a/content/supported/miscellaneous/nxp.md b/content/supported/miscellaneous/nxp.md
new file mode 100644
index 0000000..48c4725
--- /dev/null
+++ b/content/supported/miscellaneous/nxp.md
@@ -0,0 +1,7 @@
++++
+title = "NXP"
+description = "dpaa2_cmdif"
+hidden = true
++++
+
+- [dpaa2_cmdif](//doc.dpdk.org/guides/rawdevs/dpaa2_cmdif.html)
-- 
2.34.1


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

* Re: [PATCH] add supported raw devices
  2023-03-29  7:33 [PATCH] add supported raw devices Junfeng Guo
@ 2024-01-05 16:40 ` Thomas Monjalon
  2024-01-08  6:11   ` Guo, Junfeng
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Monjalon @ 2024-01-05 16:40 UTC (permalink / raw)
  To: bruce.richardson, Junfeng Guo; +Cc: web

29/03/2023 09:33, Junfeng Guo:
> cnxk_bphy was added in DPDK 21.08.
> cnxk_gpio was added in DPDK 22.03.
> dpaa2_cmdif was added in DPDK 18.05.
> ifpga was added in DPDK 18.05.
> ntb was added in DPDK 19.08.
> 
> Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> ---
>  content/supported/_index.md                | 6 +++++-
>  content/supported/miscellaneous/_index.md  | 6 ++++++
>  content/supported/miscellaneous/intel.md   | 8 ++++++++
>  content/supported/miscellaneous/marvell.md | 8 ++++++++
>  content/supported/miscellaneous/nxp.md     | 7 +++++++
>  5 files changed, 34 insertions(+), 1 deletion(-)
>  create mode 100644 content/supported/miscellaneous/_index.md
>  create mode 100644 content/supported/miscellaneous/intel.md
>  create mode 100644 content/supported/miscellaneous/marvell.md
>  create mode 100644 content/supported/miscellaneous/nxp.md
> 
> diff --git a/content/supported/_index.md b/content/supported/_index.md
> index b3bf729..63d6c45 100644
> --- a/content/supported/_index.md
> +++ b/content/supported/_index.md
> @@ -1,6 +1,6 @@
>  +++
>  title = "Supported Hardware"
> -weight = "6"
> +weight = "7"

This does not need to change, it is a menu index.

Applied with above fix, sorry for the delay.




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

* RE: [PATCH] add supported raw devices
  2024-01-05 16:40 ` Thomas Monjalon
@ 2024-01-08  6:11   ` Guo, Junfeng
  0 siblings, 0 replies; 3+ messages in thread
From: Guo, Junfeng @ 2024-01-08  6:11 UTC (permalink / raw)
  To: Thomas Monjalon, Richardson, Bruce; +Cc: web


> -----Original Message-----
> From: Thomas Monjalon <thomas@monjalon.net>
> Sent: Saturday, January 6, 2024 00:40
> To: Richardson, Bruce <bruce.richardson@intel.com>; Guo, Junfeng
> <junfeng.guo@intel.com>
> Cc: web@dpdk.org
> Subject: Re: [PATCH] add supported raw devices
> 
> 29/03/2023 09:33, Junfeng Guo:
> > cnxk_bphy was added in DPDK 21.08.
> > cnxk_gpio was added in DPDK 22.03.
> > dpaa2_cmdif was added in DPDK 18.05.
> > ifpga was added in DPDK 18.05.
> > ntb was added in DPDK 19.08.
> >
> > Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
> > ---
> >  content/supported/_index.md                | 6 +++++-
> >  content/supported/miscellaneous/_index.md  | 6 ++++++
> >  content/supported/miscellaneous/intel.md   | 8 ++++++++
> >  content/supported/miscellaneous/marvell.md | 8 ++++++++
> >  content/supported/miscellaneous/nxp.md     | 7 +++++++
> >  5 files changed, 34 insertions(+), 1 deletion(-)
> >  create mode 100644 content/supported/miscellaneous/_index.md
> >  create mode 100644 content/supported/miscellaneous/intel.md
> >  create mode 100644 content/supported/miscellaneous/marvell.md
> >  create mode 100644 content/supported/miscellaneous/nxp.md
> >
> > diff --git a/content/supported/_index.md
> b/content/supported/_index.md
> > index b3bf729..63d6c45 100644
> > --- a/content/supported/_index.md
> > +++ b/content/supported/_index.md
> > @@ -1,6 +1,6 @@
> >  +++
> >  title = "Supported Hardware"
> > -weight = "6"
> > +weight = "7"
> 
> This does not need to change, it is a menu index.
> 
> Applied with above fix, sorry for the delay.

Hi Thomas, thanks for your careful review!

Regards,
Junfeng

> 
> 


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

end of thread, other threads:[~2024-01-08  6:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-29  7:33 [PATCH] add supported raw devices Junfeng Guo
2024-01-05 16:40 ` Thomas Monjalon
2024-01-08  6:11   ` Guo, Junfeng

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