public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v8 0/8] Add support for loading FPGA bitstream
@ 2019-02-13 14:18 tien.fong.chee at intel.com
  2019-02-13 14:18 ` [U-Boot] [PATCH v8 1/8] ARM: socfpga: Description on FPGA bitstream type and file name for Arria 10 tien.fong.chee at intel.com
                   ` (7 more replies)
  0 siblings, 8 replies; 55+ messages in thread
From: tien.fong.chee at intel.com @ 2019-02-13 14:18 UTC (permalink / raw)
  To: u-boot

From: Tien Fong Chee <tien.fong.chee@intel.com>

This version mainly resolved comments from Marek and Dalon L Westergreen in
[v7].

Additonal note:
---------------
There are a few solutions at this moment for solving the performance issue
1. Using absolute data position to allign the core bistream in fitImage.
2. SPL program periph bitstream, then using fpga loadmk for loading the core
   bitstream from DDR. This is work because there is no allignment performance
   issue when reading whole fitImage instead of offset to the fitImage.

This series is working on top of u-boot.git -
 http://git.denx.de/u-boot.git .

[v7]: https://www.mail-archive.com/u-boot at lists.denx.de/msg314511.html

Tien Fong Chee (8):
  ARM: socfpga: Description on FPGA bitstream type and file name for
    Arria 10
  ARM: socfpga: Add default FPGA bitstream fitImage for Arria10 SoCDK
  fit: Add function declarations to the header file
  ARM: socfpga: Add FPGA drivers for Arria 10 FPGA bitstream loading
  ARM: socfpga: Add the configuration for FPGA SoCFPGA A10 SoCDK
  spl : socfpga: Implement fpga bitstream loading with socfpga loadfs
  ARM: socfpga: Synchronize the configuration for A10 SoCDK
  ARM: socfpga: Increase Malloc pool size to support FAT filesystem in
    SPL

 arch/arm/dts/socfpga_arria10_socdk_sdmmc.dts       |  17 +
 .../include/mach/fpga_manager_arria10.h            |  39 +-
 arch/arm/mach-socfpga/spl_a10.c                    |  41 +-
 board/altera/arria10-socdk/fit_spl_fpga.its        |  39 ++
 configs/socfpga_arria10_defconfig                  |  21 +-
 .../fpga/altera-socfpga-a10-fpga-mgr.txt           |  26 +-
 drivers/fpga/socfpga_arria10.c                     | 467 ++++++++++++++++++++-
 include/configs/socfpga_common.h                   |   4 +-
 include/image.h                                    |   4 +
 9 files changed, 626 insertions(+), 32 deletions(-)
 create mode 100644 board/altera/arria10-socdk/fit_spl_fpga.its

-- 
2.2.0

^ permalink raw reply	[flat|nested] 55+ messages in thread

end of thread, other threads:[~2019-02-15  8:35 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-13 14:18 [U-Boot] [PATCH v8 0/8] Add support for loading FPGA bitstream tien.fong.chee at intel.com
2019-02-13 14:18 ` [U-Boot] [PATCH v8 1/8] ARM: socfpga: Description on FPGA bitstream type and file name for Arria 10 tien.fong.chee at intel.com
2019-02-13 16:07   ` Marek Vasut
2019-02-14  5:55     ` Chee, Tien Fong
2019-02-14 10:34       ` Marek Vasut
2019-02-14 11:03         ` Chee, Tien Fong
2019-02-13 14:18 ` [U-Boot] [PATCH v8 2/8] ARM: socfpga: Add default FPGA bitstream fitImage for Arria10 SoCDK tien.fong.chee at intel.com
2019-02-13 16:10   ` Marek Vasut
2019-02-13 22:45     ` Dalon L Westergreen
2019-02-13 23:04       ` Marek Vasut
2019-02-14  6:04         ` Chee, Tien Fong
2019-02-14 10:35           ` Marek Vasut
2019-02-14 11:23             ` Chee, Tien Fong
2019-02-14 12:24               ` Marek Vasut
2019-02-14 15:11                 ` Chee, Tien Fong
2019-02-14 15:13                   ` Marek Vasut
2019-02-14 15:47                     ` Chee, Tien Fong
2019-02-14 16:26                       ` Marek Vasut
2019-02-14 17:37                         ` Chee, Tien Fong
2019-02-15  8:35                         ` Chee, Tien Fong
2019-02-13 14:18 ` [U-Boot] [PATCH v8 3/8] fit: Add function declarations to the header file tien.fong.chee at intel.com
2019-02-13 16:11   ` Marek Vasut
2019-02-14  6:05     ` Chee, Tien Fong
2019-02-14 11:51     ` Chee, Tien Fong
2019-02-14 12:28       ` Marek Vasut
2019-02-14 15:12         ` Chee, Tien Fong
2019-02-13 14:18 ` [U-Boot] [PATCH v8 4/8] ARM: socfpga: Add FPGA drivers for Arria 10 FPGA bitstream loading tien.fong.chee at intel.com
2019-02-13 16:20   ` Marek Vasut
2019-02-14  6:44     ` Chee, Tien Fong
2019-02-14 10:41       ` Marek Vasut
2019-02-14 11:35         ` Chee, Tien Fong
2019-02-14 12:14         ` Chee, Tien Fong
2019-02-14 12:29           ` Marek Vasut
2019-02-14 15:14             ` Chee, Tien Fong
2019-02-14 15:15               ` Marek Vasut
2019-02-14 15:23                 ` Chee, Tien Fong
2019-02-14 15:24                   ` Marek Vasut
2019-02-13 14:18 ` [U-Boot] [PATCH v8 5/8] ARM: socfpga: Add the configuration for FPGA SoCFPGA A10 SoCDK tien.fong.chee at intel.com
2019-02-13 14:18 ` [U-Boot] [PATCH v8 6/8] spl : socfpga: Implement fpga bitstream loading with socfpga loadfs tien.fong.chee at intel.com
2019-02-13 16:25   ` Marek Vasut
2019-02-14  6:50     ` Chee, Tien Fong
2019-02-14 10:42       ` Marek Vasut
2019-02-14 11:38         ` Chee, Tien Fong
2019-02-14 12:28           ` Marek Vasut
2019-02-14 15:15             ` Chee, Tien Fong
2019-02-14 15:21               ` Marek Vasut
2019-02-14 15:37                 ` Chee, Tien Fong
2019-02-14 16:27                   ` Marek Vasut
2019-02-14 17:30                     ` Chee, Tien Fong
2019-02-14 16:33               ` Westergreen, Dalon
2019-02-14 16:59                 ` Chee, Tien Fong
2019-02-14 17:26                   ` Westergreen, Dalon
2019-02-14 17:26                 ` Chee, Tien Fong
2019-02-13 14:18 ` [U-Boot] [PATCH v8 7/8] ARM: socfpga: Synchronize the configuration for A10 SoCDK tien.fong.chee at intel.com
2019-02-13 14:18 ` [U-Boot] [PATCH v8 8/8] ARM: socfpga: Increase Malloc pool size to support FAT filesystem in SPL tien.fong.chee at intel.com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox