blob: 81d7f8eafab49a9fcd00a2649a08eaebe4282213 [file] [log] [blame]
Tom Rini040b2582018-06-01 21:10:18 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasut63e22512018-04-26 13:31:39 +02002/*
3 * board/renesas/ebisu/ebisu.c
4 * This file is Ebisu board support.
5 *
6 * Copyright (C) 2018 Marek Vasut <marek.vasut+renesas@gmail.com>
Marek Vasut63e22512018-04-26 13:31:39 +02007 */
8
9#include <common.h>
Simon Glass9a3b4ce2019-12-28 10:45:01 -070010#include <cpu_func.h>
Simon Glassdb41d652019-12-28 10:45:07 -070011#include <hang.h>
Marek Vasut63e22512018-04-26 13:31:39 +020012#include <malloc.h>
13#include <netdev.h>
14#include <dm.h>
15#include <dm/platform_data/serial_sh.h>
16#include <asm/processor.h>
17#include <asm/mach-types.h>
18#include <asm/io.h>
19#include <linux/errno.h>
20#include <asm/arch/sys_proto.h>
21#include <asm/gpio.h>
22#include <asm/arch/gpio.h>
23#include <asm/arch/rmobile.h>
24#include <asm/arch/rcar-mstp.h>
25#include <asm/arch/sh_sdhi.h>
26#include <i2c.h>
27#include <mmc.h>
28
29DECLARE_GLOBAL_DATA_PTR;
30
31void s_init(void)
32{
33}
34
Marek Vasut63e22512018-04-26 13:31:39 +020035int board_early_init_f(void)
36{
Marek Vasut63e22512018-04-26 13:31:39 +020037 return 0;
38}
39
40int board_init(void)
41{
42 /* adress of boot parameters */
43 gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
44
45 return 0;
46}
47
Marek Vasut63e22512018-04-26 13:31:39 +020048#define RST_BASE 0xE6160000
49#define RST_CA57RESCNT (RST_BASE + 0x40)
50#define RST_CA53RESCNT (RST_BASE + 0x44)
51#define RST_RSTOUTCR (RST_BASE + 0x58)
52#define RST_CA57_CODE 0xA5A5000F
53#define RST_CA53_CODE 0x5A5A000F
54
55void reset_cpu(ulong addr)
56{
57 unsigned long midr, cputype;
58
59 asm volatile("mrs %0, midr_el1" : "=r" (midr));
60 cputype = (midr >> 4) & 0xfff;
61
62 if (cputype == 0xd03)
63 writel(RST_CA53_CODE, RST_CA53RESCNT);
64 else if (cputype == 0xd07)
65 writel(RST_CA57_CODE, RST_CA57RESCNT);
66 else
67 hang();
68}