Valentin Yakovenkov | 446707c | 2009-10-26 18:43:04 -0400 | [diff] [blame] | 1 | /* |
| 2 | * File: board/bf561-acvilon/bf561-acvilon.c |
| 3 | * Based on: board/bf561-ezkit/bf561-ezkit.c |
| 4 | * Author: |
| 5 | * |
| 6 | * Created: 2009-06-23 |
| 7 | * Description: Acvilon System On Module board file |
| 8 | * |
| 9 | * Modified: |
| 10 | * Copyright 2009 CJSC "NII STT", http://www.niistt.ru/ |
| 11 | * Copyright (c) 2005-2008 Analog Devices Inc. |
| 12 | * |
| 13 | * (C) Copyright 2000-2004 |
| 14 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 15 | * |
| 16 | * Bugs: |
| 17 | * |
| 18 | * This program is free software; you can redistribute it and/or modify |
| 19 | * it under the terms of the GNU General Public License as published by |
| 20 | * the Free Software Foundation; either version 2 of the License, or |
| 21 | * (at your option) any later version. |
| 22 | * |
| 23 | * This program is distributed in the hope that it will be useful, |
| 24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 | * GNU General Public License for more details. |
| 27 | * |
| 28 | * You should have received a copy of the GNU General Public License |
| 29 | * along with this program; if not, see the file COPYING, or write |
| 30 | * to the Free Software Foundation, Inc., |
| 31 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 32 | */ |
| 33 | |
| 34 | #include <common.h> |
| 35 | #include <netdev.h> |
| 36 | |
| 37 | DECLARE_GLOBAL_DATA_PTR; |
| 38 | |
| 39 | int checkboard(void) |
| 40 | { |
| 41 | printf("Board: CJSC \"NII STT\"-=Acvilon Platform=- [U-Boot]\n"); |
| 42 | printf(" Support: http://www.niistt.ru/\n"); |
| 43 | return 0; |
| 44 | } |
| 45 | |
Valentin Yakovenkov | 446707c | 2009-10-26 18:43:04 -0400 | [diff] [blame] | 46 | #ifdef CONFIG_SMC911X |
| 47 | int board_eth_init(bd_t *bis) |
| 48 | { |
| 49 | return smc911x_initialize(0, CONFIG_SMC911X_BASE); |
| 50 | } |
| 51 | #endif |