blob: 9a7019259610f1ad53ffb91197b40d1172d04dd8 [file] [log] [blame]
Tom Rini040b2582018-06-01 21:10:18 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasut63e22512018-04-26 13:31:39 +02002/*
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 Vasut63e22512018-04-26 13:31:39 +02007 */
8
9#include <common.h>
Simon Glass9a3b4ce2019-12-28 10:45:01 -070010#include <cpu_func.h>
Simon Glassdb41d652019-12-28 10:45:07 -070011#include <hang.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Marek Vasut63e22512018-04-26 13:31:39 +020013#include <malloc.h>
14#include <netdev.h>
15#include <dm.h>
Simon Glass401d1c42020-10-30 21:38:53 -060016#include <asm/global_data.h>
Marek Vasut63e22512018-04-26 13:31:39 +020017#include <dm/platform_data/serial_sh.h>
18#include <asm/processor.h>
19#include <asm/mach-types.h>
20#include <asm/io.h>
21#include <linux/errno.h>
22#include <asm/arch/sys_proto.h>
23#include <asm/gpio.h>
24#include <asm/arch/gpio.h>
25#include <asm/arch/rmobile.h>
26#include <asm/arch/rcar-mstp.h>
27#include <asm/arch/sh_sdhi.h>
28#include <i2c.h>
29#include <mmc.h>
30
31DECLARE_GLOBAL_DATA_PTR;
32
Marek Vasut63e22512018-04-26 13:31:39 +020033int board_init(void)
34{
Marek Vasut63e22512018-04-26 13:31:39 +020035 return 0;
36}
37
Marek Vasut63e22512018-04-26 13:31:39 +020038#define RST_BASE 0xE6160000
Marek Vasut63e22512018-04-26 13:31:39 +020039#define RST_CA53RESCNT (RST_BASE + 0x44)
Marek Vasut63e22512018-04-26 13:31:39 +020040#define RST_CA53_CODE 0x5A5A000F
41
Harald Seiler35b65dd2020-12-15 16:47:52 +010042void reset_cpu(void)
Marek Vasut63e22512018-04-26 13:31:39 +020043{
Lad Prabhakard03ad062020-09-17 15:28:22 +010044 writel(RST_CA53_CODE, RST_CA53RESCNT);
Marek Vasut63e22512018-04-26 13:31:39 +020045}