blob: 534c39ca89a5b05cc6627054de7a7c887fa9ffbd [file] [log] [blame]
Aubrey Li65458982007-03-20 18:16:24 +08001/*
Bin Menga1875592016-02-05 19:30:11 -08002 * 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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Aubrey Li65458982007-03-20 18:16:24 +080010 */
11
12#include <common.h>
Ben Warren7194ab82009-10-04 22:37:03 -070013#include <netdev.h>
Aubrey Li65458982007-03-20 18:16:24 +080014#include <asm/io.h>
15
Wolfgang Denk1218abf2007-09-15 20:48:41 +020016DECLARE_GLOBAL_DATA_PTR;
17
Aubrey Li65458982007-03-20 18:16:24 +080018int checkboard(void)
19{
Aubrey Li65458982007-03-20 18:16:24 +080020 printf("Board: ADI BF561 EZ-Kit Lite board\n");
21 printf(" Support: http://blackfin.uclinux.org/\n");
22 return 0;
23}
24
Ben Warren7194ab82009-10-04 22:37:03 -070025#ifdef CONFIG_SMC91111
26int board_eth_init(bd_t *bis)
27{
28 return smc91111_initialize(0, CONFIG_SMC91111_BASE);
29}
30#endif