blob: 73a53c1e5acfc24d3f701fa05647f7c615049059 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu113a37e2008-06-09 13:39:57 +09002/*
3 * Copyright (C) 2008 Renesas Solutions Corp.
4 * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5 * Copyright (C) 2007 Kenati Technologies, Inc.
6 *
7 * board/sh7763rdp/sh7763rdp.c
Nobuhiro Iwamatsu113a37e2008-06-09 13:39:57 +09008 */
9
10#include <common.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Nobuhiro Iwamatsu113a37e2008-06-09 13:39:57 +090012#include <asm/io.h>
13#include <asm/processor.h>
14
15#define CPU_CMDREG 0xB1000006
16#define PDCR 0xffef0006
17#define PECR 0xffef0008
18#define PFCR 0xffef000a
19#define PGCR 0xffef000c
20#define PHCR 0xffef000e
21#define PJCR 0xffef0012
22#define PKCR 0xffef0014
23#define PLCR 0xffef0016
24#define PMCR 0xffef0018
25#define PSEL1 0xffef0072
26#define PSEL2 0xffef0074
27#define PSEL3 0xffef0076
28
29int checkboard(void)
30{
31 puts("BOARD: Renesas SH7763 RDP\n");
32 return 0;
33}
34
35int board_init(void)
36{
37 vu_short dat;
38
Nobuhiro Iwamatsu73c40192008-06-17 16:27:48 +090039 /* Enable mode */
40 writew(inw(CPU_CMDREG)|0x0001, CPU_CMDREG);
Nobuhiro Iwamatsu113a37e2008-06-09 13:39:57 +090041
42 /* GPIO Setting (eth1) */
Nobuhiro Iwamatsu73c40192008-06-17 16:27:48 +090043 dat = inw(PSEL1);
44 writew(((dat & ~0xff00) | 0x2400), PSEL1);
45 writew(0, PFCR);
46 writew(0, PGCR);
47 writew(0, PHCR);
Nobuhiro Iwamatsu113a37e2008-06-09 13:39:57 +090048
49 return 0;
50}
51
Nobuhiro Iwamatsu73c40192008-06-17 16:27:48 +090052void led_set_state(unsigned short value)
Nobuhiro Iwamatsu113a37e2008-06-09 13:39:57 +090053{
54}