2008-10-13 01:45:05 +00:00
|
|
|
/*
|
|
|
|
* U-boot - main board file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005-2008 Analog Devices Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the GPL-2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2009-10-05 05:37:03 +00:00
|
|
|
#include <netdev.h>
|
2008-10-13 01:45:05 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
printf("Board: Bluetechnix CM-BF561 core module\n");
|
|
|
|
printf(" Support: http://www.bluetechnix.at/\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-22 22:15:55 +00:00
|
|
|
#ifdef CONFIG_SMC911X
|
2009-10-05 05:37:03 +00:00
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
2010-01-22 22:15:55 +00:00
|
|
|
return smc911x_initialize(0, CONFIG_SMC911X_BASE);
|
2009-10-05 05:37:03 +00:00
|
|
|
}
|
|
|
|
#endif
|