James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved. |
| 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 | |
| 31 | #include <assert.h> |
Dan Handley | 97043ac | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 32 | #include <debug.h> |
Dan Handley | 35e98e5 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 33 | #include <io_driver.h> |
Dan Handley | 35e98e5 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 34 | #include <io_fip.h> |
| 35 | #include <io_memmap.h> |
Dan Handley | 97043ac | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 36 | #include <io_storage.h> |
| 37 | #include <io_semihosting.h> |
Dan Handley | 6d16ce0 | 2014-08-04 18:31:43 +0100 | [diff] [blame] | 38 | #include <platform_def.h> |
Dan Handley | 97043ac | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 39 | #include <semihosting.h> /* For FOPEN_MODE_... */ |
| 40 | #include <string.h> |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 41 | |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 42 | /* IO devices */ |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 43 | static const io_dev_connector_t *sh_dev_con; |
| 44 | static uintptr_t sh_dev_spec; |
| 45 | static uintptr_t sh_init_params; |
| 46 | static uintptr_t sh_dev_handle; |
| 47 | static const io_dev_connector_t *fip_dev_con; |
| 48 | static uintptr_t fip_dev_spec; |
| 49 | static uintptr_t fip_dev_handle; |
| 50 | static const io_dev_connector_t *memmap_dev_con; |
| 51 | static uintptr_t memmap_dev_spec; |
| 52 | static uintptr_t memmap_init_params; |
| 53 | static uintptr_t memmap_dev_handle; |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 54 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 55 | static const io_block_spec_t fip_block_spec = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 56 | .offset = FLASH0_BASE, |
| 57 | .length = FLASH0_SIZE |
| 58 | }; |
| 59 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 60 | static const io_file_spec_t bl2_file_spec = { |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 61 | .path = BL2_IMAGE_NAME, |
Sandrine Bailleux | 886278e | 2014-03-20 15:51:02 +0000 | [diff] [blame] | 62 | .mode = FOPEN_MODE_RB |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 65 | static const io_file_spec_t bl31_file_spec = { |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 66 | .path = BL31_IMAGE_NAME, |
Sandrine Bailleux | 886278e | 2014-03-20 15:51:02 +0000 | [diff] [blame] | 67 | .mode = FOPEN_MODE_RB |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 70 | static const io_file_spec_t bl32_file_spec = { |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 71 | .path = BL32_IMAGE_NAME, |
Sandrine Bailleux | 886278e | 2014-03-20 15:51:02 +0000 | [diff] [blame] | 72 | .mode = FOPEN_MODE_RB |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 73 | }; |
| 74 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 75 | static const io_file_spec_t bl33_file_spec = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 76 | .path = BL33_IMAGE_NAME, |
Sandrine Bailleux | 886278e | 2014-03-20 15:51:02 +0000 | [diff] [blame] | 77 | .mode = FOPEN_MODE_RB |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 78 | }; |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 79 | |
Juan Castillo | 01df3c1 | 2015-01-07 13:49:59 +0000 | [diff] [blame] | 80 | #if TRUSTED_BOARD_BOOT |
| 81 | static const io_file_spec_t bl2_cert_file_spec = { |
| 82 | .path = BL2_CERT_NAME, |
| 83 | .mode = FOPEN_MODE_RB |
| 84 | }; |
| 85 | #endif /* TRUSTED_BOARD_BOOT */ |
| 86 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 87 | static int open_fip(const uintptr_t spec); |
| 88 | static int open_memmap(const uintptr_t spec); |
Ryan Harkin | 48e2ca7 | 2014-02-18 17:40:24 +0000 | [diff] [blame] | 89 | |
| 90 | struct plat_io_policy { |
| 91 | char *image_name; |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 92 | uintptr_t *dev_handle; |
| 93 | uintptr_t image_spec; |
| 94 | int (*check)(const uintptr_t spec); |
Ryan Harkin | 48e2ca7 | 2014-02-18 17:40:24 +0000 | [diff] [blame] | 95 | }; |
| 96 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 97 | static const struct plat_io_policy policies[] = { |
| 98 | { |
| 99 | FIP_IMAGE_NAME, |
| 100 | &memmap_dev_handle, |
| 101 | (uintptr_t)&fip_block_spec, |
| 102 | open_memmap |
| 103 | }, { |
| 104 | BL2_IMAGE_NAME, |
| 105 | &fip_dev_handle, |
| 106 | (uintptr_t)&bl2_file_spec, |
| 107 | open_fip |
| 108 | }, { |
| 109 | BL31_IMAGE_NAME, |
| 110 | &fip_dev_handle, |
| 111 | (uintptr_t)&bl31_file_spec, |
| 112 | open_fip |
| 113 | }, { |
| 114 | BL32_IMAGE_NAME, |
| 115 | &fip_dev_handle, |
| 116 | (uintptr_t)&bl32_file_spec, |
| 117 | open_fip |
| 118 | }, { |
| 119 | BL33_IMAGE_NAME, |
| 120 | &fip_dev_handle, |
| 121 | (uintptr_t)&bl33_file_spec, |
| 122 | open_fip |
| 123 | }, { |
Juan Castillo | 01df3c1 | 2015-01-07 13:49:59 +0000 | [diff] [blame] | 124 | #if TRUSTED_BOARD_BOOT |
| 125 | BL2_CERT_NAME, |
| 126 | &fip_dev_handle, |
| 127 | (uintptr_t)&bl2_cert_file_spec, |
| 128 | open_fip |
| 129 | }, { |
| 130 | #endif /* TRUSTED_BOARD_BOOT */ |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 131 | 0, 0, 0 |
| 132 | } |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 136 | static int open_fip(const uintptr_t spec) |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 137 | { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 138 | int result = IO_FAIL; |
| 139 | |
| 140 | /* See if a Firmware Image Package is available */ |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 141 | result = io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_NAME); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 142 | if (result == IO_SUCCESS) { |
Dan Handley | 6ad2e46 | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 143 | VERBOSE("Using FIP\n"); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 144 | /*TODO: Check image defined in spec is present in FIP. */ |
| 145 | } |
| 146 | return result; |
| 147 | } |
| 148 | |
| 149 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 150 | static int open_memmap(const uintptr_t spec) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 151 | { |
| 152 | int result = IO_FAIL; |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 153 | uintptr_t local_image_handle; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 154 | |
| 155 | result = io_dev_init(memmap_dev_handle, memmap_init_params); |
| 156 | if (result == IO_SUCCESS) { |
| 157 | result = io_open(memmap_dev_handle, spec, &local_image_handle); |
| 158 | if (result == IO_SUCCESS) { |
Dan Handley | 6ad2e46 | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 159 | VERBOSE("Using Memmap IO\n"); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 160 | io_close(local_image_handle); |
| 161 | } |
| 162 | } |
| 163 | return result; |
| 164 | } |
| 165 | |
| 166 | |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 167 | static int open_semihosting(const uintptr_t spec) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 168 | { |
| 169 | int result = IO_FAIL; |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 170 | uintptr_t local_image_handle; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 171 | |
| 172 | /* See if the file exists on semi-hosting.*/ |
| 173 | result = io_dev_init(sh_dev_handle, sh_init_params); |
| 174 | if (result == IO_SUCCESS) { |
| 175 | result = io_open(sh_dev_handle, spec, &local_image_handle); |
| 176 | if (result == IO_SUCCESS) { |
Dan Handley | 6ad2e46 | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 177 | VERBOSE("Using Semi-hosting IO\n"); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 178 | io_close(local_image_handle); |
| 179 | } |
| 180 | } |
| 181 | return result; |
| 182 | } |
| 183 | |
Dan Handley | 17a387a | 2014-05-15 14:53:30 +0100 | [diff] [blame] | 184 | void fvp_io_setup (void) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 185 | { |
| 186 | int io_result = IO_FAIL; |
| 187 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 188 | /* Register the IO devices on this platform */ |
| 189 | io_result = register_io_dev_sh(&sh_dev_con); |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 190 | assert(io_result == IO_SUCCESS); |
| 191 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 192 | io_result = register_io_dev_fip(&fip_dev_con); |
| 193 | assert(io_result == IO_SUCCESS); |
| 194 | |
| 195 | io_result = register_io_dev_memmap(&memmap_dev_con); |
| 196 | assert(io_result == IO_SUCCESS); |
| 197 | |
| 198 | /* Open connections to devices and cache the handles */ |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 199 | io_result = io_dev_open(sh_dev_con, sh_dev_spec, &sh_dev_handle); |
| 200 | assert(io_result == IO_SUCCESS); |
| 201 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 202 | io_result = io_dev_open(fip_dev_con, fip_dev_spec, &fip_dev_handle); |
| 203 | assert(io_result == IO_SUCCESS); |
| 204 | |
| 205 | io_result = io_dev_open(memmap_dev_con, memmap_dev_spec, |
| 206 | &memmap_dev_handle); |
| 207 | assert(io_result == IO_SUCCESS); |
| 208 | |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 209 | /* Ignore improbable errors in release builds */ |
| 210 | (void)io_result; |
| 211 | } |
| 212 | |
| 213 | |
| 214 | /* Return an IO device handle and specification which can be used to access |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 215 | * an image. Use this to enforce platform load policy */ |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 216 | int plat_get_image_source(const char *image_name, uintptr_t *dev_handle, |
| 217 | uintptr_t *image_spec) |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 218 | { |
| 219 | int result = IO_FAIL; |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 220 | const struct plat_io_policy *policy; |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 221 | |
Ryan Harkin | 48e2ca7 | 2014-02-18 17:40:24 +0000 | [diff] [blame] | 222 | if ((image_name != NULL) && (dev_handle != NULL) && |
| 223 | (image_spec != NULL)) { |
| 224 | policy = policies; |
| 225 | while (policy->image_name != NULL) { |
| 226 | if (strcmp(policy->image_name, image_name) == 0) { |
| 227 | result = policy->check(policy->image_spec); |
| 228 | if (result == IO_SUCCESS) { |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 229 | *image_spec = policy->image_spec; |
Ryan Harkin | 48e2ca7 | 2014-02-18 17:40:24 +0000 | [diff] [blame] | 230 | *dev_handle = *(policy->dev_handle); |
| 231 | break; |
| 232 | } else { |
| 233 | result = open_semihosting( |
| 234 | policy->image_spec); |
| 235 | if (result == IO_SUCCESS) { |
| 236 | *dev_handle = sh_dev_handle; |
Dan Handley | 625de1d | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 237 | *image_spec = |
Ryan Harkin | 48e2ca7 | 2014-02-18 17:40:24 +0000 | [diff] [blame] | 238 | policy->image_spec; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | policy++; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 243 | } |
Ryan Harkin | 48e2ca7 | 2014-02-18 17:40:24 +0000 | [diff] [blame] | 244 | } else { |
| 245 | result = IO_FAIL; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 246 | } |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 247 | return result; |
| 248 | } |