Marek Vasut | b700f03 | 2019-07-29 19:59:44 +0200 | [diff] [blame] | 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> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 11 | #include <hang.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 12 | #include <init.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Marek Vasut | b700f03 | 2019-07-29 19:59:44 +0200 | [diff] [blame] | 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 | |
| 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Marek Vasut | b700f03 | 2019-07-29 19:59:44 +0200 | [diff] [blame] | 22 | int board_init(void) |
| 23 | { |
Marek Vasut | b700f03 | 2019-07-29 19:59:44 +0200 | [diff] [blame] | 24 | return 0; |
| 25 | } |
| 26 | |
| 27 | #define RST_BASE 0xE6160000 |
| 28 | #define RST_CA57RESCNT (RST_BASE + 0x40) |
| 29 | #define RST_CA53RESCNT (RST_BASE + 0x44) |
| 30 | #define RST_RSTOUTCR (RST_BASE + 0x58) |
| 31 | #define RST_CA57_CODE 0xA5A5000F |
| 32 | #define RST_CA53_CODE 0x5A5A000F |
| 33 | |
Harald Seiler | 6f14d5f | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 34 | void reset_cpu(void) |
Marek Vasut | b700f03 | 2019-07-29 19:59:44 +0200 | [diff] [blame] | 35 | { |
| 36 | unsigned long midr, cputype; |
| 37 | |
| 38 | asm volatile("mrs %0, midr_el1" : "=r" (midr)); |
| 39 | cputype = (midr >> 4) & 0xfff; |
| 40 | |
| 41 | if (cputype == 0xd03) |
| 42 | writel(RST_CA53_CODE, RST_CA53RESCNT); |
| 43 | else if (cputype == 0xd07) |
| 44 | writel(RST_CA57_CODE, RST_CA57RESCNT); |
| 45 | else |
| 46 | hang(); |
| 47 | } |