Merge tag '2020-01-20-ti-2020.04' of https://gitlab.denx.de/u-boot/custodians/u-boot-ti
[platform/kernel/u-boot.git] / arch / arm / mach-rockchip / tpl.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2019 Rockchip Electronics Co., Ltd
4  */
5
6 #include <common.h>
7 #include <debug_uart.h>
8 #include <dm.h>
9 #include <hang.h>
10 #include <ram.h>
11 #include <spl.h>
12 #include <version.h>
13 #include <asm/io.h>
14 #include <asm/arch-rockchip/bootrom.h>
15
16 #define TIMER_LOAD_COUNT_L      0x00
17 #define TIMER_LOAD_COUNT_H      0x04
18 #define TIMER_CONTROL_REG       0x10
19 #define TIMER_EN        0x1
20 #define TIMER_FMODE     BIT(0)
21 #define TIMER_RMODE     BIT(1)
22
23 __weak void rockchip_stimer_init(void)
24 {
25         /* If Timer already enabled, don't re-init it */
26         u32 reg = readl(CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG);
27
28         if (reg & TIMER_EN)
29                 return;
30
31 #ifndef CONFIG_ARM64
32         asm volatile("mcr p15, 0, %0, c14, c0, 0"
33                      : : "r"(COUNTER_FREQUENCY));
34 #endif
35
36         writel(0, CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG);
37         writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE);
38         writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE + 4);
39         writel(TIMER_EN | TIMER_FMODE, CONFIG_ROCKCHIP_STIMER_BASE +
40                TIMER_CONTROL_REG);
41 }
42
43 void board_init_f(ulong dummy)
44 {
45         struct udevice *dev;
46         int ret;
47
48 #if defined(CONFIG_DEBUG_UART) && defined(CONFIG_TPL_SERIAL_SUPPORT)
49         /*
50          * Debug UART can be used from here if required:
51          *
52          * debug_uart_init();
53          * printch('a');
54          * printhex8(0x1234);
55          * printascii("string");
56          */
57         debug_uart_init();
58 #ifdef CONFIG_TPL_BANNER_PRINT
59         printascii("\nU-Boot TPL " PLAIN_VERSION " (" U_BOOT_DATE " - " \
60                                 U_BOOT_TIME ")\n");
61 #endif
62 #endif
63         ret = spl_early_init();
64         if (ret) {
65                 debug("spl_early_init() failed: %d\n", ret);
66                 hang();
67         }
68
69         /* Init secure timer */
70         rockchip_stimer_init();
71         /* Init ARM arch timer in arch/arm/cpu/ */
72         timer_init();
73
74         ret = uclass_get_device(UCLASS_RAM, 0, &dev);
75         if (ret) {
76                 printf("DRAM init failed: %d\n", ret);
77                 return;
78         }
79 }
80
81 int board_return_to_bootrom(struct spl_image_info *spl_image,
82                             struct spl_boot_device *bootdev)
83 {
84         back_to_bootrom(BROM_BOOT_NEXTSTAGE);
85
86         return 0;
87 }
88
89 u32 spl_boot_device(void)
90 {
91         return BOOT_DEVICE_BOOTROM;
92 }