bf538f-ezkit.c 499 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * U-Boot - main board file
  3. *
  4. * Copyright (c) 2008 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <common.h>
  9. #include <netdev.h>
  10. #include <config.h>
  11. #include <asm/blackfin.h>
  12. DECLARE_GLOBAL_DATA_PTR;
  13. int checkboard(void)
  14. {
  15. printf("Board: ADI BF538F EZ-Kit Lite board\n");
  16. printf(" Support: http://blackfin.uclinux.org/\n");
  17. return 0;
  18. }
  19. #ifdef CONFIG_SMC91111
  20. int board_eth_init(bd_t *bis)
  21. {
  22. return smc91111_initialize(0, CONFIG_SMC91111_BASE);
  23. }
  24. #endif