blob: 800ca800223b5c8a25374d165d6c4b9ffa289eb8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kever Yang3012a842017-02-23 16:09:05 +08002/*
3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
Philipp Tomsichcbe18f12017-09-11 12:48:12 +02004 * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
Kever Yang3012a842017-02-23 16:09:05 +08005 */
6
7#include <common.h>
Simon Glassc35f8e52019-01-21 14:53:31 -07008#include <debug_uart.h>
9#include <dm.h>
10#include <ram.h>
11#include <spl.h>
Simon Glass9e921162019-01-21 14:53:36 -070012#include <spl_gpio.h>
Simon Glassc35f8e52019-01-21 14:53:31 -070013#include <syscon.h>
14#include <asm/io.h>
Kever Yang15f09a12019-03-28 11:01:23 +080015#include <asm/arch-rockchip/bootrom.h>
16#include <asm/arch-rockchip/clock.h>
17#include <asm/arch-rockchip/grf_rk3399.h>
18#include <asm/arch-rockchip/hardware.h>
19#include <asm/arch-rockchip/periph.h>
20#include <asm/arch-rockchip/sys_proto.h>
Kever Yang3012a842017-02-23 16:09:05 +080021#include <dm/pinctrl.h>
Kever Yang3012a842017-02-23 16:09:05 +080022
Philipp Tomsichcbe18f12017-09-11 12:48:12 +020023void board_return_to_bootrom(void)
24{
Philipp Tomsichb82bd1f2017-10-10 16:21:16 +020025 back_to_bootrom(BROM_BOOT_NEXTSTAGE);
Philipp Tomsichcbe18f12017-09-11 12:48:12 +020026}
27
Philipp Tomsichc55addd2017-09-29 19:27:58 +020028static const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1] = {
29 [BROM_BOOTSOURCE_EMMC] = "/sdhci@fe330000",
30 [BROM_BOOTSOURCE_SPINOR] = "/spi@ff1d0000",
31 [BROM_BOOTSOURCE_SD] = "/dwmmc@fe320000",
32};
33
34const char *board_spl_was_booted_from(void)
35{
36 u32 bootdevice_brom_id = readl(RK3399_BROM_BOOTSOURCE_ID_ADDR);
37 const char *bootdevice_ofpath = NULL;
38
39 if (bootdevice_brom_id < ARRAY_SIZE(boot_devices))
40 bootdevice_ofpath = boot_devices[bootdevice_brom_id];
41
42 if (bootdevice_ofpath)
43 debug("%s: brom_bootdevice_id %x maps to '%s'\n",
44 __func__, bootdevice_brom_id, bootdevice_ofpath);
45 else
46 debug("%s: failed to resolve brom_bootdevice_id %x\n",
47 __func__, bootdevice_brom_id);
48
49 return bootdevice_ofpath;
50}
51
Kever Yang3012a842017-02-23 16:09:05 +080052u32 spl_boot_device(void)
53{
Philipp Tomsichcbe18f12017-09-11 12:48:12 +020054 u32 boot_device = BOOT_DEVICE_MMC1;
55
56 if (CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM))
57 return BOOT_DEVICE_BOOTROM;
58
59 return boot_device;
Kever Yang3012a842017-02-23 16:09:05 +080060}
61
Philipp Tomsiche5f2ecc2018-05-24 17:15:52 +020062const char *spl_decode_boot_device(u32 boot_device)
63{
64 int i;
65 static const struct {
66 u32 boot_device;
67 const char *ofpath;
68 } spl_boot_devices_tbl[] = {
69 { BOOT_DEVICE_MMC1, "/dwmmc@fe320000" },
70 { BOOT_DEVICE_MMC2, "/sdhci@fe330000" },
71 { BOOT_DEVICE_SPI, "/spi@ff1d0000" },
72 };
73
74 for (i = 0; i < ARRAY_SIZE(spl_boot_devices_tbl); ++i)
75 if (spl_boot_devices_tbl[i].boot_device == boot_device)
76 return spl_boot_devices_tbl[i].ofpath;
77
78 return NULL;
79}
80
81void spl_perform_fixups(struct spl_image_info *spl_image)
82{
83 void *blob = spl_image->fdt_addr;
84 const char *boot_ofpath;
85 int chosen;
86
87 /*
88 * Inject the ofpath of the device the full U-Boot (or Linux in
89 * Falcon-mode) was booted from into the FDT, if a FDT has been
90 * loaded at the same time.
91 */
92 if (!blob)
93 return;
94
95 boot_ofpath = spl_decode_boot_device(spl_image->boot_device);
96 if (!boot_ofpath) {
97 pr_err("%s: could not map boot_device to ofpath\n", __func__);
98 return;
99 }
100
101 chosen = fdt_find_or_add_subnode(blob, 0, "chosen");
102 if (chosen < 0) {
103 pr_err("%s: could not find/create '/chosen'\n", __func__);
104 return;
105 }
106 fdt_setprop_string(blob, chosen,
107 "u-boot,spl-boot-device", boot_ofpath);
108}
109
Kever Yang3012a842017-02-23 16:09:05 +0800110#define TIMER_CHN10_BASE 0xff8680a0
111#define TIMER_END_COUNT_L 0x00
112#define TIMER_END_COUNT_H 0x04
113#define TIMER_INIT_COUNT_L 0x10
114#define TIMER_INIT_COUNT_H 0x14
115#define TIMER_CONTROL_REG 0x1c
116
117#define TIMER_EN 0x1
118#define TIMER_FMODE (0 << 1)
119#define TIMER_RMODE (1 << 1)
120
121void secure_timer_init(void)
122{
123 writel(0xffffffff, TIMER_CHN10_BASE + TIMER_END_COUNT_L);
124 writel(0xffffffff, TIMER_CHN10_BASE + TIMER_END_COUNT_H);
125 writel(0, TIMER_CHN10_BASE + TIMER_INIT_COUNT_L);
126 writel(0, TIMER_CHN10_BASE + TIMER_INIT_COUNT_H);
127 writel(TIMER_EN | TIMER_FMODE, TIMER_CHN10_BASE + TIMER_CONTROL_REG);
128}
129
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200130
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200131void board_init_f(ulong dummy)
132{
133 struct udevice *pinctrl;
134 struct udevice *dev;
Philipp Tomsichba165732017-08-29 18:24:05 +0200135 struct rk3399_pmusgrf_regs *sgrf;
136 struct rk3399_grf_regs *grf;
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200137 int ret;
138
Kever Yangc79bce12019-03-29 09:09:07 +0800139#ifdef CONFIG_DEBUG_UART
Philipp Tomsich73ced872019-02-01 16:48:31 +0100140 debug_uart_init();
141
Simon Glass9e921162019-01-21 14:53:36 -0700142# ifdef CONFIG_TARGET_CHROMEBOOK_BOB
143 int sum, i;
144
Simon Glass9e921162019-01-21 14:53:36 -0700145 /*
146 * Add a delay and ensure that the compiler does not optimise this out.
147 * This is needed since the power rails tail a while to turn on, and
148 * we get garbage serial output otherwise.
149 */
150 sum = 0;
151 for (i = 0; i < 150000; i++)
152 sum += i;
153 gru_dummy_function(sum);
154#endif /* CONFIG_TARGET_CHROMEBOOK_BOB */
155
Kever Yang3012a842017-02-23 16:09:05 +0800156 /*
157 * Debug UART can be used from here if required:
158 *
159 * debug_uart_init();
160 * printch('a');
161 * printhex8(0x1234);
162 * printascii("string");
163 */
Heinrich Schuchardt91259472018-06-03 21:10:13 +0200164 printascii("U-Boot SPL board init\n");
Kever Yang3012a842017-02-23 16:09:05 +0800165#endif
Kever Yangc4a92152017-05-05 11:01:43 +0800166
Kever Yang232cf962017-03-20 14:47:16 +0800167 ret = spl_early_init();
Kever Yang3012a842017-02-23 16:09:05 +0800168 if (ret) {
Kever Yang232cf962017-03-20 14:47:16 +0800169 debug("spl_early_init() failed: %d\n", ret);
Kever Yang3012a842017-02-23 16:09:05 +0800170 hang();
171 }
172
Philipp Tomsich504b9f12017-03-29 21:20:28 +0200173 /*
Kever Yangc4a92152017-05-05 11:01:43 +0800174 * Disable DDR and SRAM security regions.
Philipp Tomsich504b9f12017-03-29 21:20:28 +0200175 *
176 * As we are entered from the BootROM, the region from
177 * 0x0 through 0xfffff (i.e. the first MB of memory) will
178 * be protected. This will cause issues with the DW_MMC
179 * driver, which tries to DMA from/to the stack (likely)
180 * located in this range.
181 */
Philipp Tomsichba165732017-08-29 18:24:05 +0200182 sgrf = syscon_get_first_range(ROCKCHIP_SYSCON_PMUSGRF);
183 rk_clrsetreg(&sgrf->ddr_rgn_con[16], 0x1ff, 0);
184 rk_clrreg(&sgrf->slv_secure_con4, 0x2000);
185
186 /* eMMC clock generator: disable the clock multipilier */
187 grf = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
188 rk_clrreg(&grf->emmccore_con[11], 0x0ff);
Philipp Tomsich504b9f12017-03-29 21:20:28 +0200189
Kever Yang3012a842017-02-23 16:09:05 +0800190 secure_timer_init();
191
192 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
193 if (ret) {
Philipp Tomsichadbca532018-11-19 13:03:51 +0100194 pr_err("Pinctrl init failed: %d\n", ret);
Kever Yang3012a842017-02-23 16:09:05 +0800195 return;
196 }
197
198 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
199 if (ret) {
Philipp Tomsichadbca532018-11-19 13:03:51 +0100200 pr_err("DRAM init failed: %d\n", ret);
Kever Yang3012a842017-02-23 16:09:05 +0800201 return;
202 }
203}
204
Kever Yang3012a842017-02-23 16:09:05 +0800205#ifdef CONFIG_SPL_LOAD_FIT
206int board_fit_config_name_match(const char *name)
207{
208 /* Just empty function now - can't decide what to choose */
209 debug("%s: %s\n", __func__, name);
210
211 return 0;
212}
213#endif