Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * (C) Copyright 2019 Rockchip Electronics Co., Ltd |
| 4 | */ |
| 5 | |
Jonas Karlman | f582b54 | 2024-02-17 12:34:04 +0000 | [diff] [blame] | 6 | #include <cpu_func.h> |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 7 | #include <debug_uart.h> |
| 8 | #include <dm.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 9 | #include <hang.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 10 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 13 | #include <ram.h> |
| 14 | #include <spl.h> |
| 15 | #include <asm/arch-rockchip/bootrom.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 17 | #include <asm/io.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 18 | #include <linux/bitops.h> |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 19 | |
| 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Peng Fan | aa050c5 | 2019-08-07 06:40:53 +0000 | [diff] [blame] | 22 | int board_return_to_bootrom(struct spl_image_info *spl_image, |
| 23 | struct spl_boot_device *bootdev) |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 24 | { |
| 25 | back_to_bootrom(BROM_BOOT_NEXTSTAGE); |
Peng Fan | aa050c5 | 2019-08-07 06:40:53 +0000 | [diff] [blame] | 26 | |
| 27 | return 0; |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | __weak const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1] = { |
| 31 | }; |
| 32 | |
| 33 | const char *board_spl_was_booted_from(void) |
| 34 | { |
Jonas Karlman | a1a88d2 | 2024-03-22 20:50:21 +0000 | [diff] [blame] | 35 | static u32 brom_bootsource_id_cache = BROM_BOOTSOURCE_UNKNOWN; |
| 36 | u32 bootdevice_brom_id; |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 37 | const char *bootdevice_ofpath = NULL; |
| 38 | |
Jonas Karlman | a1a88d2 | 2024-03-22 20:50:21 +0000 | [diff] [blame] | 39 | if (brom_bootsource_id_cache != BROM_BOOTSOURCE_UNKNOWN) |
| 40 | bootdevice_brom_id = brom_bootsource_id_cache; |
| 41 | else |
| 42 | bootdevice_brom_id = readl(BROM_BOOTSOURCE_ID_ADDR); |
| 43 | |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 44 | if (bootdevice_brom_id < ARRAY_SIZE(boot_devices)) |
| 45 | bootdevice_ofpath = boot_devices[bootdevice_brom_id]; |
| 46 | |
Jonas Karlman | a1a88d2 | 2024-03-22 20:50:21 +0000 | [diff] [blame] | 47 | if (bootdevice_ofpath) { |
| 48 | brom_bootsource_id_cache = bootdevice_brom_id; |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 49 | debug("%s: brom_bootdevice_id %x maps to '%s'\n", |
| 50 | __func__, bootdevice_brom_id, bootdevice_ofpath); |
Jonas Karlman | a1a88d2 | 2024-03-22 20:50:21 +0000 | [diff] [blame] | 51 | } else { |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 52 | debug("%s: failed to resolve brom_bootdevice_id %x\n", |
| 53 | __func__, bootdevice_brom_id); |
Jonas Karlman | a1a88d2 | 2024-03-22 20:50:21 +0000 | [diff] [blame] | 54 | } |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 55 | |
| 56 | return bootdevice_ofpath; |
| 57 | } |
| 58 | |
| 59 | u32 spl_boot_device(void) |
| 60 | { |
| 61 | u32 boot_device = BOOT_DEVICE_MMC1; |
| 62 | |
| 63 | #if defined(CONFIG_TARGET_CHROMEBOOK_JERRY) || \ |
| 64 | defined(CONFIG_TARGET_CHROMEBIT_MICKEY) || \ |
Urja Rannikko | c22d863 | 2020-05-13 19:15:20 +0000 | [diff] [blame] | 65 | defined(CONFIG_TARGET_CHROMEBOOK_MINNIE) || \ |
Simon Glass | 0b2f70c | 2020-07-19 13:55:53 -0600 | [diff] [blame] | 66 | defined(CONFIG_TARGET_CHROMEBOOK_SPEEDY) || \ |
Marty E. Plummer | b20a8dac | 2021-12-24 16:43:46 +0300 | [diff] [blame] | 67 | defined(CONFIG_TARGET_CHROMEBOOK_BOB) || \ |
| 68 | defined(CONFIG_TARGET_CHROMEBOOK_KEVIN) |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 69 | return BOOT_DEVICE_SPI; |
| 70 | #endif |
| 71 | if (CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM)) |
| 72 | return BOOT_DEVICE_BOOTROM; |
| 73 | |
| 74 | return boot_device; |
| 75 | } |
| 76 | |
Andre Przywara | 3cb12ef | 2021-07-12 11:06:49 +0100 | [diff] [blame] | 77 | u32 spl_mmc_boot_mode(struct mmc *mmc, const u32 boot_device) |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 78 | { |
| 79 | return MMCSD_MODE_RAW; |
| 80 | } |
| 81 | |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 82 | #define TIMER_LOAD_COUNT_L 0x00 |
| 83 | #define TIMER_LOAD_COUNT_H 0x04 |
| 84 | #define TIMER_CONTROL_REG 0x10 |
| 85 | #define TIMER_EN 0x1 |
| 86 | #define TIMER_FMODE BIT(0) |
| 87 | #define TIMER_RMODE BIT(1) |
| 88 | |
| 89 | __weak void rockchip_stimer_init(void) |
| 90 | { |
Johan Jonker | 87affc3 | 2022-04-09 18:55:03 +0200 | [diff] [blame] | 91 | #if defined(CONFIG_ROCKCHIP_STIMER_BASE) |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 92 | /* If Timer already enabled, don't re-init it */ |
| 93 | u32 reg = readl(CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG); |
| 94 | |
| 95 | if (reg & TIMER_EN) |
| 96 | return; |
| 97 | #ifndef CONFIG_ARM64 |
| 98 | asm volatile("mcr p15, 0, %0, c14, c0, 0" |
Peng Fan | e7c5939 | 2022-04-13 17:47:22 +0800 | [diff] [blame] | 99 | : : "r"(CONFIG_COUNTER_FREQUENCY)); |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 100 | #endif |
| 101 | writel(0, CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG); |
| 102 | writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE); |
| 103 | writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE + 4); |
| 104 | writel(TIMER_EN | TIMER_FMODE, CONFIG_ROCKCHIP_STIMER_BASE + |
| 105 | TIMER_CONTROL_REG); |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 106 | #endif |
Johan Jonker | 87affc3 | 2022-04-09 18:55:03 +0200 | [diff] [blame] | 107 | } |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 108 | |
| 109 | __weak int board_early_init_f(void) |
| 110 | { |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | __weak int arch_cpu_init(void) |
| 115 | { |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | void board_init_f(ulong dummy) |
| 120 | { |
| 121 | int ret; |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 122 | |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 123 | board_early_init_f(); |
| 124 | |
| 125 | ret = spl_early_init(); |
| 126 | if (ret) { |
| 127 | printf("spl_early_init() failed: %d\n", ret); |
| 128 | hang(); |
| 129 | } |
| 130 | arch_cpu_init(); |
Johan Jonker | 87affc3 | 2022-04-09 18:55:03 +0200 | [diff] [blame] | 131 | |
Thomas Hebb | 3fe4ec8 | 2019-11-15 08:48:55 -0800 | [diff] [blame] | 132 | rockchip_stimer_init(); |
Johan Jonker | 87affc3 | 2022-04-09 18:55:03 +0200 | [diff] [blame] | 133 | |
Thomas Hebb | 3fe4ec8 | 2019-11-15 08:48:55 -0800 | [diff] [blame] | 134 | #ifdef CONFIG_SYS_ARCH_TIMER |
| 135 | /* Init ARM arch timer in arch/arm/cpu/armv7/arch_timer.c */ |
| 136 | timer_init(); |
| 137 | #endif |
Heiko Stuebner | d14cd61 | 2020-05-25 19:57:24 +0200 | [diff] [blame] | 138 | #if !defined(CONFIG_TPL) || defined(CONFIG_SPL_RAM) |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 139 | debug("\nspl:init dram\n"); |
Heiko Stuebner | d14cd61 | 2020-05-25 19:57:24 +0200 | [diff] [blame] | 140 | ret = dram_init(); |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 141 | if (ret) { |
| 142 | printf("DRAM init failed: %d\n", ret); |
| 143 | return; |
| 144 | } |
Heiko Stuebner | d14cd61 | 2020-05-25 19:57:24 +0200 | [diff] [blame] | 145 | gd->ram_top = gd->ram_base + get_effective_memsize(); |
| 146 | gd->ram_top = board_get_usable_ram_top(gd->ram_size); |
Jonas Karlman | f582b54 | 2024-02-17 12:34:04 +0000 | [diff] [blame] | 147 | |
| 148 | if (IS_ENABLED(CONFIG_ARM64) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) { |
| 149 | gd->relocaddr = gd->ram_top; |
| 150 | arch_reserve_mmu(); |
| 151 | enable_caches(); |
| 152 | } |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 153 | #endif |
Kever Yang | 1d7cc72a | 2019-07-22 19:59:12 +0800 | [diff] [blame] | 154 | preloader_console_init(); |
| 155 | } |
Jonas Karlman | f582b54 | 2024-02-17 12:34:04 +0000 | [diff] [blame] | 156 | |
| 157 | void spl_board_prepare_for_boot(void) |
| 158 | { |
| 159 | if (!IS_ENABLED(CONFIG_ARM64) || CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) |
| 160 | return; |
| 161 | |
| 162 | cleanup_before_linux(); |
| 163 | } |