mbox series

[GIT,PULL] FPGA Manager late changes for 5.20-rc1

Message ID 20220711064043.GA4044494@yilunxu-OptiPlex-7050 (mailing list archive)
State New
Headers show
Series [GIT,PULL] FPGA Manager late changes for 5.20-rc1 | expand

Pull-request

ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-late-for-5.20-rc1

Message

Xu Yilun July 11, 2022, 6:40 a.m. UTC
The following changes since commit 2df84a757d87fd62869fc401119d429735377ec5:

  fpga: altera-pr-ip: fix unsigned comparison with less than zero (2022-06-10 15:48:23 +0800)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-late-for-5.20-rc1

for you to fetch changes up to ee794221a6f66d054beb1cbc151d8de4083e634e:

  fpga: fpga-mgr: Fix spelling mistake "bitsream" -> "bitstream" (2022-06-29 15:18:18 +0800)

----------------------------------------------------------------
Here is the second set of FPGA changes for 5.20-rc1

FPGA Manager core:
- Ivan's change to support image offset and data size setting for
reprograming. A parse_header() callback is introduced for drivers to
specify these info.
- Colin's immediate spelling fix for Ivan's patch.

Microchip:
- Ivan's change to add Microchip MPF FPGA manager driver. And MAINTAINERS
entry added for the driver.

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>

----------------------------------------------------------------
Colin Ian King (1):
      fpga: fpga-mgr: Fix spelling mistake "bitsream" -> "bitstream"

Ivan Bornyakov (5):
      fpga: fpga-mgr: support bitstream offset in image buffer
      docs: fpga: mgr: document parse_header() callback
      fpga: microchip-spi: add Microchip MPF FPGA manager
      dt-bindings: fpga: add binding doc for microchip-spi fpga mgr
      MAINTAINERS: add Microchip PolarFire FPGA drivers entry

 .../bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml  |  44 +++
 Documentation/driver-api/fpga/fpga-mgr.rst         |  27 +-
 MAINTAINERS                                        |   8 +
 drivers/fpga/Kconfig                               |   8 +
 drivers/fpga/Makefile                              |   1 +
 drivers/fpga/fpga-mgr.c                            | 223 ++++++++++--
 drivers/fpga/microchip-spi.c                       | 398 +++++++++++++++++++++
 include/linux/fpga/fpga-mgr.h                      |  24 +-
 8 files changed, 700 insertions(+), 33 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
 create mode 100644 drivers/fpga/microchip-spi.c

Comments

Greg KH July 11, 2022, 10:31 a.m. UTC | #1
On Mon, Jul 11, 2022 at 02:40:43PM +0800, Xu Yilun wrote:
> The following changes since commit 2df84a757d87fd62869fc401119d429735377ec5:
> 
>   fpga: altera-pr-ip: fix unsigned comparison with less than zero (2022-06-10 15:48:23 +0800)
> 
> are available in the Git repository at:
> 
>   ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga tags/fpga-late-for-5.20-rc1

Pulled and pushed out, thanks.

greg k-h