blob: ae1158c03774a098ee05e7908b6200ad95c6ae3f [file] [log] [blame]
James Morrisseyf2f9bb52014-02-10 16:18:59 +00001/*
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#ifndef __IO_H__
32#define __IO_H__
33
Dan Handleya4cb68e2014-04-23 13:47:06 +010034#include <stdint.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010035#include <stdio.h> /* For ssize_t */
James Morrissey9d72b4e2014-02-10 17:04:32 +000036
James Morrisseyf2f9bb52014-02-10 16:18:59 +000037
38/* Device type which can be used to enable policy decisions about which device
39 * to access */
40typedef enum {
41 IO_TYPE_INVALID,
42 IO_TYPE_SEMIHOSTING,
Harry Liebel561cd332014-02-14 14:42:48 +000043 IO_TYPE_MEMMAP,
44 IO_TYPE_FIRMWARE_IMAGE_PACKAGE,
James Morrisseyf2f9bb52014-02-10 16:18:59 +000045 IO_TYPE_MAX
Dan Handleye2712bc2014-04-10 15:37:22 +010046} io_type_t;
James Morrisseyf2f9bb52014-02-10 16:18:59 +000047
48
49/* Modes used when seeking data on a supported device */
50typedef enum {
51 IO_SEEK_INVALID,
52 IO_SEEK_SET,
53 IO_SEEK_END,
54 IO_SEEK_CUR,
55 IO_SEEK_MAX
Dan Handleye2712bc2014-04-10 15:37:22 +010056} io_seek_mode_t;
James Morrisseyf2f9bb52014-02-10 16:18:59 +000057
58
59/* Connector type, providing a means of identifying a device to open */
60struct io_dev_connector;
61
James Morrisseyf2f9bb52014-02-10 16:18:59 +000062
63/* File specification - used to refer to data on a device supporting file-like
64 * entities */
Dan Handleye2712bc2014-04-10 15:37:22 +010065typedef struct io_file_spec {
James Morrisseyf2f9bb52014-02-10 16:18:59 +000066 const char *path;
67 unsigned int mode;
Dan Handleye2712bc2014-04-10 15:37:22 +010068} io_file_spec_t;
James Morrisseyf2f9bb52014-02-10 16:18:59 +000069
70
71/* Block specification - used to refer to data on a device supporting
72 * block-like entities */
Dan Handleye2712bc2014-04-10 15:37:22 +010073typedef struct io_block_spec {
Dan Handleya4cb68e2014-04-23 13:47:06 +010074 size_t offset;
James Morrisseyf2f9bb52014-02-10 16:18:59 +000075 size_t length;
Dan Handleye2712bc2014-04-10 15:37:22 +010076} io_block_spec_t;
James Morrisseyf2f9bb52014-02-10 16:18:59 +000077
78
79/* Access modes used when accessing data on a device */
80#define IO_MODE_INVALID (0)
81#define IO_MODE_RO (1 << 0)
82#define IO_MODE_RW (1 << 1)
83
84
85/* Return codes reported by 'io_*' APIs */
86#define IO_SUCCESS (0)
87#define IO_FAIL (-1)
88#define IO_NOT_SUPPORTED (-2)
89#define IO_RESOURCES_EXHAUSTED (-3)
90
91
92/* Open a connection to a device */
Dan Handleya4cb68e2014-04-23 13:47:06 +010093int io_dev_open(const struct io_dev_connector *dev_con,
94 const uintptr_t dev_spec,
95 uintptr_t *dev_handle);
James Morrisseyf2f9bb52014-02-10 16:18:59 +000096
97
98/* Initialise a device explicitly - to permit lazy initialisation or
99 * re-initialisation */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100100int io_dev_init(uintptr_t dev_handle, const uintptr_t init_params);
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000101
102/* TODO: Consider whether an explicit "shutdown" API should be included */
103
104/* Close a connection to a device */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100105int io_dev_close(uintptr_t dev_handle);
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000106
107
108/* Synchronous operations */
Dan Handleya4cb68e2014-04-23 13:47:06 +0100109int io_open(uintptr_t dev_handle, const uintptr_t spec, uintptr_t *handle);
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000110
Dan Handleya4cb68e2014-04-23 13:47:06 +0100111int io_seek(uintptr_t handle, io_seek_mode_t mode, ssize_t offset);
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000112
Dan Handleya4cb68e2014-04-23 13:47:06 +0100113int io_size(uintptr_t handle, size_t *length);
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000114
Dan Handleya4cb68e2014-04-23 13:47:06 +0100115int io_read(uintptr_t handle, uintptr_t buffer, size_t length,
116 size_t *length_read);
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000117
Dan Handleya4cb68e2014-04-23 13:47:06 +0100118int io_write(uintptr_t handle, const uintptr_t buffer, size_t length,
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000119 size_t *length_written);
120
Dan Handleya4cb68e2014-04-23 13:47:06 +0100121int io_close(uintptr_t handle);
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000122
123
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000124#endif /* __IO_H__ */