Message ID | 20220621065501.GA1527017@yilunxu-OptiPlex-7050 (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [GIT,PULL] FPGA Manager changes for v5.20-rc1 | expand |
On Tue, Jun 21, 2022 at 02:55:01PM +0800, Xu Yilun wrote: > The following changes since commit f2906aa863381afb0015a9eb7fefad885d4e5a56: > > Linux 5.19-rc1 (2022-06-05 17:18:54 -0700) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git tags/fpga-for-5.20-rc1 Pulled and pushed out, thanks. greg k-h
The following changes since commit f2906aa863381afb0015a9eb7fefad885d4e5a56: Linux 5.19-rc1 (2022-06-05 17:18:54 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git tags/fpga-for-5.20-rc1 for you to fetch changes up to 2df84a757d87fd62869fc401119d429735377ec5: fpga: altera-pr-ip: fix unsigned comparison with less than zero (2022-06-10 15:48:23 +0800) ---------------------------------------------------------------- Here is the first set of FPGA changes for 5.20-rc1 FPGA static firmware loader - Russ's change to add support for Intel MAX10 BMC Secure Update driver which instantiates the new Firmware Upload functionality (merged on last cycle) of the Firmware Loader. DFL - keliu's change to use ida_alloc()/ida_free() instead of deprecated ida_simple_get()/ida_simple_remove() ALTERA - Marco's change to fix a "comparison with less than zero" warning 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> ---------------------------------------------------------------- Marco Pagani (1): fpga: altera-pr-ip: fix unsigned comparison with less than zero Russ Weight (5): mfd: intel-m10-bmc: Rename n3000bmc-secure driver fpga: m10bmc-sec: create max10 bmc secure update fpga: m10bmc-sec: expose max10 flash update count fpga: m10bmc-sec: expose max10 canceled keys in sysfs fpga: m10bmc-sec: add max10 secure update functions keliu (1): fpga: Directly use ida_alloc()/free() .../testing/sysfs-driver-intel-m10-bmc-sec-update | 61 ++ MAINTAINERS | 7 + drivers/fpga/Kconfig | 12 + drivers/fpga/Makefile | 3 + drivers/fpga/altera-pr-ip-core.c | 2 +- drivers/fpga/dfl.c | 4 +- drivers/fpga/fpga-bridge.c | 6 +- drivers/fpga/fpga-mgr.c | 6 +- drivers/fpga/fpga-region.c | 6 +- drivers/fpga/intel-m10-bmc-sec-update.c | 625 +++++++++++++++++++++ drivers/mfd/intel-m10-bmc.c | 2 +- 11 files changed, 721 insertions(+), 13 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update create mode 100644 drivers/fpga/intel-m10-bmc-sec-update.c