mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
50dcf89d90
The gdsys hrcon board is based on a Freescale MPC8308 SOC. It boots from NOR-Flash, kernel and rootfs are stored on SD-Card. On board peripherals include: - 1x GbE (optional) - Lattice ECP3 FPGA connected via eLBC and PCIe Signed-off-by: Dirk Eibach <dirk.eibach@gdsys.cc> Signed-off-by: Stefan Roese <sr@denx.de>
10 lines
266 B
C
10 lines
266 B
C
#ifndef __MPC8308_H_
|
|
#define __MPC8308_H_
|
|
|
|
/* functions to be provided by board implementation */
|
|
void mpc8308_init(void);
|
|
void mpc8308_set_fpga_reset(unsigned state);
|
|
void mpc8308_setup_hw(void);
|
|
int mpc8308_get_fpga_done(unsigned fpga);
|
|
|
|
#endif /* __MPC8308_H_ */
|