bf561-acvilon.c 858 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * File: board/bf561-acvilon/bf561-acvilon.c
  3. * Based on: board/bf561-ezkit/bf561-ezkit.c
  4. * Author:
  5. *
  6. * Created: 2009-06-23
  7. * Description: Acvilon System On Module board file
  8. *
  9. * Modified:
  10. * Copyright 2009 CJSC "NII STT", http://www.niistt.ru/
  11. * Copyright (c) 2005-2008 Analog Devices Inc.
  12. *
  13. * (C) Copyright 2000-2004
  14. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  15. *
  16. * Bugs:
  17. *
  18. * SPDX-License-Identifier: GPL-2.0+
  19. */
  20. #include <common.h>
  21. #include <netdev.h>
  22. DECLARE_GLOBAL_DATA_PTR;
  23. int checkboard(void)
  24. {
  25. printf("Board: CJSC \"NII STT\"-=Acvilon Platform=- [U-Boot]\n");
  26. printf(" Support: http://www.niistt.ru/\n");
  27. return 0;
  28. }
  29. #ifdef CONFIG_SMC911X
  30. int board_eth_init(bd_t *bis)
  31. {
  32. return smc911x_initialize(0, CONFIG_SMC911X_BASE);
  33. }
  34. #endif