~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/board/bf561-acvilon/bf561-acvilon.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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