Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd |
Philipp Tomsich | cbe18f1 | 2017-09-11 12:48:12 +0200 | [diff] [blame] | 4 | * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | c35f8e5 | 2019-01-21 14:53:31 -0700 | [diff] [blame] | 8 | #include <debug_uart.h> |
| 9 | #include <dm.h> |
| 10 | #include <ram.h> |
| 11 | #include <spl.h> |
Simon Glass | 9e92116 | 2019-01-21 14:53:36 -0700 | [diff] [blame^] | 12 | #include <spl_gpio.h> |
Simon Glass | c35f8e5 | 2019-01-21 14:53:31 -0700 | [diff] [blame] | 13 | #include <syscon.h> |
| 14 | #include <asm/io.h> |
Philipp Tomsich | cbe18f1 | 2017-09-11 12:48:12 +0200 | [diff] [blame] | 15 | #include <asm/arch/bootrom.h> |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 16 | #include <asm/arch/clock.h> |
Philipp Tomsich | ba16573 | 2017-08-29 18:24:05 +0200 | [diff] [blame] | 17 | #include <asm/arch/grf_rk3399.h> |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 18 | #include <asm/arch/hardware.h> |
| 19 | #include <asm/arch/periph.h> |
Simon Glass | 9e92116 | 2019-01-21 14:53:36 -0700 | [diff] [blame^] | 20 | #include <asm/arch/sys_proto.h> |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 21 | #include <dm/pinctrl.h> |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 22 | |
Philipp Tomsich | cbe18f1 | 2017-09-11 12:48:12 +0200 | [diff] [blame] | 23 | void board_return_to_bootrom(void) |
| 24 | { |
Philipp Tomsich | b82bd1f | 2017-10-10 16:21:16 +0200 | [diff] [blame] | 25 | back_to_bootrom(BROM_BOOT_NEXTSTAGE); |
Philipp Tomsich | cbe18f1 | 2017-09-11 12:48:12 +0200 | [diff] [blame] | 26 | } |
| 27 | |
Philipp Tomsich | c55addd | 2017-09-29 19:27:58 +0200 | [diff] [blame] | 28 | static 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 | |
| 34 | const 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 Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 52 | u32 spl_boot_device(void) |
| 53 | { |
Philipp Tomsich | cbe18f1 | 2017-09-11 12:48:12 +0200 | [diff] [blame] | 54 | 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 Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 60 | } |
| 61 | |
Philipp Tomsich | e5f2ecc | 2018-05-24 17:15:52 +0200 | [diff] [blame] | 62 | const 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 | |
| 81 | void 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 Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 110 | #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 | |
| 121 | void 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 Tomsich | 7ee16de | 2017-04-01 12:59:25 +0200 | [diff] [blame] | 130 | void board_debug_uart_init(void) |
| 131 | { |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 132 | #define GRF_BASE 0xff770000 |
Simon Glass | 9e92116 | 2019-01-21 14:53:36 -0700 | [diff] [blame^] | 133 | #define GPIO0_BASE 0xff720000 |
| 134 | #define PMUGRF_BASE 0xff320000 |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 135 | struct rk3399_grf_regs * const grf = (void *)GRF_BASE; |
Simon Glass | 9e92116 | 2019-01-21 14:53:36 -0700 | [diff] [blame^] | 136 | #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 Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 140 | |
Philipp Tomsich | 7ee16de | 2017-04-01 12:59:25 +0200 | [diff] [blame] | 141 | #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 Glass | 9e92116 | 2019-01-21 14:53:36 -0700 | [diff] [blame^] | 150 | # 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 Tomsich | 7ee16de | 2017-04-01 12:59:25 +0200 | [diff] [blame] | 164 | /* Enable early UART2 channel C on the RK3399 */ |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 165 | 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 Tomsich | 7ee16de | 2017-04-01 12:59:25 +0200 | [diff] [blame] | 175 | #endif |
| 176 | } |
| 177 | |
Philipp Tomsich | 7ee16de | 2017-04-01 12:59:25 +0200 | [diff] [blame] | 178 | void board_init_f(ulong dummy) |
| 179 | { |
| 180 | struct udevice *pinctrl; |
| 181 | struct udevice *dev; |
Philipp Tomsich | ba16573 | 2017-08-29 18:24:05 +0200 | [diff] [blame] | 182 | struct rk3399_pmusgrf_regs *sgrf; |
| 183 | struct rk3399_grf_regs *grf; |
Philipp Tomsich | 7ee16de | 2017-04-01 12:59:25 +0200 | [diff] [blame] | 184 | int ret; |
| 185 | |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 186 | #define EARLY_UART |
| 187 | #ifdef EARLY_UART |
Simon Glass | 9e92116 | 2019-01-21 14:53:36 -0700 | [diff] [blame^] | 188 | # ifdef CONFIG_TARGET_CHROMEBOOK_BOB |
| 189 | int sum, i; |
| 190 | |
| 191 | debug_uart_init(); |
| 192 | |
| 193 | /* |
| 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 Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 204 | /* |
| 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 Schuchardt | 9125947 | 2018-06-03 21:10:13 +0200 | [diff] [blame] | 212 | printascii("U-Boot SPL board init\n"); |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 213 | #endif |
Kever Yang | c4a9215 | 2017-05-05 11:01:43 +0800 | [diff] [blame] | 214 | |
Kever Yang | 232cf96 | 2017-03-20 14:47:16 +0800 | [diff] [blame] | 215 | ret = spl_early_init(); |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 216 | if (ret) { |
Kever Yang | 232cf96 | 2017-03-20 14:47:16 +0800 | [diff] [blame] | 217 | debug("spl_early_init() failed: %d\n", ret); |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 218 | hang(); |
| 219 | } |
| 220 | |
Philipp Tomsich | 504b9f1 | 2017-03-29 21:20:28 +0200 | [diff] [blame] | 221 | /* |
Kever Yang | c4a9215 | 2017-05-05 11:01:43 +0800 | [diff] [blame] | 222 | * Disable DDR and SRAM security regions. |
Philipp Tomsich | 504b9f1 | 2017-03-29 21:20:28 +0200 | [diff] [blame] | 223 | * |
| 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 Tomsich | ba16573 | 2017-08-29 18:24:05 +0200 | [diff] [blame] | 230 | 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 Tomsich | 504b9f1 | 2017-03-29 21:20:28 +0200 | [diff] [blame] | 237 | |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 238 | secure_timer_init(); |
| 239 | |
| 240 | ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl); |
| 241 | if (ret) { |
Philipp Tomsich | adbca53 | 2018-11-19 13:03:51 +0100 | [diff] [blame] | 242 | pr_err("Pinctrl init failed: %d\n", ret); |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 243 | return; |
| 244 | } |
| 245 | |
| 246 | ret = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 247 | if (ret) { |
Philipp Tomsich | adbca53 | 2018-11-19 13:03:51 +0100 | [diff] [blame] | 248 | pr_err("DRAM init failed: %d\n", ret); |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 249 | return; |
| 250 | } |
| 251 | } |
| 252 | |
Kever Yang | 3012a84 | 2017-02-23 16:09:05 +0800 | [diff] [blame] | 253 | #ifdef CONFIG_SPL_LOAD_FIT |
| 254 | int 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 |