2 * Copyright (C) 2007,2008
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6 * Kenati Technologies, Inc.
8 * board/ms7722se/ms7722se.c
10 * SPDX-License-Identifier: GPL-2.0+
16 #include <asm/processor.h>
18 #define LED_BASE 0xB0800000
22 puts("BOARD: Hitachi UL MS7722SE\n");
28 /* Setup PTXMD[1:0] for /CS6A */
29 outw(inw(PXCR) & ~0xf000, PXCR);
34 void led_set_state(unsigned short value)
36 writew(value & 0xFF, LED_BASE);
40 int board_eth_init(bd_t *bis)
43 #ifdef CONFIG_SMC91111
44 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);