Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * K3: Common Architecture initialization |
| 4 | * |
Nishanth Menon | eaa39c6 | 2023-11-01 15:56:03 -0500 | [diff] [blame] | 5 | * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/ |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 6 | * Lokesh Vutla <lokeshvutla@ti.com> |
| 7 | */ |
| 8 | |
Tom Rini | b7f7046 | 2023-12-14 13:16:45 -0500 | [diff] [blame] | 9 | #include <config.h> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 11 | #include <image.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 12 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 14 | #include <spl.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Simon Glass | bdd5f81 | 2023-09-14 18:21:46 -0600 | [diff] [blame] | 16 | #include <linux/printk.h> |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 17 | #include "common.h" |
| 18 | #include <dm.h> |
| 19 | #include <remoteproc.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 20 | #include <asm/cache.h> |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 21 | #include <linux/soc/ti/ti_sci_protocol.h> |
Lokesh Vutla | 16cf5d2 | 2019-03-08 11:47:34 +0530 | [diff] [blame] | 22 | #include <fdt_support.h> |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 23 | #include <asm/hardware.h> |
| 24 | #include <asm/io.h> |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 25 | #include <fs_loader.h> |
| 26 | #include <fs.h> |
Vitor Soares | a7e364b | 2024-03-28 10:05:48 +0000 | [diff] [blame] | 27 | #include <efi_loader.h> |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 28 | #include <env.h> |
| 29 | #include <elf.h> |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 30 | #include <soc.h> |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 31 | |
Aradhya Bhatia | 5b09538 | 2024-02-12 15:36:35 +0530 | [diff] [blame] | 32 | #include <asm/arch/k3-qos.h> |
| 33 | |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 34 | struct ti_sci_handle *get_ti_sci_handle(void) |
| 35 | { |
| 36 | struct udevice *dev; |
| 37 | int ret; |
| 38 | |
Lokesh Vutla | 00a1513 | 2019-09-27 13:32:15 +0530 | [diff] [blame] | 39 | ret = uclass_get_device_by_driver(UCLASS_FIRMWARE, |
Simon Glass | 65130cd | 2020-12-28 20:34:56 -0700 | [diff] [blame] | 40 | DM_DRIVER_GET(ti_sci), &dev); |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 41 | if (ret) |
| 42 | panic("Failed to get SYSFW (%d)\n", ret); |
| 43 | |
| 44 | return (struct ti_sci_handle *)ti_sci_get_handle_from_sysfw(dev); |
| 45 | } |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 46 | |
Lokesh Vutla | 5fafe44 | 2020-03-10 16:50:58 +0530 | [diff] [blame] | 47 | void k3_sysfw_print_ver(void) |
| 48 | { |
| 49 | struct ti_sci_handle *ti_sci = get_ti_sci_handle(); |
| 50 | char fw_desc[sizeof(ti_sci->version.firmware_description) + 1]; |
| 51 | |
| 52 | /* |
| 53 | * Output System Firmware version info. Note that since the |
| 54 | * 'firmware_description' field is not guaranteed to be zero- |
| 55 | * terminated we manually add a \0 terminator if needed. Further |
| 56 | * note that we intentionally no longer rely on the extended |
| 57 | * printf() formatter '%.*s' to not having to require a more |
| 58 | * full-featured printf() implementation. |
| 59 | */ |
| 60 | strncpy(fw_desc, ti_sci->version.firmware_description, |
| 61 | sizeof(ti_sci->version.firmware_description)); |
| 62 | fw_desc[sizeof(fw_desc) - 1] = '\0'; |
| 63 | |
| 64 | printf("SYSFW ABI: %d.%d (firmware rev 0x%04x '%s')\n", |
| 65 | ti_sci->version.abi_major, ti_sci->version.abi_minor, |
| 66 | ti_sci->version.firmware_revision, fw_desc); |
| 67 | } |
| 68 | |
Matthias Schiffer | 0262dcd | 2023-09-27 15:43:14 +0200 | [diff] [blame] | 69 | void mmr_unlock(uintptr_t base, u32 partition) |
Lokesh Vutla | ff7ab09 | 2020-08-05 22:44:17 +0530 | [diff] [blame] | 70 | { |
| 71 | /* Translate the base address */ |
Matthias Schiffer | 0262dcd | 2023-09-27 15:43:14 +0200 | [diff] [blame] | 72 | uintptr_t part_base = base + partition * CTRL_MMR0_PARTITION_SIZE; |
Lokesh Vutla | ff7ab09 | 2020-08-05 22:44:17 +0530 | [diff] [blame] | 73 | |
| 74 | /* Unlock the requested partition if locked using two-step sequence */ |
| 75 | writel(CTRLMMR_LOCK_KICK0_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK0); |
| 76 | writel(CTRLMMR_LOCK_KICK1_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK1); |
| 77 | } |
| 78 | |
Lokesh Vutla | 8be6bbf | 2020-08-05 22:44:23 +0530 | [diff] [blame] | 79 | bool is_rom_loaded_sysfw(struct rom_extended_boot_data *data) |
| 80 | { |
| 81 | if (strncmp(data->header, K3_ROM_BOOT_HEADER_MAGIC, 7)) |
| 82 | return false; |
| 83 | |
| 84 | return data->num_components > 1; |
| 85 | } |
| 86 | |
Andreas Dannenberg | d13ec8c | 2019-08-15 15:55:28 -0500 | [diff] [blame] | 87 | DECLARE_GLOBAL_DATA_PTR; |
| 88 | |
| 89 | #ifdef CONFIG_K3_EARLY_CONS |
| 90 | int early_console_init(void) |
| 91 | { |
| 92 | struct udevice *dev; |
| 93 | int ret; |
| 94 | |
| 95 | gd->baudrate = CONFIG_BAUDRATE; |
| 96 | |
| 97 | ret = uclass_get_device_by_seq(UCLASS_SERIAL, CONFIG_K3_EARLY_CONS_IDX, |
| 98 | &dev); |
| 99 | if (ret) { |
| 100 | printf("Error getting serial dev for early console! (%d)\n", |
| 101 | ret); |
| 102 | return ret; |
| 103 | } |
| 104 | |
| 105 | gd->cur_serial_dev = dev; |
| 106 | gd->flags |= GD_FLG_SERIAL_READY; |
| 107 | gd->have_console = 1; |
| 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | #endif |
| 112 | |
Andrew Davis | ef880db | 2024-02-01 18:24:45 -0600 | [diff] [blame] | 113 | #if CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS) && !IS_ENABLED(CONFIG_SYS_K3_SPL_ATF) |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 114 | void board_fit_image_post_process(const void *fit, int node, void **p_image, |
| 115 | size_t *p_size) |
| 116 | { |
Andrew Davis | ef880db | 2024-02-01 18:24:45 -0600 | [diff] [blame] | 117 | ti_secure_image_check_binary(p_image, p_size); |
| 118 | ti_secure_image_post_process(p_image, p_size); |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 119 | } |
| 120 | #endif |
| 121 | |
Lokesh Vutla | a228532 | 2019-06-13 10:29:42 +0530 | [diff] [blame] | 122 | #ifndef CONFIG_SYSRESET |
Harald Seiler | 6f14d5f | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 123 | void reset_cpu(void) |
Lokesh Vutla | a228532 | 2019-06-13 10:29:42 +0530 | [diff] [blame] | 124 | { |
| 125 | } |
| 126 | #endif |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 127 | |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 128 | enum k3_device_type get_device_type(void) |
| 129 | { |
| 130 | u32 sys_status = readl(K3_SEC_MGR_SYS_STATUS); |
| 131 | |
| 132 | u32 sys_dev_type = (sys_status & SYS_STATUS_DEV_TYPE_MASK) >> |
| 133 | SYS_STATUS_DEV_TYPE_SHIFT; |
| 134 | |
| 135 | u32 sys_sub_type = (sys_status & SYS_STATUS_SUB_TYPE_MASK) >> |
| 136 | SYS_STATUS_SUB_TYPE_SHIFT; |
| 137 | |
| 138 | switch (sys_dev_type) { |
| 139 | case SYS_STATUS_DEV_TYPE_GP: |
| 140 | return K3_DEVICE_TYPE_GP; |
| 141 | case SYS_STATUS_DEV_TYPE_TEST: |
| 142 | return K3_DEVICE_TYPE_TEST; |
| 143 | case SYS_STATUS_DEV_TYPE_EMU: |
| 144 | return K3_DEVICE_TYPE_EMU; |
| 145 | case SYS_STATUS_DEV_TYPE_HS: |
| 146 | if (sys_sub_type == SYS_STATUS_SUB_TYPE_VAL_FS) |
| 147 | return K3_DEVICE_TYPE_HS_FS; |
| 148 | else |
| 149 | return K3_DEVICE_TYPE_HS_SE; |
| 150 | default: |
| 151 | return K3_DEVICE_TYPE_BAD; |
| 152 | } |
| 153 | } |
| 154 | |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 155 | #if defined(CONFIG_DISPLAY_CPUINFO) |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 156 | static const char *get_device_type_name(void) |
| 157 | { |
| 158 | enum k3_device_type type = get_device_type(); |
| 159 | |
| 160 | switch (type) { |
| 161 | case K3_DEVICE_TYPE_GP: |
| 162 | return "GP"; |
| 163 | case K3_DEVICE_TYPE_TEST: |
| 164 | return "TEST"; |
| 165 | case K3_DEVICE_TYPE_EMU: |
| 166 | return "EMU"; |
| 167 | case K3_DEVICE_TYPE_HS_FS: |
| 168 | return "HS-FS"; |
| 169 | case K3_DEVICE_TYPE_HS_SE: |
| 170 | return "HS-SE"; |
| 171 | default: |
| 172 | return "BAD"; |
| 173 | } |
| 174 | } |
| 175 | |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 176 | int print_cpuinfo(void) |
| 177 | { |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 178 | struct udevice *soc; |
| 179 | char name[64]; |
| 180 | int ret; |
Dave Gerlach | 3373ee0 | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 181 | |
Tom Rini | 5a9ecb2 | 2020-07-24 08:42:06 -0400 | [diff] [blame] | 182 | printf("SoC: "); |
Dave Gerlach | 3373ee0 | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 183 | |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 184 | ret = soc_get(&soc); |
| 185 | if (ret) { |
| 186 | printf("UNKNOWN\n"); |
| 187 | return 0; |
| 188 | } |
| 189 | |
| 190 | ret = soc_get_family(soc, name, 64); |
| 191 | if (!ret) { |
| 192 | printf("%s ", name); |
| 193 | } |
| 194 | |
| 195 | ret = soc_get_revision(soc, name, 64); |
| 196 | if (!ret) { |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 197 | printf("%s ", name); |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 198 | } |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 199 | |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 200 | printf("%s\n", get_device_type_name()); |
| 201 | |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 202 | return 0; |
| 203 | } |
| 204 | #endif |
Lokesh Vutla | 362beda | 2019-10-07 13:52:17 +0530 | [diff] [blame] | 205 | |
| 206 | #ifdef CONFIG_ARM64 |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 207 | void board_prep_linux(struct bootm_headers *images) |
Lokesh Vutla | 362beda | 2019-10-07 13:52:17 +0530 | [diff] [blame] | 208 | { |
| 209 | debug("Linux kernel Image start = 0x%lx end = 0x%lx\n", |
| 210 | images->os.start, images->os.end); |
| 211 | __asm_flush_dcache_range(images->os.start, |
| 212 | ROUND(images->os.end, |
| 213 | CONFIG_SYS_CACHELINE_SIZE)); |
| 214 | } |
| 215 | #endif |
Lokesh Vutla | 5fbd6fe | 2019-12-31 15:49:55 +0530 | [diff] [blame] | 216 | |
Joao Paulo Goncalves | fc3557f | 2023-11-13 16:07:21 -0300 | [diff] [blame] | 217 | void spl_enable_cache(void) |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 218 | { |
| 219 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
Devarsh Thakkar | 3a7a44d | 2023-12-05 21:25:17 +0530 | [diff] [blame] | 220 | gd->ram_top = CFG_SYS_SDRAM_BASE; |
| 221 | int ret = 0; |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 222 | |
Georgi Vlaev | a5076cd | 2022-06-14 17:45:30 +0300 | [diff] [blame] | 223 | dram_init(); |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 224 | |
| 225 | /* reserve TLB table */ |
| 226 | gd->arch.tlb_size = PGTABLE_SIZE; |
| 227 | |
Devarsh Thakkar | 3a7a44d | 2023-12-05 21:25:17 +0530 | [diff] [blame] | 228 | gd->ram_top += get_effective_memsize(); |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 229 | /* keep ram_top in the 32-bit address space */ |
Devarsh Thakkar | 3a7a44d | 2023-12-05 21:25:17 +0530 | [diff] [blame] | 230 | if (gd->ram_top >= 0x100000000) |
| 231 | gd->ram_top = (phys_addr_t)0x100000000; |
| 232 | |
| 233 | gd->relocaddr = gd->ram_top; |
| 234 | |
| 235 | ret = spl_reserve_video_from_ram_top(); |
| 236 | if (ret) |
| 237 | panic("Failed to reserve framebuffer memory (%d)\n", ret); |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 238 | |
Devarsh Thakkar | 3a7a44d | 2023-12-05 21:25:17 +0530 | [diff] [blame] | 239 | gd->arch.tlb_addr = gd->relocaddr - gd->arch.tlb_size; |
Nikhil M Jain | 3683681 | 2023-07-18 14:27:28 +0530 | [diff] [blame] | 240 | gd->arch.tlb_addr &= ~(0x10000 - 1); |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 241 | debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr, |
| 242 | gd->arch.tlb_addr + gd->arch.tlb_size); |
Nikhil M Jain | 3683681 | 2023-07-18 14:27:28 +0530 | [diff] [blame] | 243 | gd->relocaddr = gd->arch.tlb_addr; |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 244 | |
Joao Paulo Goncalves | fc3557f | 2023-11-13 16:07:21 -0300 | [diff] [blame] | 245 | enable_caches(); |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 246 | #endif |
| 247 | } |
| 248 | |
| 249 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
| 250 | void spl_board_prepare_for_boot(void) |
| 251 | { |
| 252 | dcache_disable(); |
| 253 | } |
| 254 | |
Patrick Delaunay | 35c949c | 2020-07-07 14:25:15 +0200 | [diff] [blame] | 255 | void spl_board_prepare_for_linux(void) |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 256 | { |
| 257 | dcache_disable(); |
| 258 | } |
| 259 | #endif |
Vignesh Raghavendra | 030f405 | 2021-12-24 12:55:29 +0530 | [diff] [blame] | 260 | |
| 261 | int misc_init_r(void) |
| 262 | { |
| 263 | if (IS_ENABLED(CONFIG_TI_AM65_CPSW_NUSS)) { |
| 264 | struct udevice *dev; |
| 265 | int ret; |
| 266 | |
| 267 | ret = uclass_get_device_by_driver(UCLASS_MISC, |
| 268 | DM_DRIVER_GET(am65_cpsw_nuss), |
| 269 | &dev); |
| 270 | if (ret) |
| 271 | printf("Failed to probe am65_cpsw_nuss driver\n"); |
| 272 | } |
| 273 | |
MD Danish Anwar | dd18b89 | 2024-04-04 12:38:02 +0530 | [diff] [blame] | 274 | if (IS_ENABLED(CONFIG_TI_ICSSG_PRUETH)) { |
| 275 | struct udevice *dev; |
| 276 | int ret; |
| 277 | |
| 278 | ret = uclass_get_device_by_driver(UCLASS_MISC, |
| 279 | DM_DRIVER_GET(prueth), |
| 280 | &dev); |
| 281 | if (ret) |
| 282 | printf("Failed to probe prueth driver\n"); |
| 283 | } |
| 284 | |
Vignesh Raghavendra | ae17d36 | 2023-04-20 21:42:21 +0530 | [diff] [blame] | 285 | /* Default FIT boot on HS-SE devices */ |
Manorit Chawdhry | f6f1d9b | 2024-05-21 16:26:48 +0530 | [diff] [blame] | 286 | if (get_device_type() == K3_DEVICE_TYPE_HS_SE) { |
Andrew Davis | f1d7205 | 2022-10-07 11:27:46 -0500 | [diff] [blame] | 287 | env_set("boot_fit", "1"); |
Manorit Chawdhry | f6f1d9b | 2024-05-21 16:26:48 +0530 | [diff] [blame] | 288 | env_set("secure_rprocs", "1"); |
| 289 | } |
Andrew Davis | f1d7205 | 2022-10-07 11:27:46 -0500 | [diff] [blame] | 290 | |
Vignesh Raghavendra | 030f405 | 2021-12-24 12:55:29 +0530 | [diff] [blame] | 291 | return 0; |
| 292 | } |
Andrew Davis | 2dde9a7 | 2023-04-06 11:38:17 -0500 | [diff] [blame] | 293 | |
| 294 | /** |
| 295 | * do_board_detect() - Detect board description |
| 296 | * |
| 297 | * Function to detect board description. This is expected to be |
| 298 | * overridden in the SoC family board file where desired. |
| 299 | */ |
| 300 | void __weak do_board_detect(void) |
| 301 | { |
| 302 | } |
Aradhya Bhatia | 5b09538 | 2024-02-12 15:36:35 +0530 | [diff] [blame] | 303 | |
| 304 | #if (IS_ENABLED(CONFIG_K3_QOS)) |
| 305 | void setup_qos(void) |
| 306 | { |
| 307 | u32 i; |
| 308 | |
| 309 | for (i = 0; i < qos_count; i++) |
| 310 | writel(qos_data[i].val, (uintptr_t)qos_data[i].reg); |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 311 | } |
Aradhya Bhatia | 5b09538 | 2024-02-12 15:36:35 +0530 | [diff] [blame] | 312 | #endif |
Vitor Soares | a7e364b | 2024-03-28 10:05:48 +0000 | [diff] [blame] | 313 | |
| 314 | void efi_add_known_memory(void) |
| 315 | { |
| 316 | if (IS_ENABLED(CONFIG_EFI_LOADER)) |
| 317 | /* |
| 318 | * Memory over ram_top can be used by various firmware |
| 319 | * Declare to EFI only memory area below ram_top |
| 320 | */ |
| 321 | efi_add_memory_map(gd->ram_base, gd->ram_top - gd->ram_base, |
| 322 | EFI_CONVENTIONAL_MEMORY); |
| 323 | } |