diff options
| author | Michal Simek <michal.simek@xilinx.com> | 2013-04-22 15:43:02 +0200 | 
|---|---|---|
| committer | Michal Simek <michal.simek@xilinx.com> | 2013-05-06 10:41:24 +0200 | 
| commit | d5dae85f23c7c902731512e451afde9a6e4a250a (patch) | |
| tree | 8b7230045d9b0c43400e2ed661fb9282c662472c /arch/arm/include/asm/arch-zynq/sys_proto.h | |
| parent | 5bd0bd7cef396a830996b4ad91b89b7d205c7298 (diff) | |
| download | olio-uboot-2014.01-d5dae85f23c7c902731512e451afde9a6e4a250a.tar.xz olio-uboot-2014.01-d5dae85f23c7c902731512e451afde9a6e4a250a.zip | |
fpga: zynq: Add support for loading bitstream
Devcfg device requires to load bitstream in binary format.
But u-boot also has an option for loading bitstream in bit
format. Let's handle both cases by zynqpl driver.
Also add suport for loading partial bitstreams.
The first driver version was done by:
Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include/asm/arch-zynq/sys_proto.h')
| -rw-r--r-- | arch/arm/include/asm/arch-zynq/sys_proto.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/arch-zynq/sys_proto.h b/arch/arm/include/asm/arch-zynq/sys_proto.h index af9e7f8d4..2317121ca 100644 --- a/arch/arm/include/asm/arch-zynq/sys_proto.h +++ b/arch/arm/include/asm/arch-zynq/sys_proto.h @@ -27,6 +27,9 @@ extern void zynq_slcr_lock(void);  extern void zynq_slcr_unlock(void);  extern void zynq_slcr_cpu_reset(void);  extern void zynq_slcr_gem_clk_setup(u32 gem_id, u32 rclk, u32 clk); +extern void zynq_slcr_devcfg_disable(void); +extern void zynq_slcr_devcfg_enable(void); +extern u32 zynq_slcr_get_idcode(void);  /* Driver extern functions */  extern int zynq_sdhci_init(u32 regbase); |