bf561-ezkit.c 563 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * U-Boot - main board file
  3. *
  4. * Copyright (c) 2005-2008 Analog Devices Inc.
  5. *
  6. * (C) Copyright 2000-2004
  7. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #include <common.h>
  12. #include <netdev.h>
  13. #include <asm/io.h>
  14. DECLARE_GLOBAL_DATA_PTR;
  15. int checkboard(void)
  16. {
  17. printf("Board: ADI BF561 EZ-Kit Lite board\n");
  18. printf(" Support: http://blackfin.uclinux.org/\n");
  19. return 0;
  20. }
  21. #ifdef CONFIG_SMC91111
  22. int board_eth_init(bd_t *bis)
  23. {
  24. return smc91111_initialize(0, CONFIG_SMC91111_BASE);
  25. }
  26. #endif