blob: a35f72e83b9ef46d8774568a1ac470e531bd4f0f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Yoshihiro Shimodab2b5e2b2007-12-03 22:58:50 +09002/*
3 * Copyright (C) 2007
4 * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5 *
6 * Copyright (C) 2007
7 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8 *
9 * Copyright (C) 2007
10 * Kenati Technologies, Inc.
11 *
12 * board/ms7720se/ms7720se.c
Yoshihiro Shimodab2b5e2b2007-12-03 22:58:50 +090013 */
14
15#include <common.h>
16#include <asm/io.h>
17#include <asm/processor.h>
18
19#define LED_BASE 0xB0800000
20
21int checkboard(void)
22{
23 puts("BOARD: Hitachi UL MS7720SE\n");
24 return 0;
25}
26
27int board_init(void)
28{
Yoshihiro Shimodab2b5e2b2007-12-03 22:58:50 +090029 return 0;
30}
31
Yoshihiro Shimodab2b5e2b2007-12-03 22:58:50 +090032void led_set_state(unsigned short value)
33{
34 outw(value & 0xFF, LED_BASE);
35}