Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / u-boot / board / bf561-acvilon / bf561-acvilon.c
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  * SPDX-License-Identifier:     GPL-2.0+
19  */
20
21 #include <common.h>
22 #include <netdev.h>
23
24 DECLARE_GLOBAL_DATA_PTR;
25
26 int checkboard(void)
27 {
28         printf("Board:  CJSC \"NII STT\"-=Acvilon Platform=- [U-Boot]\n");
29         printf("       Support: http://www.niistt.ru/\n");
30         return 0;
31 }
32
33 #ifdef CONFIG_SMC911X
34 int board_eth_init(bd_t *bis)
35 {
36         return smc911x_initialize(0, CONFIG_SMC911X_BASE);
37 }
38 #endif