1 /* 2 * Copyright (C) 2007,2008 3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 4 * 5 * Copyright (C) 2007 6 * Kenati Technologies, Inc. 7 * 8 * board/ms7722se/ms7722se.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 18 #define LED_BASE 0xB0800000 19 20 int checkboard(void) 21 { 22 puts("BOARD: Hitachi UL MS7722SE\n"); 23 return 0; 24 } 25 26 int board_init(void) 27 { 28 /* Setup PTXMD[1:0] for /CS6A */ 29 outw(inw(PXCR) & ~0xf000, PXCR); 30 31 return 0; 32 } 33 34 void led_set_state(unsigned short value) 35 { 36 writew(value & 0xFF, LED_BASE); 37 } 38 39 #ifdef CONFIG_CMD_NET 40 int board_eth_init(bd_t *bis) 41 { 42 int rc = 0; 43 #ifdef CONFIG_SMC91111 44 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); 45 #endif 46 return rc; 47 } 48 #endif 49