blob: b6531f61edca830e8632b62ac74aa66285a0fd47 [file] [log] [blame]
Tom Rini24672242018-06-01 21:10:18 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasut2a46a0b2018-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 Vasut2a46a0b2018-04-26 13:31:39 +02007 */
8
9#include <common.h>
Simon Glassafb02152019-12-28 10:45:01 -070010#include <cpu_func.h>
Simon Glassf11478f2019-12-28 10:45:07 -070011#include <hang.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Marek Vasut2a46a0b2018-04-26 13:31:39 +020013#include <malloc.h>
14#include <netdev.h>
15#include <dm.h>
16#include <dm/platform_data/serial_sh.h>
17#include <asm/processor.h>
18#include <asm/mach-types.h>
19#include <asm/io.h>
20#include <linux/errno.h>
21#include <asm/arch/sys_proto.h>
22#include <asm/gpio.h>
23#include <asm/arch/gpio.h>
24#include <asm/arch/rmobile.h>
25#include <asm/arch/rcar-mstp.h>
26#include <asm/arch/sh_sdhi.h>
27#include <i2c.h>
28#include <mmc.h>
29
30DECLARE_GLOBAL_DATA_PTR;
31
32void s_init(void)
33{
34}
35
Marek Vasut2a46a0b2018-04-26 13:31:39 +020036int board_early_init_f(void)
37{
Marek Vasut2a46a0b2018-04-26 13:31:39 +020038 return 0;
39}
40
41int board_init(void)
42{
43 /* adress of boot parameters */
44 gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
45
46 return 0;
47}
48
Marek Vasut2a46a0b2018-04-26 13:31:39 +020049#define RST_BASE 0xE6160000
Marek Vasut2a46a0b2018-04-26 13:31:39 +020050#define RST_CA53RESCNT (RST_BASE + 0x44)
Marek Vasut2a46a0b2018-04-26 13:31:39 +020051#define RST_CA53_CODE 0x5A5A000F
52
53void reset_cpu(ulong addr)
54{
Lad Prabhakar6cd98c12020-09-17 15:28:22 +010055 writel(RST_CA53_CODE, RST_CA53RESCNT);
Marek Vasut2a46a0b2018-04-26 13:31:39 +020056}