1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
8 #include <asm/mach-imx/sys_proto.h>
12 #include <linux/compiler.h>
15 int arch_auxiliary_core_up(u32 core_id, ulong addr)
24 pc = *(u32 *)(addr + 4);
27 * handling ELF64 binaries
28 * isn't supported yet.
30 if (valid_elf_image(addr)) {
32 pc = load_elf_image_phdr(addr);
34 return CMD_RET_FAILURE;
38 * Assume binary file with vector table at the beginning.
39 * Cortex-M4 vector tables start with the stack pointer (SP)
40 * and reset vector (initial PC).
43 pc = *(u32 *)(addr + 4);
46 printf("## Starting auxiliary core stack = 0x%08lX, pc = 0x%08lX...\n",
49 /* Set the stack and pc to M4 bootROM */
50 writel(stack, M4_BOOTROM_BASE_ADDR);
51 writel(pc, M4_BOOTROM_BASE_ADDR + 4);
57 call_imx_sip(IMX_SIP_SRC, IMX_SIP_SRC_M4_START, 0, 0, 0);
59 clrsetbits_le32(SRC_BASE_ADDR + SRC_M4_REG_OFFSET,
60 SRC_M4C_NON_SCLR_RST_MASK, SRC_M4_ENABLE_MASK);
66 int arch_auxiliary_core_check_up(u32 core_id)
69 return call_imx_sip(IMX_SIP_SRC, IMX_SIP_SRC_M4_STARTED, 0, 0, 0);
73 val = readl(SRC_BASE_ADDR + SRC_M4_REG_OFFSET);
75 if (val & SRC_M4C_NON_SCLR_RST_MASK)
76 return 0; /* assert in reset */
83 * To i.MX6SX and i.MX7D, the image supported by bootaux needs
84 * the reset vector at the head for the image, with SP and PC
85 * as the first two words.
87 * Per the cortex-M reference manual, the reset vector of M4 needs
88 * to exist at 0x0 (TCMUL). The PC and SP are the first two addresses
89 * of that vector. So to boot M4, the A core must build the M4's reset
90 * vector with getting the PC and SP from image and filling them to
91 * TCMUL. When M4 is kicked, it will load the PC and SP by itself.
92 * The TCMUL is mapped to (M4_BOOTROM_BASE_ADDR) at A core side for
93 * accessing the M4 TCMUL.
95 static int do_bootaux(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
101 return CMD_RET_USAGE;
103 up = arch_auxiliary_core_check_up(0);
105 printf("## Auxiliary core is already up\n");
106 return CMD_RET_SUCCESS;
109 addr = simple_strtoul(argv[1], NULL, 16);
112 return CMD_RET_FAILURE;
114 ret = arch_auxiliary_core_up(0, addr);
116 return CMD_RET_FAILURE;
118 return CMD_RET_SUCCESS;
122 bootaux, CONFIG_SYS_MAXARGS, 1, do_bootaux,
123 "Start auxiliary core",