diff options
author | Michal Simek <michal.simek@xilinx.com> | 2016-05-17 14:03:50 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2016-05-24 13:17:59 +0200 |
commit | 62afc601883e788f3f22291202d5b2a23c1a8b06 (patch) | |
tree | c5d12c83cb1f46ed08de698494885de63f2f329a /include | |
parent | b733c278d7adc48c71bd06faf359db3d9e385185 (diff) |
image: Add boot_get_fpga() to load fpga with bootm
Add function boot_get_fpga() which find and load bitstream to
programmable logic if fpga entry is present.
Function is supported on Xilinx devices for full and partial bitstreams
in BIN and BIT format.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Remove additional blankline in image.h
Diffstat (limited to 'include')
-rw-r--r-- | include/bootstage.h | 1 | ||||
-rw-r--r-- | include/image.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/bootstage.h b/include/bootstage.h index 97653602d3..0880a680b9 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -198,6 +198,7 @@ enum bootstage_id { BOOTSTAGE_ID_ACCUM_SCSI, BOOTSTAGE_ID_ACCUM_SPI, BOOTSTAGE_ID_ACCUM_DECOMP, + BOOTSTAGE_ID_FPGA_INIT, /* a few spare for the user, from here */ BOOTSTAGE_ID_USER, diff --git a/include/image.h b/include/image.h index e2a90ca202..a8f6bd16f6 100644 --- a/include/image.h +++ b/include/image.h @@ -496,6 +496,8 @@ int genimg_get_format(const void *img_addr); int genimg_has_config(bootm_headers_t *images); ulong genimg_get_image(ulong img_addr); +int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images, + uint8_t arch, const ulong *ld_start, ulong * const ld_len); int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, uint8_t arch, ulong *rd_start, ulong *rd_end); |