blob: ccc136f388193c36a74eb68213dd2d499918525c [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>
Philipp Tomsichcbe18f12017-09-11 12:48:12 +020015#include <asm/arch/bootrom.h>
Kever Yang3012a842017-02-23 16:09:05 +080016#include <asm/arch/clock.h>
Philipp Tomsichba165732017-08-29 18:24:05 +020017#include <asm/arch/grf_rk3399.h>
Kever Yang3012a842017-02-23 16:09:05 +080018#include <asm/arch/hardware.h>
19#include <asm/arch/periph.h>
Simon Glass9e921162019-01-21 14:53:36 -070020#include <asm/arch/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 +0200130void board_debug_uart_init(void)
131{
Kever Yang3012a842017-02-23 16:09:05 +0800132#define GRF_BASE 0xff770000
Simon Glass9e921162019-01-21 14:53:36 -0700133#define GPIO0_BASE 0xff720000
134#define PMUGRF_BASE 0xff320000
Kever Yang3012a842017-02-23 16:09:05 +0800135 struct rk3399_grf_regs * const grf = (void *)GRF_BASE;
Simon Glass9e921162019-01-21 14:53:36 -0700136#ifdef CONFIG_TARGET_CHROMEBOOK_BOB
137 struct rk3399_pmugrf_regs * const pmugrf = (void *)PMUGRF_BASE;
138 struct rockchip_gpio_regs * const gpio = (void *)GPIO0_BASE;
139#endif
Kever Yang3012a842017-02-23 16:09:05 +0800140
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200141#if defined(CONFIG_DEBUG_UART_BASE) && (CONFIG_DEBUG_UART_BASE == 0xff180000)
142 /* Enable early UART0 on the RK3399 */
143 rk_clrsetreg(&grf->gpio2c_iomux,
144 GRF_GPIO2C0_SEL_MASK,
145 GRF_UART0BT_SIN << GRF_GPIO2C0_SEL_SHIFT);
146 rk_clrsetreg(&grf->gpio2c_iomux,
147 GRF_GPIO2C1_SEL_MASK,
148 GRF_UART0BT_SOUT << GRF_GPIO2C1_SEL_SHIFT);
149#else
Simon Glass9e921162019-01-21 14:53:36 -0700150# ifdef CONFIG_TARGET_CHROMEBOOK_BOB
151 rk_setreg(&grf->io_vsel, 1 << 0);
152
153 /*
154 * Let's enable these power rails here, we are already running the SPI
155 * Flash based code.
156 */
157 spl_gpio_output(gpio, GPIO(BANK_B, 2), 1); /* PP1500_EN */
158 spl_gpio_set_pull(&pmugrf->gpio0_p, GPIO(BANK_B, 2), GPIO_PULL_NORMAL);
159
160 spl_gpio_output(gpio, GPIO(BANK_B, 4), 1); /* PP3000_EN */
161 spl_gpio_set_pull(&pmugrf->gpio0_p, GPIO(BANK_B, 4), GPIO_PULL_NORMAL);
162#endif /* CONFIG_TARGET_CHROMEBOOK_BOB */
163
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200164 /* Enable early UART2 channel C on the RK3399 */
Kever Yang3012a842017-02-23 16:09:05 +0800165 rk_clrsetreg(&grf->gpio4c_iomux,
166 GRF_GPIO4C3_SEL_MASK,
167 GRF_UART2DGBC_SIN << GRF_GPIO4C3_SEL_SHIFT);
168 rk_clrsetreg(&grf->gpio4c_iomux,
169 GRF_GPIO4C4_SEL_MASK,
170 GRF_UART2DBGC_SOUT << GRF_GPIO4C4_SEL_SHIFT);
171 /* Set channel C as UART2 input */
172 rk_clrsetreg(&grf->soc_con7,
173 GRF_UART_DBG_SEL_MASK,
174 GRF_UART_DBG_SEL_C << GRF_UART_DBG_SEL_SHIFT);
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200175#endif
176}
177
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200178void board_init_f(ulong dummy)
179{
180 struct udevice *pinctrl;
181 struct udevice *dev;
Philipp Tomsichba165732017-08-29 18:24:05 +0200182 struct rk3399_pmusgrf_regs *sgrf;
183 struct rk3399_grf_regs *grf;
Philipp Tomsich7ee16de2017-04-01 12:59:25 +0200184 int ret;
185
Kever Yang3012a842017-02-23 16:09:05 +0800186#define EARLY_UART
187#ifdef EARLY_UART
Philipp Tomsich73ced872019-02-01 16:48:31 +0100188 debug_uart_init();
189
Simon Glass9e921162019-01-21 14:53:36 -0700190# ifdef CONFIG_TARGET_CHROMEBOOK_BOB
191 int sum, i;
192
Simon Glass9e921162019-01-21 14:53:36 -0700193 /*
194 * Add a delay and ensure that the compiler does not optimise this out.
195 * This is needed since the power rails tail a while to turn on, and
196 * we get garbage serial output otherwise.
197 */
198 sum = 0;
199 for (i = 0; i < 150000; i++)
200 sum += i;
201 gru_dummy_function(sum);
202#endif /* CONFIG_TARGET_CHROMEBOOK_BOB */
203
Kever Yang3012a842017-02-23 16:09:05 +0800204 /*
205 * Debug UART can be used from here if required:
206 *
207 * debug_uart_init();
208 * printch('a');
209 * printhex8(0x1234);
210 * printascii("string");
211 */
Heinrich Schuchardt91259472018-06-03 21:10:13 +0200212 printascii("U-Boot SPL board init\n");
Kever Yang3012a842017-02-23 16:09:05 +0800213#endif
Kever Yangc4a92152017-05-05 11:01:43 +0800214
Kever Yang232cf962017-03-20 14:47:16 +0800215 ret = spl_early_init();
Kever Yang3012a842017-02-23 16:09:05 +0800216 if (ret) {
Kever Yang232cf962017-03-20 14:47:16 +0800217 debug("spl_early_init() failed: %d\n", ret);
Kever Yang3012a842017-02-23 16:09:05 +0800218 hang();
219 }
220
Philipp Tomsich504b9f12017-03-29 21:20:28 +0200221 /*
Kever Yangc4a92152017-05-05 11:01:43 +0800222 * Disable DDR and SRAM security regions.
Philipp Tomsich504b9f12017-03-29 21:20:28 +0200223 *
224 * As we are entered from the BootROM, the region from
225 * 0x0 through 0xfffff (i.e. the first MB of memory) will
226 * be protected. This will cause issues with the DW_MMC
227 * driver, which tries to DMA from/to the stack (likely)
228 * located in this range.
229 */
Philipp Tomsichba165732017-08-29 18:24:05 +0200230 sgrf = syscon_get_first_range(ROCKCHIP_SYSCON_PMUSGRF);
231 rk_clrsetreg(&sgrf->ddr_rgn_con[16], 0x1ff, 0);
232 rk_clrreg(&sgrf->slv_secure_con4, 0x2000);
233
234 /* eMMC clock generator: disable the clock multipilier */
235 grf = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
236 rk_clrreg(&grf->emmccore_con[11], 0x0ff);
Philipp Tomsich504b9f12017-03-29 21:20:28 +0200237
Kever Yang3012a842017-02-23 16:09:05 +0800238 secure_timer_init();
239
240 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
241 if (ret) {
Philipp Tomsichadbca532018-11-19 13:03:51 +0100242 pr_err("Pinctrl init failed: %d\n", ret);
Kever Yang3012a842017-02-23 16:09:05 +0800243 return;
244 }
245
246 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
247 if (ret) {
Philipp Tomsichadbca532018-11-19 13:03:51 +0100248 pr_err("DRAM init failed: %d\n", ret);
Kever Yang3012a842017-02-23 16:09:05 +0800249 return;
250 }
251}
252
Kever Yang3012a842017-02-23 16:09:05 +0800253#ifdef CONFIG_SPL_LOAD_FIT
254int board_fit_config_name_match(const char *name)
255{
256 /* Just empty function now - can't decide what to choose */
257 debug("%s: %s\n", __func__, name);
258
259 return 0;
260}
261#endif