blob: 9c20f56dc949c468bab0589f06f480988d59ecef [file] [log] [blame]
Kever Yang441a6d32017-02-23 16:09:05 +08001/*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
Philipp Tomsich7e00d862017-09-11 12:48:12 +02003 * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
Kever Yang441a6d32017-02-23 16:09:05 +08004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
Philipp Tomsich7e00d862017-09-11 12:48:12 +02009#include <asm/arch/bootrom.h>
Kever Yang441a6d32017-02-23 16:09:05 +080010#include <asm/arch/clock.h>
Philipp Tomsich7deb0982017-08-29 18:24:05 +020011#include <asm/arch/grf_rk3399.h>
Kever Yang441a6d32017-02-23 16:09:05 +080012#include <asm/arch/hardware.h>
13#include <asm/arch/periph.h>
Philipp Tomsich7deb0982017-08-29 18:24:05 +020014#include <asm/io.h>
15#include <debug_uart.h>
16#include <dm.h>
Kever Yang441a6d32017-02-23 16:09:05 +080017#include <dm/pinctrl.h>
Philipp Tomsich7deb0982017-08-29 18:24:05 +020018#include <ram.h>
19#include <spl.h>
20#include <syscon.h>
Kever Yang441a6d32017-02-23 16:09:05 +080021
22DECLARE_GLOBAL_DATA_PTR;
23
Philipp Tomsich7e00d862017-09-11 12:48:12 +020024void board_return_to_bootrom(void)
25{
26 back_to_bootrom();
27}
28
Philipp Tomsich425e7172017-09-29 19:27:58 +020029static const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1] = {
30 [BROM_BOOTSOURCE_EMMC] = "/sdhci@fe330000",
31 [BROM_BOOTSOURCE_SPINOR] = "/spi@ff1d0000",
32 [BROM_BOOTSOURCE_SD] = "/dwmmc@fe320000",
33};
34
35const char *board_spl_was_booted_from(void)
36{
37 u32 bootdevice_brom_id = readl(RK3399_BROM_BOOTSOURCE_ID_ADDR);
38 const char *bootdevice_ofpath = NULL;
39
40 if (bootdevice_brom_id < ARRAY_SIZE(boot_devices))
41 bootdevice_ofpath = boot_devices[bootdevice_brom_id];
42
43 if (bootdevice_ofpath)
44 debug("%s: brom_bootdevice_id %x maps to '%s'\n",
45 __func__, bootdevice_brom_id, bootdevice_ofpath);
46 else
47 debug("%s: failed to resolve brom_bootdevice_id %x\n",
48 __func__, bootdevice_brom_id);
49
50 return bootdevice_ofpath;
51}
52
Kever Yang441a6d32017-02-23 16:09:05 +080053u32 spl_boot_device(void)
54{
Philipp Tomsich7e00d862017-09-11 12:48:12 +020055 u32 boot_device = BOOT_DEVICE_MMC1;
56
57 if (CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM))
58 return BOOT_DEVICE_BOOTROM;
59
60 return boot_device;
Kever Yang441a6d32017-02-23 16:09:05 +080061}
62
63u32 spl_boot_mode(const u32 boot_device)
64{
65 return MMCSD_MODE_RAW;
66}
67
68#define TIMER_CHN10_BASE 0xff8680a0
69#define TIMER_END_COUNT_L 0x00
70#define TIMER_END_COUNT_H 0x04
71#define TIMER_INIT_COUNT_L 0x10
72#define TIMER_INIT_COUNT_H 0x14
73#define TIMER_CONTROL_REG 0x1c
74
75#define TIMER_EN 0x1
76#define TIMER_FMODE (0 << 1)
77#define TIMER_RMODE (1 << 1)
78
79void secure_timer_init(void)
80{
81 writel(0xffffffff, TIMER_CHN10_BASE + TIMER_END_COUNT_L);
82 writel(0xffffffff, TIMER_CHN10_BASE + TIMER_END_COUNT_H);
83 writel(0, TIMER_CHN10_BASE + TIMER_INIT_COUNT_L);
84 writel(0, TIMER_CHN10_BASE + TIMER_INIT_COUNT_H);
85 writel(TIMER_EN | TIMER_FMODE, TIMER_CHN10_BASE + TIMER_CONTROL_REG);
86}
87
Philipp Tomsich41029e62017-04-01 12:59:25 +020088void board_debug_uart_init(void)
89{
Kever Yang441a6d32017-02-23 16:09:05 +080090#define GRF_BASE 0xff770000
91 struct rk3399_grf_regs * const grf = (void *)GRF_BASE;
92
Philipp Tomsich41029e62017-04-01 12:59:25 +020093#if defined(CONFIG_DEBUG_UART_BASE) && (CONFIG_DEBUG_UART_BASE == 0xff180000)
94 /* Enable early UART0 on the RK3399 */
95 rk_clrsetreg(&grf->gpio2c_iomux,
96 GRF_GPIO2C0_SEL_MASK,
97 GRF_UART0BT_SIN << GRF_GPIO2C0_SEL_SHIFT);
98 rk_clrsetreg(&grf->gpio2c_iomux,
99 GRF_GPIO2C1_SEL_MASK,
100 GRF_UART0BT_SOUT << GRF_GPIO2C1_SEL_SHIFT);
101#else
102 /* Enable early UART2 channel C on the RK3399 */
Kever Yang441a6d32017-02-23 16:09:05 +0800103 rk_clrsetreg(&grf->gpio4c_iomux,
104 GRF_GPIO4C3_SEL_MASK,
105 GRF_UART2DGBC_SIN << GRF_GPIO4C3_SEL_SHIFT);
106 rk_clrsetreg(&grf->gpio4c_iomux,
107 GRF_GPIO4C4_SEL_MASK,
108 GRF_UART2DBGC_SOUT << GRF_GPIO4C4_SEL_SHIFT);
109 /* Set channel C as UART2 input */
110 rk_clrsetreg(&grf->soc_con7,
111 GRF_UART_DBG_SEL_MASK,
112 GRF_UART_DBG_SEL_C << GRF_UART_DBG_SEL_SHIFT);
Philipp Tomsich41029e62017-04-01 12:59:25 +0200113#endif
114}
115
Philipp Tomsich41029e62017-04-01 12:59:25 +0200116void board_init_f(ulong dummy)
117{
118 struct udevice *pinctrl;
119 struct udevice *dev;
Philipp Tomsich7deb0982017-08-29 18:24:05 +0200120 struct rk3399_pmusgrf_regs *sgrf;
121 struct rk3399_grf_regs *grf;
Philipp Tomsich41029e62017-04-01 12:59:25 +0200122 int ret;
123
Kever Yang441a6d32017-02-23 16:09:05 +0800124#define EARLY_UART
125#ifdef EARLY_UART
126 /*
127 * Debug UART can be used from here if required:
128 *
129 * debug_uart_init();
130 * printch('a');
131 * printhex8(0x1234);
132 * printascii("string");
133 */
134 debug_uart_init();
135 printascii("U-Boot SPL board init");
136#endif
Kever Yanga6697732017-05-05 11:01:43 +0800137
Kever Yange603a3d2017-03-20 14:47:16 +0800138 ret = spl_early_init();
Kever Yang441a6d32017-02-23 16:09:05 +0800139 if (ret) {
Kever Yange603a3d2017-03-20 14:47:16 +0800140 debug("spl_early_init() failed: %d\n", ret);
Kever Yang441a6d32017-02-23 16:09:05 +0800141 hang();
142 }
143
Philipp Tomsich2a34cbb2017-03-29 21:20:28 +0200144 /*
Kever Yanga6697732017-05-05 11:01:43 +0800145 * Disable DDR and SRAM security regions.
Philipp Tomsich2a34cbb2017-03-29 21:20:28 +0200146 *
147 * As we are entered from the BootROM, the region from
148 * 0x0 through 0xfffff (i.e. the first MB of memory) will
149 * be protected. This will cause issues with the DW_MMC
150 * driver, which tries to DMA from/to the stack (likely)
151 * located in this range.
152 */
Philipp Tomsich7deb0982017-08-29 18:24:05 +0200153 sgrf = syscon_get_first_range(ROCKCHIP_SYSCON_PMUSGRF);
154 rk_clrsetreg(&sgrf->ddr_rgn_con[16], 0x1ff, 0);
155 rk_clrreg(&sgrf->slv_secure_con4, 0x2000);
156
157 /* eMMC clock generator: disable the clock multipilier */
158 grf = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
159 rk_clrreg(&grf->emmccore_con[11], 0x0ff);
Philipp Tomsich2a34cbb2017-03-29 21:20:28 +0200160
Kever Yang441a6d32017-02-23 16:09:05 +0800161 secure_timer_init();
162
163 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
164 if (ret) {
165 debug("Pinctrl init failed: %d\n", ret);
166 return;
167 }
168
169 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
170 if (ret) {
171 debug("DRAM init failed: %d\n", ret);
172 return;
173 }
174}
175
Kever Yang441a6d32017-02-23 16:09:05 +0800176#ifdef CONFIG_SPL_LOAD_FIT
177int board_fit_config_name_match(const char *name)
178{
179 /* Just empty function now - can't decide what to choose */
180 debug("%s: %s\n", __func__, name);
181
182 return 0;
183}
184#endif