blob: d8932ed910257416dcdb8d3349e70c017b89b5c7 [file] [log] [blame]
Bin Menga1875592016-02-05 19:30:11 -08001/* U-Boot - blackvme.c board specific routines
Wojtek Skulski3bbed7f2010-09-27 18:21:59 -04002 * (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 */