]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/renesas/rcar-common/gen3-spl.c
ARM: renesas: Drop include common.h
[thirdparty/u-boot.git] / board / renesas / rcar-common / gen3-spl.c
CommitLineData
5602330d
MV
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * R-Car Gen3 recovery SPL
4 *
5 * Copyright (C) 2019 Marek Vasut <marek.vasut@gmail.com>
6 */
7
9a3b4ceb 8#include <cpu_func.h>
4d72caa5 9#include <image.h>
691d719d 10#include <init.h>
f7ae49fc 11#include <log.h>
5602330d
MV
12#include <asm/io.h>
13#include <spl.h>
cd93d625 14#include <linux/bitops.h>
5602330d
MV
15
16#define RCAR_CNTC_BASE 0xE6080000
17#define CNTCR_EN BIT(0)
18
19void board_init_f(ulong dummy)
20{
21 writel(CNTCR_EN, RCAR_CNTC_BASE);
22 timer_init();
23}
24
25void spl_board_init(void)
26{
27 /* UART clocks enabled and gd valid - init serial console */
28 preloader_console_init();
29}
30
31u32 spl_boot_device(void)
32{
33 return BOOT_DEVICE_UART;
34}
35
36void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
37{
38 debug("image entry point: 0x%lx\n", spl_image->entry_point);
39 if (spl_image->os == IH_OS_ARM_TRUSTED_FIRMWARE) {
40 typedef void (*image_entry_arg_t)(int, int, int, int)
41 __attribute__ ((noreturn));
42 image_entry_arg_t image_entry =
43 (image_entry_arg_t)(uintptr_t) spl_image->entry_point;
44 image_entry(IH_MAGIC, CONFIG_SPL_TEXT_BASE, 0, 0);
45 } else {
46 typedef void __noreturn (*image_entry_noargs_t)(void);
47 image_entry_noargs_t image_entry =
48 (image_entry_noargs_t)spl_image->entry_point;
49 image_entry();
50 }
51}
52
53void s_init(void)
54{
55}
56
35b65dd8 57void reset_cpu(void)
5602330d
MV
58{
59}