uboot/board/bf561-ezkit/bf561-ezkit.c
<<
>>
Prefs
   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
  12#include <common.h>
  13#include <netdev.h>
  14#include <asm/io.h>
  15
  16DECLARE_GLOBAL_DATA_PTR;
  17
  18int checkboard(void)
  19{
  20        printf("Board: ADI BF561 EZ-Kit Lite board\n");
  21        printf("       Support: http://blackfin.uclinux.org/\n");
  22        return 0;
  23}
  24
  25#ifdef CONFIG_SMC91111
  26int board_eth_init(bd_t *bis)
  27{
  28        return smc91111_initialize(0, CONFIG_SMC91111_BASE);
  29}
  30#endif
  31