]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/blackvme/blackvme.c
iocon: reset FPGAs in last_stage_init()
[people/ms/u-boot.git] / board / blackvme / blackvme.c
CommitLineData
3bbed7f8
WS
1/* U-boot - blackvme.c board specific routines
2 * (c) Wojtek Skulski 2010 info@skutek.com
3 * Board info: http://www.skutek.com
4 * Copyright (c) 2005-2009 Analog Devices Inc.
5 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * Licensed under the GPL-2 or later.
10 */
11
12#include <common.h>
13#include <netdev.h>
14
15int checkboard(void)
16{
17 printf("Board: BlackVME\n");
18 printf("Support: http://www.skutek.com/\n");
19 return 0;
20}
21
22#ifdef CONFIG_DRIVER_AX88180
23/*
24 * The ax88180 driver had to be patched to work around a bug
25 * in Marvell 88E1111 B2 silicon. E-mail me for explanations.
26 */
27int board_eth_init(bd_t *bis)
28{
29 return ax88180_initialize(bis);
30}
31#endif /* CONFIG_DRIVER_AX88180 */