
From: Tien Fong Chee tien.fong.chee@intel.com
This patchset adding intermediate driver called cff driver to support all the FPGA program operations between FPGA manager and flash. This version mainly resolved comments from Marek in [v1]. This series is working on top of u-boot.git - http://git.denx.de/?p=u-boot.git;a=summary
[v1]: https://www.mail-archive.com/u-boot@lists.denx.de/msg258316.html
Tien Fong Chee (5): arm: socfpga: Make spl_boot_device accessible to U-boot arm: socfpga: Add checking function on FPGA setting in FDT configs: Add FPGA loadfs config for Arria 10 arm: socfpga: Add intermediate driver between flash and FPGA manager arm: socfpga: Enable cff driver build
arch/arm/mach-socfpga/Makefile | 1 + arch/arm/mach-socfpga/cff.c | 582 ++++++++++++++++++++++++++++++ arch/arm/mach-socfpga/include/mach/cff.h | 40 ++ arch/arm/mach-socfpga/include/mach/misc.h | 1 + arch/arm/mach-socfpga/misc.c | 30 ++ arch/arm/mach-socfpga/misc_arria10.c | 20 + arch/arm/mach-socfpga/spl.c | 29 -- configs/socfpga_arria10_defconfig | 1 + include/configs/socfpga_arria10_socdk.h | 6 + 9 files changed, 681 insertions(+), 29 deletions(-) create mode 100644 arch/arm/mach-socfpga/cff.c create mode 100644 arch/arm/mach-socfpga/include/mach/cff.h