blob: 2b97aae3a230b1ee8a7200641ddd088400d3887d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Peng Fanfcabb6d2016-01-28 16:55:04 +08002/*
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
Peng Fanfcabb6d2016-01-28 16:55:04 +08004 */
5
6#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -06007#include <log.h>
Peng Fand7e46ca2018-01-10 13:20:32 +08008#include <asm/io.h>
Peng Fanbac08452018-01-10 13:20:33 +08009#include <asm/mach-imx/sys_proto.h>
Peng Fanfcabb6d2016-01-28 16:55:04 +080010#include <command.h>
Igor Opaniukb65af982019-12-30 13:56:44 +020011#include <elf.h>
Peng Fanbac08452018-01-10 13:20:33 +080012#include <imx_sip.h>
Peng Fand2d93382020-05-11 15:15:21 +080013#include <linux/arm-smccc.h>
Tom Rini2f218872018-01-03 08:52:39 -050014#include <linux/compiler.h>
Igor Opaniukbfc68a42019-11-28 15:56:20 +020015#include <cpu_func.h>
Peng Fanfcabb6d2016-01-28 16:55:04 +080016
Peng Fan250724b2022-04-29 16:03:11 +080017/* Just to avoid build error */
Marek Vasut4a4d4102022-12-13 05:46:06 +010018#if IS_ENABLED(CONFIG_IMX8M)
Peng Fan250724b2022-04-29 16:03:11 +080019#define SRC_M4C_NON_SCLR_RST_MASK BIT(0)
20#define SRC_M4_ENABLE_MASK BIT(0)
21#define SRC_M4_REG_OFFSET 0
22#endif
23
Marek Vasutddc59352022-12-13 05:46:07 +010024__weak const struct rproc_att *imx_bootaux_get_hostmap(void)
25{
26 return NULL;
27}
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010028
29static const struct rproc_att *get_host_mapping(unsigned long auxcore)
30{
Marek Vasutddc59352022-12-13 05:46:07 +010031 const struct rproc_att *mmap = imx_bootaux_get_hostmap();
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010032
33 while (mmap && mmap->size) {
34 if (mmap->da <= auxcore &&
35 mmap->da + mmap->size > auxcore)
36 return mmap;
37 mmap++;
38 }
39
40 return NULL;
41}
42
43/*
44 * A very simple elf loader for the auxilary core, assumes the image
45 * is valid, returns the entry point address.
46 * Translates load addresses in the elf file to the U-Boot address space.
47 */
Peng Fana4cafd92022-04-29 16:03:13 +080048static unsigned long load_elf_image_m_core_phdr(unsigned long addr, ulong *stack)
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010049{
50 Elf32_Ehdr *ehdr; /* ELF header structure pointer */
51 Elf32_Phdr *phdr; /* Program header structure pointer */
Peng Fana4cafd92022-04-29 16:03:13 +080052 int num = 0;
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010053 int i;
54
55 ehdr = (Elf32_Ehdr *)addr;
56 phdr = (Elf32_Phdr *)(addr + ehdr->e_phoff);
57
58 /* Load each program header */
59 for (i = 0; i < ehdr->e_phnum; ++i, ++phdr) {
60 const struct rproc_att *mmap = get_host_mapping(phdr->p_paddr);
61 void *dst, *src;
62
63 if (phdr->p_type != PT_LOAD)
64 continue;
65
66 if (!mmap) {
Peng Fan53d27142022-04-29 16:03:12 +080067 printf("Invalid aux core address: %08x\n",
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010068 phdr->p_paddr);
69 return 0;
70 }
71
Peng Fan250724b2022-04-29 16:03:11 +080072 dst = (void *)(ulong)(phdr->p_paddr - mmap->da) + mmap->sa;
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010073 src = (void *)addr + phdr->p_offset;
74
75 debug("Loading phdr %i to 0x%p (%i bytes)\n",
76 i, dst, phdr->p_filesz);
77
Peng Fana4cafd92022-04-29 16:03:13 +080078 if (phdr->p_filesz) {
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010079 memcpy(dst, src, phdr->p_filesz);
Peng Fana4cafd92022-04-29 16:03:13 +080080 /* Stack in __isr_vector is the first section/word */
81 if (!num)
82 *stack = *(uint32_t *)src;
83 num++;
84 }
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010085 if (phdr->p_filesz != phdr->p_memsz)
86 memset(dst + phdr->p_filesz, 0x00,
87 phdr->p_memsz - phdr->p_filesz);
88 flush_cache((unsigned long)dst &
89 ~(CONFIG_SYS_CACHELINE_SIZE - 1),
90 ALIGN(phdr->p_filesz, CONFIG_SYS_CACHELINE_SIZE));
91 }
92
93 return ehdr->e_entry;
94}
Max Krummenacher5a4f65c2021-03-11 18:18:07 +010095
Igor Opaniukb65af982019-12-30 13:56:44 +020096int arch_auxiliary_core_up(u32 core_id, ulong addr)
Peng Fanfcabb6d2016-01-28 16:55:04 +080097{
Peng Fand7e46ca2018-01-10 13:20:32 +080098 ulong stack, pc;
99
Igor Opaniukb65af982019-12-30 13:56:44 +0200100 if (!addr)
Peng Fand7e46ca2018-01-10 13:20:32 +0800101 return -EINVAL;
102
Igor Opaniukb65af982019-12-30 13:56:44 +0200103 /*
104 * handling ELF64 binaries
105 * isn't supported yet.
106 */
107 if (valid_elf_image(addr)) {
Peng Fana4cafd92022-04-29 16:03:13 +0800108 pc = load_elf_image_m_core_phdr(addr, &stack);
Igor Opaniukb65af982019-12-30 13:56:44 +0200109 if (!pc)
110 return CMD_RET_FAILURE;
Peng Fand7e46ca2018-01-10 13:20:32 +0800111
Marek Vasut4a4d4102022-12-13 05:46:06 +0100112 if (!IS_ENABLED(CONFIG_ARM64))
Peng Fana4cafd92022-04-29 16:03:13 +0800113 stack = 0x0;
Igor Opaniukb65af982019-12-30 13:56:44 +0200114 } else {
115 /*
116 * Assume binary file with vector table at the beginning.
117 * Cortex-M4 vector tables start with the stack pointer (SP)
118 * and reset vector (initial PC).
119 */
120 stack = *(u32 *)addr;
121 pc = *(u32 *)(addr + 4);
122 }
Peng Fan250724b2022-04-29 16:03:11 +0800123
Igor Opaniukebbee912019-11-28 15:56:19 +0200124 printf("## Starting auxiliary core stack = 0x%08lX, pc = 0x%08lX...\n",
125 stack, pc);
126
Peng Fane9015f32023-06-15 18:09:18 +0800127 /* Set the stack and pc to MCU bootROM */
128 writel(stack, MCU_BOOTROM_BASE_ADDR);
129 writel(pc, MCU_BOOTROM_BASE_ADDR + 4);
Peng Fand7e46ca2018-01-10 13:20:32 +0800130
Igor Opaniukbfc68a42019-11-28 15:56:20 +0200131 flush_dcache_all();
132
Peng Fane9015f32023-06-15 18:09:18 +0800133 /* Enable MCU */
Marek Vasut4a4d4102022-12-13 05:46:06 +0100134 if (IS_ENABLED(CONFIG_IMX8M)) {
Peng Fane9015f32023-06-15 18:09:18 +0800135 arm_smccc_smc(IMX_SIP_SRC, IMX_SIP_SRC_MCU_START, 0, 0, 0, 0, 0, 0, NULL);
Peng Fan250724b2022-04-29 16:03:11 +0800136 } else {
137 clrsetbits_le32(SRC_BASE_ADDR + SRC_M4_REG_OFFSET,
138 SRC_M4C_NON_SCLR_RST_MASK, SRC_M4_ENABLE_MASK);
139 }
Peng Fand7e46ca2018-01-10 13:20:32 +0800140
141 return 0;
Peng Fanfcabb6d2016-01-28 16:55:04 +0800142}
143
Peng Fand7e46ca2018-01-10 13:20:32 +0800144int arch_auxiliary_core_check_up(u32 core_id)
Peng Fanfcabb6d2016-01-28 16:55:04 +0800145{
Peng Fand2d93382020-05-11 15:15:21 +0800146 struct arm_smccc_res res;
Peng Fand7e46ca2018-01-10 13:20:32 +0800147 unsigned int val;
148
Marek Vasut4a4d4102022-12-13 05:46:06 +0100149 if (IS_ENABLED(CONFIG_IMX8M)) {
Peng Fane9015f32023-06-15 18:09:18 +0800150 arm_smccc_smc(IMX_SIP_SRC, IMX_SIP_SRC_MCU_STARTED, 0, 0, 0, 0, 0, 0, &res);
Peng Fan250724b2022-04-29 16:03:11 +0800151 return res.a0;
152 }
153
Peng Fand7e46ca2018-01-10 13:20:32 +0800154 val = readl(SRC_BASE_ADDR + SRC_M4_REG_OFFSET);
155
156 if (val & SRC_M4C_NON_SCLR_RST_MASK)
157 return 0; /* assert in reset */
158
159 return 1;
Peng Fanfcabb6d2016-01-28 16:55:04 +0800160}
161
Peng Fanfcabb6d2016-01-28 16:55:04 +0800162/*
163 * To i.MX6SX and i.MX7D, the image supported by bootaux needs
164 * the reset vector at the head for the image, with SP and PC
165 * as the first two words.
166 *
Peng Fane9015f32023-06-15 18:09:18 +0800167 * Per the cortex-M reference manual, the reset vector of M4/M7 needs
168 * to exist at 0x0 (TCMUL/IDTCM). The PC and SP are the first two addresses
169 * of that vector. So to boot M4/M7, the A core must build the M4/M7's reset
Peng Fanfcabb6d2016-01-28 16:55:04 +0800170 * vector with getting the PC and SP from image and filling them to
Peng Fane9015f32023-06-15 18:09:18 +0800171 * TCMUL/IDTCM. When M4/M7 is kicked, it will load the PC and SP by itself.
172 * The TCMUL/IDTCM is mapped to (MCU_BOOTROM_BASE_ADDR) at A core side for
173 * accessing the M4/M7 TCMUL/IDTCM.
Peng Fanfcabb6d2016-01-28 16:55:04 +0800174 */
Simon Glassed38aef2020-05-10 11:40:03 -0600175static int do_bootaux(struct cmd_tbl *cmdtp, int flag, int argc,
176 char *const argv[])
Peng Fanfcabb6d2016-01-28 16:55:04 +0800177{
178 ulong addr;
179 int ret, up;
180
181 if (argc < 2)
182 return CMD_RET_USAGE;
183
184 up = arch_auxiliary_core_check_up(0);
185 if (up) {
186 printf("## Auxiliary core is already up\n");
187 return CMD_RET_SUCCESS;
188 }
189
Simon Glass3ff49ec2021-07-24 09:03:29 -0600190 addr = hextoul(argv[1], NULL);
Peng Fanfcabb6d2016-01-28 16:55:04 +0800191
Igor Opaniukebbee912019-11-28 15:56:19 +0200192 if (!addr)
193 return CMD_RET_FAILURE;
Peng Fanfcabb6d2016-01-28 16:55:04 +0800194
195 ret = arch_auxiliary_core_up(0, addr);
196 if (ret)
197 return CMD_RET_FAILURE;
198
199 return CMD_RET_SUCCESS;
200}
201
202U_BOOT_CMD(
203 bootaux, CONFIG_SYS_MAXARGS, 1, do_bootaux,
204 "Start auxiliary core",
205 ""
206);