blob: b608c61e23a60a64625d5c998bba66cc66011d49 [file] [log] [blame]
Tom Rini24672242018-06-01 21:10:18 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasut2a46a0b2018-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 Vasut2a46a0b2018-04-26 13:31:39 +02007 */
8
9#include <common.h>
Simon Glassafb02152019-12-28 10:45:01 -070010#include <cpu_func.h>
Marek Vasut2a46a0b2018-04-26 13:31:39 +020011#include <malloc.h>
12#include <netdev.h>
13#include <dm.h>
14#include <dm/platform_data/serial_sh.h>
15#include <asm/processor.h>
16#include <asm/mach-types.h>
17#include <asm/io.h>
18#include <linux/errno.h>
19#include <asm/arch/sys_proto.h>
20#include <asm/gpio.h>
21#include <asm/arch/gpio.h>
22#include <asm/arch/rmobile.h>
23#include <asm/arch/rcar-mstp.h>
24#include <asm/arch/sh_sdhi.h>
25#include <i2c.h>
26#include <mmc.h>
27
28DECLARE_GLOBAL_DATA_PTR;
29
30void s_init(void)
31{
32}
33
Marek Vasut2a46a0b2018-04-26 13:31:39 +020034int board_early_init_f(void)
35{
Marek Vasut2a46a0b2018-04-26 13:31:39 +020036 return 0;
37}
38
39int board_init(void)
40{
41 /* adress of boot parameters */
42 gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
43
44 return 0;
45}
46
Marek Vasut2a46a0b2018-04-26 13:31:39 +020047#define RST_BASE 0xE6160000
48#define RST_CA57RESCNT (RST_BASE + 0x40)
49#define RST_CA53RESCNT (RST_BASE + 0x44)
50#define RST_RSTOUTCR (RST_BASE + 0x58)
51#define RST_CA57_CODE 0xA5A5000F
52#define RST_CA53_CODE 0x5A5A000F
53
54void reset_cpu(ulong addr)
55{
56 unsigned long midr, cputype;
57
58 asm volatile("mrs %0, midr_el1" : "=r" (midr));
59 cputype = (midr >> 4) & 0xfff;
60
61 if (cputype == 0xd03)
62 writel(RST_CA53_CODE, RST_CA53RESCNT);
63 else if (cputype == 0xd07)
64 writel(RST_CA57_CODE, RST_CA57RESCNT);
65 else
66 hang();
67}