Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Freescale Semiconductor, Inc. |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 7 | #include <log.h> |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 8 | #include <asm/io.h> |
Peng Fan | bac0845 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 9 | #include <asm/mach-imx/sys_proto.h> |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 10 | #include <command.h> |
Igor Opaniuk | b65af98 | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 11 | #include <elf.h> |
Peng Fan | bac0845 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 12 | #include <imx_sip.h> |
Tom Rini | 2f21887 | 2018-01-03 08:52:39 -0500 | [diff] [blame] | 13 | #include <linux/compiler.h> |
Igor Opaniuk | bfc68a4 | 2019-11-28 15:56:20 +0200 | [diff] [blame] | 14 | #include <cpu_func.h> |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 15 | |
Igor Opaniuk | b65af98 | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 16 | int arch_auxiliary_core_up(u32 core_id, ulong addr) |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 17 | { |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 18 | ulong stack, pc; |
| 19 | |
Igor Opaniuk | b65af98 | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 20 | if (!addr) |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 21 | return -EINVAL; |
| 22 | |
Igor Opaniuk | b65af98 | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 23 | #ifdef CONFIG_IMX8M |
| 24 | stack = *(u32 *)addr; |
| 25 | pc = *(u32 *)(addr + 4); |
| 26 | #else |
| 27 | /* |
| 28 | * handling ELF64 binaries |
| 29 | * isn't supported yet. |
| 30 | */ |
| 31 | if (valid_elf_image(addr)) { |
| 32 | stack = 0x0; |
| 33 | pc = load_elf_image_phdr(addr); |
| 34 | if (!pc) |
| 35 | return CMD_RET_FAILURE; |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 36 | |
Igor Opaniuk | b65af98 | 2019-12-30 13:56:44 +0200 | [diff] [blame] | 37 | } else { |
| 38 | /* |
| 39 | * Assume binary file with vector table at the beginning. |
| 40 | * Cortex-M4 vector tables start with the stack pointer (SP) |
| 41 | * and reset vector (initial PC). |
| 42 | */ |
| 43 | stack = *(u32 *)addr; |
| 44 | pc = *(u32 *)(addr + 4); |
| 45 | } |
| 46 | #endif |
Igor Opaniuk | ebbee91 | 2019-11-28 15:56:19 +0200 | [diff] [blame] | 47 | printf("## Starting auxiliary core stack = 0x%08lX, pc = 0x%08lX...\n", |
| 48 | stack, pc); |
| 49 | |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 50 | /* Set the stack and pc to M4 bootROM */ |
| 51 | writel(stack, M4_BOOTROM_BASE_ADDR); |
| 52 | writel(pc, M4_BOOTROM_BASE_ADDR + 4); |
| 53 | |
Igor Opaniuk | bfc68a4 | 2019-11-28 15:56:20 +0200 | [diff] [blame] | 54 | flush_dcache_all(); |
| 55 | |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 56 | /* Enable M4 */ |
Peng Fan | 39945c1 | 2018-11-20 10:19:25 +0000 | [diff] [blame] | 57 | #ifdef CONFIG_IMX8M |
Ye Li | e5e9109 | 2019-10-26 16:24:03 +0200 | [diff] [blame] | 58 | call_imx_sip(IMX_SIP_SRC, IMX_SIP_SRC_M4_START, 0, 0, 0); |
Peng Fan | bac0845 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 59 | #else |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 60 | clrsetbits_le32(SRC_BASE_ADDR + SRC_M4_REG_OFFSET, |
| 61 | SRC_M4C_NON_SCLR_RST_MASK, SRC_M4_ENABLE_MASK); |
Peng Fan | bac0845 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 62 | #endif |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 63 | |
| 64 | return 0; |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 65 | } |
| 66 | |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 67 | int arch_auxiliary_core_check_up(u32 core_id) |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 68 | { |
Peng Fan | 39945c1 | 2018-11-20 10:19:25 +0000 | [diff] [blame] | 69 | #ifdef CONFIG_IMX8M |
Ye Li | e5e9109 | 2019-10-26 16:24:03 +0200 | [diff] [blame] | 70 | return call_imx_sip(IMX_SIP_SRC, IMX_SIP_SRC_M4_STARTED, 0, 0, 0); |
Peng Fan | bac0845 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 71 | #else |
Peng Fan | d7e46ca | 2018-01-10 13:20:32 +0800 | [diff] [blame] | 72 | unsigned int val; |
| 73 | |
| 74 | val = readl(SRC_BASE_ADDR + SRC_M4_REG_OFFSET); |
| 75 | |
| 76 | if (val & SRC_M4C_NON_SCLR_RST_MASK) |
| 77 | return 0; /* assert in reset */ |
| 78 | |
| 79 | return 1; |
Peng Fan | bac0845 | 2018-01-10 13:20:33 +0800 | [diff] [blame] | 80 | #endif |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 81 | } |
| 82 | |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 83 | /* |
| 84 | * To i.MX6SX and i.MX7D, the image supported by bootaux needs |
| 85 | * the reset vector at the head for the image, with SP and PC |
| 86 | * as the first two words. |
| 87 | * |
| 88 | * Per the cortex-M reference manual, the reset vector of M4 needs |
| 89 | * to exist at 0x0 (TCMUL). The PC and SP are the first two addresses |
| 90 | * of that vector. So to boot M4, the A core must build the M4's reset |
| 91 | * vector with getting the PC and SP from image and filling them to |
| 92 | * TCMUL. When M4 is kicked, it will load the PC and SP by itself. |
| 93 | * The TCMUL is mapped to (M4_BOOTROM_BASE_ADDR) at A core side for |
| 94 | * accessing the M4 TCMUL. |
| 95 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 96 | static int do_bootaux(struct cmd_tbl *cmdtp, int flag, int argc, |
| 97 | char *const argv[]) |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 98 | { |
| 99 | ulong addr; |
| 100 | int ret, up; |
| 101 | |
| 102 | if (argc < 2) |
| 103 | return CMD_RET_USAGE; |
| 104 | |
| 105 | up = arch_auxiliary_core_check_up(0); |
| 106 | if (up) { |
| 107 | printf("## Auxiliary core is already up\n"); |
| 108 | return CMD_RET_SUCCESS; |
| 109 | } |
| 110 | |
| 111 | addr = simple_strtoul(argv[1], NULL, 16); |
| 112 | |
Igor Opaniuk | ebbee91 | 2019-11-28 15:56:19 +0200 | [diff] [blame] | 113 | if (!addr) |
| 114 | return CMD_RET_FAILURE; |
Peng Fan | fcabb6d | 2016-01-28 16:55:04 +0800 | [diff] [blame] | 115 | |
| 116 | ret = arch_auxiliary_core_up(0, addr); |
| 117 | if (ret) |
| 118 | return CMD_RET_FAILURE; |
| 119 | |
| 120 | return CMD_RET_SUCCESS; |
| 121 | } |
| 122 | |
| 123 | U_BOOT_CMD( |
| 124 | bootaux, CONFIG_SYS_MAXARGS, 1, do_bootaux, |
| 125 | "Start auxiliary core", |
| 126 | "" |
| 127 | ); |