Linux-FPGA Archive mirror
 help / color / mirror / Atom feed
From: Xu Yilun <yilun.xu@intel.com>
To: gregkh@linuxfoundation.org
Cc: yilun.xu@intel.com, linux-fpga@vger.kernel.org, hao.wu@intel.com,
	mdf@kernel.org
Subject: [GIT PULL] FPGA Manager changes for 6.6-rc1
Date: Mon, 14 Aug 2023 17:49:27 +0800	[thread overview]
Message-ID: <ZNn4p4zpwj3iCk4u@yilunxu-OptiPlex-7050> (raw)

The following changes since commit 06c2afb862f9da8dc5efa4b6076a0e48c3fbaaa5:

  Linux 6.5-rc1 (2023-07-09 13:53:13 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-for-6.6-rc1

for you to fetch changes up to 1a22ec09a2c1d367a43cb7f837c7a8719e7fe975:

  fpga: region: make fpga_region_class a static const structure (2023-08-11 23:04:21 +0800)

----------------------------------------------------------------
FPGA Manager changes for 6.6-rc1

- Marco's change fixes kernel-doc warnings.
- Yangtao's change converts to use devm_platform_ioremap_resource().
- Peter's change uses HWMON defined Macros for HWMON interfaces support.
- Rob's change explicitly includes correct DT includes.
- Marco's change adds KUnit tests for FPGA core.
- Xiongfeng's change converts to use pci_find_vsec_capability().
- Ivan's change makes fpga_xxx_class a static const structure.

All patches have been reviewed on the mailing list, and have been in the
last linux-next releases (as part of our for-next branch).

Signed-off-by: Xu Yilun <yilun.xu@intel.com>

----------------------------------------------------------------
Ivan Orlov (3):
      fpga: bridge: make fpga_bridge_class a static const structure
      fpga: fpga-mgr: make fpga_mgr_class a static const structure
      fpga: region: make fpga_region_class a static const structure

Marco Pagani (6):
      fpga: region: fix kernel-doc
      fpga: bridge: fix kernel-doc
      fpga: add an initial KUnit suite for the FPGA Manager
      fpga: add an initial KUnit suite for the FPGA Bridge
      fpga: add an initial KUnit suite for the FPGA Region
      fpga: add configuration for the FPGA KUnit test suites.

Peter Colberg (1):
      fpga: dfl: fme: use SI unit prefix macros

Rob Herring (1):
      fpga: Explicitly include correct DT includes

Xiongfeng Wang (1):
      fpga: dfl-pci: Use pci_find_vsec_capability() to simplify the code

Yangtao Li (8):
      fpga: bridge: Convert to devm_platform_ioremap_resource()
      fpga: dfl-fme-mgr: Convert to devm_platform_ioremap_resource()
      fpga: xilinx-pr-decoupler: Convert to devm_platform_ioremap_resource()
      fpga: fpga-mgr: socfpga: Convert to devm_platform_ioremap_resource()
      fpga: fpga-mgr: ts73xx: Convert to devm_platform_ioremap_resource()
      fpga: zynq-fpga: Convert to devm_platform_ioremap_resource()
      fpga: fpga-mgr: altera-pr-ip: Convert to devm_platform_ioremap_resource()
      fpga: socfpga-a10: Convert to devm_platform_ioremap_resource()

 drivers/fpga/Kconfig                  |   2 +
 drivers/fpga/Makefile                 |   3 +
 drivers/fpga/altera-fpga2sdram.c      |   2 +-
 drivers/fpga/altera-freeze-bridge.c   |  11 +-
 drivers/fpga/altera-pr-ip-core-plat.c |   9 +-
 drivers/fpga/dfl-fme-main.c           |  17 +-
 drivers/fpga/dfl-fme-mgr.c            |   4 +-
 drivers/fpga/dfl-pci.c                |  15 +-
 drivers/fpga/fpga-bridge.c            |  48 ++---
 drivers/fpga/fpga-mgr.c               |  25 ++-
 drivers/fpga/fpga-region.c            |  37 ++--
 drivers/fpga/microchip-spi.c          |   2 +-
 drivers/fpga/of-fpga-region.c         |   2 +
 drivers/fpga/socfpga-a10.c            |   7 +-
 drivers/fpga/socfpga.c                |   7 +-
 drivers/fpga/stratix10-soc.c          |   1 +
 drivers/fpga/tests/.kunitconfig       |   5 +
 drivers/fpga/tests/Kconfig            |  11 ++
 drivers/fpga/tests/Makefile           |   6 +
 drivers/fpga/tests/fpga-bridge-test.c | 175 ++++++++++++++++++
 drivers/fpga/tests/fpga-mgr-test.c    | 327 ++++++++++++++++++++++++++++++++++
 drivers/fpga/tests/fpga-region-test.c | 211 ++++++++++++++++++++++
 drivers/fpga/ts73xx-fpga.c            |   4 +-
 drivers/fpga/xilinx-pr-decoupler.c    |   4 +-
 drivers/fpga/zynq-fpga.c              |   4 +-
 25 files changed, 828 insertions(+), 111 deletions(-)
 create mode 100644 drivers/fpga/tests/.kunitconfig
 create mode 100644 drivers/fpga/tests/Kconfig
 create mode 100644 drivers/fpga/tests/Makefile
 create mode 100644 drivers/fpga/tests/fpga-bridge-test.c
 create mode 100644 drivers/fpga/tests/fpga-mgr-test.c
 create mode 100644 drivers/fpga/tests/fpga-region-test.c

             reply	other threads:[~2023-08-14  9:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-14  9:49 Xu Yilun [this message]
2023-08-22 13:53 ` [GIT PULL] FPGA Manager changes for 6.6-rc1 Greg KH

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=ZNn4p4zpwj3iCk4u@yilunxu-OptiPlex-7050 \
    --to=yilun.xu@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hao.wu@intel.com \
    --cc=linux-fpga@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 read-only IMAP folder(s) and NNTP newsgroup(s).