2007-09-22 17:31:13 +00:00
|
|
|
/*
|
2008-06-17 07:27:38 +00:00
|
|
|
* Copyright (C) 2007,2008
|
2007-09-22 17:31:13 +00:00
|
|
|
* Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007
|
|
|
|
* Kenati Technologies, Inc.
|
2007-12-27 00:52:50 +00:00
|
|
|
*
|
2007-09-22 17:31:13 +00:00
|
|
|
* board/ms7722se/ms7722se.c
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-09-22 17:31:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2009-10-05 05:37:03 +00:00
|
|
|
#include <netdev.h>
|
2007-09-22 17:31:13 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
|
|
|
|
#define LED_BASE 0xB0800000
|
|
|
|
|
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
puts("BOARD: Hitachi UL MS7722SE\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_init(void)
|
|
|
|
{
|
|
|
|
/* Setup PTXMD[1:0] for /CS6A */
|
|
|
|
outw(inw(PXCR) & ~0xf000, PXCR);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-17 07:27:38 +00:00
|
|
|
void led_set_state(unsigned short value)
|
2007-09-22 17:31:13 +00:00
|
|
|
{
|
2008-06-17 07:27:38 +00:00
|
|
|
writew(value & 0xFF, LED_BASE);
|
2007-09-22 17:31:13 +00:00
|
|
|
}
|
2009-10-05 05:37:03 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_CMD_NET
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
#ifdef CONFIG_SMC91111
|
|
|
|
rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
|
|
|
|
#endif
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif
|