blob: da4c8444e12b1dae2510dfb4cb7fb95e170859f4 [file] [log] [blame]
Valentin Yakovenkov446707c2009-10-26 18:43:04 -04001/*
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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020018 * SPDX-License-Identifier: GPL-2.0+
Valentin Yakovenkov446707c2009-10-26 18:43:04 -040019 */
20
21#include <common.h>
22#include <netdev.h>
23
24DECLARE_GLOBAL_DATA_PTR;
25
26int 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
Valentin Yakovenkov446707c2009-10-26 18:43:04 -040033#ifdef CONFIG_SMC911X
34int board_eth_init(bd_t *bis)
35{
36 return smc911x_initialize(0, CONFIG_SMC911X_BASE);
37}
38#endif