2009-01-18 22:44:17 -05:00
|
|
|
/*
|
2016-02-05 19:30:11 -08:00
|
|
|
* U-Boot - main board file
|
2009-01-18 22:44:17 -05:00
|
|
|
*
|
|
|
|
* Copyright (c) 2008-2009 I-SYST.
|
|
|
|
*
|
|
|
|
* Licensed under the GPL-2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2010-05-10 15:38:55 -04:00
|
|
|
#include <netdev.h>
|
2009-01-18 22:44:17 -05:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
printf("Board: I-SYST IBF-DSP561 Micromodule\n");
|
|
|
|
printf(" Support: http://www.i-syst.com/\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2010-05-10 15:38:55 -04:00
|
|
|
|
|
|
|
#ifdef CONFIG_DRIVER_AX88180
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return ax88180_initialize(bis);
|
|
|
|
}
|
|
|
|
#endif
|