]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/ibf-dsp561/ibf-dsp561.c
iocon: reset FPGAs in last_stage_init()
[people/ms/u-boot.git] / board / ibf-dsp561 / ibf-dsp561.c
CommitLineData
0f52b560
HH
1/*
2 * U-boot - main board file
3 *
4 * Copyright (c) 2008-2009 I-SYST.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
5cbbabc2 10#include <netdev.h>
0f52b560
HH
11
12DECLARE_GLOBAL_DATA_PTR;
13
14int checkboard(void)
15{
16 printf("Board: I-SYST IBF-DSP561 Micromodule\n");
17 printf(" Support: http://www.i-syst.com/\n");
18 return 0;
19}
5cbbabc2
HH
20
21#ifdef CONFIG_DRIVER_AX88180
22int board_eth_init(bd_t *bis)
23{
24 return ax88180_initialize(bis);
25}
26#endif