All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Zhang, Qi Z" <qi.z.zhang@intel.com>
To: "Huang, Wei" <wei.huang@intel.com>, "dev@dpdk.org" <dev@dpdk.org>,
	"Xu, Rosen" <rosen.xu@intel.com>
Cc: "stable@dpdk.org" <stable@dpdk.org>,
	"Zhang, Tianfei" <tianfei.zhang@intel.com>
Subject: Re: [dpdk-dev] [PATCH v11 0/4] raw/ifpga: add extra OPAE APIs
Date: Thu, 21 Jan 2021 07:08:58 +0000	[thread overview]
Message-ID: <b1df0e86defa475e81a0266db3596e30@intel.com> (raw)
In-Reply-To: <1611209014-4031-1-git-send-email-wei.huang@intel.com>



> -----Original Message-----
> From: Huang, Wei <wei.huang@intel.com>
> Sent: Thursday, January 21, 2021 2:04 PM
> To: dev@dpdk.org; Xu, Rosen <rosen.xu@intel.com>; Zhang, Qi Z
> <qi.z.zhang@intel.com>
> Cc: stable@dpdk.org; Zhang, Tianfei <tianfei.zhang@intel.com>; Huang, Wei
> <wei.huang@intel.com>
> Subject: [PATCH v11 0/4] raw/ifpga: add extra OPAE APIs
> 
> Cyborg is part of OpenStack, it needs some OPAE APIs to manage devices with
> Intel FPGA. The first three patches implement extra APIs to meet Cyborg
> requirement. The last patch add an example to show how to use these APIs.
> 
> Main changes from v10:
> - remove call of rte_eal_init() and rte_eal_cleanup()
> - rename opae_init_eal() to opae_init()
> - rename opae_cleanup_eal() to opae_cleanup()
> 
> Wei Huang (4):
>   raw/ifpga: add fpga rsu function
>   raw/ifpga: add fpga property get function
>   raw/ifpga: add OPAE API for OpenStack Cyborg
>   examples/ifpga: add example for opae ifpga API
> 
>  MAINTAINERS                                |    1 +
>  doc/guides/sample_app_ug/ifpga.rst         |  435 +++++
>  doc/guides/sample_app_ug/index.rst         |    1 +
>  drivers/raw/ifpga/base/ifpga_api.c         |   34 +
>  drivers/raw/ifpga/base/ifpga_defines.h     |    1 +
>  drivers/raw/ifpga/base/ifpga_feature_dev.c |   21 +
>  drivers/raw/ifpga/base/ifpga_feature_dev.h |    1 +
>  drivers/raw/ifpga/base/ifpga_fme.c         |   36 +-
>  drivers/raw/ifpga/base/ifpga_fme_rsu.c     |  435 +++++
>  drivers/raw/ifpga/base/ifpga_hw.h          |    1 +
>  drivers/raw/ifpga/base/ifpga_sec_mgr.c     |  639 +++++++
>  drivers/raw/ifpga/base/ifpga_sec_mgr.h     |   89 +
>  drivers/raw/ifpga/base/meson.build         |    2 +
>  drivers/raw/ifpga/base/opae_hw_api.c       |   77 +
>  drivers/raw/ifpga/base/opae_hw_api.h       |   13 +
>  drivers/raw/ifpga/base/opae_ifpga_hw_api.h |    1 +
>  drivers/raw/ifpga/base/opae_intel_max10.c  |   48 +
>  drivers/raw/ifpga/base/opae_intel_max10.h  |   44 +
>  drivers/raw/ifpga/ifpga_opae_api.c         | 1793 ++++++++++++++++++++
>  drivers/raw/ifpga/ifpga_opae_api.h         |  248 +++
>  drivers/raw/ifpga/ifpga_rawdev.c           |  352 ++++
>  drivers/raw/ifpga/ifpga_rawdev.h           |   50 +-
>  drivers/raw/ifpga/meson.build              |    4 +-
>  examples/ifpga/Makefile                    |   45 +
>  examples/ifpga/commands.c                  | 1321 ++++++++++++++
>  examples/ifpga/commands.h                  |   16 +
>  examples/ifpga/main.c                      |   41 +
>  examples/ifpga/meson.build                 |   19 +
>  28 files changed, 5764 insertions(+), 4 deletions(-)  create mode 100644
> doc/guides/sample_app_ug/ifpga.rst
>  create mode 100644 drivers/raw/ifpga/base/ifpga_fme_rsu.c
>  create mode 100644 drivers/raw/ifpga/base/ifpga_sec_mgr.c
>  create mode 100644 drivers/raw/ifpga/base/ifpga_sec_mgr.h
>  create mode 100644 drivers/raw/ifpga/ifpga_opae_api.c
>  create mode 100644 drivers/raw/ifpga/ifpga_opae_api.h
>  create mode 100644 examples/ifpga/Makefile  create mode 100644
> examples/ifpga/commands.c  create mode 100644
> examples/ifpga/commands.h  create mode 100644 examples/ifpga/main.c
> create mode 100644 examples/ifpga/meson.build
> 
> --
> 2.29.2


Applied to dpdk-next-net-intel.

Thanks
Qi

      parent reply	other threads:[~2021-01-21  7:09 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-21  6:03 [dpdk-dev] [PATCH v11 0/4] raw/ifpga: add extra OPAE APIs Wei Huang
2021-01-21  6:03 ` [dpdk-dev] [PATCH v11 1/4] raw/ifpga: add fpga rsu function Wei Huang
2021-01-21 16:30   ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
2021-01-22  2:18     ` Huang, Wei
2021-01-25 10:01       ` Ferruh Yigit
2021-01-25 10:33         ` Xu, Rosen
2021-01-26  1:16           ` Huang, Wei
2021-01-21  6:03 ` [dpdk-dev] [PATCH v11 2/4] raw/ifpga: add fpga property get function Wei Huang
2021-01-21  6:03 ` [dpdk-dev] [PATCH v11 3/4] raw/ifpga: add OPAE API for OpenStack Cyborg Wei Huang
2021-01-21 16:29   ` Ferruh Yigit
2021-01-22  2:43     ` Huang, Wei
2021-01-25 10:07       ` Ferruh Yigit
2021-01-21 16:30   ` Ferruh Yigit
2021-01-22  3:16     ` Huang, Wei
2021-01-21 16:33   ` Ferruh Yigit
2021-01-22  3:25     ` Huang, Wei
2021-01-21  6:03 ` [dpdk-dev] [PATCH v11 4/4] examples/ifpga: add example for opae ifpga API Wei Huang
2021-01-21 16:49   ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
2021-01-22  3:52     ` Huang, Wei
2021-01-21  7:08 ` Zhang, Qi Z [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b1df0e86defa475e81a0266db3596e30@intel.com \
    --to=qi.z.zhang@intel.com \
    --cc=dev@dpdk.org \
    --cc=rosen.xu@intel.com \
    --cc=stable@dpdk.org \
    --cc=tianfei.zhang@intel.com \
    --cc=wei.huang@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.