blob: 6409a73de1447a4ae15cd6eed9b37ffa7591536b [file] [log] [blame]
goda.yusukec2042f52008-01-25 20:46:36 +09001/*
2 * Copyright (C) 2007
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
5 * Copyright (C) 2007
6 * Kenati Technologies, Inc.
7 *
8 * board/MigoR/migo_r.c
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
goda.yusukec2042f52008-01-25 20:46:36 +090011 */
12
13#include <common.h>
Ben Warren7194ab82009-10-04 22:37:03 -070014#include <netdev.h>
goda.yusukec2042f52008-01-25 20:46:36 +090015#include <asm/io.h>
16#include <asm/processor.h>
17
18int checkboard(void)
19{
20 puts("BOARD: Renesas MigoR\n");
21 return 0;
22}
23
24int board_init(void)
25{
26 return 0;
27}
28
goda.yusukec2042f52008-01-25 20:46:36 +090029void led_set_state (unsigned short value)
30{
31}
Ben Warren7194ab82009-10-04 22:37:03 -070032
33#ifdef CONFIG_CMD_NET
34int board_eth_init(bd_t *bis)
35{
36 int rc = 0;
37#ifdef CONFIG_SMC91111
38 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
39#endif
40 return rc;
41}
42#endif