From: Wu Hao <hao.wu@intel.com>
To: gregkh@linuxfoundation.org, mdf@kernel.org, linux-fpga@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, linux-api@vger.kernel.org,
atull@kernel.org
Subject: Re: [PATCH v2 00/11] FPGA DFL updates
Date: Wed, 10 Jul 2019 13:07:46 +0800 [thread overview]
Message-ID: <20190710050746.GA28620@hao-dev> (raw)
In-Reply-To: <1562286238-11413-1-git-send-email-hao.wu@intel.com>
On Fri, Jul 05, 2019 at 08:23:47AM +0800, Wu Hao wrote:
> Hi Greg / Moritz
>
> This is v2 patchset which adds more features to FPGA DFL. This patchset
> is made on top of patch[1] and char-misc-next tree. Documentation patch
> for DFL is dropped from this patchset, and will resubmit it later to
> avoid conflict.
Hi Greg,
Did you get a chance to take a look at this new version to see if these
patches are good to take?
Hope we can catch up with the merge window.
Thanks
Hao
>
> Main changes from v1:
> - remove DRV/MODULE_VERSION modifications. (patch #1, #3, #4, #6)
> - remove argsz from new ioctls. (patch #2)
> - replace sysfs_create/remove_* with device_add/remove_* for sysfs entries.
> (patch #5, #8, #11)
>
> [1] [PATCH] fpga: dfl: use driver core functions, not sysfs ones.
> https://lkml.org/lkml/2019/7/4/36
>
> Wu Hao (11):
> fpga: dfl: fme: support 512bit data width PR
> fpga: dfl: fme: add DFL_FPGA_FME_PORT_RELEASE/ASSIGN ioctl support.
> fpga: dfl: pci: enable SRIOV support.
> fpga: dfl: afu: add AFU state related sysfs interfaces
> fpga: dfl: afu: add userclock sysfs interfaces.
> fpga: dfl: add id_table for dfl private feature driver
> fpga: dfl: afu: export __port_enable/disable function.
> fpga: dfl: afu: add error reporting support.
> fpga: dfl: afu: add STP (SignalTap) support
> fpga: dfl: fme: add capability sysfs interfaces
> fpga: dfl: fme: add global error reporting support
>
> Documentation/ABI/testing/sysfs-platform-dfl-fme | 98 ++++++
> Documentation/ABI/testing/sysfs-platform-dfl-port | 104 ++++++
> drivers/fpga/Makefile | 3 +-
> drivers/fpga/dfl-afu-error.c | 225 +++++++++++++
> drivers/fpga/dfl-afu-main.c | 328 +++++++++++++++++-
> drivers/fpga/dfl-afu.h | 7 +
> drivers/fpga/dfl-fme-error.c | 385 ++++++++++++++++++++++
> drivers/fpga/dfl-fme-main.c | 93 +++++-
> drivers/fpga/dfl-fme-mgr.c | 110 ++++++-
> drivers/fpga/dfl-fme-pr.c | 50 ++-
> drivers/fpga/dfl-fme.h | 7 +-
> drivers/fpga/dfl-pci.c | 39 +++
> drivers/fpga/dfl.c | 166 +++++++++-
> drivers/fpga/dfl.h | 54 ++-
> include/uapi/linux/fpga-dfl.h | 19 ++
> 15 files changed, 1617 insertions(+), 71 deletions(-)
> create mode 100644 drivers/fpga/dfl-afu-error.c
> create mode 100644 drivers/fpga/dfl-fme-error.c
>
> --
> 1.8.3.1
next prev parent reply other threads:[~2019-07-10 5:07 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-05 0:23 [PATCH v2 00/11] FPGA DFL updates Wu Hao
2019-07-05 0:23 ` [PATCH v2 01/11] fpga: dfl: fme: support 512bit data width PR Wu Hao
2019-07-05 0:23 ` [PATCH v2 02/11] fpga: dfl: fme: add DFL_FPGA_FME_PORT_RELEASE/ASSIGN ioctl support Wu Hao
2019-07-05 0:23 ` [PATCH v2 03/11] fpga: dfl: pci: enable SRIOV support Wu Hao
2019-07-05 0:23 ` [PATCH v2 04/11] fpga: dfl: afu: add AFU state related sysfs interfaces Wu Hao
2019-07-05 0:23 ` [PATCH v2 05/11] fpga: dfl: afu: add userclock " Wu Hao
2019-07-05 0:23 ` [PATCH v2 06/11] fpga: dfl: add id_table for dfl private feature driver Wu Hao
2019-07-05 0:23 ` [PATCH v2 07/11] fpga: dfl: afu: export __port_enable/disable function Wu Hao
2019-07-05 0:23 ` [PATCH v2 08/11] fpga: dfl: afu: add error reporting support Wu Hao
2019-07-05 0:23 ` [PATCH v2 09/11] fpga: dfl: afu: add STP (SignalTap) support Wu Hao
2019-07-05 0:23 ` [PATCH v2 10/11] fpga: dfl: fme: add capability sysfs interfaces Wu Hao
2019-07-05 0:23 ` [PATCH v2 11/11] fpga: dfl: fme: add global error reporting support Wu Hao
2019-07-10 5:07 ` Wu Hao [this message]
2019-07-10 5:54 ` [PATCH v2 00/11] FPGA DFL updates Greg KH
2019-07-10 7:22 ` Wu Hao
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=20190710050746.GA28620@hao-dev \
--to=hao.wu@intel.com \
--cc=atull@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-api@vger.kernel.org \
--cc=linux-fpga@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mdf@kernel.org \
/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 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).