Tom Rini | 2467224 | 2018-06-01 21:10:18 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marek Vasut | 2a46a0b | 2018-04-26 13:31:39 +0200 | [diff] [blame] | 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> |
Marek Vasut | 2a46a0b | 2018-04-26 13:31:39 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Marek Vasut | 2a46a0b | 2018-04-26 13:31:39 +0200 | [diff] [blame] | 11 | #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 | |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
| 30 | void s_init(void) |
| 31 | { |
| 32 | } |
| 33 | |
Marek Vasut | 2a46a0b | 2018-04-26 13:31:39 +0200 | [diff] [blame] | 34 | int board_early_init_f(void) |
| 35 | { |
Marek Vasut | 2a46a0b | 2018-04-26 13:31:39 +0200 | [diff] [blame] | 36 | return 0; |
| 37 | } |
| 38 | |
| 39 | int 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 Vasut | 2a46a0b | 2018-04-26 13:31:39 +0200 | [diff] [blame] | 47 | #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 | |
| 54 | void 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 | } |