diff options
author | Tien Fong Chee <tien.fong.chee@intel.com> | 2019-05-07 17:42:28 +0800 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2019-05-10 22:48:11 +0200 |
commit | 0a42a132a4b846031df2c4a7d04692240ed34843 (patch) | |
tree | fbe98f3a5a11b4f961a780b92041ce1bd6caedf3 /include/image.h | |
parent | c1cf5391807640159edcd363ea1cbaf226a56b58 (diff) | |
download | u-boot-0a42a132a4b846031df2c4a7d04692240ed34843.tar.gz |
ARM: socfpga: Add FPGA drivers for Arria 10 FPGA bitstream loading
Add FPGA driver to support program FPGA with FPGA bitstream loading from
filesystem. The driver are designed based on generic firmware loader
framework. The driver can handle FPGA program operation from loading FPGA
bitstream in flash to memory and then to program FPGA.
Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/image.h b/include/image.h index bfe4e0b5e7..bb7089ef5d 100644 --- a/include/image.h +++ b/include/image.h @@ -1046,6 +1046,10 @@ int fit_check_format(const void *fit); int fit_conf_find_compat(const void *fit, const void *fdt); int fit_conf_get_node(const void *fit, const char *conf_uname); +int fit_conf_get_prop_node_count(const void *fit, int noffset, + const char *prop_name); +int fit_conf_get_prop_node_index(const void *fit, int noffset, + const char *prop_name, int index); /** * fit_conf_get_prop_node() - Get node refered to by a configuration |