blob: 02f85d603cb07e3c1029feb766a9a8ebd862c116 [file] [log] [blame]
Harry Liebel561cd332014-02-14 14:42:48 +00001/*
Scott Brandenb6595bb2016-07-08 12:09:23 -07002 * Copyright (c) 2014-2020, 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;
Scott Brandenb6595bb2016-07-08 12:09:23 -070049 uint16_t plat_toc_flag;
Ruchika Gupta246e45b2018-06-27 12:18:22 +053050} fip_dev_state_t;
51
Ambroise Vincentb237bca2019-02-13 15:58:00 +000052static const uuid_t uuid_null;
Ruchika Gupta246e45b2018-06-27 12:18:22 +053053/*
54 * Only one file can be open across all FIP device
55 * as backends like io_memmap don't support
56 * multiple open files. The file state and
57 * backend handle should be maintained per FIP device
58 * if the same support is available in the backend
59 */
Dan Handleye2712bc2014-04-10 15:37:22 +010060static file_state_t current_file = {0};
Dan Handleya4cb68e2014-04-23 13:47:06 +010061static uintptr_t backend_dev_handle;
62static uintptr_t backend_image_spec;
Harry Liebel561cd332014-02-14 14:42:48 +000063
Ruchika Gupta246e45b2018-06-27 12:18:22 +053064static fip_dev_state_t state_pool[MAX_FIP_DEVICES];
65static io_dev_info_t dev_info_pool[MAX_FIP_DEVICES];
66
67/* Track number of allocated fip devices */
68static unsigned int fip_dev_count;
Harry Liebel561cd332014-02-14 14:42:48 +000069
70/* Firmware Image Package driver functions */
Dan Handleya4cb68e2014-04-23 13:47:06 +010071static int fip_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info);
72static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
Dan Handleye2712bc2014-04-10 15:37:22 +010073 io_entity_t *entity);
74static int fip_file_len(io_entity_t *entity, size_t *length);
Dan Handleya4cb68e2014-04-23 13:47:06 +010075static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
Harry Liebel561cd332014-02-14 14:42:48 +000076 size_t *length_read);
Dan Handleye2712bc2014-04-10 15:37:22 +010077static int fip_file_close(io_entity_t *entity);
Dan Handleya4cb68e2014-04-23 13:47:06 +010078static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params);
Dan Handleye2712bc2014-04-10 15:37:22 +010079static int fip_dev_close(io_dev_info_t *dev_info);
Harry Liebel561cd332014-02-14 14:42:48 +000080
Harry Liebel561cd332014-02-14 14:42:48 +000081
82/* Return 0 for equal uuids. */
83static inline int compare_uuids(const uuid_t *uuid1, const uuid_t *uuid2)
84{
85 return memcmp(uuid1, uuid2, sizeof(uuid_t));
86}
87
88
Dan Handleye2712bc2014-04-10 15:37:22 +010089static inline int is_valid_header(fip_toc_header_t *header)
Harry Liebel561cd332014-02-14 14:42:48 +000090{
91 if ((header->name == TOC_HEADER_NAME) && (header->serial_number != 0)) {
92 return 1;
93 } else {
94 return 0;
95 }
96}
97
98
Harry Liebel561cd332014-02-14 14:42:48 +000099/* Identify the device type as a virtual driver */
Roberto Vargas05712702018-02-12 12:36:17 +0000100static io_type_t device_type_fip(void)
Harry Liebel561cd332014-02-14 14:42:48 +0000101{
102 return IO_TYPE_FIRMWARE_IMAGE_PACKAGE;
103}
104
105
Dan Handleya4cb68e2014-04-23 13:47:06 +0100106static const io_dev_connector_t fip_dev_connector = {
Harry Liebel561cd332014-02-14 14:42:48 +0000107 .dev_open = fip_dev_open
108};
109
110
Dan Handleya4cb68e2014-04-23 13:47:06 +0100111static const io_dev_funcs_t fip_dev_funcs = {
Harry Liebel561cd332014-02-14 14:42:48 +0000112 .type = device_type_fip,
113 .open = fip_file_open,
114 .seek = NULL,
115 .size = fip_file_len,
116 .read = fip_file_read,
117 .write = NULL,
118 .close = fip_file_close,
119 .dev_init = fip_dev_init,
120 .dev_close = fip_dev_close,
121};
122
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530123/* Locate a file state in the pool, specified by address */
124static int find_first_fip_state(const uintptr_t dev_spec,
125 unsigned int *index_out)
126{
127 int result = -ENOENT;
128 unsigned int index;
Harry Liebel561cd332014-02-14 14:42:48 +0000129
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530130 for (index = 0; index < (unsigned int)MAX_FIP_DEVICES; ++index) {
131 /* dev_spec is used as identifier since it's unique */
132 if (state_pool[index].dev_spec == dev_spec) {
133 result = 0;
134 *index_out = index;
135 break;
136 }
137 }
138 return result;
139}
Harry Liebel561cd332014-02-14 14:42:48 +0000140
141
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530142/* Allocate a device info from the pool and return a pointer to it */
143static int allocate_dev_info(io_dev_info_t **dev_info)
144{
145 int result = -ENOMEM;
146
147 assert(dev_info != NULL);
148
149 if (fip_dev_count < (unsigned int)MAX_FIP_DEVICES) {
150 unsigned int index = 0;
151
152 result = find_first_fip_state(0, &index);
153 assert(result == 0);
154 /* initialize dev_info */
155 dev_info_pool[index].funcs = &fip_dev_funcs;
156 dev_info_pool[index].info =
157 (uintptr_t)&state_pool[index];
158 *dev_info = &dev_info_pool[index];
159 ++fip_dev_count;
160 }
161
162 return result;
163}
164
165/* Release a device info to the pool */
166static int free_dev_info(io_dev_info_t *dev_info)
167{
168 int result;
169 unsigned int index = 0;
170 fip_dev_state_t *state;
171
172 assert(dev_info != NULL);
173
174 state = (fip_dev_state_t *)dev_info->info;
175 result = find_first_fip_state(state->dev_spec, &index);
176 if (result == 0) {
177 /* free if device info is valid */
178 zeromem(state, sizeof(fip_dev_state_t));
179 --fip_dev_count;
180 }
181
182 return result;
183}
184
185/*
186 * Multiple FIP devices can be opened depending on the value of
187 * MAX_FIP_DEVICES. Given that there is only one backend, only a
188 * single file can be open at a time by any FIP device.
189 */
190static int fip_dev_open(const uintptr_t dev_spec,
Dan Handleye2712bc2014-04-10 15:37:22 +0100191 io_dev_info_t **dev_info)
Harry Liebel561cd332014-02-14 14:42:48 +0000192{
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530193 int result;
194 io_dev_info_t *info;
195 fip_dev_state_t *state;
196
Harry Liebel561cd332014-02-14 14:42:48 +0000197 assert(dev_info != NULL);
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530198#if MAX_FIP_DEVICES > 1
199 assert(dev_spec != (uintptr_t)NULL);
200#endif
201
202 result = allocate_dev_info(&info);
203 if (result != 0)
204 return -ENOMEM;
205
206 state = (fip_dev_state_t *)info->info;
207
208 state->dev_spec = dev_spec;
209
210 *dev_info = info;
Harry Liebel561cd332014-02-14 14:42:48 +0000211
Juan Castillo6e762062015-11-02 10:47:01 +0000212 return 0;
Harry Liebel561cd332014-02-14 14:42:48 +0000213}
214
215
216/* Do some basic package checks. */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100217static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params)
Harry Liebel561cd332014-02-14 14:42:48 +0000218{
Juan Castillo6e762062015-11-02 10:47:01 +0000219 int result;
Juan Castillo3a66aca2015-04-13 17:36:19 +0100220 unsigned int image_id = (unsigned int)init_params;
Dan Handleya4cb68e2014-04-23 13:47:06 +0100221 uintptr_t backend_handle;
Dan Handleye2712bc2014-04-10 15:37:22 +0100222 fip_toc_header_t header;
Harry Liebel561cd332014-02-14 14:42:48 +0000223 size_t bytes_read;
Scott Brandenb6595bb2016-07-08 12:09:23 -0700224 fip_dev_state_t *state;
225
226 assert(dev_info != NULL);
227
228 state = (fip_dev_state_t *)dev_info->info;
Harry Liebel561cd332014-02-14 14:42:48 +0000229
230 /* Obtain a reference to the image by querying the platform layer */
Juan Castillo3a66aca2015-04-13 17:36:19 +0100231 result = plat_get_image_source(image_id, &backend_dev_handle,
Harry Liebel561cd332014-02-14 14:42:48 +0000232 &backend_image_spec);
Juan Castillo6e762062015-11-02 10:47:01 +0000233 if (result != 0) {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100234 WARN("Failed to obtain reference to image id=%u (%i)\n",
235 image_id, result);
Juan Castillo6e762062015-11-02 10:47:01 +0000236 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000237 goto fip_dev_init_exit;
238 }
239
240 /* Attempt to access the FIP image */
241 result = io_open(backend_dev_handle, backend_image_spec,
242 &backend_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000243 if (result != 0) {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100244 WARN("Failed to access image id=%u (%i)\n", image_id, result);
Juan Castillo6e762062015-11-02 10:47:01 +0000245 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000246 goto fip_dev_init_exit;
247 }
248
Dan Handleya4cb68e2014-04-23 13:47:06 +0100249 result = io_read(backend_handle, (uintptr_t)&header, sizeof(header),
250 &bytes_read);
Juan Castillo6e762062015-11-02 10:47:01 +0000251 if (result == 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000252 if (!is_valid_header(&header)) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000253 WARN("Firmware Image Package header check failed.\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000254 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000255 } else {
Dan Handley91b624e2014-07-29 17:14:00 +0100256 VERBOSE("FIP header looks OK.\n");
Scott Brandenb6595bb2016-07-08 12:09:23 -0700257 /*
258 * Store 16-bit Platform ToC flags field which occupies
259 * bits [32-47] in fip header.
260 */
261 state->plat_toc_flag = (header.flags >> 32) & 0xffff;
Harry Liebel561cd332014-02-14 14:42:48 +0000262 }
263 }
264
265 io_close(backend_handle);
266
267 fip_dev_init_exit:
268 return result;
269}
270
271/* Close a connection to the FIP device */
Dan Handleye2712bc2014-04-10 15:37:22 +0100272static int fip_dev_close(io_dev_info_t *dev_info)
Harry Liebel561cd332014-02-14 14:42:48 +0000273{
274 /* TODO: Consider tracking open files and cleaning them up here */
275
276 /* Clear the backend. */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100277 backend_dev_handle = (uintptr_t)NULL;
278 backend_image_spec = (uintptr_t)NULL;
Harry Liebel561cd332014-02-14 14:42:48 +0000279
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530280 return free_dev_info(dev_info);
Harry Liebel561cd332014-02-14 14:42:48 +0000281}
282
283
284/* Open a file for access from package. */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100285static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
Dan Handleye2712bc2014-04-10 15:37:22 +0100286 io_entity_t *entity)
Harry Liebel561cd332014-02-14 14:42:48 +0000287{
Juan Castillo6e762062015-11-02 10:47:01 +0000288 int result;
Dan Handleya4cb68e2014-04-23 13:47:06 +0100289 uintptr_t backend_handle;
Juan Castillo3a66aca2015-04-13 17:36:19 +0100290 const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec;
Harry Liebel561cd332014-02-14 14:42:48 +0000291 size_t bytes_read;
292 int found_file = 0;
293
Juan Castillo3a66aca2015-04-13 17:36:19 +0100294 assert(uuid_spec != NULL);
Harry Liebel561cd332014-02-14 14:42:48 +0000295 assert(entity != NULL);
296
297 /* Can only have one file open at a time for the moment. We need to
298 * track state like file cursor position. We know the header lives at
299 * offset zero, so this entry should never be zero for an active file.
300 * When the system supports dynamic memory allocation we can allow more
301 * than one open file at a time if needed.
302 */
303 if (current_file.entry.offset_address != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000304 WARN("fip_file_open : Only one open file at a time.\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000305 return -ENOMEM;
Harry Liebel561cd332014-02-14 14:42:48 +0000306 }
307
308 /* Attempt to access the FIP image */
309 result = io_open(backend_dev_handle, backend_image_spec,
310 &backend_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000311 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000312 WARN("Failed to open Firmware Image Package (%i)\n", result);
Juan Castillo6e762062015-11-02 10:47:01 +0000313 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000314 goto fip_file_open_exit;
315 }
316
317 /* Seek past the FIP header into the Table of Contents */
Yann Gautierf30cddc2019-04-16 11:35:19 +0200318 result = io_seek(backend_handle, IO_SEEK_SET,
319 (signed long long)sizeof(fip_toc_header_t));
Juan Castillo6e762062015-11-02 10:47:01 +0000320 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000321 WARN("fip_file_open: failed to seek\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000322 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000323 goto fip_file_open_close;
324 }
325
Harry Liebel561cd332014-02-14 14:42:48 +0000326 found_file = 0;
327 do {
Dan Handleya4cb68e2014-04-23 13:47:06 +0100328 result = io_read(backend_handle,
329 (uintptr_t)&current_file.entry,
Harry Liebel561cd332014-02-14 14:42:48 +0000330 sizeof(current_file.entry),
331 &bytes_read);
Juan Castillo6e762062015-11-02 10:47:01 +0000332 if (result == 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000333 if (compare_uuids(&current_file.entry.uuid,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100334 &uuid_spec->uuid) == 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000335 found_file = 1;
336 break;
337 }
338 } else {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000339 WARN("Failed to read FIP (%i)\n", result);
Harry Liebel561cd332014-02-14 14:42:48 +0000340 goto fip_file_open_close;
341 }
342 } while (compare_uuids(&current_file.entry.uuid, &uuid_null) != 0);
343
344 if (found_file == 1) {
345 /* All fine. Update entity info with file state and return. Set
346 * the file position to 0. The 'current_file.entry' holds the
347 * base and size of the file.
348 */
349 current_file.file_pos = 0;
350 entity->info = (uintptr_t)&current_file;
351 } else {
352 /* Did not find the file in the FIP. */
Jeenu Viswambharandd3dc322014-02-20 11:51:00 +0000353 current_file.entry.offset_address = 0;
Juan Castillo6e762062015-11-02 10:47:01 +0000354 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000355 }
356
357 fip_file_open_close:
358 io_close(backend_handle);
359
360 fip_file_open_exit:
361 return result;
362}
363
364
365/* Return the size of a file in package */
Dan Handleye2712bc2014-04-10 15:37:22 +0100366static int fip_file_len(io_entity_t *entity, size_t *length)
Harry Liebel561cd332014-02-14 14:42:48 +0000367{
368 assert(entity != NULL);
369 assert(length != NULL);
370
Dan Handleye2712bc2014-04-10 15:37:22 +0100371 *length = ((file_state_t *)entity->info)->entry.size;
Harry Liebel561cd332014-02-14 14:42:48 +0000372
Juan Castillo6e762062015-11-02 10:47:01 +0000373 return 0;
Harry Liebel561cd332014-02-14 14:42:48 +0000374}
375
376
377/* Read data from a file in package */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100378static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
Harry Liebel561cd332014-02-14 14:42:48 +0000379 size_t *length_read)
380{
Juan Castillo6e762062015-11-02 10:47:01 +0000381 int result;
Dan Handleye2712bc2014-04-10 15:37:22 +0100382 file_state_t *fp;
Harry Liebel561cd332014-02-14 14:42:48 +0000383 size_t file_offset;
384 size_t bytes_read;
Dan Handleya4cb68e2014-04-23 13:47:06 +0100385 uintptr_t backend_handle;
Harry Liebel561cd332014-02-14 14:42:48 +0000386
387 assert(entity != NULL);
Harry Liebel561cd332014-02-14 14:42:48 +0000388 assert(length_read != NULL);
Dan Handleya4cb68e2014-04-23 13:47:06 +0100389 assert(entity->info != (uintptr_t)NULL);
Harry Liebel561cd332014-02-14 14:42:48 +0000390
391 /* Open the backend, attempt to access the blob image */
392 result = io_open(backend_dev_handle, backend_image_spec,
393 &backend_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000394 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000395 WARN("Failed to open FIP (%i)\n", result);
Juan Castillo6e762062015-11-02 10:47:01 +0000396 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000397 goto fip_file_read_exit;
398 }
399
Dan Handleye2712bc2014-04-10 15:37:22 +0100400 fp = (file_state_t *)entity->info;
Harry Liebel561cd332014-02-14 14:42:48 +0000401
402 /* Seek to the position in the FIP where the payload lives */
403 file_offset = fp->entry.offset_address + fp->file_pos;
Yann Gautierf30cddc2019-04-16 11:35:19 +0200404 result = io_seek(backend_handle, IO_SEEK_SET,
405 (signed long long)file_offset);
Juan Castillo6e762062015-11-02 10:47:01 +0000406 if (result != 0) {
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000407 WARN("fip_file_read: failed to seek\n");
Juan Castillo6e762062015-11-02 10:47:01 +0000408 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000409 goto fip_file_read_close;
410 }
411
412 result = io_read(backend_handle, buffer, length, &bytes_read);
Juan Castillo6e762062015-11-02 10:47:01 +0000413 if (result != 0) {
Harry Liebel561cd332014-02-14 14:42:48 +0000414 /* We cannot read our data. Fail. */
Jeenu Viswambharan08c28d52014-02-20 12:03:31 +0000415 WARN("Failed to read payload (%i)\n", result);
Juan Castillo6e762062015-11-02 10:47:01 +0000416 result = -ENOENT;
Harry Liebel561cd332014-02-14 14:42:48 +0000417 goto fip_file_read_close;
418 } else {
419 /* Set caller length and new file position. */
420 *length_read = bytes_read;
421 fp->file_pos += bytes_read;
422 }
423
424/* Close the backend. */
425 fip_file_read_close:
426 io_close(backend_handle);
427
428 fip_file_read_exit:
429 return result;
430}
431
432
433/* Close a file in package */
Dan Handleye2712bc2014-04-10 15:37:22 +0100434static int fip_file_close(io_entity_t *entity)
Harry Liebel561cd332014-02-14 14:42:48 +0000435{
436 /* Clear our current file pointer.
437 * If we had malloc() we would free() here.
438 */
439 if (current_file.entry.offset_address != 0) {
Douglas Raillarda8954fc2017-01-26 15:54:44 +0000440 zeromem(&current_file, sizeof(current_file));
Harry Liebel561cd332014-02-14 14:42:48 +0000441 }
442
443 /* Clear the Entity info. */
444 entity->info = 0;
445
Juan Castillo6e762062015-11-02 10:47:01 +0000446 return 0;
Harry Liebel561cd332014-02-14 14:42:48 +0000447}
448
449/* Exported functions */
450
451/* Register the Firmware Image Package driver with the IO abstraction */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100452int register_io_dev_fip(const io_dev_connector_t **dev_con)
Harry Liebel561cd332014-02-14 14:42:48 +0000453{
Juan Castillo6e762062015-11-02 10:47:01 +0000454 int result;
Harry Liebel561cd332014-02-14 14:42:48 +0000455 assert(dev_con != NULL);
456
Ruchika Gupta246e45b2018-06-27 12:18:22 +0530457 /*
458 * Since dev_info isn't really used in io_register_device, always
459 * use the same device info at here instead.
460 */
461 result = io_register_device(&dev_info_pool[0]);
Juan Castillo6e762062015-11-02 10:47:01 +0000462 if (result == 0)
Harry Liebel561cd332014-02-14 14:42:48 +0000463 *dev_con = &fip_dev_connector;
464
465 return result;
466}
Scott Brandenb6595bb2016-07-08 12:09:23 -0700467
468/* Function to retrieve plat_toc_flags, previously saved in FIP dev */
469int fip_dev_get_plat_toc_flag(io_dev_info_t *dev_info, uint16_t *plat_toc_flag)
470{
471 fip_dev_state_t *state;
472
473 assert(dev_info != NULL);
474
475 state = (fip_dev_state_t *)dev_info->info;
476
477 *plat_toc_flag = state->plat_toc_flag;
478
479 return 0;
480}