blob: e1fc4b3e19af8cdc632d4f10d6cb9a1833decae8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Peng Fan6f6058b2016-01-28 16:55:04 +08002/*
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
Peng Fan6f6058b2016-01-28 16:55:04 +08004 */
5
6#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06007#include <log.h>
Peng Fan8cf22312018-01-10 13:20:32 +08008#include <asm/io.h>
Peng Fanecd7ab52018-01-10 13:20:33 +08009#include <asm/mach-imx/sys_proto.h>
Peng Fan6f6058b2016-01-28 16:55:04 +080010#include <command.h>
Igor Opaniukc0f037f2019-12-30 13:56:44 +020011#include <elf.h>
Peng Fanecd7ab52018-01-10 13:20:33 +080012#include <imx_sip.h>
Peng Fanbf26b942020-05-11 15:15:21 +080013#include <linux/arm-smccc.h>
Tom Rini20b9f2e2018-01-03 08:52:39 -050014#include <linux/compiler.h>
Igor Opaniuk89038262019-11-28 15:56:20 +020015#include <cpu_func.h>
Peng Fan6f6058b2016-01-28 16:55:04 +080016
Igor Opaniukc0f037f2019-12-30 13:56:44 +020017int arch_auxiliary_core_up(u32 core_id, ulong addr)
Peng Fan6f6058b2016-01-28 16:55:04 +080018{
Peng Fan8cf22312018-01-10 13:20:32 +080019 ulong stack, pc;
20
Igor Opaniukc0f037f2019-12-30 13:56:44 +020021 if (!addr)
Peng Fan8cf22312018-01-10 13:20:32 +080022 return -EINVAL;
23
Igor Opaniukc0f037f2019-12-30 13:56:44 +020024#ifdef CONFIG_IMX8M
25 stack = *(u32 *)addr;
26 pc = *(u32 *)(addr + 4);
27#else
28 /*
29 * handling ELF64 binaries
30 * isn't supported yet.
31 */
32 if (valid_elf_image(addr)) {
33 stack = 0x0;
34 pc = load_elf_image_phdr(addr);
35 if (!pc)
36 return CMD_RET_FAILURE;
Peng Fan8cf22312018-01-10 13:20:32 +080037
Igor Opaniukc0f037f2019-12-30 13:56:44 +020038 } else {
39 /*
40 * Assume binary file with vector table at the beginning.
41 * Cortex-M4 vector tables start with the stack pointer (SP)
42 * and reset vector (initial PC).
43 */
44 stack = *(u32 *)addr;
45 pc = *(u32 *)(addr + 4);
46 }
47#endif
Igor Opaniuk0ba1b4d2019-11-28 15:56:19 +020048 printf("## Starting auxiliary core stack = 0x%08lX, pc = 0x%08lX...\n",
49 stack, pc);
50
Peng Fan8cf22312018-01-10 13:20:32 +080051 /* Set the stack and pc to M4 bootROM */
52 writel(stack, M4_BOOTROM_BASE_ADDR);
53 writel(pc, M4_BOOTROM_BASE_ADDR + 4);
54
Igor Opaniuk89038262019-11-28 15:56:20 +020055 flush_dcache_all();
56
Peng Fan8cf22312018-01-10 13:20:32 +080057 /* Enable M4 */
Peng Fancd357ad2018-11-20 10:19:25 +000058#ifdef CONFIG_IMX8M
Peng Fanbf26b942020-05-11 15:15:21 +080059 arm_smccc_smc(IMX_SIP_SRC, IMX_SIP_SRC_M4_START, 0, 0,
60 0, 0, 0, 0, NULL);
Peng Fanecd7ab52018-01-10 13:20:33 +080061#else
Peng Fan8cf22312018-01-10 13:20:32 +080062 clrsetbits_le32(SRC_BASE_ADDR + SRC_M4_REG_OFFSET,
63 SRC_M4C_NON_SCLR_RST_MASK, SRC_M4_ENABLE_MASK);
Peng Fanecd7ab52018-01-10 13:20:33 +080064#endif
Peng Fan8cf22312018-01-10 13:20:32 +080065
66 return 0;
Peng Fan6f6058b2016-01-28 16:55:04 +080067}
68
Peng Fan8cf22312018-01-10 13:20:32 +080069int arch_auxiliary_core_check_up(u32 core_id)
Peng Fan6f6058b2016-01-28 16:55:04 +080070{
Peng Fancd357ad2018-11-20 10:19:25 +000071#ifdef CONFIG_IMX8M
Peng Fanbf26b942020-05-11 15:15:21 +080072 struct arm_smccc_res res;
73
74 arm_smccc_smc(IMX_SIP_SRC, IMX_SIP_SRC_M4_STARTED, 0, 0,
75 0, 0, 0, 0, &res);
76
77 return res.a0;
Peng Fanecd7ab52018-01-10 13:20:33 +080078#else
Peng Fan8cf22312018-01-10 13:20:32 +080079 unsigned int val;
80
81 val = readl(SRC_BASE_ADDR + SRC_M4_REG_OFFSET);
82
83 if (val & SRC_M4C_NON_SCLR_RST_MASK)
84 return 0; /* assert in reset */
85
86 return 1;
Peng Fanecd7ab52018-01-10 13:20:33 +080087#endif
Peng Fan6f6058b2016-01-28 16:55:04 +080088}
89
Peng Fan6f6058b2016-01-28 16:55:04 +080090/*
91 * To i.MX6SX and i.MX7D, the image supported by bootaux needs
92 * the reset vector at the head for the image, with SP and PC
93 * as the first two words.
94 *
95 * Per the cortex-M reference manual, the reset vector of M4 needs
96 * to exist at 0x0 (TCMUL). The PC and SP are the first two addresses
97 * of that vector. So to boot M4, the A core must build the M4's reset
98 * vector with getting the PC and SP from image and filling them to
99 * TCMUL. When M4 is kicked, it will load the PC and SP by itself.
100 * The TCMUL is mapped to (M4_BOOTROM_BASE_ADDR) at A core side for
101 * accessing the M4 TCMUL.
102 */
Simon Glass09140112020-05-10 11:40:03 -0600103static int do_bootaux(struct cmd_tbl *cmdtp, int flag, int argc,
104 char *const argv[])
Peng Fan6f6058b2016-01-28 16:55:04 +0800105{
106 ulong addr;
107 int ret, up;
108
109 if (argc < 2)
110 return CMD_RET_USAGE;
111
112 up = arch_auxiliary_core_check_up(0);
113 if (up) {
114 printf("## Auxiliary core is already up\n");
115 return CMD_RET_SUCCESS;
116 }
117
118 addr = simple_strtoul(argv[1], NULL, 16);
119
Igor Opaniuk0ba1b4d2019-11-28 15:56:19 +0200120 if (!addr)
121 return CMD_RET_FAILURE;
Peng Fan6f6058b2016-01-28 16:55:04 +0800122
123 ret = arch_auxiliary_core_up(0, addr);
124 if (ret)
125 return CMD_RET_FAILURE;
126
127 return CMD_RET_SUCCESS;
128}
129
130U_BOOT_CMD(
131 bootaux, CONFIG_SYS_MAXARGS, 1, do_bootaux,
132 "Start auxiliary core",
133 ""
134);