Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
Ye Li | 185af30 | 2023-06-15 18:09:23 +0800 | [diff] [blame] | 3 | * Copyright 2018-2021 NXP |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
Sean Anderson | 5d5c7bd | 2023-10-14 16:47:42 -0400 | [diff] [blame] | 6 | #define LOG_CATEGORY LOGC_ARCH |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 7 | #include <stdlib.h> |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 8 | #include <errno.h> |
Sean Anderson | 952ed67 | 2023-10-14 16:47:44 -0400 | [diff] [blame] | 9 | #include <imx_container.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Sean Anderson | 5ff7772 | 2023-10-14 16:47:55 -0400 | [diff] [blame] | 11 | #include <mapmem.h> |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 12 | #include <spl.h> |
Peng Fan | b590634 | 2021-08-07 16:00:38 +0800 | [diff] [blame] | 13 | #ifdef CONFIG_AHAB_BOOT |
Ye Li | 185af30 | 2023-06-15 18:09:23 +0800 | [diff] [blame] | 14 | #include <asm/mach-imx/ahab.h> |
Peng Fan | b590634 | 2021-08-07 16:00:38 +0800 | [diff] [blame] | 15 | #endif |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 16 | |
Ye Li | 87178ed | 2025-04-28 18:37:36 +0800 | [diff] [blame] | 17 | __weak bool arch_check_dst_in_secure(void *start, ulong size) |
| 18 | { |
| 19 | return false; |
| 20 | } |
| 21 | |
| 22 | __weak void *arch_get_container_trampoline(void) |
| 23 | { |
| 24 | return NULL; |
| 25 | } |
| 26 | |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 27 | static struct boot_img_t *read_auth_image(struct spl_image_info *spl_image, |
| 28 | struct spl_load_info *info, |
| 29 | struct container_hdr *container, |
| 30 | int image_index, |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 31 | ulong container_offset) |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 32 | { |
| 33 | struct boot_img_t *images; |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 34 | ulong offset, overhead, size; |
Ye Li | 87178ed | 2025-04-28 18:37:36 +0800 | [diff] [blame] | 35 | void *buf, *trampoline; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 36 | |
| 37 | if (image_index > container->num_images) { |
| 38 | debug("Invalid image number\n"); |
| 39 | return NULL; |
| 40 | } |
| 41 | |
| 42 | images = (struct boot_img_t *)((u8 *)container + |
| 43 | sizeof(struct container_hdr)); |
| 44 | |
Sean Anderson | 35f15fe | 2023-11-08 11:48:43 -0500 | [diff] [blame] | 45 | if (!IS_ALIGNED(images[image_index].offset, spl_get_bl_len(info))) { |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 46 | printf("%s: image%d offset not aligned to %u\n", |
Sean Anderson | 35f15fe | 2023-11-08 11:48:43 -0500 | [diff] [blame] | 47 | __func__, image_index, spl_get_bl_len(info)); |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 48 | return NULL; |
| 49 | } |
| 50 | |
Sean Anderson | 35f15fe | 2023-11-08 11:48:43 -0500 | [diff] [blame] | 51 | size = ALIGN(images[image_index].size, spl_get_bl_len(info)); |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 52 | offset = images[image_index].offset + container_offset; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 53 | |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 54 | debug("%s: container: %p offset: %lu size: %lu\n", __func__, |
| 55 | container, offset, size); |
Ye Li | 87178ed | 2025-04-28 18:37:36 +0800 | [diff] [blame] | 56 | |
| 57 | buf = map_sysmem(images[image_index].dst - overhead, images[image_index].size); |
| 58 | if (IS_ENABLED(CONFIG_SPL_IMX_CONTAINER_USE_TRAMPOLINE) && |
| 59 | arch_check_dst_in_secure(buf, size)) { |
| 60 | trampoline = arch_get_container_trampoline(); |
| 61 | if (!trampoline) { |
| 62 | printf("%s: trampoline size is zero\n", __func__); |
| 63 | return NULL; |
| 64 | } |
| 65 | |
| 66 | if (info->read(info, offset, size, trampoline) < images[image_index].size) { |
| 67 | printf("%s: failed to load image to a trampoline buffer\n", __func__); |
| 68 | return NULL; |
| 69 | } |
| 70 | |
| 71 | memcpy(buf, trampoline, images[image_index].size); |
| 72 | } else { |
| 73 | if (info->read(info, offset, size, buf) < images[image_index].size) { |
| 74 | printf("%s: failed to load image to a non-secure region\n", __func__); |
| 75 | return NULL; |
| 76 | } |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 77 | } |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 78 | |
| 79 | #ifdef CONFIG_AHAB_BOOT |
Ye Li | 185af30 | 2023-06-15 18:09:23 +0800 | [diff] [blame] | 80 | if (ahab_verify_cntr_image(&images[image_index], image_index)) |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 81 | return NULL; |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 82 | #endif |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 83 | |
| 84 | return &images[image_index]; |
| 85 | } |
| 86 | |
| 87 | static int read_auth_container(struct spl_image_info *spl_image, |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 88 | struct spl_load_info *info, ulong offset) |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 89 | { |
| 90 | struct container_hdr *container = NULL; |
| 91 | u16 length; |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 92 | int i, size, ret = 0; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 93 | |
Sean Anderson | 35f15fe | 2023-11-08 11:48:43 -0500 | [diff] [blame] | 94 | size = ALIGN(CONTAINER_HDR_ALIGNMENT, spl_get_bl_len(info)); |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 95 | |
| 96 | /* |
| 97 | * It will not override the ATF code, so safe to use it here, |
| 98 | * no need malloc |
| 99 | */ |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 100 | container = malloc(size); |
| 101 | if (!container) |
| 102 | return -ENOMEM; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 103 | |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 104 | debug("%s: container: %p offset: %lu size: %u\n", __func__, |
| 105 | container, offset, size); |
Sean Anderson | b27c5f8 | 2023-11-08 11:48:41 -0500 | [diff] [blame] | 106 | if (info->read(info, offset, size, container) < |
| 107 | CONTAINER_HDR_ALIGNMENT) { |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 108 | ret = -EIO; |
| 109 | goto end; |
| 110 | } |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 111 | |
Sean Anderson | c512668 | 2023-10-14 16:47:43 -0400 | [diff] [blame] | 112 | if (!valid_container_hdr(container)) { |
Sean Anderson | 5d5c7bd | 2023-10-14 16:47:42 -0400 | [diff] [blame] | 113 | log_err("Wrong container header\n"); |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 114 | ret = -ENOENT; |
| 115 | goto end; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | if (!container->num_images) { |
Sean Anderson | 5d5c7bd | 2023-10-14 16:47:42 -0400 | [diff] [blame] | 119 | log_err("Wrong container, no image found\n"); |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 120 | ret = -ENOENT; |
| 121 | goto end; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | length = container->length_lsb + (container->length_msb << 8); |
| 125 | debug("Container length %u\n", length); |
| 126 | |
| 127 | if (length > CONTAINER_HDR_ALIGNMENT) { |
Sean Anderson | 35f15fe | 2023-11-08 11:48:43 -0500 | [diff] [blame] | 128 | size = ALIGN(length, spl_get_bl_len(info)); |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 129 | |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 130 | free(container); |
| 131 | container = malloc(size); |
| 132 | if (!container) |
| 133 | return -ENOMEM; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 134 | |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 135 | debug("%s: container: %p offset: %lu size: %u\n", |
| 136 | __func__, container, offset, size); |
Sean Anderson | b27c5f8 | 2023-11-08 11:48:41 -0500 | [diff] [blame] | 137 | if (info->read(info, offset, size, container) < length) { |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 138 | ret = -EIO; |
| 139 | goto end; |
| 140 | } |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 141 | } |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 142 | |
| 143 | #ifdef CONFIG_AHAB_BOOT |
Ye Li | 185af30 | 2023-06-15 18:09:23 +0800 | [diff] [blame] | 144 | ret = ahab_auth_cntr_hdr(container, length); |
| 145 | if (ret) |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 146 | goto end_auth; |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 147 | #endif |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 148 | |
| 149 | for (i = 0; i < container->num_images; i++) { |
| 150 | struct boot_img_t *image = read_auth_image(spl_image, info, |
| 151 | container, i, |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 152 | offset); |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 153 | |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 154 | if (!image) { |
| 155 | ret = -EINVAL; |
| 156 | goto end_auth; |
| 157 | } |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 158 | |
| 159 | if (i == 0) { |
| 160 | spl_image->load_addr = image->dst; |
| 161 | spl_image->entry_point = image->entry; |
| 162 | } |
| 163 | } |
| 164 | |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 165 | end_auth: |
| 166 | #ifdef CONFIG_AHAB_BOOT |
Ye Li | 185af30 | 2023-06-15 18:09:23 +0800 | [diff] [blame] | 167 | ahab_auth_release(); |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 168 | #endif |
Nitin Garg | f39c1f2 | 2023-06-15 18:09:22 +0800 | [diff] [blame] | 169 | |
| 170 | end: |
| 171 | free(container); |
| 172 | |
Peng Fan | f1e0f9f | 2019-09-25 08:11:14 +0000 | [diff] [blame] | 173 | return ret; |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | int spl_load_imx_container(struct spl_image_info *spl_image, |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 177 | struct spl_load_info *info, ulong offset) |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 178 | { |
Sean Anderson | 7d8d613 | 2023-11-08 11:48:40 -0500 | [diff] [blame] | 179 | return read_auth_container(spl_image, info, offset); |
Peng Fan | 1a7e625 | 2019-08-22 07:42:33 +0000 | [diff] [blame] | 180 | } |