bf537-pnav.c 515 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * U-Boot - main board file
  3. *
  4. * Copyright (c) 2005-2009 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <common.h>
  9. #include <config.h>
  10. #include <command.h>
  11. #include <netdev.h>
  12. #include <net.h>
  13. #include <asm/blackfin.h>
  14. DECLARE_GLOBAL_DATA_PTR;
  15. int checkboard(void)
  16. {
  17. printf("Board: ADI BF537 PNAV board\n");
  18. printf(" Support: http://blackfin.uclinux.org/\n");
  19. return 0;
  20. }
  21. #ifdef CONFIG_BFIN_MAC
  22. int board_eth_init(bd_t *bis)
  23. {
  24. return bfin_EMAC_initialize(bis);
  25. }
  26. #endif