Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Freescale Semiconductor, Inc. |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 7 | #include <asm/io.h> |
Peng Fan | ecd7ab5 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 8 | #include <asm/mach-imx/sys_proto.h> |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 9 | #include <command.h> |
Igor Opaniuk | c0f037f | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 10 | #include <elf.h> |
Peng Fan | ecd7ab5 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 11 | #include <imx_sip.h> |
Tom Rini | 20b9f2e | 2018-01-03 08:52:39 -0500 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Igor Opaniuk | 8903826 | 2019-11-28 15:56:20 +0200 | [diff] [blame] | 13 | #include <cpu_func.h> |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 14 | |
Igor Opaniuk | c0f037f | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 15 | int arch_auxiliary_core_up(u32 core_id, ulong addr) |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 16 | { |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 17 | ulong stack, pc; |
| 18 | |
Igor Opaniuk | c0f037f | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 19 | if (!addr) |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 20 | return -EINVAL; |
| 21 | |
Igor Opaniuk | c0f037f | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 22 | #ifdef CONFIG_IMX8M |
| 23 | stack = *(u32 *)addr; |
| 24 | pc = *(u32 *)(addr + 4); |
| 25 | #else |
| 26 | /* |
| 27 | * handling ELF64 binaries |
| 28 | * isn't supported yet. |
| 29 | */ |
| 30 | if (valid_elf_image(addr)) { |
| 31 | stack = 0x0; |
| 32 | pc = load_elf_image_phdr(addr); |
| 33 | if (!pc) |
| 34 | return CMD_RET_FAILURE; |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 35 | |
Igor Opaniuk | c0f037f | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 36 | } else { |
| 37 | /* |
| 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). |
| 41 | */ |
| 42 | stack = *(u32 *)addr; |
| 43 | pc = *(u32 *)(addr + 4); |
| 44 | } |
| 45 | #endif |
Igor Opaniuk | 0ba1b4d | 2019-11-28 15:56:19 +0200 | [diff] [blame] | 46 | printf("## Starting auxiliary core stack = 0x%08lX, pc = 0x%08lX...\n", |
| 47 | stack, pc); |
| 48 | |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 49 | /* Set the stack and pc to M4 bootROM */ |
| 50 | writel(stack, M4_BOOTROM_BASE_ADDR); |
| 51 | writel(pc, M4_BOOTROM_BASE_ADDR + 4); |
| 52 | |
Igor Opaniuk | 8903826 | 2019-11-28 15:56:20 +0200 | [diff] [blame] | 53 | flush_dcache_all(); |
| 54 | |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 55 | /* Enable M4 */ |
Peng Fan | cd357ad | 2018-11-20 10:19:25 +0000 | [diff] [blame] | 56 | #ifdef CONFIG_IMX8M |
Ye Li | 264977d | 2019-10-26 16:24:03 +0200 | [diff] [blame] | 57 | call_imx_sip(IMX_SIP_SRC, IMX_SIP_SRC_M4_START, 0, 0, 0); |
Peng Fan | ecd7ab5 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 58 | #else |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 59 | clrsetbits_le32(SRC_BASE_ADDR + SRC_M4_REG_OFFSET, |
| 60 | SRC_M4C_NON_SCLR_RST_MASK, SRC_M4_ENABLE_MASK); |
Peng Fan | ecd7ab5 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 61 | #endif |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 62 | |
| 63 | return 0; |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 64 | } |
| 65 | |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 66 | int arch_auxiliary_core_check_up(u32 core_id) |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 67 | { |
Peng Fan | cd357ad | 2018-11-20 10:19:25 +0000 | [diff] [blame] | 68 | #ifdef CONFIG_IMX8M |
Ye Li | 264977d | 2019-10-26 16:24:03 +0200 | [diff] [blame] | 69 | return call_imx_sip(IMX_SIP_SRC, IMX_SIP_SRC_M4_STARTED, 0, 0, 0); |
Peng Fan | ecd7ab5 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 70 | #else |
Peng Fan | 8cf2231 | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 71 | unsigned int val; |
| 72 | |
| 73 | val = readl(SRC_BASE_ADDR + SRC_M4_REG_OFFSET); |
| 74 | |
| 75 | if (val & SRC_M4C_NON_SCLR_RST_MASK) |
| 76 | return 0; /* assert in reset */ |
| 77 | |
| 78 | return 1; |
Peng Fan | ecd7ab5 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 79 | #endif |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 80 | } |
| 81 | |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 82 | /* |
| 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. |
| 86 | * |
| 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. |
| 94 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame^] | 95 | static int do_bootaux(struct cmd_tbl *cmdtp, int flag, int argc, |
| 96 | char *const argv[]) |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 97 | { |
| 98 | ulong addr; |
| 99 | int ret, up; |
| 100 | |
| 101 | if (argc < 2) |
| 102 | return CMD_RET_USAGE; |
| 103 | |
| 104 | up = arch_auxiliary_core_check_up(0); |
| 105 | if (up) { |
| 106 | printf("## Auxiliary core is already up\n"); |
| 107 | return CMD_RET_SUCCESS; |
| 108 | } |
| 109 | |
| 110 | addr = simple_strtoul(argv[1], NULL, 16); |
| 111 | |
Igor Opaniuk | 0ba1b4d | 2019-11-28 15:56:19 +0200 | [diff] [blame] | 112 | if (!addr) |
| 113 | return CMD_RET_FAILURE; |
Peng Fan | 6f6058b | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 114 | |
| 115 | ret = arch_auxiliary_core_up(0, addr); |
| 116 | if (ret) |
| 117 | return CMD_RET_FAILURE; |
| 118 | |
| 119 | return CMD_RET_SUCCESS; |
| 120 | } |
| 121 | |
| 122 | U_BOOT_CMD( |
| 123 | bootaux, CONFIG_SYS_MAXARGS, 1, do_bootaux, |
| 124 | "Start auxiliary core", |
| 125 | "" |
| 126 | ); |