Merge branch '2020-05-18-reduce-size-of-common.h'
[oweals/u-boot.git] / arch / arm / mach-rockchip / spl.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 <image.h>
11 #include <init.h>
12 #include <log.h>
13 #include <ram.h>
14 #include <spl.h>
15 #include <asm/arch-rockchip/bootrom.h>
16 #include <asm/io.h>
17 #include <linux/bitops.h>
18
19 DECLARE_GLOBAL_DATA_PTR;
20
21 int board_return_to_bootrom(struct spl_image_info *spl_image,
22                             struct spl_boot_device *bootdev)
23 {
24         back_to_bootrom(BROM_BOOT_NEXTSTAGE);
25
26         return 0;
27 }
28
29 __weak const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1] = {
30 };
31
32 const char *board_spl_was_booted_from(void)
33 {
34         u32  bootdevice_brom_id = readl(BROM_BOOTSOURCE_ID_ADDR);
35         const char *bootdevice_ofpath = NULL;
36
37         if (bootdevice_brom_id < ARRAY_SIZE(boot_devices))
38                 bootdevice_ofpath = boot_devices[bootdevice_brom_id];
39
40         if (bootdevice_ofpath)
41                 debug("%s: brom_bootdevice_id %x maps to '%s'\n",
42                       __func__, bootdevice_brom_id, bootdevice_ofpath);
43         else
44                 debug("%s: failed to resolve brom_bootdevice_id %x\n",
45                       __func__, bootdevice_brom_id);
46
47         return bootdevice_ofpath;
48 }
49
50 u32 spl_boot_device(void)
51 {
52         u32 boot_device = BOOT_DEVICE_MMC1;
53
54 #if defined(CONFIG_TARGET_CHROMEBOOK_JERRY) || \
55                 defined(CONFIG_TARGET_CHROMEBIT_MICKEY) || \
56                 defined(CONFIG_TARGET_CHROMEBOOK_MINNIE)
57         return BOOT_DEVICE_SPI;
58 #endif
59         if (CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM))
60                 return BOOT_DEVICE_BOOTROM;
61
62         return boot_device;
63 }
64
65 u32 spl_mmc_boot_mode(const u32 boot_device)
66 {
67         return MMCSD_MODE_RAW;
68 }
69
70 #if !defined(CONFIG_ROCKCHIP_RK3188)
71 #define TIMER_LOAD_COUNT_L      0x00
72 #define TIMER_LOAD_COUNT_H      0x04
73 #define TIMER_CONTROL_REG       0x10
74 #define TIMER_EN        0x1
75 #define TIMER_FMODE     BIT(0)
76 #define TIMER_RMODE     BIT(1)
77
78 __weak void rockchip_stimer_init(void)
79 {
80         /* If Timer already enabled, don't re-init it */
81         u32 reg = readl(CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG);
82
83         if (reg & TIMER_EN)
84                 return;
85 #ifndef CONFIG_ARM64
86         asm volatile("mcr p15, 0, %0, c14, c0, 0"
87                      : : "r"(COUNTER_FREQUENCY));
88 #endif
89         writel(0, CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG);
90         writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE);
91         writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE + 4);
92         writel(TIMER_EN | TIMER_FMODE, CONFIG_ROCKCHIP_STIMER_BASE +
93                TIMER_CONTROL_REG);
94 }
95 #endif
96
97 __weak int board_early_init_f(void)
98 {
99         return 0;
100 }
101
102 __weak int arch_cpu_init(void)
103 {
104         return 0;
105 }
106
107 void board_init_f(ulong dummy)
108 {
109         int ret;
110 #if !defined(CONFIG_TPL) || defined(CONFIG_SPL_OS_BOOT)
111         struct udevice *dev;
112 #endif
113
114 #ifdef CONFIG_DEBUG_UART
115         /*
116          * Debug UART can be used from here if required:
117          *
118          * debug_uart_init();
119          * printch('a');
120          * printhex8(0x1234);
121          * printascii("string");
122          */
123         debug_uart_init();
124         debug("\nspl:debug uart enabled in %s\n", __func__);
125 #endif
126
127         board_early_init_f();
128
129         ret = spl_early_init();
130         if (ret) {
131                 printf("spl_early_init() failed: %d\n", ret);
132                 hang();
133         }
134         arch_cpu_init();
135 #if !defined(CONFIG_ROCKCHIP_RK3188)
136         rockchip_stimer_init();
137 #endif
138 #ifdef CONFIG_SYS_ARCH_TIMER
139         /* Init ARM arch timer in arch/arm/cpu/armv7/arch_timer.c */
140         timer_init();
141 #endif
142 #if !defined(CONFIG_TPL) || defined(CONFIG_SPL_OS_BOOT)
143         debug("\nspl:init dram\n");
144         ret = uclass_get_device(UCLASS_RAM, 0, &dev);
145         if (ret) {
146                 printf("DRAM init failed: %d\n", ret);
147                 return;
148         }
149 #endif
150         preloader_console_init();
151 }
152
153 #ifdef CONFIG_SPL_LOAD_FIT
154 int __weak board_fit_config_name_match(const char *name)
155 {
156         /* Just empty function now - can't decide what to choose */
157         debug("%s: %s\n", __func__, name);
158
159         return 0;
160 }
161 #endif