xref: /openbmc/u-boot/board/renesas/MigoR/migo_r.c (revision e8f80a5a)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2007
4  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5  *
6  * Copyright (C) 2007
7  * Kenati Technologies, Inc.
8  *
9  * board/MigoR/migo_r.c
10  */
11 
12 #include <common.h>
13 #include <netdev.h>
14 #include <asm/io.h>
15 #include <asm/processor.h>
16 
checkboard(void)17 int checkboard(void)
18 {
19 	puts("BOARD: Renesas MigoR\n");
20 	return 0;
21 }
22 
board_init(void)23 int board_init(void)
24 {
25 	return 0;
26 }
27 
led_set_state(unsigned short value)28 void led_set_state (unsigned short value)
29 {
30 }
31 
32 #ifdef CONFIG_CMD_NET
board_eth_init(bd_t * bis)33 int board_eth_init(bd_t *bis)
34 {
35 	int rc = 0;
36 #ifdef CONFIG_SMC91111
37 	rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
38 #endif
39 	return rc;
40 }
41 #endif
42