Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[platform/kernel/u-boot.git] / board / renesas / condor / condor.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * board/renesas/condor/condor.c
4  *     This file is Condor board support.
5  *
6  * Copyright (C) 2019 Marek Vasut <marek.vasut+renesas@gmail.com>
7  */
8
9 #include <common.h>
10 #include <cpu_func.h>
11 #include <hang.h>
12 #include <init.h>
13 #include <asm/processor.h>
14 #include <asm/mach-types.h>
15 #include <asm/io.h>
16 #include <linux/errno.h>
17 #include <asm/arch/sys_proto.h>
18
19 DECLARE_GLOBAL_DATA_PTR;
20
21 void s_init(void)
22 {
23 }
24
25 int board_early_init_f(void)
26 {
27         return 0;
28 }
29
30 int board_init(void)
31 {
32         /* adress of boot parameters */
33         gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
34
35         return 0;
36 }
37
38 #define RST_BASE        0xE6160000
39 #define RST_CA57RESCNT  (RST_BASE + 0x40)
40 #define RST_CA53RESCNT  (RST_BASE + 0x44)
41 #define RST_RSTOUTCR    (RST_BASE + 0x58)
42 #define RST_CA57_CODE   0xA5A5000F
43 #define RST_CA53_CODE   0x5A5A000F
44
45 void reset_cpu(ulong addr)
46 {
47         unsigned long midr, cputype;
48
49         asm volatile("mrs %0, midr_el1" : "=r" (midr));
50         cputype = (midr >> 4) & 0xfff;
51
52         if (cputype == 0xd03)
53                 writel(RST_CA53_CODE, RST_CA53RESCNT);
54         else if (cputype == 0xd07)
55                 writel(RST_CA57_CODE, RST_CA57RESCNT);
56         else
57                 hang();
58 }