xref: /rk3399_ARM-atf/drivers/io/io_fip.c (revision e098e244a25017d8298d63a8bf04e9151b52ac3a)
1561cd33eSHarry Liebel /*
2561cd33eSHarry Liebel  * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
3561cd33eSHarry Liebel  *
4561cd33eSHarry Liebel  * Redistribution and use in source and binary forms, with or without
5561cd33eSHarry Liebel  * modification, are permitted provided that the following conditions are met:
6561cd33eSHarry Liebel  *
7561cd33eSHarry Liebel  * Redistributions of source code must retain the above copyright notice, this
8561cd33eSHarry Liebel  * list of conditions and the following disclaimer.
9561cd33eSHarry Liebel  *
10561cd33eSHarry Liebel  * Redistributions in binary form must reproduce the above copyright notice,
11561cd33eSHarry Liebel  * this list of conditions and the following disclaimer in the documentation
12561cd33eSHarry Liebel  * and/or other materials provided with the distribution.
13561cd33eSHarry Liebel  *
14561cd33eSHarry Liebel  * Neither the name of ARM nor the names of its contributors may be used
15561cd33eSHarry Liebel  * to endorse or promote products derived from this software without specific
16561cd33eSHarry Liebel  * prior written permission.
17561cd33eSHarry Liebel  *
18561cd33eSHarry Liebel  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19561cd33eSHarry Liebel  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20561cd33eSHarry Liebel  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21561cd33eSHarry Liebel  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22561cd33eSHarry Liebel  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23561cd33eSHarry Liebel  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24561cd33eSHarry Liebel  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25561cd33eSHarry Liebel  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26561cd33eSHarry Liebel  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27561cd33eSHarry Liebel  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28561cd33eSHarry Liebel  * POSSIBILITY OF SUCH DAMAGE.
29561cd33eSHarry Liebel  */
30561cd33eSHarry Liebel 
31561cd33eSHarry Liebel #include <assert.h>
325f0cdb05SDan Handley #include <bl_common.h>
3397043ac9SDan Handley #include <debug.h>
3497043ac9SDan Handley #include <errno.h>
3535e98e55SDan Handley #include <firmware_image_package.h>
3635e98e55SDan Handley #include <io_driver.h>
3735e98e55SDan Handley #include <io_fip.h>
3897043ac9SDan Handley #include <io_storage.h>
3997043ac9SDan Handley #include <platform.h>
405f0cdb05SDan Handley #include <platform_def.h>
4197043ac9SDan Handley #include <stdint.h>
4297043ac9SDan Handley #include <string.h>
4397043ac9SDan Handley #include <uuid.h>
44561cd33eSHarry Liebel 
45561cd33eSHarry Liebel /* Useful for printing UUIDs when debugging.*/
46561cd33eSHarry Liebel #define PRINT_UUID2(x)								\
47561cd33eSHarry Liebel 	"%08x-%04hx-%04hx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx",	\
48561cd33eSHarry Liebel 		x.time_low, x.time_mid, x.time_hi_and_version,			\
49561cd33eSHarry Liebel 		x.clock_seq_hi_and_reserved, x.clock_seq_low,			\
50561cd33eSHarry Liebel 		x.node[0], x.node[1], x.node[2], x.node[3],			\
51561cd33eSHarry Liebel 		x.node[4], x.node[5]
52561cd33eSHarry Liebel 
53561cd33eSHarry Liebel typedef struct {
54561cd33eSHarry Liebel 	/* Put file_pos above the struct to allow {0} on static init.
55561cd33eSHarry Liebel 	 * It is a workaround for a known bug in GCC
56561cd33eSHarry Liebel 	 * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53119
57561cd33eSHarry Liebel 	 */
58561cd33eSHarry Liebel 	unsigned int file_pos;
59fb037bfbSDan Handley 	fip_toc_entry_t entry;
60fb037bfbSDan Handley } file_state_t;
61561cd33eSHarry Liebel 
62561cd33eSHarry Liebel static const uuid_t uuid_null = {0};
63fb037bfbSDan Handley static file_state_t current_file = {0};
64625de1d4SDan Handley static uintptr_t backend_dev_handle;
65625de1d4SDan Handley static uintptr_t backend_image_spec;
66561cd33eSHarry Liebel 
67561cd33eSHarry Liebel 
68561cd33eSHarry Liebel /* Firmware Image Package driver functions */
69625de1d4SDan Handley static int fip_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info);
70625de1d4SDan Handley static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
71fb037bfbSDan Handley 			  io_entity_t *entity);
72fb037bfbSDan Handley static int fip_file_len(io_entity_t *entity, size_t *length);
73625de1d4SDan Handley static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
74561cd33eSHarry Liebel 			  size_t *length_read);
75fb037bfbSDan Handley static int fip_file_close(io_entity_t *entity);
76625de1d4SDan Handley static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params);
77fb037bfbSDan Handley static int fip_dev_close(io_dev_info_t *dev_info);
78561cd33eSHarry Liebel 
79561cd33eSHarry Liebel 
80561cd33eSHarry Liebel /* Return 0 for equal uuids. */
81561cd33eSHarry Liebel static inline int compare_uuids(const uuid_t *uuid1, const uuid_t *uuid2)
82561cd33eSHarry Liebel {
83561cd33eSHarry Liebel 	return memcmp(uuid1, uuid2, sizeof(uuid_t));
84561cd33eSHarry Liebel }
85561cd33eSHarry Liebel 
86561cd33eSHarry Liebel 
87561cd33eSHarry Liebel /* TODO: We could check version numbers or do a package checksum? */
88fb037bfbSDan Handley static inline int is_valid_header(fip_toc_header_t *header)
89561cd33eSHarry Liebel {
90561cd33eSHarry Liebel 	if ((header->name == TOC_HEADER_NAME) && (header->serial_number != 0)) {
91561cd33eSHarry Liebel 		return 1;
92561cd33eSHarry Liebel 	} else {
93561cd33eSHarry Liebel 		return 0;
94561cd33eSHarry Liebel 	}
95561cd33eSHarry Liebel }
96561cd33eSHarry Liebel 
97561cd33eSHarry Liebel 
98561cd33eSHarry Liebel /* Identify the device type as a virtual driver */
99fb037bfbSDan Handley io_type_t device_type_fip(void)
100561cd33eSHarry Liebel {
101561cd33eSHarry Liebel 	return IO_TYPE_FIRMWARE_IMAGE_PACKAGE;
102561cd33eSHarry Liebel }
103561cd33eSHarry Liebel 
104561cd33eSHarry Liebel 
105625de1d4SDan Handley static const io_dev_connector_t fip_dev_connector = {
106561cd33eSHarry Liebel 	.dev_open = fip_dev_open
107561cd33eSHarry Liebel };
108561cd33eSHarry Liebel 
109561cd33eSHarry Liebel 
110625de1d4SDan Handley static const io_dev_funcs_t fip_dev_funcs = {
111561cd33eSHarry Liebel 	.type = device_type_fip,
112561cd33eSHarry Liebel 	.open = fip_file_open,
113561cd33eSHarry Liebel 	.seek = NULL,
114561cd33eSHarry Liebel 	.size = fip_file_len,
115561cd33eSHarry Liebel 	.read = fip_file_read,
116561cd33eSHarry Liebel 	.write = NULL,
117561cd33eSHarry Liebel 	.close = fip_file_close,
118561cd33eSHarry Liebel 	.dev_init = fip_dev_init,
119561cd33eSHarry Liebel 	.dev_close = fip_dev_close,
120561cd33eSHarry Liebel };
121561cd33eSHarry Liebel 
122561cd33eSHarry Liebel 
123625de1d4SDan Handley /* No state associated with this device so structure can be const */
124625de1d4SDan Handley static const io_dev_info_t fip_dev_info = {
125561cd33eSHarry Liebel 	.funcs = &fip_dev_funcs,
126561cd33eSHarry Liebel 	.info = (uintptr_t)NULL
127561cd33eSHarry Liebel };
128561cd33eSHarry Liebel 
129561cd33eSHarry Liebel 
130561cd33eSHarry Liebel /* Open a connection to the FIP device */
131625de1d4SDan Handley static int fip_dev_open(const uintptr_t dev_spec __attribute__((unused)),
132fb037bfbSDan Handley 			 io_dev_info_t **dev_info)
133561cd33eSHarry Liebel {
134561cd33eSHarry Liebel 	assert(dev_info != NULL);
135625de1d4SDan Handley 	*dev_info = (io_dev_info_t *)&fip_dev_info; /* cast away const */
136561cd33eSHarry Liebel 
137*e098e244SJuan Castillo 	return 0;
138561cd33eSHarry Liebel }
139561cd33eSHarry Liebel 
140561cd33eSHarry Liebel 
141561cd33eSHarry Liebel /* Do some basic package checks. */
142625de1d4SDan Handley static int fip_dev_init(io_dev_info_t *dev_info, const uintptr_t init_params)
143561cd33eSHarry Liebel {
144*e098e244SJuan Castillo 	int result;
14516948ae1SJuan Castillo 	unsigned int image_id = (unsigned int)init_params;
146625de1d4SDan Handley 	uintptr_t backend_handle;
147fb037bfbSDan Handley 	fip_toc_header_t header;
148561cd33eSHarry Liebel 	size_t bytes_read;
149561cd33eSHarry Liebel 
150561cd33eSHarry Liebel 	/* Obtain a reference to the image by querying the platform layer */
15116948ae1SJuan Castillo 	result = plat_get_image_source(image_id, &backend_dev_handle,
152561cd33eSHarry Liebel 				       &backend_image_spec);
153*e098e244SJuan Castillo 	if (result != 0) {
15416948ae1SJuan Castillo 		WARN("Failed to obtain reference to image id=%u (%i)\n",
15516948ae1SJuan Castillo 			image_id, result);
156*e098e244SJuan Castillo 		result = -ENOENT;
157561cd33eSHarry Liebel 		goto fip_dev_init_exit;
158561cd33eSHarry Liebel 	}
159561cd33eSHarry Liebel 
160561cd33eSHarry Liebel 	/* Attempt to access the FIP image */
161561cd33eSHarry Liebel 	result = io_open(backend_dev_handle, backend_image_spec,
162561cd33eSHarry Liebel 			 &backend_handle);
163*e098e244SJuan Castillo 	if (result != 0) {
16416948ae1SJuan Castillo 		WARN("Failed to access image id=%u (%i)\n", image_id, result);
165*e098e244SJuan Castillo 		result = -ENOENT;
166561cd33eSHarry Liebel 		goto fip_dev_init_exit;
167561cd33eSHarry Liebel 	}
168561cd33eSHarry Liebel 
169625de1d4SDan Handley 	result = io_read(backend_handle, (uintptr_t)&header, sizeof(header),
170625de1d4SDan Handley 			&bytes_read);
171*e098e244SJuan Castillo 	if (result == 0) {
172561cd33eSHarry Liebel 		if (!is_valid_header(&header)) {
17308c28d53SJeenu Viswambharan 			WARN("Firmware Image Package header check failed.\n");
174*e098e244SJuan Castillo 			result = -ENOENT;
175561cd33eSHarry Liebel 		} else {
1766ad2e461SDan Handley 			VERBOSE("FIP header looks OK.\n");
177561cd33eSHarry Liebel 		}
178561cd33eSHarry Liebel 	}
179561cd33eSHarry Liebel 
180561cd33eSHarry Liebel 	io_close(backend_handle);
181561cd33eSHarry Liebel 
182561cd33eSHarry Liebel  fip_dev_init_exit:
183561cd33eSHarry Liebel 	return result;
184561cd33eSHarry Liebel }
185561cd33eSHarry Liebel 
186561cd33eSHarry Liebel /* Close a connection to the FIP device */
187fb037bfbSDan Handley static int fip_dev_close(io_dev_info_t *dev_info)
188561cd33eSHarry Liebel {
189561cd33eSHarry Liebel 	/* TODO: Consider tracking open files and cleaning them up here */
190561cd33eSHarry Liebel 
191561cd33eSHarry Liebel 	/* Clear the backend. */
192625de1d4SDan Handley 	backend_dev_handle = (uintptr_t)NULL;
193625de1d4SDan Handley 	backend_image_spec = (uintptr_t)NULL;
194561cd33eSHarry Liebel 
195*e098e244SJuan Castillo 	return 0;
196561cd33eSHarry Liebel }
197561cd33eSHarry Liebel 
198561cd33eSHarry Liebel 
199561cd33eSHarry Liebel /* Open a file for access from package. */
200625de1d4SDan Handley static int fip_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
201fb037bfbSDan Handley 			 io_entity_t *entity)
202561cd33eSHarry Liebel {
203*e098e244SJuan Castillo 	int result;
204625de1d4SDan Handley 	uintptr_t backend_handle;
20516948ae1SJuan Castillo 	const io_uuid_spec_t *uuid_spec = (io_uuid_spec_t *)spec;
206561cd33eSHarry Liebel 	size_t bytes_read;
207561cd33eSHarry Liebel 	int found_file = 0;
208561cd33eSHarry Liebel 
20916948ae1SJuan Castillo 	assert(uuid_spec != NULL);
210561cd33eSHarry Liebel 	assert(entity != NULL);
211561cd33eSHarry Liebel 
212561cd33eSHarry Liebel 	/* Can only have one file open at a time for the moment. We need to
213561cd33eSHarry Liebel 	 * track state like file cursor position. We know the header lives at
214561cd33eSHarry Liebel 	 * offset zero, so this entry should never be zero for an active file.
215561cd33eSHarry Liebel 	 * When the system supports dynamic memory allocation we can allow more
216561cd33eSHarry Liebel 	 * than one open file at a time if needed.
217561cd33eSHarry Liebel 	 */
218561cd33eSHarry Liebel 	if (current_file.entry.offset_address != 0) {
21908c28d53SJeenu Viswambharan 		WARN("fip_file_open : Only one open file at a time.\n");
220*e098e244SJuan Castillo 		return -ENOMEM;
221561cd33eSHarry Liebel 	}
222561cd33eSHarry Liebel 
223561cd33eSHarry Liebel 	/* Attempt to access the FIP image */
224561cd33eSHarry Liebel 	result = io_open(backend_dev_handle, backend_image_spec,
225561cd33eSHarry Liebel 			 &backend_handle);
226*e098e244SJuan Castillo 	if (result != 0) {
22708c28d53SJeenu Viswambharan 		WARN("Failed to open Firmware Image Package (%i)\n", result);
228*e098e244SJuan Castillo 		result = -ENOENT;
229561cd33eSHarry Liebel 		goto fip_file_open_exit;
230561cd33eSHarry Liebel 	}
231561cd33eSHarry Liebel 
232561cd33eSHarry Liebel 	/* Seek past the FIP header into the Table of Contents */
233fb037bfbSDan Handley 	result = io_seek(backend_handle, IO_SEEK_SET, sizeof(fip_toc_header_t));
234*e098e244SJuan Castillo 	if (result != 0) {
23508c28d53SJeenu Viswambharan 		WARN("fip_file_open: failed to seek\n");
236*e098e244SJuan Castillo 		result = -ENOENT;
237561cd33eSHarry Liebel 		goto fip_file_open_close;
238561cd33eSHarry Liebel 	}
239561cd33eSHarry Liebel 
240561cd33eSHarry Liebel 	found_file = 0;
241561cd33eSHarry Liebel 	do {
242625de1d4SDan Handley 		result = io_read(backend_handle,
243625de1d4SDan Handley 				 (uintptr_t)&current_file.entry,
244561cd33eSHarry Liebel 				 sizeof(current_file.entry),
245561cd33eSHarry Liebel 				 &bytes_read);
246*e098e244SJuan Castillo 		if (result == 0) {
247561cd33eSHarry Liebel 			if (compare_uuids(&current_file.entry.uuid,
24816948ae1SJuan Castillo 					  &uuid_spec->uuid) == 0) {
249561cd33eSHarry Liebel 				found_file = 1;
250561cd33eSHarry Liebel 				break;
251561cd33eSHarry Liebel 			}
252561cd33eSHarry Liebel 		} else {
25308c28d53SJeenu Viswambharan 			WARN("Failed to read FIP (%i)\n", result);
254561cd33eSHarry Liebel 			goto fip_file_open_close;
255561cd33eSHarry Liebel 		}
256561cd33eSHarry Liebel 	} while (compare_uuids(&current_file.entry.uuid, &uuid_null) != 0);
257561cd33eSHarry Liebel 
258561cd33eSHarry Liebel 	if (found_file == 1) {
259561cd33eSHarry Liebel 		/* All fine. Update entity info with file state and return. Set
260561cd33eSHarry Liebel 		 * the file position to 0. The 'current_file.entry' holds the
261561cd33eSHarry Liebel 		 * base and size of the file.
262561cd33eSHarry Liebel 		 */
263561cd33eSHarry Liebel 		current_file.file_pos = 0;
264561cd33eSHarry Liebel 		entity->info = (uintptr_t)&current_file;
265561cd33eSHarry Liebel 	} else {
266561cd33eSHarry Liebel 		/* Did not find the file in the FIP. */
267dd3dc32fSJeenu Viswambharan 		current_file.entry.offset_address = 0;
268*e098e244SJuan Castillo 		result = -ENOENT;
269561cd33eSHarry Liebel 	}
270561cd33eSHarry Liebel 
271561cd33eSHarry Liebel  fip_file_open_close:
272561cd33eSHarry Liebel 	io_close(backend_handle);
273561cd33eSHarry Liebel 
274561cd33eSHarry Liebel  fip_file_open_exit:
275561cd33eSHarry Liebel 	return result;
276561cd33eSHarry Liebel }
277561cd33eSHarry Liebel 
278561cd33eSHarry Liebel 
279561cd33eSHarry Liebel /* Return the size of a file in package */
280fb037bfbSDan Handley static int fip_file_len(io_entity_t *entity, size_t *length)
281561cd33eSHarry Liebel {
282561cd33eSHarry Liebel 	assert(entity != NULL);
283561cd33eSHarry Liebel 	assert(length != NULL);
284561cd33eSHarry Liebel 
285fb037bfbSDan Handley 	*length =  ((file_state_t *)entity->info)->entry.size;
286561cd33eSHarry Liebel 
287*e098e244SJuan Castillo 	return 0;
288561cd33eSHarry Liebel }
289561cd33eSHarry Liebel 
290561cd33eSHarry Liebel 
291561cd33eSHarry Liebel /* Read data from a file in package */
292625de1d4SDan Handley static int fip_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
293561cd33eSHarry Liebel 			  size_t *length_read)
294561cd33eSHarry Liebel {
295*e098e244SJuan Castillo 	int result;
296fb037bfbSDan Handley 	file_state_t *fp;
297561cd33eSHarry Liebel 	size_t file_offset;
298561cd33eSHarry Liebel 	size_t bytes_read;
299625de1d4SDan Handley 	uintptr_t backend_handle;
300561cd33eSHarry Liebel 
301561cd33eSHarry Liebel 	assert(entity != NULL);
302625de1d4SDan Handley 	assert(buffer != (uintptr_t)NULL);
303561cd33eSHarry Liebel 	assert(length_read != NULL);
304625de1d4SDan Handley 	assert(entity->info != (uintptr_t)NULL);
305561cd33eSHarry Liebel 
306561cd33eSHarry Liebel 	/* Open the backend, attempt to access the blob image */
307561cd33eSHarry Liebel 	result = io_open(backend_dev_handle, backend_image_spec,
308561cd33eSHarry Liebel 			 &backend_handle);
309*e098e244SJuan Castillo 	if (result != 0) {
31008c28d53SJeenu Viswambharan 		WARN("Failed to open FIP (%i)\n", result);
311*e098e244SJuan Castillo 		result = -ENOENT;
312561cd33eSHarry Liebel 		goto fip_file_read_exit;
313561cd33eSHarry Liebel 	}
314561cd33eSHarry Liebel 
315fb037bfbSDan Handley 	fp = (file_state_t *)entity->info;
316561cd33eSHarry Liebel 
317561cd33eSHarry Liebel 	/* Seek to the position in the FIP where the payload lives */
318561cd33eSHarry Liebel 	file_offset = fp->entry.offset_address + fp->file_pos;
319561cd33eSHarry Liebel 	result = io_seek(backend_handle, IO_SEEK_SET, file_offset);
320*e098e244SJuan Castillo 	if (result != 0) {
32108c28d53SJeenu Viswambharan 		WARN("fip_file_read: failed to seek\n");
322*e098e244SJuan Castillo 		result = -ENOENT;
323561cd33eSHarry Liebel 		goto fip_file_read_close;
324561cd33eSHarry Liebel 	}
325561cd33eSHarry Liebel 
326561cd33eSHarry Liebel 	result = io_read(backend_handle, buffer, length, &bytes_read);
327*e098e244SJuan Castillo 	if (result != 0) {
328561cd33eSHarry Liebel 		/* We cannot read our data. Fail. */
32908c28d53SJeenu Viswambharan 		WARN("Failed to read payload (%i)\n", result);
330*e098e244SJuan Castillo 		result = -ENOENT;
331561cd33eSHarry Liebel 		goto fip_file_read_close;
332561cd33eSHarry Liebel 	} else {
333561cd33eSHarry Liebel 		/* Set caller length and new file position. */
334561cd33eSHarry Liebel 		*length_read = bytes_read;
335561cd33eSHarry Liebel 		fp->file_pos += bytes_read;
336561cd33eSHarry Liebel 	}
337561cd33eSHarry Liebel 
338561cd33eSHarry Liebel /* Close the backend. */
339561cd33eSHarry Liebel  fip_file_read_close:
340561cd33eSHarry Liebel 	io_close(backend_handle);
341561cd33eSHarry Liebel 
342561cd33eSHarry Liebel  fip_file_read_exit:
343561cd33eSHarry Liebel 	return result;
344561cd33eSHarry Liebel }
345561cd33eSHarry Liebel 
346561cd33eSHarry Liebel 
347561cd33eSHarry Liebel /* Close a file in package */
348fb037bfbSDan Handley static int fip_file_close(io_entity_t *entity)
349561cd33eSHarry Liebel {
350561cd33eSHarry Liebel 	/* Clear our current file pointer.
351561cd33eSHarry Liebel 	 * If we had malloc() we would free() here.
352561cd33eSHarry Liebel 	 */
353561cd33eSHarry Liebel 	if (current_file.entry.offset_address != 0) {
354561cd33eSHarry Liebel 		memset(&current_file, 0, sizeof(current_file));
355561cd33eSHarry Liebel 	}
356561cd33eSHarry Liebel 
357561cd33eSHarry Liebel 	/* Clear the Entity info. */
358561cd33eSHarry Liebel 	entity->info = 0;
359561cd33eSHarry Liebel 
360*e098e244SJuan Castillo 	return 0;
361561cd33eSHarry Liebel }
362561cd33eSHarry Liebel 
363561cd33eSHarry Liebel /* Exported functions */
364561cd33eSHarry Liebel 
365561cd33eSHarry Liebel /* Register the Firmware Image Package driver with the IO abstraction */
366625de1d4SDan Handley int register_io_dev_fip(const io_dev_connector_t **dev_con)
367561cd33eSHarry Liebel {
368*e098e244SJuan Castillo 	int result;
369561cd33eSHarry Liebel 	assert(dev_con != NULL);
370561cd33eSHarry Liebel 
371561cd33eSHarry Liebel 	result = io_register_device(&fip_dev_info);
372*e098e244SJuan Castillo 	if (result == 0)
373561cd33eSHarry Liebel 		*dev_con = &fip_dev_connector;
374561cd33eSHarry Liebel 
375561cd33eSHarry Liebel 	return result;
376561cd33eSHarry Liebel }
377