blob: 7baab7d1a5f3d45dbba3d324545d3a42264b8afd [file] [log] [blame]
Lokesh Vutlaa3501a42018-11-02 19:51:05 +05301// 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 Glass9a3b4ce2019-12-28 10:45:01 -070010#include <cpu_func.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060011#include <image.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Lokesh Vutlaa3501a42018-11-02 19:51:05 +053014#include <spl.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Lokesh Vutlaa3501a42018-11-02 19:51:05 +053016#include "common.h"
17#include <dm.h>
18#include <remoteproc.h>
Simon Glass90526e92020-05-10 11:39:56 -060019#include <asm/cache.h>
Lokesh Vutla6ce424a2019-03-08 11:47:33 +053020#include <linux/soc/ti/ti_sci_protocol.h>
Lokesh Vutlaa9a84482019-03-08 11:47:34 +053021#include <fdt_support.h>
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +053022#include <asm/hardware.h>
23#include <asm/io.h>
Keerthy3ab34bc2020-02-12 13:55:04 +053024#include <fs_loader.h>
25#include <fs.h>
26#include <env.h>
27#include <elf.h>
Dave Gerlach5ab71ea2020-07-15 23:40:04 -050028#include <soc.h>
Lokesh Vutla6ce424a2019-03-08 11:47:33 +053029
Tero Kristo547b2772021-06-11 11:45:19 +030030#if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF)
31enum {
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)
40static const char *image_os_match[IMAGE_AMT] = {
41 "arm-trusted-firmware",
42 "tee",
43 "U-Boot",
44 "DM",
45};
46#endif
47
48static struct image_info fit_image_info[IMAGE_AMT];
49#endif
50
Lokesh Vutla6ce424a2019-03-08 11:47:33 +053051struct ti_sci_handle *get_ti_sci_handle(void)
52{
53 struct udevice *dev;
54 int ret;
55
Lokesh Vutlae69ffdb2019-09-27 13:32:15 +053056 ret = uclass_get_device_by_driver(UCLASS_FIRMWARE,
Simon Glass65e25be2020-12-28 20:34:56 -070057 DM_DRIVER_GET(ti_sci), &dev);
Lokesh Vutla6ce424a2019-03-08 11:47:33 +053058 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 Vutlaa3501a42018-11-02 19:51:05 +053063
Lokesh Vutla6e44aeb2020-03-10 16:50:58 +053064void 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 Vutla58ccd612020-08-05 22:44:17 +053086void 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 Vutla01dbe362020-08-05 22:44:23 +053096bool 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 Dannenberge630afe12019-08-15 15:55:28 -0500104DECLARE_GLOBAL_DATA_PTR;
105
106#ifdef CONFIG_K3_EARLY_CONS
107int 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 Kristo547b2772021-06-11 11:45:19 +0300130#if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF)
Keerthy3ab34bc2020-02-12 13:55:04 +0530131
132void 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
Keerthy3ab34bc2020-02-12 13:55:04 +0530158int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr)
159{
160 struct udevice *fsdev;
161 char *name = NULL;
162 int size = 0;
163
Keerthyb071a072022-01-27 13:16:53 +0100164 if (!IS_ENABLED(CONFIG_FS_LOADER))
165 return 0;
166
Keerthy3ab34bc2020-02-12 13:55:04 +0530167 *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 Anderson0998a202022-12-29 11:52:59 -0500183 if (!get_fs_loader(&fsdev)) {
Keerthy3ab34bc2020-02-12 13:55:04 +0530184 size = request_firmware_into_buf(fsdev, name, (void *)*loadaddr,
185 0, 0);
186 }
187
188 return size;
189}
Keerthy3ab34bc2020-02-12 13:55:04 +0530190
Andrew Davis2aee1732023-04-06 11:38:15 -0500191void release_resources_for_core_shutdown(void)
Suman Annad86a0892021-07-27 18:24:40 -0500192{
Andrew Davis2aee1732023-04-06 11:38:15 -0500193 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 Annad86a0892021-07-27 18:24:40 -0500222}
223
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530224void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
225{
Keerthyd1542522020-02-12 13:55:06 +0530226 typedef void __noreturn (*image_entry_noargs_t)(void);
Lokesh Vutlac0669d22019-06-07 19:24:43 +0530227 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
Keerthyd1542522020-02-12 13:55:06 +0530228 u32 loadaddr = 0;
Nishanth Menonee91d462021-08-31 13:20:48 -0500229 int ret, size = 0, shut_cpu = 0;
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530230
Lokesh Vutlac0669d22019-06-07 19:24:43 +0530231 /* Release all the exclusive devices held by SPL before starting ATF */
232 ti_sci->ops.dev_ops.release_exclusive_devices(ti_sci);
233
Keerthy3ab34bc2020-02-12 13:55:04 +0530234 ret = rproc_init();
235 if (ret)
236 panic("rproc failed to be initialized (%d)\n", ret);
237
238 init_env();
Dave Gerlach7acd4d72021-06-11 11:45:21 +0300239
240 if (!fit_image_info[IMAGE_ID_DM_FW].image_start) {
Tero Kristo547b2772021-06-11 11:45:19 +0300241 size = load_firmware("name_mcur5f0_0fw", "addr_mcur5f0_0load",
242 &loadaddr);
Dave Gerlach7acd4d72021-06-11 11:45:21 +0300243 }
Keerthy3ab34bc2020-02-12 13:55:04 +0530244
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530245 /*
246 * It is assumed that remoteproc device 1 is the corresponding
Andreas Dannenberg4a1fa522019-02-04 12:58:47 -0600247 * Cortex-A core which runs ATF. Make sure DT reflects the same.
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530248 */
Tero Kristo547b2772021-06-11 11:45:19 +0300249 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 Dannenberg4a1fa522019-02-04 12:58:47 -0600254 if (ret)
255 panic("%s: ATF failed to load on rproc (%d)\n", __func__, ret);
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530256
Manorit Chawdhry1e00e9b2023-04-14 09:48:01 +0530257#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 Kristo547b2772021-06-11 11:45:19 +0300282 if (!fit_image_info[IMAGE_ID_DM_FW].image_len &&
283 !(size > 0 && valid_elf_image(loadaddr))) {
Nishanth Menonee91d462021-08-31 13:20:48 -0500284 shut_cpu = 1;
285 goto start_arm64;
Keerthyd1542522020-02-12 13:55:06 +0530286 }
Andreas Dannenbergf9380a72019-06-07 19:24:42 +0530287
Tero Kristo547b2772021-06-11 11:45:19 +0300288 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 Menonee91d462021-08-31 13:20:48 -0500298start_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 Kristo547b2772021-06-11 11:45:19 +0300313 image_entry_noargs_t image_entry = (image_entry_noargs_t)loadaddr;
Keerthyd1542522020-02-12 13:55:06 +0530314
315 image_entry();
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530316}
317#endif
Lokesh Vutlaa9a84482019-03-08 11:47:34 +0530318
Tero Kristo547b2772021-06-11 11:45:19 +0300319#if CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS)
320void 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 Chawdhry1e00e9b2023-04-14 09:48:01 +0530343 /*
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 Kristo547b2772021-06-11 11:45:19 +0300348#endif
Manorit Chawdhry1e00e9b2023-04-14 09:48:01 +0530349 {
350 ti_secure_image_post_process(p_image, p_size);
351 }
Tero Kristo547b2772021-06-11 11:45:19 +0300352}
353#endif
354
Lokesh Vutlaa9a84482019-03-08 11:47:34 +0530355#if defined(CONFIG_OF_LIBFDT)
356int fdt_fixup_msmc_ram(void *blob, char *parent_path, char *node_name)
357{
358 u64 msmc_start = 0, msmc_end = 0, msmc_size, reg[2];
359 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
360 int ret, node, subnode, len, prev_node;
361 u32 range[4], addr, size;
362 const fdt32_t *sub_reg;
363
364 ti_sci->ops.core_ops.query_msmc(ti_sci, &msmc_start, &msmc_end);
365 msmc_size = msmc_end - msmc_start + 1;
366 debug("%s: msmc_start = 0x%llx, msmc_size = 0x%llx\n", __func__,
367 msmc_start, msmc_size);
368
369 /* find or create "msmc_sram node */
370 ret = fdt_path_offset(blob, parent_path);
371 if (ret < 0)
372 return ret;
373
374 node = fdt_find_or_add_subnode(blob, ret, node_name);
375 if (node < 0)
376 return node;
377
378 ret = fdt_setprop_string(blob, node, "compatible", "mmio-sram");
379 if (ret < 0)
380 return ret;
381
382 reg[0] = cpu_to_fdt64(msmc_start);
383 reg[1] = cpu_to_fdt64(msmc_size);
384 ret = fdt_setprop(blob, node, "reg", reg, sizeof(reg));
385 if (ret < 0)
386 return ret;
387
388 fdt_setprop_cell(blob, node, "#address-cells", 1);
389 fdt_setprop_cell(blob, node, "#size-cells", 1);
390
391 range[0] = 0;
392 range[1] = cpu_to_fdt32(msmc_start >> 32);
393 range[2] = cpu_to_fdt32(msmc_start & 0xffffffff);
394 range[3] = cpu_to_fdt32(msmc_size);
395 ret = fdt_setprop(blob, node, "ranges", range, sizeof(range));
396 if (ret < 0)
397 return ret;
398
399 subnode = fdt_first_subnode(blob, node);
400 prev_node = 0;
401
402 /* Look for invalid subnodes and delete them */
403 while (subnode >= 0) {
404 sub_reg = fdt_getprop(blob, subnode, "reg", &len);
405 addr = fdt_read_number(sub_reg, 1);
406 sub_reg++;
407 size = fdt_read_number(sub_reg, 1);
408 debug("%s: subnode = %d, addr = 0x%x. size = 0x%x\n", __func__,
409 subnode, addr, size);
410 if (addr + size > msmc_size ||
411 !strncmp(fdt_get_name(blob, subnode, &len), "sysfw", 5) ||
412 !strncmp(fdt_get_name(blob, subnode, &len), "l3cache", 7)) {
413 fdt_del_node(blob, subnode);
414 debug("%s: deleting subnode %d\n", __func__, subnode);
415 if (!prev_node)
416 subnode = fdt_first_subnode(blob, node);
417 else
418 subnode = fdt_next_subnode(blob, prev_node);
419 } else {
420 prev_node = subnode;
421 subnode = fdt_next_subnode(blob, prev_node);
422 }
423 }
424
425 return 0;
426}
Andrew F. Davis29c9db42019-09-17 17:15:40 -0400427
Andrew Davis30e96a22023-04-06 11:38:10 -0500428#if defined(CONFIG_OF_SYSTEM_SETUP)
429int ft_system_setup(void *blob, struct bd_info *bd)
430{
431 int ret;
432
433 ret = fdt_fixup_msmc_ram(blob, "/bus@100000", "sram@70000000");
434 if (ret < 0)
435 ret = fdt_fixup_msmc_ram(blob, "/interconnect@100000",
436 "sram@70000000");
437 if (ret)
438 printf("%s: fixing up msmc ram failed %d\n", __func__, ret);
439
440 return ret;
441}
442#endif
443
Lokesh Vutlaa9a84482019-03-08 11:47:34 +0530444#endif
Lokesh Vutlac2562d72019-06-13 10:29:42 +0530445
446#ifndef CONFIG_SYSRESET
Harald Seiler35b65dd2020-12-15 16:47:52 +0100447void reset_cpu(void)
Lokesh Vutlac2562d72019-06-13 10:29:42 +0530448{
449}
450#endif
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530451
Andrew Davisd1c07952022-07-15 11:34:32 -0500452enum k3_device_type get_device_type(void)
453{
454 u32 sys_status = readl(K3_SEC_MGR_SYS_STATUS);
455
456 u32 sys_dev_type = (sys_status & SYS_STATUS_DEV_TYPE_MASK) >>
457 SYS_STATUS_DEV_TYPE_SHIFT;
458
459 u32 sys_sub_type = (sys_status & SYS_STATUS_SUB_TYPE_MASK) >>
460 SYS_STATUS_SUB_TYPE_SHIFT;
461
462 switch (sys_dev_type) {
463 case SYS_STATUS_DEV_TYPE_GP:
464 return K3_DEVICE_TYPE_GP;
465 case SYS_STATUS_DEV_TYPE_TEST:
466 return K3_DEVICE_TYPE_TEST;
467 case SYS_STATUS_DEV_TYPE_EMU:
468 return K3_DEVICE_TYPE_EMU;
469 case SYS_STATUS_DEV_TYPE_HS:
470 if (sys_sub_type == SYS_STATUS_SUB_TYPE_VAL_FS)
471 return K3_DEVICE_TYPE_HS_FS;
472 else
473 return K3_DEVICE_TYPE_HS_SE;
474 default:
475 return K3_DEVICE_TYPE_BAD;
476 }
477}
478
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530479#if defined(CONFIG_DISPLAY_CPUINFO)
Andrew Davisd1c07952022-07-15 11:34:32 -0500480static const char *get_device_type_name(void)
481{
482 enum k3_device_type type = get_device_type();
483
484 switch (type) {
485 case K3_DEVICE_TYPE_GP:
486 return "GP";
487 case K3_DEVICE_TYPE_TEST:
488 return "TEST";
489 case K3_DEVICE_TYPE_EMU:
490 return "EMU";
491 case K3_DEVICE_TYPE_HS_FS:
492 return "HS-FS";
493 case K3_DEVICE_TYPE_HS_SE:
494 return "HS-SE";
495 default:
496 return "BAD";
497 }
498}
499
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530500int print_cpuinfo(void)
501{
Dave Gerlach5ab71ea2020-07-15 23:40:04 -0500502 struct udevice *soc;
503 char name[64];
504 int ret;
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530505
506 printf("SoC: ");
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530507
Dave Gerlach5ab71ea2020-07-15 23:40:04 -0500508 ret = soc_get(&soc);
509 if (ret) {
510 printf("UNKNOWN\n");
511 return 0;
512 }
513
514 ret = soc_get_family(soc, name, 64);
515 if (!ret) {
516 printf("%s ", name);
517 }
518
519 ret = soc_get_revision(soc, name, 64);
520 if (!ret) {
Andrew Davisd1c07952022-07-15 11:34:32 -0500521 printf("%s ", name);
Dave Gerlach5ab71ea2020-07-15 23:40:04 -0500522 }
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530523
Andrew Davisd1c07952022-07-15 11:34:32 -0500524 printf("%s\n", get_device_type_name());
525
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530526 return 0;
527}
528#endif
Lokesh Vutlae938b222019-10-07 13:52:17 +0530529
530#ifdef CONFIG_ARM64
Simon Glassd9d7c202022-09-06 20:26:50 -0600531void board_prep_linux(struct bootm_headers *images)
Lokesh Vutlae938b222019-10-07 13:52:17 +0530532{
533 debug("Linux kernel Image start = 0x%lx end = 0x%lx\n",
534 images->os.start, images->os.end);
535 __asm_flush_dcache_range(images->os.start,
536 ROUND(images->os.end,
537 CONFIG_SYS_CACHELINE_SIZE));
538}
539#endif
Lokesh Vutla40109f42019-12-31 15:49:55 +0530540
541#ifdef CONFIG_CPU_V7R
542void disable_linefill_optimization(void)
543{
544 u32 actlr;
545
546 /*
547 * On K3 devices there are 2 conditions where R5F can deadlock:
548 * 1.When software is performing series of store operations to
549 * cacheable write back/write allocate memory region and later
550 * on software execute barrier operation (DSB or DMB). R5F may
551 * hang at the barrier instruction.
552 * 2.When software is performing a mix of load and store operations
553 * within a tight loop and store operations are all writing to
554 * cacheable write back/write allocates memory regions, R5F may
555 * hang at one of the load instruction.
556 *
557 * To avoid the above two conditions disable linefill optimization
558 * inside Cortex R5F.
559 */
560 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (actlr));
561 actlr |= (1 << 13); /* Set DLFO bit */
562 asm("mcr p15, 0, %0, c1, c0, 1" : : "r" (actlr));
563}
564#endif
Andrew F. Davisea70da12020-01-10 14:35:21 -0500565
566void remove_fwl_configs(struct fwl_data *fwl_data, size_t fwl_data_size)
567{
568 struct ti_sci_msg_fwl_region region;
569 struct ti_sci_fwl_ops *fwl_ops;
570 struct ti_sci_handle *ti_sci;
571 size_t i, j;
572
573 ti_sci = get_ti_sci_handle();
574 fwl_ops = &ti_sci->ops.fwl_ops;
575 for (i = 0; i < fwl_data_size; i++) {
576 for (j = 0; j < fwl_data[i].regions; j++) {
577 region.fwl_id = fwl_data[i].fwl_id;
578 region.region = j;
579 region.n_permission_regs = 3;
580
581 fwl_ops->get_fwl_region(ti_sci, &region);
582
583 if (region.control != 0) {
584 pr_debug("Attempting to disable firewall %5d (%25s)\n",
585 region.fwl_id, fwl_data[i].name);
586 region.control = 0;
587
588 if (fwl_ops->set_fwl_region(ti_sci, &region))
589 pr_err("Could not disable firewall %5d (%25s)\n",
590 region.fwl_id, fwl_data[i].name);
591 }
592 }
593 }
594}
Jan Kiszkac02712a2020-05-18 07:57:22 +0200595
596void spl_enable_dcache(void)
597{
598#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
Tom Riniaa6e94d2022-11-16 13:10:37 -0500599 phys_addr_t ram_top = CFG_SYS_SDRAM_BASE;
Jan Kiszkac02712a2020-05-18 07:57:22 +0200600
Georgi Vlaeva04bbb82022-06-14 17:45:30 +0300601 dram_init();
Jan Kiszkac02712a2020-05-18 07:57:22 +0200602
603 /* reserve TLB table */
604 gd->arch.tlb_size = PGTABLE_SIZE;
605
606 ram_top += get_effective_memsize();
607 /* keep ram_top in the 32-bit address space */
608 if (ram_top >= 0x100000000)
609 ram_top = (phys_addr_t) 0x100000000;
610
611 gd->arch.tlb_addr = ram_top - gd->arch.tlb_size;
612 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
613 gd->arch.tlb_addr + gd->arch.tlb_size);
614
615 dcache_enable();
616#endif
617}
618
619#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
620void spl_board_prepare_for_boot(void)
621{
622 dcache_disable();
623}
624
Patrick Delaunay865fdfd2020-07-07 14:25:15 +0200625void spl_board_prepare_for_linux(void)
Jan Kiszkac02712a2020-05-18 07:57:22 +0200626{
627 dcache_disable();
628}
629#endif
Vignesh Raghavendrae58d9282021-12-24 12:55:29 +0530630
631int misc_init_r(void)
632{
633 if (IS_ENABLED(CONFIG_TI_AM65_CPSW_NUSS)) {
634 struct udevice *dev;
635 int ret;
636
637 ret = uclass_get_device_by_driver(UCLASS_MISC,
638 DM_DRIVER_GET(am65_cpsw_nuss),
639 &dev);
640 if (ret)
641 printf("Failed to probe am65_cpsw_nuss driver\n");
642 }
643
Andrew Davisfc95f832022-10-07 11:27:46 -0500644 /* Default FIT boot on non-GP devices */
645 if (get_device_type() != K3_DEVICE_TYPE_GP)
646 env_set("boot_fit", "1");
647
Vignesh Raghavendrae58d9282021-12-24 12:55:29 +0530648 return 0;
649}
Andrew Davise25fe5b2023-04-06 11:38:17 -0500650
651/**
652 * do_board_detect() - Detect board description
653 *
654 * Function to detect board description. This is expected to be
655 * overridden in the SoC family board file where desired.
656 */
657void __weak do_board_detect(void)
658{
659}