mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +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>
18 lines
283 B
C
18 lines
283 B
C
/*
|
|
* (C) Copyright 2014
|
|
* Dirk Eibach, Guntermann & Drunck GmbH, dirk.eibach@gdsys.cc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _IHS_MDIO_H_
|
|
#define _IHS_MDIO_H_
|
|
|
|
struct ihs_mdio_info {
|
|
u32 fpga;
|
|
char *name;
|
|
};
|
|
|
|
int ihs_mdio_init(struct ihs_mdio_info *info);
|
|
|
|
#endif
|