blob: 2dd4c0c4d17ea3d419033adb124c59349f94190e [file] [log] [blame]
Mike Frysinger5c45f7c2008-10-12 21:25:33 -04001/*
Bin Menga1875592016-02-05 19:30:11 -08002 * U-Boot - main board file
Mike Frysinger5c45f7c2008-10-12 21:25:33 -04003 *
4 * Copyright (c) 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 Frysinger5c45f7c2008-10-12 21:25:33 -040011#include <config.h>
12#include <asm/blackfin.h>
13
14DECLARE_GLOBAL_DATA_PTR;
15
16int checkboard(void)
17{
18 printf("Board: ADI BF538F EZ-Kit Lite board\n");
19 printf(" Support: http://blackfin.uclinux.org/\n");
20 return 0;
21}
22
Ben Warren7194ab82009-10-04 22:37:03 -070023#ifdef CONFIG_SMC91111
24int board_eth_init(bd_t *bis)
25{
26 return smc91111_initialize(0, CONFIG_SMC91111_BASE);
27}
28#endif