Merge branch 'master' of git://git.denx.de/u-boot-socfpga
[platform/kernel/u-boot.git] / board / renesas / ebisu / ebisu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
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>
7  */
8
9 #include <common.h>
10 #include <malloc.h>
11 #include <netdev.h>
12 #include <dm.h>
13 #include <dm/platform_data/serial_sh.h>
14 #include <asm/processor.h>
15 #include <asm/mach-types.h>
16 #include <asm/io.h>
17 #include <linux/errno.h>
18 #include <asm/arch/sys_proto.h>
19 #include <asm/gpio.h>
20 #include <asm/arch/gpio.h>
21 #include <asm/arch/rmobile.h>
22 #include <asm/arch/rcar-mstp.h>
23 #include <asm/arch/sh_sdhi.h>
24 #include <i2c.h>
25 #include <mmc.h>
26
27 DECLARE_GLOBAL_DATA_PTR;
28
29 void s_init(void)
30 {
31 }
32
33 int board_early_init_f(void)
34 {
35         return 0;
36 }
37
38 int board_init(void)
39 {
40         /* adress of boot parameters */
41         gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
42
43         return 0;
44 }
45
46 /*
47  * If the firmware passed a device tree use it for U-Boot DRAM setup.
48  */
49 extern u64 rcar_atf_boot_args[];
50
51 int dram_init(void)
52 {
53         const void *atf_fdt_blob = (const void *)(rcar_atf_boot_args[1]);
54         const void *blob;
55
56         /* Check if ATF passed us DTB. If not, fall back to builtin DTB. */
57         if (fdt_magic(atf_fdt_blob) == FDT_MAGIC)
58                 blob = atf_fdt_blob;
59         else
60                 blob = gd->fdt_blob;
61
62         return fdtdec_setup_mem_size_base_fdt(blob);
63 }
64
65 int dram_init_banksize(void)
66 {
67         const void *atf_fdt_blob = (const void *)(rcar_atf_boot_args[1]);
68         const void *blob;
69
70         /* Check if ATF passed us DTB. If not, fall back to builtin DTB. */
71         if (fdt_magic(atf_fdt_blob) == FDT_MAGIC)
72                 blob = atf_fdt_blob;
73         else
74                 blob = gd->fdt_blob;
75
76         fdtdec_setup_memory_banksize_fdt(blob);
77
78         return 0;
79 }
80
81 #define RST_BASE        0xE6160000
82 #define RST_CA57RESCNT  (RST_BASE + 0x40)
83 #define RST_CA53RESCNT  (RST_BASE + 0x44)
84 #define RST_RSTOUTCR    (RST_BASE + 0x58)
85 #define RST_CA57_CODE   0xA5A5000F
86 #define RST_CA53_CODE   0x5A5A000F
87
88 void reset_cpu(ulong addr)
89 {
90         unsigned long midr, cputype;
91
92         asm volatile("mrs %0, midr_el1" : "=r" (midr));
93         cputype = (midr >> 4) & 0xfff;
94
95         if (cputype == 0xd03)
96                 writel(RST_CA53_CODE, RST_CA53RESCNT);
97         else if (cputype == 0xd07)
98                 writel(RST_CA57_CODE, RST_CA57RESCNT);
99         else
100                 hang();
101 }