1 /* 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 * 10 * SPDX-License-Identifier: GPL-2.0+ 11 */ 12 13 #include <common.h> 14 #include <netdev.h> 15 #include <asm/io.h> 16 #include <asm/processor.h> 17 checkboard(void)18int checkboard(void) 19 { 20 puts("BOARD: Renesas MigoR\n"); 21 return 0; 22 } 23 board_init(void)24int board_init(void) 25 { 26 return 0; 27 } 28 led_set_state(unsigned short value)29void led_set_state (unsigned short value) 30 { 31 } 32 33 #ifdef CONFIG_CMD_NET board_eth_init(bd_t * bis)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 43