Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 1 | /* |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 2 | * Copyright (c) 2014-2017, ARM Limited and Contributors. All rights reserved. |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 7 | #include <assert.h> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 8 | #include <bl_common.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 9 | #include <debug.h> |
| 10 | #include <errno.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 11 | #include <firmware_image_package.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 12 | #include <io_driver.h> |
| 13 | #include <io_fip.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 14 | #include <io_storage.h> |
| 15 | #include <platform.h> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 16 | #include <platform_def.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 17 | #include <stdint.h> |
| 18 | #include <string.h> |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 19 | #include <utils.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 20 | #include <uuid.h> |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 21 | |
| 22 | /* Useful for printing UUIDs when debugging.*/ |
| 23 | #define PRINT_UUID2(x) \ |
| 24 | "%08x-%04hx-%04hx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx", \ |
| 25 | x.time_low, x.time_mid, x.time_hi_and_version, \ |
| 26 | x.clock_seq_hi_and_reserved, x.clock_seq_low, \ |
| 27 | x.node[0], x.node[1], x.node[2], x.node[3], \ |
| 28 | x.node[4], x.node[5] |
| 29 | |
| 30 | typedef struct { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 31 | /* Put file_pos above the struct to allow {0} on static init. |
| 32 | * It is a workaround for a known bug in GCC |
| 33 | * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53119 |
| 34 | */ |
| 35 | unsigned int file_pos; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 36 | fip_toc_entry_t entry; |
| 37 | } file_state_t; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 38 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 39 | static const uuid_t uuid_null = {0}; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 40 | static file_state_t current_file = {0}; |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 41 | static uintptr_t backend_dev_handle; |
| 42 | static uintptr_t backend_image_spec; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 43 | |
| 44 | |
| 45 | /* Firmware Image Package driver functions */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 46 | static int fip_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info); |
| 47 | static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec, |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 48 | io_entity_t *entity); |
| 49 | static int fip_file_len(io_entity_t *entity, size_t *length); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 50 | static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 51 | size_t *length_read); |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 52 | static int fip_file_close(io_entity_t *entity); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 53 | static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params); |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 54 | static int fip_dev_close(io_dev_info_t *dev_info); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 55 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 56 | |
| 57 | /* Return 0 for equal uuids. */ |
| 58 | static inline int compare_uuids(const uuid_t *uuid1, const uuid_t *uuid2) |
| 59 | { |
| 60 | return memcmp(uuid1, uuid2, sizeof(uuid_t)); |
| 61 | } |
| 62 | |
| 63 | |
| 64 | /* TODO: We could check version numbers or do a package checksum? */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 65 | static inline int is_valid_header(fip_toc_header_t *header) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 66 | { |
| 67 | if ((header->name == TOC_HEADER_NAME) && (header->serial_number != 0)) { |
| 68 | return 1; |
| 69 | } else { |
| 70 | return 0; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 75 | /* Identify the device type as a virtual driver */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 76 | io_type_t device_type_fip(void) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 77 | { |
| 78 | return IO_TYPE_FIRMWARE_IMAGE_PACKAGE; |
| 79 | } |
| 80 | |
| 81 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 82 | static const io_dev_connector_t fip_dev_connector = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 83 | .dev_open = fip_dev_open |
| 84 | }; |
| 85 | |
| 86 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 87 | static const io_dev_funcs_t fip_dev_funcs = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 88 | .type = device_type_fip, |
| 89 | .open = fip_file_open, |
| 90 | .seek = NULL, |
| 91 | .size = fip_file_len, |
| 92 | .read = fip_file_read, |
| 93 | .write = NULL, |
| 94 | .close = fip_file_close, |
| 95 | .dev_init = fip_dev_init, |
| 96 | .dev_close = fip_dev_close, |
| 97 | }; |
| 98 | |
| 99 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 100 | /* No state associated with this device so structure can be const */ |
| 101 | static const io_dev_info_t fip_dev_info = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 102 | .funcs = &fip_dev_funcs, |
| 103 | .info = (uintptr_t)NULL |
| 104 | }; |
| 105 | |
| 106 | |
| 107 | /* Open a connection to the FIP device */ |
Soren Brinkmann | 46dd170 | 2016-01-14 10:11:05 -0800 | [diff] [blame] | 108 | static int fip_dev_open(const uintptr_t dev_spec __unused, |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 109 | io_dev_info_t **dev_info) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 110 | { |
| 111 | assert(dev_info != NULL); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 112 | *dev_info = (io_dev_info_t *)&fip_dev_info; /* cast away const */ |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 113 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 114 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | |
| 118 | /* Do some basic package checks. */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 119 | static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 120 | { |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 121 | int result; |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 122 | unsigned int image_id = (unsigned int)init_params; |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 123 | uintptr_t backend_handle; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 124 | fip_toc_header_t header; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 125 | size_t bytes_read; |
| 126 | |
| 127 | /* Obtain a reference to the image by querying the platform layer */ |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 128 | result = plat_get_image_source(image_id, &backend_dev_handle, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 129 | &backend_image_spec); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 130 | if (result != 0) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 131 | WARN("Failed to obtain reference to image id=%u (%i)\n", |
| 132 | image_id, result); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 133 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 134 | goto fip_dev_init_exit; |
| 135 | } |
| 136 | |
| 137 | /* Attempt to access the FIP image */ |
| 138 | result = io_open(backend_dev_handle, backend_image_spec, |
| 139 | &backend_handle); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 140 | if (result != 0) { |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 141 | WARN("Failed to access image id=%u (%i)\n", image_id, result); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 142 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 143 | goto fip_dev_init_exit; |
| 144 | } |
| 145 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 146 | result = io_read(backend_handle, (uintptr_t)&header, sizeof(header), |
| 147 | &bytes_read); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 148 | if (result == 0) { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 149 | if (!is_valid_header(&header)) { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 150 | WARN("Firmware Image Package header check failed.\n"); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 151 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 152 | } else { |
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 153 | VERBOSE("FIP header looks OK.\n"); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 154 | } |
| 155 | } |
| 156 | |
| 157 | io_close(backend_handle); |
| 158 | |
| 159 | fip_dev_init_exit: |
| 160 | return result; |
| 161 | } |
| 162 | |
| 163 | /* Close a connection to the FIP device */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 164 | static int fip_dev_close(io_dev_info_t *dev_info) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 165 | { |
| 166 | /* TODO: Consider tracking open files and cleaning them up here */ |
| 167 | |
| 168 | /* Clear the backend. */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 169 | backend_dev_handle = (uintptr_t)NULL; |
| 170 | backend_image_spec = (uintptr_t)NULL; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 171 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 172 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | |
| 176 | /* Open a file for access from package. */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 177 | static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec, |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 178 | io_entity_t *entity) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 179 | { |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 180 | int result; |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 181 | uintptr_t backend_handle; |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 182 | const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 183 | size_t bytes_read; |
| 184 | int found_file = 0; |
| 185 | |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 186 | assert(uuid_spec != NULL); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 187 | assert(entity != NULL); |
| 188 | |
| 189 | /* Can only have one file open at a time for the moment. We need to |
| 190 | * track state like file cursor position. We know the header lives at |
| 191 | * offset zero, so this entry should never be zero for an active file. |
| 192 | * When the system supports dynamic memory allocation we can allow more |
| 193 | * than one open file at a time if needed. |
| 194 | */ |
| 195 | if (current_file.entry.offset_address != 0) { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 196 | WARN("fip_file_open : Only one open file at a time.\n"); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 197 | return -ENOMEM; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /* Attempt to access the FIP image */ |
| 201 | result = io_open(backend_dev_handle, backend_image_spec, |
| 202 | &backend_handle); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 203 | if (result != 0) { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 204 | WARN("Failed to open Firmware Image Package (%i)\n", result); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 205 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 206 | goto fip_file_open_exit; |
| 207 | } |
| 208 | |
| 209 | /* Seek past the FIP header into the Table of Contents */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 210 | result = io_seek(backend_handle, IO_SEEK_SET, sizeof(fip_toc_header_t)); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 211 | if (result != 0) { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 212 | WARN("fip_file_open: failed to seek\n"); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 213 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 214 | goto fip_file_open_close; |
| 215 | } |
| 216 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 217 | found_file = 0; |
| 218 | do { |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 219 | result = io_read(backend_handle, |
| 220 | (uintptr_t)¤t_file.entry, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 221 | sizeof(current_file.entry), |
| 222 | &bytes_read); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 223 | if (result == 0) { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 224 | if (compare_uuids(¤t_file.entry.uuid, |
Juan Castillo | 3a66aca | 2015-04-13 17:36:19 +0100 | [diff] [blame] | 225 | &uuid_spec->uuid) == 0) { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 226 | found_file = 1; |
| 227 | break; |
| 228 | } |
| 229 | } else { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 230 | WARN("Failed to read FIP (%i)\n", result); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 231 | goto fip_file_open_close; |
| 232 | } |
| 233 | } while (compare_uuids(¤t_file.entry.uuid, &uuid_null) != 0); |
| 234 | |
| 235 | if (found_file == 1) { |
| 236 | /* All fine. Update entity info with file state and return. Set |
| 237 | * the file position to 0. The 'current_file.entry' holds the |
| 238 | * base and size of the file. |
| 239 | */ |
| 240 | current_file.file_pos = 0; |
| 241 | entity->info = (uintptr_t)¤t_file; |
| 242 | } else { |
| 243 | /* Did not find the file in the FIP. */ |
Jeenu Viswambharan | dd3dc32 | 2014-02-20 11:51:00 +0000 | [diff] [blame] | 244 | current_file.entry.offset_address = 0; |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 245 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | fip_file_open_close: |
| 249 | io_close(backend_handle); |
| 250 | |
| 251 | fip_file_open_exit: |
| 252 | return result; |
| 253 | } |
| 254 | |
| 255 | |
| 256 | /* Return the size of a file in package */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 257 | static int fip_file_len(io_entity_t *entity, size_t *length) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 258 | { |
| 259 | assert(entity != NULL); |
| 260 | assert(length != NULL); |
| 261 | |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 262 | *length = ((file_state_t *)entity->info)->entry.size; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 263 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 264 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | |
| 268 | /* Read data from a file in package */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 269 | static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 270 | size_t *length_read) |
| 271 | { |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 272 | int result; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 273 | file_state_t *fp; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 274 | size_t file_offset; |
| 275 | size_t bytes_read; |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 276 | uintptr_t backend_handle; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 277 | |
| 278 | assert(entity != NULL); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 279 | assert(buffer != (uintptr_t)NULL); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 280 | assert(length_read != NULL); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 281 | assert(entity->info != (uintptr_t)NULL); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 282 | |
| 283 | /* Open the backend, attempt to access the blob image */ |
| 284 | result = io_open(backend_dev_handle, backend_image_spec, |
| 285 | &backend_handle); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 286 | if (result != 0) { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 287 | WARN("Failed to open FIP (%i)\n", result); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 288 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 289 | goto fip_file_read_exit; |
| 290 | } |
| 291 | |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 292 | fp = (file_state_t *)entity->info; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 293 | |
| 294 | /* Seek to the position in the FIP where the payload lives */ |
| 295 | file_offset = fp->entry.offset_address + fp->file_pos; |
| 296 | result = io_seek(backend_handle, IO_SEEK_SET, file_offset); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 297 | if (result != 0) { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 298 | WARN("fip_file_read: failed to seek\n"); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 299 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 300 | goto fip_file_read_close; |
| 301 | } |
| 302 | |
| 303 | result = io_read(backend_handle, buffer, length, &bytes_read); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 304 | if (result != 0) { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 305 | /* We cannot read our data. Fail. */ |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 306 | WARN("Failed to read payload (%i)\n", result); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 307 | result = -ENOENT; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 308 | goto fip_file_read_close; |
| 309 | } else { |
| 310 | /* Set caller length and new file position. */ |
| 311 | *length_read = bytes_read; |
| 312 | fp->file_pos += bytes_read; |
| 313 | } |
| 314 | |
| 315 | /* Close the backend. */ |
| 316 | fip_file_read_close: |
| 317 | io_close(backend_handle); |
| 318 | |
| 319 | fip_file_read_exit: |
| 320 | return result; |
| 321 | } |
| 322 | |
| 323 | |
| 324 | /* Close a file in package */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 325 | static int fip_file_close(io_entity_t *entity) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 326 | { |
| 327 | /* Clear our current file pointer. |
| 328 | * If we had malloc() we would free() here. |
| 329 | */ |
| 330 | if (current_file.entry.offset_address != 0) { |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 331 | zeromem(¤t_file, sizeof(current_file)); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | /* Clear the Entity info. */ |
| 335 | entity->info = 0; |
| 336 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 337 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | /* Exported functions */ |
| 341 | |
| 342 | /* Register the Firmware Image Package driver with the IO abstraction */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 343 | int register_io_dev_fip(const io_dev_connector_t **dev_con) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 344 | { |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 345 | int result; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 346 | assert(dev_con != NULL); |
| 347 | |
| 348 | result = io_register_device(&fip_dev_info); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 349 | if (result == 0) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 350 | *dev_con = &fip_dev_connector; |
| 351 | |
| 352 | return result; |
| 353 | } |