blob: 99b7eb26121031e361734559f451c52f8e9aebda [file] [log] [blame]
Mike Frysingere5483212008-10-12 21:45:05 -04001/*
Bin Menga1875592016-02-05 19:30:11 -08002 * U-Boot - main board file
Mike Frysingere5483212008-10-12 21:45:05 -04003 *
4 * Copyright (c) 2005-2008 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
Ben Warren7194ab82009-10-04 22:37:03 -070010#include <netdev.h>
Mike Frysingere5483212008-10-12 21:45:05 -040011
12DECLARE_GLOBAL_DATA_PTR;
13
14int checkboard(void)
15{
16 printf("Board: Bluetechnix CM-BF561 core module\n");
17 printf(" Support: http://www.bluetechnix.at/\n");
18 return 0;
19}
20
Harald Krapfenbauer6a0be8f2010-01-22 17:15:55 -050021#ifdef CONFIG_SMC911X
Ben Warren7194ab82009-10-04 22:37:03 -070022int board_eth_init(bd_t *bis)
23{
Harald Krapfenbauer6a0be8f2010-01-22 17:15:55 -050024 return smc911x_initialize(0, CONFIG_SMC911X_BASE);
Ben Warren7194ab82009-10-04 22:37:03 -070025}
26#endif