Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2015, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 31 | #include <arch.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 32 | #include <arch_helpers.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 33 | #include <assert.h> |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 34 | #include <auth_mod.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 35 | #include <bl_common.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 36 | #include <debug.h> |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 37 | #include <errno.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 38 | #include <io_storage.h> |
| 39 | #include <platform.h> |
Juan Castillo | 97dbcf1 | 2015-08-17 10:43:27 +0100 | [diff] [blame] | 40 | #include <string.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 41 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 42 | unsigned long page_align(unsigned long value, unsigned dir) |
| 43 | { |
| 44 | unsigned long page_size = 1 << FOUR_KB_SHIFT; |
| 45 | |
| 46 | /* Round up the limit to the next page boundary */ |
| 47 | if (value & (page_size - 1)) { |
| 48 | value &= ~(page_size - 1); |
| 49 | if (dir == UP) |
| 50 | value += page_size; |
| 51 | } |
| 52 | |
| 53 | return value; |
| 54 | } |
| 55 | |
| 56 | static inline unsigned int is_page_aligned (unsigned long addr) { |
| 57 | const unsigned long page_size = 1 << FOUR_KB_SHIFT; |
| 58 | |
| 59 | return (addr & (page_size - 1)) == 0; |
| 60 | } |
| 61 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 62 | /****************************************************************************** |
| 63 | * Determine whether the memory region delimited by 'addr' and 'size' is free, |
| 64 | * given the extents of free memory. |
| 65 | * Return 1 if it is free, 0 otherwise. |
| 66 | *****************************************************************************/ |
| 67 | static int is_mem_free(uint64_t free_base, size_t free_size, |
| 68 | uint64_t addr, size_t size) |
| 69 | { |
| 70 | return (addr >= free_base) && (addr + size <= free_base + free_size); |
| 71 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 72 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 73 | /****************************************************************************** |
| 74 | * Inside a given memory region, determine whether a sub-region of memory is |
| 75 | * closer from the top or the bottom of the encompassing region. Return the |
| 76 | * size of the smallest chunk of free memory surrounding the sub-region in |
| 77 | * 'small_chunk_size'. |
| 78 | *****************************************************************************/ |
| 79 | static unsigned int choose_mem_pos(uint64_t mem_start, uint64_t mem_end, |
| 80 | uint64_t submem_start, uint64_t submem_end, |
| 81 | size_t *small_chunk_size) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 82 | { |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 83 | size_t top_chunk_size, bottom_chunk_size; |
| 84 | |
| 85 | assert(mem_start <= submem_start); |
| 86 | assert(submem_start <= submem_end); |
| 87 | assert(submem_end <= mem_end); |
| 88 | assert(small_chunk_size != NULL); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 89 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 90 | top_chunk_size = mem_end - submem_end; |
| 91 | bottom_chunk_size = submem_start - mem_start; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 92 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 93 | if (top_chunk_size < bottom_chunk_size) { |
| 94 | *small_chunk_size = top_chunk_size; |
| 95 | return TOP; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 96 | } else { |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 97 | *small_chunk_size = bottom_chunk_size; |
| 98 | return BOTTOM; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 99 | } |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | /****************************************************************************** |
| 103 | * Reserve the memory region delimited by 'addr' and 'size'. The extents of free |
| 104 | * memory are passed in 'free_base' and 'free_size' and they will be updated to |
| 105 | * reflect the memory usage. |
| 106 | * The caller must ensure the memory to reserve is free. |
| 107 | *****************************************************************************/ |
| 108 | void reserve_mem(uint64_t *free_base, size_t *free_size, |
| 109 | uint64_t addr, size_t size) |
| 110 | { |
| 111 | size_t discard_size; |
| 112 | size_t reserved_size; |
| 113 | unsigned int pos; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 114 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 115 | assert(free_base != NULL); |
| 116 | assert(free_size != NULL); |
| 117 | assert(is_mem_free(*free_base, *free_size, addr, size)); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 118 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 119 | pos = choose_mem_pos(*free_base, *free_base + *free_size, |
| 120 | addr, addr + size, |
| 121 | &discard_size); |
| 122 | |
| 123 | reserved_size = size + discard_size; |
| 124 | *free_size -= reserved_size; |
| 125 | |
| 126 | if (pos == BOTTOM) |
| 127 | *free_base = addr + size; |
| 128 | |
Dan Handley | eb839ce | 2015-03-23 18:13:33 +0000 | [diff] [blame] | 129 | VERBOSE("Reserved 0x%lx bytes (discarded 0x%lx bytes %s)\n", |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 130 | reserved_size, discard_size, |
| 131 | pos == TOP ? "above" : "below"); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | static void dump_load_info(unsigned long image_load_addr, |
| 135 | unsigned long image_size, |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 136 | const meminfo_t *mem_layout) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 137 | { |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 138 | INFO("Trying to load image at address 0x%lx, size = 0x%lx\n", |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 139 | image_load_addr, image_size); |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 140 | INFO("Current memory layout:\n"); |
| 141 | INFO(" total region = [0x%lx, 0x%lx]\n", mem_layout->total_base, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 142 | mem_layout->total_base + mem_layout->total_size); |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 143 | INFO(" free region = [0x%lx, 0x%lx]\n", mem_layout->free_base, |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 144 | mem_layout->free_base + mem_layout->free_size); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 145 | } |
| 146 | |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 147 | /* Generic function to return the size of an image */ |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 148 | unsigned long image_size(unsigned int image_id) |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 149 | { |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 150 | uintptr_t dev_handle; |
| 151 | uintptr_t image_handle; |
| 152 | uintptr_t image_spec; |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 153 | size_t image_size = 0; |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 154 | int io_result; |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 155 | |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 156 | /* Obtain a reference to the image by querying the platform layer */ |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 157 | io_result = plat_get_image_source(image_id, &dev_handle, &image_spec); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 158 | if (io_result != 0) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 159 | WARN("Failed to obtain reference to image id=%u (%i)\n", |
| 160 | image_id, io_result); |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 161 | return 0; |
| 162 | } |
| 163 | |
| 164 | /* Attempt to access the image */ |
| 165 | io_result = io_open(dev_handle, image_spec, &image_handle); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 166 | if (io_result != 0) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 167 | WARN("Failed to access image id=%u (%i)\n", |
| 168 | image_id, io_result); |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | /* Find the size of the image */ |
| 173 | io_result = io_size(image_handle, &image_size); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 174 | if ((io_result != 0) || (image_size == 0)) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 175 | WARN("Failed to determine the size of the image id=%u (%i)\n", |
| 176 | image_id, io_result); |
Ryan Harkin | 87274c4 | 2014-02-04 11:43:57 +0000 | [diff] [blame] | 177 | } |
| 178 | io_result = io_close(image_handle); |
| 179 | /* Ignore improbable/unrecoverable error in 'close' */ |
| 180 | |
| 181 | /* TODO: Consider maintaining open device connection from this |
| 182 | * bootloader stage |
| 183 | */ |
| 184 | io_result = io_dev_close(dev_handle); |
| 185 | /* Ignore improbable/unrecoverable error in 'dev_close' */ |
| 186 | |
| 187 | return image_size; |
| 188 | } |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 189 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 190 | /******************************************************************************* |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 191 | * Generic function to load an image at a specific address given a name and |
| 192 | * extents of free memory. It updates the memory layout if the load is |
| 193 | * successful, as well as the image information and the entry point information. |
| 194 | * The caller might pass a NULL pointer for the entry point if it is not |
| 195 | * interested in this information, e.g. because the image just needs to be |
| 196 | * loaded in memory but won't ever be executed. |
| 197 | * Returns 0 on success, a negative error code otherwise. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 198 | ******************************************************************************/ |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 199 | int load_image(meminfo_t *mem_layout, |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 200 | unsigned int image_id, |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 201 | uintptr_t image_base, |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 202 | image_info_t *image_data, |
| 203 | entry_point_info_t *entry_point_info) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 204 | { |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 205 | uintptr_t dev_handle; |
| 206 | uintptr_t image_handle; |
| 207 | uintptr_t image_spec; |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 208 | size_t image_size; |
| 209 | size_t bytes_read; |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 210 | int io_result; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 211 | |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 212 | assert(mem_layout != NULL); |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 213 | assert(image_data != NULL); |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 214 | assert(image_data->h.version >= VERSION_1); |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 215 | |
| 216 | /* Obtain a reference to the image by querying the platform layer */ |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 217 | io_result = plat_get_image_source(image_id, &dev_handle, &image_spec); |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 218 | if (io_result != 0) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 219 | WARN("Failed to obtain reference to image id=%u (%i)\n", |
| 220 | image_id, io_result); |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 221 | return io_result; |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | /* Attempt to access the image */ |
| 225 | io_result = io_open(dev_handle, image_spec, &image_handle); |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 226 | if (io_result != 0) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 227 | WARN("Failed to access image id=%u (%i)\n", |
| 228 | image_id, io_result); |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 229 | return io_result; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 230 | } |
| 231 | |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 232 | INFO("Loading image id=%u at address %p\n", image_id, |
| 233 | (void *) image_base); |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 234 | |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 235 | /* Find the size of the image */ |
| 236 | io_result = io_size(image_handle, &image_size); |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 237 | if ((io_result != 0) || (image_size == 0)) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 238 | WARN("Failed to determine the size of the image id=%u (%i)\n", |
| 239 | image_id, io_result); |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 240 | goto exit; |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 241 | } |
| 242 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 243 | /* Check that the memory where the image will be loaded is free */ |
| 244 | if (!is_mem_free(mem_layout->free_base, mem_layout->free_size, |
| 245 | image_base, image_size)) { |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 246 | WARN("Failed to reserve memory: %p - %p\n", (void *) image_base, |
| 247 | (void *) (image_base + image_size)); |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 248 | dump_load_info(image_base, image_size, mem_layout); |
| 249 | io_result = -ENOMEM; |
| 250 | goto exit; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /* We have enough space so load the image now */ |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 254 | /* TODO: Consider whether to try to recover/retry a partially successful read */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 255 | io_result = io_read(image_handle, image_base, image_size, &bytes_read); |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 256 | if ((io_result != 0) || (bytes_read < image_size)) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 257 | WARN("Failed to load image id=%u (%i)\n", image_id, io_result); |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 258 | goto exit; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 259 | } |
| 260 | |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 261 | /* |
| 262 | * Update the memory usage info. |
| 263 | * This is done after the actual loading so that it is not updated when |
| 264 | * the load is unsuccessful. |
Juan Castillo | 09a55a8 | 2015-01-19 16:51:21 +0000 | [diff] [blame] | 265 | * If the caller does not provide an entry point, bypass the memory |
| 266 | * reservation. |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 267 | */ |
Juan Castillo | 09a55a8 | 2015-01-19 16:51:21 +0000 | [diff] [blame] | 268 | if (entry_point_info != NULL) { |
| 269 | reserve_mem(&mem_layout->free_base, &mem_layout->free_size, |
| 270 | image_base, image_size); |
| 271 | } else { |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 272 | INFO("Skip reserving memory: %p - %p\n", (void *) image_base, |
| 273 | (void *) (image_base + image_size)); |
Juan Castillo | 09a55a8 | 2015-01-19 16:51:21 +0000 | [diff] [blame] | 274 | } |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 275 | |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 276 | image_data->image_base = image_base; |
| 277 | image_data->image_size = image_size; |
| 278 | |
Sandrine Bailleux | 3ab33f3 | 2014-05-28 11:31:18 +0100 | [diff] [blame] | 279 | if (entry_point_info != NULL) |
| 280 | entry_point_info->pc = image_base; |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 281 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 282 | /* |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 283 | * File has been successfully loaded. |
| 284 | * Flush the image in TZRAM so that the next EL can see it. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 285 | */ |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 286 | flush_dcache_range(image_base, image_size); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 287 | |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 288 | INFO("Image id=%u loaded: %p - %p\n", image_id, (void *) image_base, |
| 289 | (void *) (image_base + image_size)); |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 290 | |
| 291 | exit: |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 292 | io_close(image_handle); |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 293 | /* Ignore improbable/unrecoverable error in 'close' */ |
| 294 | |
| 295 | /* TODO: Consider maintaining open device connection from this bootloader stage */ |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 296 | io_dev_close(dev_handle); |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 297 | /* Ignore improbable/unrecoverable error in 'dev_close' */ |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 298 | |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 299 | return io_result; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 300 | } |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 301 | |
| 302 | /******************************************************************************* |
| 303 | * Generic function to load and authenticate an image. The image is actually |
| 304 | * loaded by calling the 'load_image()' function. In addition, this function |
| 305 | * uses recursion to authenticate the parent images up to the root of trust. |
| 306 | ******************************************************************************/ |
| 307 | int load_auth_image(meminfo_t *mem_layout, |
| 308 | unsigned int image_id, |
| 309 | uintptr_t image_base, |
| 310 | image_info_t *image_data, |
| 311 | entry_point_info_t *entry_point_info) |
| 312 | { |
| 313 | int rc; |
| 314 | |
| 315 | #if TRUSTED_BOARD_BOOT |
| 316 | unsigned int parent_id; |
| 317 | |
| 318 | /* Use recursion to authenticate parent images */ |
| 319 | rc = auth_mod_get_parent_id(image_id, &parent_id); |
| 320 | if (rc == 0) { |
| 321 | rc = load_auth_image(mem_layout, parent_id, image_base, |
| 322 | image_data, NULL); |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 323 | if (rc != 0) { |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 324 | return rc; |
| 325 | } |
| 326 | } |
| 327 | #endif /* TRUSTED_BOARD_BOOT */ |
| 328 | |
| 329 | /* Load the image */ |
| 330 | rc = load_image(mem_layout, image_id, image_base, image_data, |
| 331 | entry_point_info); |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 332 | if (rc != 0) { |
| 333 | return rc; |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | #if TRUSTED_BOARD_BOOT |
| 337 | /* Authenticate it */ |
| 338 | rc = auth_mod_verify_img(image_id, |
| 339 | (void *)image_data->image_base, |
| 340 | image_data->image_size); |
| 341 | if (rc != 0) { |
Juan Castillo | 97dbcf1 | 2015-08-17 10:43:27 +0100 | [diff] [blame] | 342 | memset((void *)image_data->image_base, 0x00, |
| 343 | image_data->image_size); |
| 344 | flush_dcache_range(image_data->image_base, |
| 345 | image_data->image_size); |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 346 | return -EAUTH; |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | /* After working with data, invalidate the data cache */ |
| 350 | inv_dcache_range(image_data->image_base, |
| 351 | (size_t)image_data->image_size); |
| 352 | #endif /* TRUSTED_BOARD_BOOT */ |
| 353 | |
Juan Castillo | ec813f5 | 2015-10-01 18:37:40 +0100 | [diff] [blame] | 354 | return 0; |
Juan Castillo | a08a5e7 | 2015-05-19 11:54:12 +0100 | [diff] [blame] | 355 | } |
Sandrine Bailleux | b2e224c | 2015-09-28 17:03:06 +0100 | [diff] [blame] | 356 | |
| 357 | /******************************************************************************* |
| 358 | * Print the content of an entry_point_info_t structure. |
| 359 | ******************************************************************************/ |
| 360 | void print_entry_point_info(const entry_point_info_t *ep_info) |
| 361 | { |
| 362 | INFO("Entry point address = 0x%llx\n", |
| 363 | (unsigned long long) ep_info->pc); |
| 364 | INFO("SPSR = 0x%lx\n", (unsigned long) ep_info->spsr); |
| 365 | |
| 366 | #define PRINT_IMAGE_ARG(n) \ |
| 367 | VERBOSE("Argument #" #n " = 0x%llx\n", \ |
| 368 | (unsigned long long) ep_info->args.arg##n) |
| 369 | |
| 370 | PRINT_IMAGE_ARG(0); |
| 371 | PRINT_IMAGE_ARG(1); |
| 372 | PRINT_IMAGE_ARG(2); |
| 373 | PRINT_IMAGE_ARG(3); |
| 374 | PRINT_IMAGE_ARG(4); |
| 375 | PRINT_IMAGE_ARG(5); |
| 376 | PRINT_IMAGE_ARG(6); |
| 377 | PRINT_IMAGE_ARG(7); |
| 378 | #undef PRINT_IMAGE_ARG |
| 379 | } |