blackvme.c 723 B

12345678910111213141516171819202122232425262728293031
  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. #include <common.h>
  12. #include <netdev.h>
  13. int checkboard(void)
  14. {
  15. printf("Board: BlackVME\n");
  16. printf("Support: http://www.skutek.com/\n");
  17. return 0;
  18. }
  19. #ifdef CONFIG_DRIVER_AX88180
  20. /*
  21. * The ax88180 driver had to be patched to work around a bug
  22. * in Marvell 88E1111 B2 silicon. E-mail me for explanations.
  23. */
  24. int board_eth_init(bd_t *bis)
  25. {
  26. return ax88180_initialize(bis);
  27. }
  28. #endif /* CONFIG_DRIVER_AX88180 */