blob: 11fbd5b07d73364e256a39d1e0631dd0abc66429 [file] [log] [blame]
Marek Vasutb700f032019-07-29 19:59:44 +02001// 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>
Simon Glassafb02152019-12-28 10:45:01 -070010#include <cpu_func.h>
Marek Vasutb700f032019-07-29 19:59:44 +020011#include <asm/processor.h>
12#include <asm/mach-types.h>
13#include <asm/io.h>
14#include <linux/errno.h>
15#include <asm/arch/sys_proto.h>
16
17DECLARE_GLOBAL_DATA_PTR;
18
19void s_init(void)
20{
21}
22
23int board_early_init_f(void)
24{
25 return 0;
26}
27
28int board_init(void)
29{
30 /* adress of boot parameters */
31 gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
32
33 return 0;
34}
35
36#define RST_BASE 0xE6160000
37#define RST_CA57RESCNT (RST_BASE + 0x40)
38#define RST_CA53RESCNT (RST_BASE + 0x44)
39#define RST_RSTOUTCR (RST_BASE + 0x58)
40#define RST_CA57_CODE 0xA5A5000F
41#define RST_CA53_CODE 0x5A5A000F
42
43void reset_cpu(ulong addr)
44{
45 unsigned long midr, cputype;
46
47 asm volatile("mrs %0, midr_el1" : "=r" (midr));
48 cputype = (midr >> 4) & 0xfff;
49
50 if (cputype == 0xd03)
51 writel(RST_CA53_CODE, RST_CA53RESCNT);
52 else if (cputype == 0xd07)
53 writel(RST_CA57_CODE, RST_CA57RESCNT);
54 else
55 hang();
56}