upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
564 B
22 lines
564 B
/*
|
|
* Copyright (c) 2013 Xilinx Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _SYS_PROTO_H_
|
|
#define _SYS_PROTO_H_
|
|
|
|
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);
|
|
extern void zynq_ddrc_init(void);
|
|
|
|
/* Driver extern functions */
|
|
extern int zynq_sdhci_init(u32 regbase);
|
|
|
|
#endif /* _SYS_PROTO_H_ */
|
|
|