1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2007,2008
4 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7 * Kenati Technologies, Inc.
9 * board/ms7722se/ms7722se.c
15 #include <asm/processor.h>
17 #define LED_BASE 0xB0800000
21 puts("BOARD: Hitachi UL MS7722SE\n");
27 /* Setup PTXMD[1:0] for /CS6A */
28 outw(inw(PXCR) & ~0xf000, PXCR);
33 void led_set_state(unsigned short value)
35 writew(value & 0xFF, LED_BASE);
39 int board_eth_init(bd_t *bis)
42 #ifdef CONFIG_SMC91111
43 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);