blob: bb0f64194f4e6ca2a78ed40f4f09e12a4b27c6a5 [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>
Andreas Dannenbergf9380a72019-06-07 19:24:42 +053022#include <asm/arch/sys_proto.h>
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +053023#include <asm/hardware.h>
24#include <asm/io.h>
Keerthy3ab34bc2020-02-12 13:55:04 +053025#include <fs_loader.h>
26#include <fs.h>
27#include <env.h>
28#include <elf.h>
Dave Gerlach5ab71ea2020-07-15 23:40:04 -050029#include <soc.h>
Lokesh Vutla6ce424a2019-03-08 11:47:33 +053030
Tero Kristo547b2772021-06-11 11:45:19 +030031#if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF)
32enum {
33 IMAGE_ID_ATF,
34 IMAGE_ID_OPTEE,
35 IMAGE_ID_SPL,
36 IMAGE_ID_DM_FW,
37 IMAGE_AMT,
38};
39
40#if CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS)
41static const char *image_os_match[IMAGE_AMT] = {
42 "arm-trusted-firmware",
43 "tee",
44 "U-Boot",
45 "DM",
46};
47#endif
48
49static struct image_info fit_image_info[IMAGE_AMT];
50#endif
51
Lokesh Vutla6ce424a2019-03-08 11:47:33 +053052struct ti_sci_handle *get_ti_sci_handle(void)
53{
54 struct udevice *dev;
55 int ret;
56
Lokesh Vutlae69ffdb2019-09-27 13:32:15 +053057 ret = uclass_get_device_by_driver(UCLASS_FIRMWARE,
Simon Glass65e25be2020-12-28 20:34:56 -070058 DM_DRIVER_GET(ti_sci), &dev);
Lokesh Vutla6ce424a2019-03-08 11:47:33 +053059 if (ret)
60 panic("Failed to get SYSFW (%d)\n", ret);
61
62 return (struct ti_sci_handle *)ti_sci_get_handle_from_sysfw(dev);
63}
Lokesh Vutlaa3501a42018-11-02 19:51:05 +053064
Lokesh Vutla6e44aeb2020-03-10 16:50:58 +053065void k3_sysfw_print_ver(void)
66{
67 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
68 char fw_desc[sizeof(ti_sci->version.firmware_description) + 1];
69
70 /*
71 * Output System Firmware version info. Note that since the
72 * 'firmware_description' field is not guaranteed to be zero-
73 * terminated we manually add a \0 terminator if needed. Further
74 * note that we intentionally no longer rely on the extended
75 * printf() formatter '%.*s' to not having to require a more
76 * full-featured printf() implementation.
77 */
78 strncpy(fw_desc, ti_sci->version.firmware_description,
79 sizeof(ti_sci->version.firmware_description));
80 fw_desc[sizeof(fw_desc) - 1] = '\0';
81
82 printf("SYSFW ABI: %d.%d (firmware rev 0x%04x '%s')\n",
83 ti_sci->version.abi_major, ti_sci->version.abi_minor,
84 ti_sci->version.firmware_revision, fw_desc);
85}
86
Lokesh Vutla58ccd612020-08-05 22:44:17 +053087void mmr_unlock(phys_addr_t base, u32 partition)
88{
89 /* Translate the base address */
90 phys_addr_t part_base = base + partition * CTRL_MMR0_PARTITION_SIZE;
91
92 /* Unlock the requested partition if locked using two-step sequence */
93 writel(CTRLMMR_LOCK_KICK0_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK0);
94 writel(CTRLMMR_LOCK_KICK1_UNLOCK_VAL, part_base + CTRLMMR_LOCK_KICK1);
95}
96
Lokesh Vutla01dbe362020-08-05 22:44:23 +053097bool is_rom_loaded_sysfw(struct rom_extended_boot_data *data)
98{
99 if (strncmp(data->header, K3_ROM_BOOT_HEADER_MAGIC, 7))
100 return false;
101
102 return data->num_components > 1;
103}
104
Andreas Dannenberge630afe12019-08-15 15:55:28 -0500105DECLARE_GLOBAL_DATA_PTR;
106
107#ifdef CONFIG_K3_EARLY_CONS
108int early_console_init(void)
109{
110 struct udevice *dev;
111 int ret;
112
113 gd->baudrate = CONFIG_BAUDRATE;
114
115 ret = uclass_get_device_by_seq(UCLASS_SERIAL, CONFIG_K3_EARLY_CONS_IDX,
116 &dev);
117 if (ret) {
118 printf("Error getting serial dev for early console! (%d)\n",
119 ret);
120 return ret;
121 }
122
123 gd->cur_serial_dev = dev;
124 gd->flags |= GD_FLG_SERIAL_READY;
125 gd->have_console = 1;
126
127 return 0;
128}
129#endif
130
Tero Kristo547b2772021-06-11 11:45:19 +0300131#if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF)
Keerthy3ab34bc2020-02-12 13:55:04 +0530132
133void init_env(void)
134{
135#ifdef CONFIG_SPL_ENV_SUPPORT
136 char *part;
137
138 env_init();
139 env_relocate();
140 switch (spl_boot_device()) {
141 case BOOT_DEVICE_MMC2:
142 part = env_get("bootpart");
143 env_set("storage_interface", "mmc");
144 env_set("fw_dev_part", part);
145 break;
146 case BOOT_DEVICE_SPI:
147 env_set("storage_interface", "ubi");
148 env_set("fw_ubi_mtdpart", "UBI");
149 env_set("fw_ubi_volume", "UBI0");
150 break;
151 default:
152 printf("%s from device %u not supported!\n",
153 __func__, spl_boot_device());
154 return;
155 }
156#endif
157}
158
159#ifdef CONFIG_FS_LOADER
160int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr)
161{
162 struct udevice *fsdev;
163 char *name = NULL;
164 int size = 0;
165
166 *loadaddr = 0;
167#ifdef CONFIG_SPL_ENV_SUPPORT
168 switch (spl_boot_device()) {
169 case BOOT_DEVICE_MMC2:
170 name = env_get(name_fw);
171 *loadaddr = env_get_hex(name_loadaddr, *loadaddr);
172 break;
173 default:
174 printf("Loading rproc fw image from device %u not supported!\n",
175 spl_boot_device());
176 return 0;
177 }
178#endif
179 if (!*loadaddr)
180 return 0;
181
182 if (!uclass_get_device(UCLASS_FS_FIRMWARE_LOADER, 0, &fsdev)) {
183 size = request_firmware_into_buf(fsdev, name, (void *)*loadaddr,
184 0, 0);
185 }
186
187 return size;
188}
189#else
190int load_firmware(char *name_fw, char *name_loadaddr, u32 *loadaddr)
191{
192 return 0;
193}
194#endif
195
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530196void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
197{
Keerthyd1542522020-02-12 13:55:06 +0530198 typedef void __noreturn (*image_entry_noargs_t)(void);
Lokesh Vutlac0669d22019-06-07 19:24:43 +0530199 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
Keerthyd1542522020-02-12 13:55:06 +0530200 u32 loadaddr = 0;
Tero Kristo547b2772021-06-11 11:45:19 +0300201 int ret, size = 0;
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530202
Lokesh Vutlac0669d22019-06-07 19:24:43 +0530203 /* Release all the exclusive devices held by SPL before starting ATF */
204 ti_sci->ops.dev_ops.release_exclusive_devices(ti_sci);
205
Keerthy3ab34bc2020-02-12 13:55:04 +0530206 ret = rproc_init();
207 if (ret)
208 panic("rproc failed to be initialized (%d)\n", ret);
209
210 init_env();
Dave Gerlach7acd4d72021-06-11 11:45:21 +0300211
212 if (!fit_image_info[IMAGE_ID_DM_FW].image_start) {
Tero Kristo547b2772021-06-11 11:45:19 +0300213 size = load_firmware("name_mcur5f0_0fw", "addr_mcur5f0_0load",
214 &loadaddr);
Dave Gerlach7acd4d72021-06-11 11:45:21 +0300215 }
Keerthy3ab34bc2020-02-12 13:55:04 +0530216
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530217 /*
218 * It is assumed that remoteproc device 1 is the corresponding
Andreas Dannenberg4a1fa522019-02-04 12:58:47 -0600219 * Cortex-A core which runs ATF. Make sure DT reflects the same.
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530220 */
Tero Kristo547b2772021-06-11 11:45:19 +0300221 if (!fit_image_info[IMAGE_ID_ATF].image_start)
222 fit_image_info[IMAGE_ID_ATF].image_start =
223 spl_image->entry_point;
224
225 ret = rproc_load(1, fit_image_info[IMAGE_ID_ATF].image_start, 0x200);
Andreas Dannenberg4a1fa522019-02-04 12:58:47 -0600226 if (ret)
227 panic("%s: ATF failed to load on rproc (%d)\n", __func__, ret);
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530228
Andreas Dannenberg4a1fa522019-02-04 12:58:47 -0600229 /* Add an extra newline to differentiate the ATF logs from SPL */
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530230 printf("Starting ATF on ARM64 core...\n\n");
231
232 ret = rproc_start(1);
Andreas Dannenberg4a1fa522019-02-04 12:58:47 -0600233 if (ret)
234 panic("%s: ATF failed to start on rproc (%d)\n", __func__, ret);
Tero Kristo547b2772021-06-11 11:45:19 +0300235 if (!fit_image_info[IMAGE_ID_DM_FW].image_len &&
236 !(size > 0 && valid_elf_image(loadaddr))) {
Keerthyd1542522020-02-12 13:55:06 +0530237 debug("Shutting down...\n");
238 release_resources_for_core_shutdown();
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530239
Keerthyd1542522020-02-12 13:55:06 +0530240 while (1)
241 asm volatile("wfe");
242 }
Andreas Dannenbergf9380a72019-06-07 19:24:42 +0530243
Tero Kristo547b2772021-06-11 11:45:19 +0300244 if (!fit_image_info[IMAGE_ID_DM_FW].image_start) {
245 loadaddr = load_elf_image_phdr(loadaddr);
246 } else {
247 loadaddr = fit_image_info[IMAGE_ID_DM_FW].image_start;
248 if (valid_elf_image(loadaddr))
249 loadaddr = load_elf_image_phdr(loadaddr);
250 }
251
252 debug("%s: jumping to address %x\n", __func__, loadaddr);
253
254 image_entry_noargs_t image_entry = (image_entry_noargs_t)loadaddr;
Keerthyd1542522020-02-12 13:55:06 +0530255
256 image_entry();
Lokesh Vutlaa3501a42018-11-02 19:51:05 +0530257}
258#endif
Lokesh Vutlaa9a84482019-03-08 11:47:34 +0530259
Tero Kristo547b2772021-06-11 11:45:19 +0300260#if CONFIG_IS_ENABLED(FIT_IMAGE_POST_PROCESS)
261void board_fit_image_post_process(const void *fit, int node, void **p_image,
262 size_t *p_size)
263{
264#if IS_ENABLED(CONFIG_SYS_K3_SPL_ATF)
265 int len;
266 int i;
267 const char *os;
268 u32 addr;
269
270 os = fdt_getprop(fit, node, "os", &len);
271 addr = fdt_getprop_u32_default_node(fit, node, 0, "entry", -1);
272
273 debug("%s: processing image: addr=%x, size=%d, os=%s\n", __func__,
274 addr, *p_size, os);
275
276 for (i = 0; i < IMAGE_AMT; i++) {
277 if (!strcmp(os, image_os_match[i])) {
278 fit_image_info[i].image_start = addr;
279 fit_image_info[i].image_len = *p_size;
280 debug("%s: matched image for ID %d\n", __func__, i);
281 break;
282 }
283 }
284#endif
285
286#if IS_ENABLED(CONFIG_TI_SECURE_DEVICE)
287 ti_secure_image_post_process(p_image, p_size);
288#endif
289}
290#endif
291
Lokesh Vutlaa9a84482019-03-08 11:47:34 +0530292#if defined(CONFIG_OF_LIBFDT)
293int fdt_fixup_msmc_ram(void *blob, char *parent_path, char *node_name)
294{
295 u64 msmc_start = 0, msmc_end = 0, msmc_size, reg[2];
296 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
297 int ret, node, subnode, len, prev_node;
298 u32 range[4], addr, size;
299 const fdt32_t *sub_reg;
300
301 ti_sci->ops.core_ops.query_msmc(ti_sci, &msmc_start, &msmc_end);
302 msmc_size = msmc_end - msmc_start + 1;
303 debug("%s: msmc_start = 0x%llx, msmc_size = 0x%llx\n", __func__,
304 msmc_start, msmc_size);
305
306 /* find or create "msmc_sram node */
307 ret = fdt_path_offset(blob, parent_path);
308 if (ret < 0)
309 return ret;
310
311 node = fdt_find_or_add_subnode(blob, ret, node_name);
312 if (node < 0)
313 return node;
314
315 ret = fdt_setprop_string(blob, node, "compatible", "mmio-sram");
316 if (ret < 0)
317 return ret;
318
319 reg[0] = cpu_to_fdt64(msmc_start);
320 reg[1] = cpu_to_fdt64(msmc_size);
321 ret = fdt_setprop(blob, node, "reg", reg, sizeof(reg));
322 if (ret < 0)
323 return ret;
324
325 fdt_setprop_cell(blob, node, "#address-cells", 1);
326 fdt_setprop_cell(blob, node, "#size-cells", 1);
327
328 range[0] = 0;
329 range[1] = cpu_to_fdt32(msmc_start >> 32);
330 range[2] = cpu_to_fdt32(msmc_start & 0xffffffff);
331 range[3] = cpu_to_fdt32(msmc_size);
332 ret = fdt_setprop(blob, node, "ranges", range, sizeof(range));
333 if (ret < 0)
334 return ret;
335
336 subnode = fdt_first_subnode(blob, node);
337 prev_node = 0;
338
339 /* Look for invalid subnodes and delete them */
340 while (subnode >= 0) {
341 sub_reg = fdt_getprop(blob, subnode, "reg", &len);
342 addr = fdt_read_number(sub_reg, 1);
343 sub_reg++;
344 size = fdt_read_number(sub_reg, 1);
345 debug("%s: subnode = %d, addr = 0x%x. size = 0x%x\n", __func__,
346 subnode, addr, size);
347 if (addr + size > msmc_size ||
348 !strncmp(fdt_get_name(blob, subnode, &len), "sysfw", 5) ||
349 !strncmp(fdt_get_name(blob, subnode, &len), "l3cache", 7)) {
350 fdt_del_node(blob, subnode);
351 debug("%s: deleting subnode %d\n", __func__, subnode);
352 if (!prev_node)
353 subnode = fdt_first_subnode(blob, node);
354 else
355 subnode = fdt_next_subnode(blob, prev_node);
356 } else {
357 prev_node = subnode;
358 subnode = fdt_next_subnode(blob, prev_node);
359 }
360 }
361
362 return 0;
363}
Andrew F. Davis29c9db42019-09-17 17:15:40 -0400364
365int fdt_disable_node(void *blob, char *node_path)
366{
367 int offs;
368 int ret;
369
370 offs = fdt_path_offset(blob, node_path);
371 if (offs < 0) {
Andrew F. Davis28b90a42020-01-07 18:12:40 -0500372 printf("Node %s not found.\n", node_path);
373 return offs;
Andrew F. Davis29c9db42019-09-17 17:15:40 -0400374 }
375 ret = fdt_setprop_string(blob, offs, "status", "disabled");
376 if (ret < 0) {
377 printf("Could not add status property to node %s: %s\n",
378 node_path, fdt_strerror(ret));
379 return ret;
380 }
381 return 0;
382}
383
Lokesh Vutlaa9a84482019-03-08 11:47:34 +0530384#endif
Lokesh Vutlac2562d72019-06-13 10:29:42 +0530385
386#ifndef CONFIG_SYSRESET
Harald Seiler35b65dd2020-12-15 16:47:52 +0100387void reset_cpu(void)
Lokesh Vutlac2562d72019-06-13 10:29:42 +0530388{
389}
390#endif
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530391
392#if defined(CONFIG_DISPLAY_CPUINFO)
393int print_cpuinfo(void)
394{
Dave Gerlach5ab71ea2020-07-15 23:40:04 -0500395 struct udevice *soc;
396 char name[64];
397 int ret;
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530398
399 printf("SoC: ");
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530400
Dave Gerlach5ab71ea2020-07-15 23:40:04 -0500401 ret = soc_get(&soc);
402 if (ret) {
403 printf("UNKNOWN\n");
404 return 0;
405 }
406
407 ret = soc_get_family(soc, name, 64);
408 if (!ret) {
409 printf("%s ", name);
410 }
411
412 ret = soc_get_revision(soc, name, 64);
413 if (!ret) {
414 printf("%s\n", name);
415 }
Lokesh Vutlaf8ca9122019-09-27 13:32:11 +0530416
417 return 0;
418}
419#endif
Lokesh Vutlae938b222019-10-07 13:52:17 +0530420
Lokesh Vutla2a18be72020-08-05 22:44:19 +0530421bool soc_is_j721e(void)
422{
423 u32 soc;
424
425 soc = (readl(CTRLMMR_WKUP_JTAG_ID) &
426 JTAG_ID_PARTNO_MASK) >> JTAG_ID_PARTNO_SHIFT;
427
428 return soc == J721E;
429}
430
Lokesh Vutla30de1ba2020-08-05 22:44:21 +0530431bool soc_is_j7200(void)
432{
433 u32 soc;
434
435 soc = (readl(CTRLMMR_WKUP_JTAG_ID) &
436 JTAG_ID_PARTNO_MASK) >> JTAG_ID_PARTNO_SHIFT;
437
438 return soc == J7200;
439}
440
Lokesh Vutlae938b222019-10-07 13:52:17 +0530441#ifdef CONFIG_ARM64
442void board_prep_linux(bootm_headers_t *images)
443{
444 debug("Linux kernel Image start = 0x%lx end = 0x%lx\n",
445 images->os.start, images->os.end);
446 __asm_flush_dcache_range(images->os.start,
447 ROUND(images->os.end,
448 CONFIG_SYS_CACHELINE_SIZE));
449}
450#endif
Lokesh Vutla40109f42019-12-31 15:49:55 +0530451
452#ifdef CONFIG_CPU_V7R
453void disable_linefill_optimization(void)
454{
455 u32 actlr;
456
457 /*
458 * On K3 devices there are 2 conditions where R5F can deadlock:
459 * 1.When software is performing series of store operations to
460 * cacheable write back/write allocate memory region and later
461 * on software execute barrier operation (DSB or DMB). R5F may
462 * hang at the barrier instruction.
463 * 2.When software is performing a mix of load and store operations
464 * within a tight loop and store operations are all writing to
465 * cacheable write back/write allocates memory regions, R5F may
466 * hang at one of the load instruction.
467 *
468 * To avoid the above two conditions disable linefill optimization
469 * inside Cortex R5F.
470 */
471 asm("mrc p15, 0, %0, c1, c0, 1" : "=r" (actlr));
472 actlr |= (1 << 13); /* Set DLFO bit */
473 asm("mcr p15, 0, %0, c1, c0, 1" : : "r" (actlr));
474}
475#endif
Andrew F. Davisea70da12020-01-10 14:35:21 -0500476
477void remove_fwl_configs(struct fwl_data *fwl_data, size_t fwl_data_size)
478{
479 struct ti_sci_msg_fwl_region region;
480 struct ti_sci_fwl_ops *fwl_ops;
481 struct ti_sci_handle *ti_sci;
482 size_t i, j;
483
484 ti_sci = get_ti_sci_handle();
485 fwl_ops = &ti_sci->ops.fwl_ops;
486 for (i = 0; i < fwl_data_size; i++) {
487 for (j = 0; j < fwl_data[i].regions; j++) {
488 region.fwl_id = fwl_data[i].fwl_id;
489 region.region = j;
490 region.n_permission_regs = 3;
491
492 fwl_ops->get_fwl_region(ti_sci, &region);
493
494 if (region.control != 0) {
495 pr_debug("Attempting to disable firewall %5d (%25s)\n",
496 region.fwl_id, fwl_data[i].name);
497 region.control = 0;
498
499 if (fwl_ops->set_fwl_region(ti_sci, &region))
500 pr_err("Could not disable firewall %5d (%25s)\n",
501 region.fwl_id, fwl_data[i].name);
502 }
503 }
504 }
505}
Jan Kiszkac02712a2020-05-18 07:57:22 +0200506
507void spl_enable_dcache(void)
508{
509#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
510 phys_addr_t ram_top = CONFIG_SYS_SDRAM_BASE;
511
512 dram_init_banksize();
513
514 /* reserve TLB table */
515 gd->arch.tlb_size = PGTABLE_SIZE;
516
517 ram_top += get_effective_memsize();
518 /* keep ram_top in the 32-bit address space */
519 if (ram_top >= 0x100000000)
520 ram_top = (phys_addr_t) 0x100000000;
521
522 gd->arch.tlb_addr = ram_top - gd->arch.tlb_size;
523 debug("TLB table from %08lx to %08lx\n", gd->arch.tlb_addr,
524 gd->arch.tlb_addr + gd->arch.tlb_size);
525
526 dcache_enable();
527#endif
528}
529
530#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
531void spl_board_prepare_for_boot(void)
532{
533 dcache_disable();
534}
535
Patrick Delaunay865fdfd2020-07-07 14:25:15 +0200536void spl_board_prepare_for_linux(void)
Jan Kiszkac02712a2020-05-18 07:57:22 +0200537{
538 dcache_disable();
539}
540#endif