mbox series

[U-Boot,v3,0/4] Stratix10 FPGA reconfiguration support

Message ID 1539056321-48824-1-git-send-email-chee.hong.ang@intel.com
Headers show
Series Stratix10 FPGA reconfiguration support | expand

Message

Ang, Chee Hong Oct. 9, 2018, 3:38 a.m. UTC
From: "Ang, Chee Hong" <chee.hong.ang@intel.com>

Summary of v3 changes:
- Patch 1/4, 2/4 and 4/4 are unchanged
- Patch 3/4: Removed unnecessary empty socfpga_fpga_add() from misc.c
- Patch 3/4: Removed unnecessary '#ifdef CONFIG_FPGA' from misc_s10.c

v2 patchsets:
https://lists.denx.de/pipermail/u-boot/2018-October/343473.html

Ang, Chee Hong (4):
  arm: socfpga: stratix10: Add macros for mailbox's arguments
  arm: socfpga: stratix10: Add Stratix 10 FPGA Reconfiguration Driver
  arm: socfpga: stratix10: Add Stratix10 FPGA into FPGA device table
  arm: socfpga: stratix10: Enable Stratix10 FPGA Reconfiguration

 arch/arm/mach-socfpga/include/mach/mailbox_s10.h |   6 +
 arch/arm/mach-socfpga/misc.c                     |  22 ++
 arch/arm/mach-socfpga/misc_s10.c                 |   2 +
 configs/socfpga_stratix10_defconfig              |   1 +
 drivers/fpga/Kconfig                             |  11 +
 drivers/fpga/Makefile                            |   1 +
 drivers/fpga/altera.c                            |   6 +
 drivers/fpga/stratix10.c                         | 288 +++++++++++++++++++++++
 include/altera.h                                 |   8 +
 9 files changed, 345 insertions(+)
 create mode 100644 drivers/fpga/stratix10.c