Aubrey Li | 6545898 | 2007-03-20 18:16:24 +0800 | [diff] [blame] | 1 | /* |
Mike Frysinger | ae09102 | 2008-10-11 20:42:17 -0400 | [diff] [blame] | 2 | * U-boot - main board file |
Aubrey Li | 6545898 | 2007-03-20 18:16:24 +0800 | [diff] [blame] | 3 | * |
Mike Frysinger | ae09102 | 2008-10-11 20:42:17 -0400 | [diff] [blame] | 4 | * Copyright (c) 2005-2008 Analog Devices Inc. |
Aubrey Li | 6545898 | 2007-03-20 18:16:24 +0800 | [diff] [blame] | 5 | * |
| 6 | * (C) Copyright 2000-2004 |
| 7 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Aubrey Li | 6545898 | 2007-03-20 18:16:24 +0800 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
Ben Warren | 7194ab8 | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 13 | #include <netdev.h> |
Aubrey Li | 6545898 | 2007-03-20 18:16:24 +0800 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | |
Wolfgang Denk | 1218abf | 2007-09-15 20:48:41 +0200 | [diff] [blame] | 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Aubrey Li | 6545898 | 2007-03-20 18:16:24 +0800 | [diff] [blame] | 18 | int checkboard(void) |
| 19 | { |
Aubrey Li | 6545898 | 2007-03-20 18:16:24 +0800 | [diff] [blame] | 20 | printf("Board: ADI BF561 EZ-Kit Lite board\n"); |
| 21 | printf(" Support: http://blackfin.uclinux.org/\n"); |
| 22 | return 0; |
| 23 | } |
| 24 | |
Ben Warren | 7194ab8 | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 25 | #ifdef CONFIG_SMC91111 |
| 26 | int board_eth_init(bd_t *bis) |
| 27 | { |
| 28 | return smc91111_initialize(0, CONFIG_SMC91111_BASE); |
| 29 | } |
| 30 | #endif |