blob: 544b37dbea56fc4cc442b8caaa9f071d8270cbc1 [file] [log] [blame]
Harry Liebel561cd332014-02-14 14:42:48 +00001/*
Ambroise Vincentb237bca2019-02-13 15:58:00 +00002 * Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved.
Harry Liebel561cd332014-02-14 14:42:48 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Harry Liebel561cd332014-02-14 14:42:48 +00005 */
6
Harry Liebel561cd332014-02-14 14:42:48 +00007#include <assert.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +01008#include <errno.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +01009#include <stdint.h>
10#include <string.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011
12#include <platform_def.h>
13
14#include <common/bl_common.h>
15#include <common/debug.h>
16#include <drivers/io/io_driver.h>
17#include <drivers/io/io_fip.h>
18#include <drivers/io/io_storage.h>
19#include <lib/utils.h>
20#include <plat/common/platform.h>
21#include <tools_share/firmware_image_package.h>
22#include <tools_share/uuid.h>
Harry Liebel561cd332014-02-14 14:42:48 +000023
Ruchika Gupta246e45b2018-06-27 12:18:22 +053024#ifndef MAX_FIP_DEVICES
25#define MAX_FIP_DEVICES 1
26#endif
27
Harry Liebel561cd332014-02-14 14:42:48 +000028/* Useful for printing UUIDs when debugging.*/
29#define PRINT_UUID2(x) \
30 "%08x-%04hx-%04hx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx", \
31 x.time_low, x.time_mid, x.time_hi_and_version, \
32 x.clock_seq_hi_and_reserved, x.clock_seq_low, \
33 x.node[0], x.node[1], x.node[2], x.node[3], \
34 x.node[4], x.node[5]
35
36typedef struct {
Harry Liebel561cd332014-02-14 14:42:48 +000037 unsigned int file_pos;
Dan Handleye2712bc2014-04-10 15:37:22 +010038 fip_toc_entry_t entry;
39} file_state_t;
Harry Liebel561cd332014-02-14 14:42:48 +000040
Ruchika Gupta246e45b2018-06-27 12:18:22 +053041/*
42 * Maintain dev_spec per FIP Device
43 * TODO - Add backend handles and file state
44 * per FIP device here once backends like io_memmap
45 * can support multiple open files
46 */
47typedef struct {
48 uintptr_t dev_spec;
49} fip_dev_state_t;
50
Ambroise Vincentb237bca2019-02-13 15:58:00 +000051static const uuid_t uuid_null;
Ruchika Gupta246e45b2018-06-27 12:18:22 +053052/*
53 * Only one file can be open across all FIP device
54 * as backends like io_memmap don't support
55 * multiple open files. The file state and
56 * backend handle should be maintained per FIP device
57 * if the same support is available in the backend
58 */
Dan Handleye2712bc2014-04-10 15:37:22 +010059static file_state_t current_file = {0};
Dan Handleya4cb68e2014-04-23 13:47:06 +010060static uintptr_t backend_dev_handle;
61static uintptr_t backend_image_spec;
Harry Liebel561cd332014-02-14 14:42:48 +000062
Ruchika Gupta246e45b2018-06-27 12:18:22 +053063static fip_dev_state_t state_pool[MAX_FIP_DEVICES];
64static io_dev_info_t dev_info_pool[MAX_FIP_DEVICES];
65
66/* Track number of allocated fip devices */
67static unsigned int fip_dev_count;
Harry Liebel561cd332014-02-14 14:42:48 +000068
69/* Firmware Image Package driver functions */
Dan Handleya4cb68e2014-04-23 13:47:06 +010070static int fip_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info);
71static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
Dan Handleye2712bc2014-04-10 15:37:22 +010072 io_entity_t *entity);
73static int fip_file_len(io_entity_t *entity, size_t *length);
Dan Handleya4cb68e2014-04-23 13:47:06 +010074static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
Harry Liebel561cd332014-02-14 14:42:48 +000075 size_t *length_read);
Dan Handleye2712bc2014-04-10 15:37:22 +010076static int fip_file_close(io_entity_t *entity);
Dan Handleya4cb68e2014-04-23 13:47:06 +010077static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params);
Dan Handleye2712bc2014-04-10 15:37:22 +010078static int fip_dev_close(io_dev_info_t *dev_info);
Harry Liebel561cd332014-02-14 14:42:48 +000079
Harry Liebel561cd332014-02-14 14:42:48 +000080
81/* Return 0 for equal uuids. */
82static inline int compare_uuids(const uuid_t *uuid1, const uuid_t *uuid2)
83{
84 return memcmp(uuid1, uuid2, sizeof(uuid_t));
85}
86
87
Dan Handleye2712bc2014-04-10 15:37:22 +010088static inline int is_valid_header(fip_toc_header_t *header)
Harry Liebel561cd332014-02-14 14:42:48 +000089{
90 if ((header->name == TOC_HEADER_NAME) && (header->serial_number != 0)) {
91 return 1;
92 } else {
93 return 0;
94 }
95}
96
97
Harry Liebel561cd332014-02-14 14:42:48 +000098/* Identify the device type as a virtual driver */
Roberto Vargas05712702018-02-12 12:36:17 +000099static io_type_t device_type_fip(void)
Harry Liebel561cd332014-02-14 14:42:48 +0000100{
101 return IO_TYPE_FIRMWARE_IMAGE_PACKAGE;
102}
103
104
Dan Handleya4cb68e2014-04-23 13:47:06 +0100105static const io_dev_connector_t fip_dev_connector = {
Harry Liebel561cd332014-02-14 14:42:48 +0000106 .dev_open = fip_dev_open
107};
108
109
Dan Handleya4cb68e2014-04-23 13:47:06 +0100110static const io_dev_funcs_t fip_dev_funcs = {
Harry Liebel561cd332014-02-14 14:42:48 +0000111 .type = device_type_fip,
112 .open = fip_file_open,
113 .seek = NULL,
114 .size = fip_file_len,
115 .read = fip_file_read,
116 .write = NULL,
117 .close = fip_file_close,
118 .dev_init = fip_dev_init,
119 .dev_close = fip_dev_close,
120};
121
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530122/* Locate a file state in the pool, specified by address */
123static int find_first_fip_state(const uintptr_t dev_spec,
124 unsigned int *index_out)
125{
126 int result = -ENOENT;
127 unsigned int index;
Harry Liebel561cd332014-02-14 14:42:48 +0000128
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530129 for (index = 0; index < (unsigned int)MAX_FIP_DEVICES; ++index) {
130 /* dev_spec is used as identifier since it's unique */
131 if (state_pool[index].dev_spec == dev_spec) {
132 result = 0;
133 *index_out = index;
134 break;
135 }
136 }
137 return result;
138}
Harry Liebel561cd332014-02-14 14:42:48 +0000139
140
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530141/* Allocate a device info from the pool and return a pointer to it */
142static int allocate_dev_info(io_dev_info_t **dev_info)
143{
144 int result = -ENOMEM;
145
146 assert(dev_info != NULL);
147
148 if (fip_dev_count < (unsigned int)MAX_FIP_DEVICES) {
149 unsigned int index = 0;
150
151 result = find_first_fip_state(0, &index);
152 assert(result == 0);
153 /* initialize dev_info */
154 dev_info_pool[index].funcs = &fip_dev_funcs;
155 dev_info_pool[index].info =
156 (uintptr_t)&state_pool[index];
157 *dev_info = &dev_info_pool[index];
158 ++fip_dev_count;
159 }
160
161 return result;
162}
163
164/* Release a device info to the pool */
165static int free_dev_info(io_dev_info_t *dev_info)
166{
167 int result;
168 unsigned int index = 0;
169 fip_dev_state_t *state;
170
171 assert(dev_info != NULL);
172
173 state = (fip_dev_state_t *)dev_info->info;
174 result = find_first_fip_state(state->dev_spec, &index);
175 if (result == 0) {
176 /* free if device info is valid */
177 zeromem(state, sizeof(fip_dev_state_t));
178 --fip_dev_count;
179 }
180
181 return result;
182}
183
184/*
185 * Multiple FIP devices can be opened depending on the value of
186 * MAX_FIP_DEVICES. Given that there is only one backend, only a
187 * single file can be open at a time by any FIP device.
188 */
189static int fip_dev_open(const uintptr_t dev_spec,
Dan Handleye2712bc2014-04-10 15:37:22 +0100190 io_dev_info_t **dev_info)
Harry Liebel561cd332014-02-14 14:42:48 +0000191{
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530192 int result;
193 io_dev_info_t *info;
194 fip_dev_state_t *state;
195
Harry Liebel561cd332014-02-14 14:42:48 +0000196 assert(dev_info != NULL);
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530197#if MAX_FIP_DEVICES > 1
198 assert(dev_spec != (uintptr_t)NULL);
199#endif
200
201 result = allocate_dev_info(&info);
202 if (result != 0)
203 return -ENOMEM;
204
205 state = (fip_dev_state_t *)info->info;
206
207 state->dev_spec = dev_spec;
208
209 *dev_info = info;
Harry Liebel561cd332014-02-14 14:42:48 +0000210
Juan Castillo6e762062015-11-02 10:47:01 +0000211 return 0;
Harry Liebel561cd332014-02-14 14:42:48 +0000212}
213
214
215/* Do some basic package checks. */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100216static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params)
Harry Liebel561cd332014-02-14 14:42:48 +0000217{
Juan Castillo6e762062015-11-02 10:47:01 +0000218 int result;
Juan Castillo3a66aca2015-04-13 17:36:19 +0100219 unsigned int image_id = (unsigned int)init_params;
Dan Handleya4cb68e2014-04-23 13:47:06 +0100220 uintptr_t backend_handle;
Dan Handleye2712bc2014-04-10 15:37:22 +0100221 fip_toc_header_t header;
Harry Liebel561cd332014-02-14 14:42:48 +0000222 size_t bytes_read;
223
224 /* Obtain a reference to the image by querying the platform layer */
Juan Castillo3a66aca2015-04-13 17:36:19 +0100225 result = plat_get_image_source(image_id, &backend_dev_handle,
Harry Liebel561cd332014-02-14 14:42:48 +0000226 &backend_image_spec);
Juan Castillo6e762062015-11-02 10:47:01 +0000227 if (result != 0) {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100228 WARN("Failed to obtain reference to image id=%u (%i)\n",
229 image_id, result);
Juan Castillo6e762062015-11-02 10:47:01 +0000230 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000231 goto fip_dev_init_exit;
232 }
233
234 /* Attempt to access the FIP image */
235 result = io_open(backend_dev_handle, backend_image_spec,
236 &backend_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000237 if (result != 0) {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100238 WARN("Failed to access image id=%u (%i)\n", image_id, result);
Juan Castillo6e762062015-11-02 10:47:01 +0000239 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000240 goto fip_dev_init_exit;
241 }
242
Dan Handleya4cb68e2014-04-23 13:47:06 +0100243 result = io_read(backend_handle, (uintptr_t)&header, sizeof(header),
244 &bytes_read);
Juan Castillo6e762062015-11-02 10:47:01 +0000245 if (result == 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000246 if (!is_valid_header(&header)) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000247 WARN("Firmware Image Package header check failed.\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000248 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000249 } else {
Dan Handley91b624e2014-07-29 17:14:00 +0100250 VERBOSE("FIP header looks OK.\n");
Harry Liebel561cd332014-02-14 14:42:48 +0000251 }
252 }
253
254 io_close(backend_handle);
255
256 fip_dev_init_exit:
257 return result;
258}
259
260/* Close a connection to the FIP device */
Dan Handleye2712bc2014-04-10 15:37:22 +0100261static int fip_dev_close(io_dev_info_t *dev_info)
Harry Liebel561cd332014-02-14 14:42:48 +0000262{
263 /* TODO: Consider tracking open files and cleaning them up here */
264
265 /* Clear the backend. */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100266 backend_dev_handle = (uintptr_t)NULL;
267 backend_image_spec = (uintptr_t)NULL;
Harry Liebel561cd332014-02-14 14:42:48 +0000268
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530269 return free_dev_info(dev_info);
Harry Liebel561cd332014-02-14 14:42:48 +0000270}
271
272
273/* Open a file for access from package. */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100274static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
Dan Handleye2712bc2014-04-10 15:37:22 +0100275 io_entity_t *entity)
Harry Liebel561cd332014-02-14 14:42:48 +0000276{
Juan Castillo6e762062015-11-02 10:47:01 +0000277 int result;
Dan Handleya4cb68e2014-04-23 13:47:06 +0100278 uintptr_t backend_handle;
Juan Castillo3a66aca2015-04-13 17:36:19 +0100279 const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec;
Harry Liebel561cd332014-02-14 14:42:48 +0000280 size_t bytes_read;
281 int found_file = 0;
282
Juan Castillo3a66aca2015-04-13 17:36:19 +0100283 assert(uuid_spec != NULL);
Harry Liebel561cd332014-02-14 14:42:48 +0000284 assert(entity != NULL);
285
286 /* Can only have one file open at a time for the moment. We need to
287 * track state like file cursor position. We know the header lives at
288 * offset zero, so this entry should never be zero for an active file.
289 * When the system supports dynamic memory allocation we can allow more
290 * than one open file at a time if needed.
291 */
292 if (current_file.entry.offset_address != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000293 WARN("fip_file_open : Only one open file at a time.\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000294 return -ENOMEM;
Harry Liebel561cd332014-02-14 14:42:48 +0000295 }
296
297 /* Attempt to access the FIP image */
298 result = io_open(backend_dev_handle, backend_image_spec,
299 &backend_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000300 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000301 WARN("Failed to open Firmware Image Package (%i)\n", result);
Juan Castillo6e762062015-11-02 10:47:01 +0000302 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000303 goto fip_file_open_exit;
304 }
305
306 /* Seek past the FIP header into the Table of Contents */
Dan Handleye2712bc2014-04-10 15:37:22 +0100307 result = io_seek(backend_handle, IO_SEEK_SET, sizeof(fip_toc_header_t));
Juan Castillo6e762062015-11-02 10:47:01 +0000308 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000309 WARN("fip_file_open: failed to seek\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000310 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000311 goto fip_file_open_close;
312 }
313
Harry Liebel561cd332014-02-14 14:42:48 +0000314 found_file = 0;
315 do {
Dan Handleya4cb68e2014-04-23 13:47:06 +0100316 result = io_read(backend_handle,
317 (uintptr_t)&current_file.entry,
Harry Liebel561cd332014-02-14 14:42:48 +0000318 sizeof(current_file.entry),
319 &bytes_read);
Juan Castillo6e762062015-11-02 10:47:01 +0000320 if (result == 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000321 if (compare_uuids(&current_file.entry.uuid,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100322 &uuid_spec->uuid) == 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000323 found_file = 1;
324 break;
325 }
326 } else {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000327 WARN("Failed to read FIP (%i)\n", result);
Harry Liebel561cd332014-02-14 14:42:48 +0000328 goto fip_file_open_close;
329 }
330 } while (compare_uuids(&current_file.entry.uuid, &uuid_null) != 0);
331
332 if (found_file == 1) {
333 /* All fine. Update entity info with file state and return. Set
334 * the file position to 0. The 'current_file.entry' holds the
335 * base and size of the file.
336 */
337 current_file.file_pos = 0;
338 entity->info = (uintptr_t)&current_file;
339 } else {
340 /* Did not find the file in the FIP. */
Jeenu Viswambharandd3dc322014-02-20 11:51:00 +0000341 current_file.entry.offset_address = 0;
Juan Castillo6e762062015-11-02 10:47:01 +0000342 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000343 }
344
345 fip_file_open_close:
346 io_close(backend_handle);
347
348 fip_file_open_exit:
349 return result;
350}
351
352
353/* Return the size of a file in package */
Dan Handleye2712bc2014-04-10 15:37:22 +0100354static int fip_file_len(io_entity_t *entity, size_t *length)
Harry Liebel561cd332014-02-14 14:42:48 +0000355{
356 assert(entity != NULL);
357 assert(length != NULL);
358
Dan Handleye2712bc2014-04-10 15:37:22 +0100359 *length = ((file_state_t *)entity->info)->entry.size;
Harry Liebel561cd332014-02-14 14:42:48 +0000360
Juan Castillo6e762062015-11-02 10:47:01 +0000361 return 0;
Harry Liebel561cd332014-02-14 14:42:48 +0000362}
363
364
365/* Read data from a file in package */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100366static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
Harry Liebel561cd332014-02-14 14:42:48 +0000367 size_t *length_read)
368{
Juan Castillo6e762062015-11-02 10:47:01 +0000369 int result;
Dan Handleye2712bc2014-04-10 15:37:22 +0100370 file_state_t *fp;
Harry Liebel561cd332014-02-14 14:42:48 +0000371 size_t file_offset;
372 size_t bytes_read;
Dan Handleya4cb68e2014-04-23 13:47:06 +0100373 uintptr_t backend_handle;
Harry Liebel561cd332014-02-14 14:42:48 +0000374
375 assert(entity != NULL);
Harry Liebel561cd332014-02-14 14:42:48 +0000376 assert(length_read != NULL);
Dan Handleya4cb68e2014-04-23 13:47:06 +0100377 assert(entity->info != (uintptr_t)NULL);
Harry Liebel561cd332014-02-14 14:42:48 +0000378
379 /* Open the backend, attempt to access the blob image */
380 result = io_open(backend_dev_handle, backend_image_spec,
381 &backend_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000382 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000383 WARN("Failed to open FIP (%i)\n", result);
Juan Castillo6e762062015-11-02 10:47:01 +0000384 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000385 goto fip_file_read_exit;
386 }
387
Dan Handleye2712bc2014-04-10 15:37:22 +0100388 fp = (file_state_t *)entity->info;
Harry Liebel561cd332014-02-14 14:42:48 +0000389
390 /* Seek to the position in the FIP where the payload lives */
391 file_offset = fp->entry.offset_address + fp->file_pos;
392 result = io_seek(backend_handle, IO_SEEK_SET, file_offset);
Juan Castillo6e762062015-11-02 10:47:01 +0000393 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000394 WARN("fip_file_read: failed to seek\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000395 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000396 goto fip_file_read_close;
397 }
398
399 result = io_read(backend_handle, buffer, length, &bytes_read);
Juan Castillo6e762062015-11-02 10:47:01 +0000400 if (result != 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000401 /* We cannot read our data. Fail. */
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000402 WARN("Failed to read payload (%i)\n", result);
Juan Castillo6e762062015-11-02 10:47:01 +0000403 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000404 goto fip_file_read_close;
405 } else {
406 /* Set caller length and new file position. */
407 *length_read = bytes_read;
408 fp->file_pos += bytes_read;
409 }
410
411/* Close the backend. */
412 fip_file_read_close:
413 io_close(backend_handle);
414
415 fip_file_read_exit:
416 return result;
417}
418
419
420/* Close a file in package */
Dan Handleye2712bc2014-04-10 15:37:22 +0100421static int fip_file_close(io_entity_t *entity)
Harry Liebel561cd332014-02-14 14:42:48 +0000422{
423 /* Clear our current file pointer.
424 * If we had malloc() we would free() here.
425 */
426 if (current_file.entry.offset_address != 0) {
Douglas Raillarda8954fc2017-01-26 15:54:44 +0000427 zeromem(&current_file, sizeof(current_file));
Harry Liebel561cd332014-02-14 14:42:48 +0000428 }
429
430 /* Clear the Entity info. */
431 entity->info = 0;
432
Juan Castillo6e762062015-11-02 10:47:01 +0000433 return 0;
Harry Liebel561cd332014-02-14 14:42:48 +0000434}
435
436/* Exported functions */
437
438/* Register the Firmware Image Package driver with the IO abstraction */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100439int register_io_dev_fip(const io_dev_connector_t **dev_con)
Harry Liebel561cd332014-02-14 14:42:48 +0000440{
Juan Castillo6e762062015-11-02 10:47:01 +0000441 int result;
Harry Liebel561cd332014-02-14 14:42:48 +0000442 assert(dev_con != NULL);
443
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530444 /*
445 * Since dev_info isn't really used in io_register_device, always
446 * use the same device info at here instead.
447 */
448 result = io_register_device(&dev_info_pool[0]);
Juan Castillo6e762062015-11-02 10:47:01 +0000449 if (result == 0)
Harry Liebel561cd332014-02-14 14:42:48 +0000450 *dev_con = &fip_dev_connector;
451
452 return result;
453}