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 | * |
| 5 | * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/ |
| 6 | * Lokesh Vutla <lokeshvutla@ti.com> |
| 7 | */ |
| 8 | |
| 9 | #include <common.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> |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 16 | #include "common.h" |
| 17 | #include <dm.h> |
| 18 | #include <remoteproc.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 19 | #include <asm/cache.h> |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 20 | #include <linux/soc/ti/ti_sci_protocol.h> |
Lokesh Vutla | 16cf5d2 | 2019-03-08 11:47:34 +0530 | [diff] [blame] | 21 | #include <fdt_support.h> |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 22 | #include <asm/hardware.h> |
| 23 | #include <asm/io.h> |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 24 | #include <fs_loader.h> |
| 25 | #include <fs.h> |
| 26 | #include <env.h> |
| 27 | #include <elf.h> |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 28 | #include <soc.h> |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 29 | |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 30 | #if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF) |
| 31 | enum { |
| 32 | IMAGE_ID_ATF, |
| 33 | IMAGE_ID_OPTEE, |
| 34 | IMAGE_ID_SPL, |
| 35 | IMAGE_ID_DM_FW, |
| 36 | IMAGE_AMT, |
| 37 | }; |
| 38 | |
| 39 | #if CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS) |
| 40 | static const char *image_os_match[IMAGE_AMT] = { |
| 41 | "arm-trusted-firmware", |
| 42 | "tee", |
| 43 | "U-Boot", |
| 44 | "DM", |
| 45 | }; |
| 46 | #endif |
| 47 | |
| 48 | static struct image_info fit_image_info[IMAGE_AMT]; |
| 49 | #endif |
| 50 | |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 51 | struct ti_sci_handle *get_ti_sci_handle(void) |
| 52 | { |
| 53 | struct udevice *dev; |
| 54 | int ret; |
| 55 | |
Lokesh Vutla | 00a1513 | 2019-09-27 13:32:15 +0530 | [diff] [blame] | 56 | ret = uclass_get_device_by_driver(UCLASS_FIRMWARE, |
Simon Glass | 65130cd | 2020-12-28 20:34:56 -0700 | [diff] [blame] | 57 | DM_DRIVER_GET(ti_sci), &dev); |
Lokesh Vutla | 28cd824 | 2019-03-08 11:47:33 +0530 | [diff] [blame] | 58 | if (ret) |
| 59 | panic("Failed to get SYSFW (%d)\n", ret); |
| 60 | |
| 61 | return (struct ti_sci_handle *)ti_sci_get_handle_from_sysfw(dev); |
| 62 | } |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 63 | |
Lokesh Vutla | 5fafe44 | 2020-03-10 16:50:58 +0530 | [diff] [blame] | 64 | void k3_sysfw_print_ver(void) |
| 65 | { |
| 66 | struct ti_sci_handle *ti_sci = get_ti_sci_handle(); |
| 67 | char fw_desc[sizeof(ti_sci->version.firmware_description) + 1]; |
| 68 | |
| 69 | /* |
| 70 | * Output System Firmware version info. Note that since the |
| 71 | * 'firmware_description' field is not guaranteed to be zero- |
| 72 | * terminated we manually add a \0 terminator if needed. Further |
| 73 | * note that we intentionally no longer rely on the extended |
| 74 | * printf() formatter '%.*s' to not having to require a more |
| 75 | * full-featured printf() implementation. |
| 76 | */ |
| 77 | strncpy(fw_desc, ti_sci->version.firmware_description, |
| 78 | sizeof(ti_sci->version.firmware_description)); |
| 79 | fw_desc[sizeof(fw_desc) - 1] = '\0'; |
| 80 | |
| 81 | printf("SYSFW ABI: %d.%d (firmware rev 0x%04x '%s')\n", |
| 82 | ti_sci->version.abi_major, ti_sci->version.abi_minor, |
| 83 | ti_sci->version.firmware_revision, fw_desc); |
| 84 | } |
| 85 | |
Lokesh Vutla | ff7ab09 | 2020-08-05 22:44:17 +0530 | [diff] [blame] | 86 | void mmr_unlock(phys_addr_t base, u32 partition) |
| 87 | { |
| 88 | /* Translate the base address */ |
| 89 | phys_addr_t part_base = base + partition * CTRL_MMR0_PARTITION_SIZE; |
| 90 | |
| 91 | /* Unlock the requested partition if locked using two-step sequence */ |
| 92 | writel(CTRLMMR_LOCK_KICK0_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK0); |
| 93 | writel(CTRLMMR_LOCK_KICK1_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK1); |
| 94 | } |
| 95 | |
Lokesh Vutla | 8be6bbf | 2020-08-05 22:44:23 +0530 | [diff] [blame] | 96 | bool is_rom_loaded_sysfw(struct rom_extended_boot_data *data) |
| 97 | { |
| 98 | if (strncmp(data->header, K3_ROM_BOOT_HEADER_MAGIC, 7)) |
| 99 | return false; |
| 100 | |
| 101 | return data->num_components > 1; |
| 102 | } |
| 103 | |
Andreas Dannenberg | d13ec8c | 2019-08-15 15:55:28 -0500 | [diff] [blame] | 104 | DECLARE_GLOBAL_DATA_PTR; |
| 105 | |
| 106 | #ifdef CONFIG_K3_EARLY_CONS |
| 107 | int early_console_init(void) |
| 108 | { |
| 109 | struct udevice *dev; |
| 110 | int ret; |
| 111 | |
| 112 | gd->baudrate = CONFIG_BAUDRATE; |
| 113 | |
| 114 | ret = uclass_get_device_by_seq(UCLASS_SERIAL, CONFIG_K3_EARLY_CONS_IDX, |
| 115 | &dev); |
| 116 | if (ret) { |
| 117 | printf("Error getting serial dev for early console! (%d)\n", |
| 118 | ret); |
| 119 | return ret; |
| 120 | } |
| 121 | |
| 122 | gd->cur_serial_dev = dev; |
| 123 | gd->flags |= GD_FLG_SERIAL_READY; |
| 124 | gd->have_console = 1; |
| 125 | |
| 126 | return 0; |
| 127 | } |
| 128 | #endif |
| 129 | |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 130 | #if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF) |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 131 | |
| 132 | void init_env(void) |
| 133 | { |
| 134 | #ifdef CONFIG_SPL_ENV_SUPPORT |
| 135 | char *part; |
| 136 | |
| 137 | env_init(); |
| 138 | env_relocate(); |
| 139 | switch (spl_boot_device()) { |
| 140 | case BOOT_DEVICE_MMC2: |
| 141 | part = env_get("bootpart"); |
| 142 | env_set("storage_interface", "mmc"); |
| 143 | env_set("fw_dev_part", part); |
| 144 | break; |
| 145 | case BOOT_DEVICE_SPI: |
| 146 | env_set("storage_interface", "ubi"); |
| 147 | env_set("fw_ubi_mtdpart", "UBI"); |
| 148 | env_set("fw_ubi_volume", "UBI0"); |
| 149 | break; |
| 150 | default: |
| 151 | printf("%s from device %u not supported!\n", |
| 152 | __func__, spl_boot_device()); |
| 153 | return; |
| 154 | } |
| 155 | #endif |
| 156 | } |
| 157 | |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 158 | int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr) |
| 159 | { |
| 160 | struct udevice *fsdev; |
| 161 | char *name = NULL; |
| 162 | int size = 0; |
| 163 | |
Keerthy | fe8f609 | 2022-01-27 13:16:53 +0100 | [diff] [blame] | 164 | if (!IS_ENABLED(CONFIG_FS_LOADER)) |
| 165 | return 0; |
| 166 | |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 167 | *loadaddr = 0; |
| 168 | #ifdef CONFIG_SPL_ENV_SUPPORT |
| 169 | switch (spl_boot_device()) { |
| 170 | case BOOT_DEVICE_MMC2: |
| 171 | name = env_get(name_fw); |
| 172 | *loadaddr = env_get_hex(name_loadaddr, *loadaddr); |
| 173 | break; |
| 174 | default: |
| 175 | printf("Loading rproc fw image from device %u not supported!\n", |
| 176 | spl_boot_device()); |
| 177 | return 0; |
| 178 | } |
| 179 | #endif |
| 180 | if (!*loadaddr) |
| 181 | return 0; |
| 182 | |
Sean Anderson | 5cd0cb3 | 2022-12-29 11:52:59 -0500 | [diff] [blame] | 183 | if (!get_fs_loader(&fsdev)) { |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 184 | size = request_firmware_into_buf(fsdev, name, (void *)*loadaddr, |
| 185 | 0, 0); |
| 186 | } |
| 187 | |
| 188 | return size; |
| 189 | } |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 190 | |
Andrew Davis | c178e6d | 2023-04-06 11:38:15 -0500 | [diff] [blame] | 191 | void release_resources_for_core_shutdown(void) |
Suman Anna | 3457410 | 2021-07-27 18:24:40 -0500 | [diff] [blame] | 192 | { |
Andrew Davis | c178e6d | 2023-04-06 11:38:15 -0500 | [diff] [blame] | 193 | struct ti_sci_handle *ti_sci = get_ti_sci_handle(); |
| 194 | struct ti_sci_dev_ops *dev_ops = &ti_sci->ops.dev_ops; |
| 195 | struct ti_sci_proc_ops *proc_ops = &ti_sci->ops.proc_ops; |
| 196 | int ret; |
| 197 | u32 i; |
| 198 | |
| 199 | /* Iterate through list of devices to put (shutdown) */ |
| 200 | for (i = 0; i < ARRAY_SIZE(put_device_ids); i++) { |
| 201 | u32 id = put_device_ids[i]; |
| 202 | |
| 203 | ret = dev_ops->put_device(ti_sci, id); |
| 204 | if (ret) |
| 205 | panic("Failed to put device %u (%d)\n", id, ret); |
| 206 | } |
| 207 | |
| 208 | /* Iterate through list of cores to put (shutdown) */ |
| 209 | for (i = 0; i < ARRAY_SIZE(put_core_ids); i++) { |
| 210 | u32 id = put_core_ids[i]; |
| 211 | |
| 212 | /* |
| 213 | * Queue up the core shutdown request. Note that this call |
| 214 | * needs to be followed up by an actual invocation of an WFE |
| 215 | * or WFI CPU instruction. |
| 216 | */ |
| 217 | ret = proc_ops->proc_shutdown_no_wait(ti_sci, id); |
| 218 | if (ret) |
| 219 | panic("Failed sending core %u shutdown message (%d)\n", |
| 220 | id, ret); |
| 221 | } |
Suman Anna | 3457410 | 2021-07-27 18:24:40 -0500 | [diff] [blame] | 222 | } |
| 223 | |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 224 | void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) |
| 225 | { |
Keerthy | 20c87b0 | 2020-02-12 13:55:06 +0530 | [diff] [blame] | 226 | typedef void __noreturn (*image_entry_noargs_t)(void); |
Lokesh Vutla | 005476d | 2019-06-07 19:24:43 +0530 | [diff] [blame] | 227 | struct ti_sci_handle *ti_sci = get_ti_sci_handle(); |
Keerthy | 20c87b0 | 2020-02-12 13:55:06 +0530 | [diff] [blame] | 228 | u32 loadaddr = 0; |
Nishanth Menon | 1535e2a | 2021-08-31 13:20:48 -0500 | [diff] [blame] | 229 | int ret, size = 0, shut_cpu = 0; |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 230 | |
Lokesh Vutla | 005476d | 2019-06-07 19:24:43 +0530 | [diff] [blame] | 231 | /* Release all the exclusive devices held by SPL before starting ATF */ |
| 232 | ti_sci->ops.dev_ops.release_exclusive_devices(ti_sci); |
| 233 | |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 234 | ret = rproc_init(); |
| 235 | if (ret) |
| 236 | panic("rproc failed to be initialized (%d)\n", ret); |
| 237 | |
| 238 | init_env(); |
Dave Gerlach | cdd0245 | 2021-06-11 11:45:21 +0300 | [diff] [blame] | 239 | |
| 240 | if (!fit_image_info[IMAGE_ID_DM_FW].image_start) { |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 241 | size = load_firmware("name_mcur5f0_0fw", "addr_mcur5f0_0load", |
| 242 | &loadaddr); |
Dave Gerlach | cdd0245 | 2021-06-11 11:45:21 +0300 | [diff] [blame] | 243 | } |
Keerthy | 7007adc | 2020-02-12 13:55:04 +0530 | [diff] [blame] | 244 | |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 245 | /* |
| 246 | * It is assumed that remoteproc device 1 is the corresponding |
Andreas Dannenberg | 376c0fe | 2019-02-04 12:58:47 -0600 | [diff] [blame] | 247 | * Cortex-A core which runs ATF. Make sure DT reflects the same. |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 248 | */ |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 249 | if (!fit_image_info[IMAGE_ID_ATF].image_start) |
| 250 | fit_image_info[IMAGE_ID_ATF].image_start = |
| 251 | spl_image->entry_point; |
| 252 | |
| 253 | ret = rproc_load(1, fit_image_info[IMAGE_ID_ATF].image_start, 0x200); |
Andreas Dannenberg | 376c0fe | 2019-02-04 12:58:47 -0600 | [diff] [blame] | 254 | if (ret) |
| 255 | panic("%s: ATF failed to load on rproc (%d)\n", __func__, ret); |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 256 | |
Manorit Chawdhry | c20edd3 | 2023-04-14 09:48:01 +0530 | [diff] [blame] | 257 | #if (CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS) && IS_ENABLED(CONFIG_SYS_K3_SPL_ATF)) |
| 258 | /* Authenticate ATF */ |
| 259 | void *image_addr = (void *)fit_image_info[IMAGE_ID_ATF].image_start; |
| 260 | |
| 261 | debug("%s: Authenticating image: addr=%lx, size=%ld, os=%s\n", __func__, |
| 262 | fit_image_info[IMAGE_ID_ATF].image_start, |
| 263 | fit_image_info[IMAGE_ID_ATF].image_len, |
| 264 | image_os_match[IMAGE_ID_ATF]); |
| 265 | |
| 266 | ti_secure_image_post_process(&image_addr, |
| 267 | (size_t *)&fit_image_info[IMAGE_ID_ATF].image_len); |
| 268 | |
| 269 | /* Authenticate OPTEE */ |
| 270 | image_addr = (void *)fit_image_info[IMAGE_ID_OPTEE].image_start; |
| 271 | |
| 272 | debug("%s: Authenticating image: addr=%lx, size=%ld, os=%s\n", __func__, |
| 273 | fit_image_info[IMAGE_ID_OPTEE].image_start, |
| 274 | fit_image_info[IMAGE_ID_OPTEE].image_len, |
| 275 | image_os_match[IMAGE_ID_OPTEE]); |
| 276 | |
| 277 | ti_secure_image_post_process(&image_addr, |
| 278 | (size_t *)&fit_image_info[IMAGE_ID_OPTEE].image_len); |
| 279 | |
| 280 | #endif |
| 281 | |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 282 | if (!fit_image_info[IMAGE_ID_DM_FW].image_len && |
| 283 | !(size > 0 && valid_elf_image(loadaddr))) { |
Nishanth Menon | 1535e2a | 2021-08-31 13:20:48 -0500 | [diff] [blame] | 284 | shut_cpu = 1; |
| 285 | goto start_arm64; |
Keerthy | 20c87b0 | 2020-02-12 13:55:06 +0530 | [diff] [blame] | 286 | } |
| 287 | |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 288 | if (!fit_image_info[IMAGE_ID_DM_FW].image_start) { |
| 289 | loadaddr = load_elf_image_phdr(loadaddr); |
| 290 | } else { |
| 291 | loadaddr = fit_image_info[IMAGE_ID_DM_FW].image_start; |
| 292 | if (valid_elf_image(loadaddr)) |
| 293 | loadaddr = load_elf_image_phdr(loadaddr); |
| 294 | } |
| 295 | |
| 296 | debug("%s: jumping to address %x\n", __func__, loadaddr); |
| 297 | |
Nishanth Menon | 1535e2a | 2021-08-31 13:20:48 -0500 | [diff] [blame] | 298 | start_arm64: |
| 299 | /* Add an extra newline to differentiate the ATF logs from SPL */ |
| 300 | printf("Starting ATF on ARM64 core...\n\n"); |
| 301 | |
| 302 | ret = rproc_start(1); |
| 303 | if (ret) |
| 304 | panic("%s: ATF failed to start on rproc (%d)\n", __func__, ret); |
| 305 | |
| 306 | if (shut_cpu) { |
| 307 | debug("Shutting down...\n"); |
| 308 | release_resources_for_core_shutdown(); |
| 309 | |
| 310 | while (1) |
| 311 | asm volatile("wfe"); |
| 312 | } |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 313 | image_entry_noargs_t image_entry = (image_entry_noargs_t)loadaddr; |
Andreas Dannenberg | 31175f8 | 2019-06-07 19:24:42 +0530 | [diff] [blame] | 314 | |
Keerthy | 20c87b0 | 2020-02-12 13:55:06 +0530 | [diff] [blame] | 315 | image_entry(); |
Lokesh Vutla | 5d83fd2 | 2018-11-02 19:51:05 +0530 | [diff] [blame] | 316 | } |
| 317 | #endif |
Lokesh Vutla | 16cf5d2 | 2019-03-08 11:47:34 +0530 | [diff] [blame] | 318 | |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 319 | #if CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS) |
| 320 | void board_fit_image_post_process(const void *fit, int node, void **p_image, |
| 321 | size_t *p_size) |
| 322 | { |
| 323 | #if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF) |
| 324 | int len; |
| 325 | int i; |
| 326 | const char *os; |
| 327 | u32 addr; |
| 328 | |
| 329 | os = fdt_getprop(fit, node, "os", &len); |
| 330 | addr = fdt_getprop_u32_default_node(fit, node, 0, "entry", -1); |
| 331 | |
| 332 | debug("%s: processing image: addr=%x, size=%d, os=%s\n", __func__, |
| 333 | addr, *p_size, os); |
| 334 | |
| 335 | for (i = 0; i < IMAGE_AMT; i++) { |
| 336 | if (!strcmp(os, image_os_match[i])) { |
| 337 | fit_image_info[i].image_start = addr; |
| 338 | fit_image_info[i].image_len = *p_size; |
| 339 | debug("%s: matched image for ID %d\n", __func__, i); |
| 340 | break; |
| 341 | } |
| 342 | } |
Manorit Chawdhry | c20edd3 | 2023-04-14 09:48:01 +0530 | [diff] [blame] | 343 | /* |
| 344 | * Only DM and the DTBs are being authenticated here, |
| 345 | * rest will be authenticated when A72 cluster is up |
| 346 | */ |
| 347 | if ((i != IMAGE_ID_ATF) && (i != IMAGE_ID_OPTEE)) |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 348 | #endif |
Manorit Chawdhry | c20edd3 | 2023-04-14 09:48:01 +0530 | [diff] [blame] | 349 | { |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 350 | ti_secure_image_check_binary(p_image, p_size); |
Manorit Chawdhry | c20edd3 | 2023-04-14 09:48:01 +0530 | [diff] [blame] | 351 | ti_secure_image_post_process(p_image, p_size); |
| 352 | } |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 353 | #if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF) |
| 354 | else |
| 355 | ti_secure_image_check_binary(p_image, p_size); |
| 356 | #endif |
Tero Kristo | 738c590 | 2021-06-11 11:45:19 +0300 | [diff] [blame] | 357 | } |
| 358 | #endif |
| 359 | |
Lokesh Vutla | a228532 | 2019-06-13 10:29:42 +0530 | [diff] [blame] | 360 | #ifndef CONFIG_SYSRESET |
Harald Seiler | 6f14d5f | 2020-12-15 16:47:52 +0100 | [diff] [blame] | 361 | void reset_cpu(void) |
Lokesh Vutla | a228532 | 2019-06-13 10:29:42 +0530 | [diff] [blame] | 362 | { |
| 363 | } |
| 364 | #endif |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 365 | |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 366 | enum k3_device_type get_device_type(void) |
| 367 | { |
| 368 | u32 sys_status = readl(K3_SEC_MGR_SYS_STATUS); |
| 369 | |
| 370 | u32 sys_dev_type = (sys_status & SYS_STATUS_DEV_TYPE_MASK) >> |
| 371 | SYS_STATUS_DEV_TYPE_SHIFT; |
| 372 | |
| 373 | u32 sys_sub_type = (sys_status & SYS_STATUS_SUB_TYPE_MASK) >> |
| 374 | SYS_STATUS_SUB_TYPE_SHIFT; |
| 375 | |
| 376 | switch (sys_dev_type) { |
| 377 | case SYS_STATUS_DEV_TYPE_GP: |
| 378 | return K3_DEVICE_TYPE_GP; |
| 379 | case SYS_STATUS_DEV_TYPE_TEST: |
| 380 | return K3_DEVICE_TYPE_TEST; |
| 381 | case SYS_STATUS_DEV_TYPE_EMU: |
| 382 | return K3_DEVICE_TYPE_EMU; |
| 383 | case SYS_STATUS_DEV_TYPE_HS: |
| 384 | if (sys_sub_type == SYS_STATUS_SUB_TYPE_VAL_FS) |
| 385 | return K3_DEVICE_TYPE_HS_FS; |
| 386 | else |
| 387 | return K3_DEVICE_TYPE_HS_SE; |
| 388 | default: |
| 389 | return K3_DEVICE_TYPE_BAD; |
| 390 | } |
| 391 | } |
| 392 | |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 393 | #if defined(CONFIG_DISPLAY_CPUINFO) |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 394 | static const char *get_device_type_name(void) |
| 395 | { |
| 396 | enum k3_device_type type = get_device_type(); |
| 397 | |
| 398 | switch (type) { |
| 399 | case K3_DEVICE_TYPE_GP: |
| 400 | return "GP"; |
| 401 | case K3_DEVICE_TYPE_TEST: |
| 402 | return "TEST"; |
| 403 | case K3_DEVICE_TYPE_EMU: |
| 404 | return "EMU"; |
| 405 | case K3_DEVICE_TYPE_HS_FS: |
| 406 | return "HS-FS"; |
| 407 | case K3_DEVICE_TYPE_HS_SE: |
| 408 | return "HS-SE"; |
| 409 | default: |
| 410 | return "BAD"; |
| 411 | } |
| 412 | } |
| 413 | |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 414 | int print_cpuinfo(void) |
| 415 | { |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 416 | struct udevice *soc; |
| 417 | char name[64]; |
| 418 | int ret; |
Dave Gerlach | 3373ee0 | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 419 | |
Tom Rini | 5a9ecb2 | 2020-07-24 08:42:06 -0400 | [diff] [blame] | 420 | printf("SoC: "); |
Dave Gerlach | 3373ee0 | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 421 | |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 422 | ret = soc_get(&soc); |
| 423 | if (ret) { |
| 424 | printf("UNKNOWN\n"); |
| 425 | return 0; |
| 426 | } |
| 427 | |
| 428 | ret = soc_get_family(soc, name, 64); |
| 429 | if (!ret) { |
| 430 | printf("%s ", name); |
| 431 | } |
| 432 | |
| 433 | ret = soc_get_revision(soc, name, 64); |
| 434 | if (!ret) { |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 435 | printf("%s ", name); |
Dave Gerlach | c74227f | 2020-07-15 23:40:04 -0500 | [diff] [blame] | 436 | } |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 437 | |
Andrew Davis | f8c9836 | 2022-07-15 11:34:32 -0500 | [diff] [blame] | 438 | printf("%s\n", get_device_type_name()); |
| 439 | |
Lokesh Vutla | a04cf3b | 2019-09-27 13:32:11 +0530 | [diff] [blame] | 440 | return 0; |
| 441 | } |
| 442 | #endif |
Lokesh Vutla | 362beda | 2019-10-07 13:52:17 +0530 | [diff] [blame] | 443 | |
| 444 | #ifdef CONFIG_ARM64 |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 445 | void board_prep_linux(struct bootm_headers *images) |
Lokesh Vutla | 362beda | 2019-10-07 13:52:17 +0530 | [diff] [blame] | 446 | { |
| 447 | debug("Linux kernel Image start = 0x%lx end = 0x%lx\n", |
| 448 | images->os.start, images->os.end); |
| 449 | __asm_flush_dcache_range(images->os.start, |
| 450 | ROUND(images->os.end, |
| 451 | CONFIG_SYS_CACHELINE_SIZE)); |
| 452 | } |
| 453 | #endif |
Lokesh Vutla | 5fbd6fe | 2019-12-31 15:49:55 +0530 | [diff] [blame] | 454 | |
| 455 | #ifdef CONFIG_CPU_V7R |
| 456 | void disable_linefill_optimization(void) |
| 457 | { |
| 458 | u32 actlr; |
| 459 | |
| 460 | /* |
| 461 | * On K3 devices there are 2 conditions where R5F can deadlock: |
| 462 | * 1.When software is performing series of store operations to |
| 463 | * cacheable write back/write allocate memory region and later |
| 464 | * on software execute barrier operation (DSB or DMB). R5F may |
| 465 | * hang at the barrier instruction. |
| 466 | * 2.When software is performing a mix of load and store operations |
| 467 | * within a tight loop and store operations are all writing to |
| 468 | * cacheable write back/write allocates memory regions, R5F may |
| 469 | * hang at one of the load instruction. |
| 470 | * |
| 471 | * To avoid the above two conditions disable linefill optimization |
| 472 | * inside Cortex R5F. |
| 473 | */ |
| 474 | asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (actlr)); |
| 475 | actlr |= (1 << 13); /* Set DLFO bit */ |
| 476 | asm("mcr p15, 0, %0, c1, c0, 1" : : "r" (actlr)); |
| 477 | } |
| 478 | #endif |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 479 | |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 480 | static void remove_fwl_regions(struct fwl_data fwl_data, size_t num_regions, |
| 481 | enum k3_firewall_region_type fwl_type) |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 482 | { |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 483 | struct ti_sci_fwl_ops *fwl_ops; |
| 484 | struct ti_sci_handle *ti_sci; |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 485 | struct ti_sci_msg_fwl_region region; |
| 486 | size_t j; |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 487 | |
| 488 | ti_sci = get_ti_sci_handle(); |
| 489 | fwl_ops = &ti_sci->ops.fwl_ops; |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 490 | |
| 491 | for (j = 0; j < fwl_data.regions; j++) { |
| 492 | region.fwl_id = fwl_data.fwl_id; |
| 493 | region.region = j; |
| 494 | region.n_permission_regs = 3; |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 495 | |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 496 | fwl_ops->get_fwl_region(ti_sci, ®ion); |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 497 | |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 498 | /* Don't disable the background regions */ |
| 499 | if (region.control != 0 && |
Manorit Chawdhry | a2cfec4 | 2023-07-14 11:22:27 +0530 | [diff] [blame^] | 500 | ((region.control >> K3_FIREWALL_BACKGROUND_BIT) & 1) == fwl_type) { |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 501 | pr_debug("Attempting to disable firewall %5d (%25s)\n", |
| 502 | region.fwl_id, fwl_data.name); |
| 503 | region.control = 0; |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 504 | |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 505 | if (fwl_ops->set_fwl_region(ti_sci, ®ion)) |
| 506 | pr_err("Could not disable firewall %5d (%25s)\n", |
| 507 | region.fwl_id, fwl_data.name); |
Andrew F. Davis | f0bcb66 | 2020-01-10 14:35:21 -0500 | [diff] [blame] | 508 | } |
| 509 | } |
| 510 | } |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 511 | |
Manorit Chawdhry | 33f75ee | 2023-05-05 15:54:00 +0530 | [diff] [blame] | 512 | void remove_fwl_configs(struct fwl_data *fwl_data, size_t fwl_data_size) |
| 513 | { |
| 514 | size_t i; |
| 515 | |
| 516 | for (i = 0; i < fwl_data_size; i++) { |
| 517 | remove_fwl_regions(fwl_data[i], fwl_data[i].regions, |
| 518 | K3_FIREWALL_REGION_FOREGROUND); |
| 519 | remove_fwl_regions(fwl_data[i], fwl_data[i].regions, |
| 520 | K3_FIREWALL_REGION_BACKGROUND); |
| 521 | } |
| 522 | } |
| 523 | |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 524 | void spl_enable_dcache(void) |
| 525 | { |
| 526 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 527 | phys_addr_t ram_top = CFG_SYS_SDRAM_BASE; |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 528 | |
Georgi Vlaev | a5076cd | 2022-06-14 17:45:30 +0300 | [diff] [blame] | 529 | dram_init(); |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 530 | |
| 531 | /* reserve TLB table */ |
| 532 | gd->arch.tlb_size = PGTABLE_SIZE; |
| 533 | |
| 534 | ram_top += get_effective_memsize(); |
| 535 | /* keep ram_top in the 32-bit address space */ |
| 536 | if (ram_top >= 0x100000000) |
| 537 | ram_top = (phys_addr_t) 0x100000000; |
| 538 | |
| 539 | gd->arch.tlb_addr = ram_top - gd->arch.tlb_size; |
Nikhil M Jain | 3683681 | 2023-07-18 14:27:28 +0530 | [diff] [blame] | 540 | gd->arch.tlb_addr &= ~(0x10000 - 1); |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 541 | debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr, |
| 542 | gd->arch.tlb_addr + gd->arch.tlb_size); |
Nikhil M Jain | 3683681 | 2023-07-18 14:27:28 +0530 | [diff] [blame] | 543 | gd->relocaddr = gd->arch.tlb_addr; |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 544 | |
| 545 | dcache_enable(); |
| 546 | #endif |
| 547 | } |
| 548 | |
| 549 | #if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF)) |
| 550 | void spl_board_prepare_for_boot(void) |
| 551 | { |
| 552 | dcache_disable(); |
| 553 | } |
| 554 | |
Patrick Delaunay | 35c949c | 2020-07-07 14:25:15 +0200 | [diff] [blame] | 555 | void spl_board_prepare_for_linux(void) |
Jan Kiszka | 7ce99f7 | 2020-05-18 07:57:22 +0200 | [diff] [blame] | 556 | { |
| 557 | dcache_disable(); |
| 558 | } |
| 559 | #endif |
Vignesh Raghavendra | 030f405 | 2021-12-24 12:55:29 +0530 | [diff] [blame] | 560 | |
| 561 | int misc_init_r(void) |
| 562 | { |
| 563 | if (IS_ENABLED(CONFIG_TI_AM65_CPSW_NUSS)) { |
| 564 | struct udevice *dev; |
| 565 | int ret; |
| 566 | |
| 567 | ret = uclass_get_device_by_driver(UCLASS_MISC, |
| 568 | DM_DRIVER_GET(am65_cpsw_nuss), |
| 569 | &dev); |
| 570 | if (ret) |
| 571 | printf("Failed to probe am65_cpsw_nuss driver\n"); |
| 572 | } |
| 573 | |
Vignesh Raghavendra | ae17d36 | 2023-04-20 21:42:21 +0530 | [diff] [blame] | 574 | /* Default FIT boot on HS-SE devices */ |
| 575 | if (get_device_type() == K3_DEVICE_TYPE_HS_SE) |
Andrew Davis | f1d7205 | 2022-10-07 11:27:46 -0500 | [diff] [blame] | 576 | env_set("boot_fit", "1"); |
| 577 | |
Vignesh Raghavendra | 030f405 | 2021-12-24 12:55:29 +0530 | [diff] [blame] | 578 | return 0; |
| 579 | } |
Andrew Davis | 2dde9a7 | 2023-04-06 11:38:17 -0500 | [diff] [blame] | 580 | |
| 581 | /** |
| 582 | * do_board_detect() - Detect board description |
| 583 | * |
| 584 | * Function to detect board description. This is expected to be |
| 585 | * overridden in the SoC family board file where desired. |
| 586 | */ |
| 587 | void __weak do_board_detect(void) |
| 588 | { |
| 589 | } |