blob: b2411b65bf65fc13c88f980f569045666da19f73 [file] [log] [blame]
Aubrey Li65458982007-03-20 18:16:24 +08001/*
Mike Frysingerae091022008-10-11 20:42:17 -04002 * U-boot - main board file
Aubrey Li65458982007-03-20 18:16:24 +08003 *
Mike Frysingerae091022008-10-11 20:42:17 -04004 * Copyright (c) 2005-2008 Analog Devices Inc.
Aubrey Li65458982007-03-20 18:16:24 +08005 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
Aubrey Li155fd762007-04-05 18:31:18 +080024 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25 * MA 02110-1301 USA
Aubrey Li65458982007-03-20 18:16:24 +080026 */
27
28#include <common.h>
Ben Warren7194ab82009-10-04 22:37:03 -070029#include <netdev.h>
Aubrey Li65458982007-03-20 18:16:24 +080030#include <asm/io.h>
31
Wolfgang Denk1218abf2007-09-15 20:48:41 +020032DECLARE_GLOBAL_DATA_PTR;
33
Aubrey Li65458982007-03-20 18:16:24 +080034int checkboard(void)
35{
Aubrey Li65458982007-03-20 18:16:24 +080036 printf("Board: ADI BF561 EZ-Kit Lite board\n");
37 printf(" Support: http://blackfin.uclinux.org/\n");
38 return 0;
39}
40
Ben Warren7194ab82009-10-04 22:37:03 -070041#ifdef CONFIG_SMC91111
42int board_eth_init(bd_t *bis)
43{
44 return smc91111_initialize(0, CONFIG_SMC91111_BASE);
45}
46#endif