io_semihosting.c 4.47 KB
Newer Older
1
2
3
/*
 * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
 */

#include <assert.h>
8
#include <io_driver.h>
9
#include <io_storage.h>
10
#include <semihosting.h>
11
12
13
14



/* Identify the device type as semihosting */
15
static io_type_t device_type_sh(void)
16
17
18
19
20
21
22
{
	return IO_TYPE_SEMIHOSTING;
}


/* Semi-hosting functions, device info and handle */

23
24
static int sh_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info);
static int sh_file_open(io_dev_info_t *dev_info, const uintptr_t spec,
25
26
27
		io_entity_t *entity);
static int sh_file_seek(io_entity_t *entity, int mode, ssize_t offset);
static int sh_file_len(io_entity_t *entity, size_t *length);
28
static int sh_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
29
		size_t *length_read);
30
static int sh_file_write(io_entity_t *entity, const uintptr_t buffer,
31
		size_t length, size_t *length_written);
32
static int sh_file_close(io_entity_t *entity);
33

34
static const io_dev_connector_t sh_dev_connector = {
35
36
37
38
	.dev_open = sh_dev_open
};


39
static const io_dev_funcs_t sh_dev_funcs = {
40
41
42
43
44
45
46
47
48
49
50
51
	.type = device_type_sh,
	.open = sh_file_open,
	.seek = sh_file_seek,
	.size = sh_file_len,
	.read = sh_file_read,
	.write = sh_file_write,
	.close = sh_file_close,
	.dev_init = NULL,	/* NOP */
	.dev_close = NULL,	/* NOP */
};


52
53
/* No state associated with this device so structure can be const */
static const io_dev_info_t sh_dev_info = {
54
55
56
57
58
59
	.funcs = &sh_dev_funcs,
	.info = (uintptr_t)NULL
};


/* Open a connection to the semi-hosting device */
60
61
static int sh_dev_open(const uintptr_t dev_spec __unused,
		io_dev_info_t **dev_info)
62
63
{
	assert(dev_info != NULL);
64
	*dev_info = (io_dev_info_t *)&sh_dev_info; /* cast away const */
65
	return 0;
66
67
68
69
}


/* Open a file on the semi-hosting device */
70
static int sh_file_open(io_dev_info_t *dev_info __unused,
71
		const uintptr_t spec, io_entity_t *entity)
72
{
73
	int result = -ENOENT;
dp-arm's avatar
dp-arm committed
74
	long sh_result;
75
	const io_file_spec_t *file_spec = (const io_file_spec_t *)spec;
76
77
78
79
80
81
82

	assert(file_spec != NULL);
	assert(entity != NULL);

	sh_result = semihosting_file_open(file_spec->path, file_spec->mode);

	if (sh_result > 0) {
83
		entity->info = (uintptr_t)sh_result;
84
		result = 0;
85
86
87
88
89
90
	}
	return result;
}


/* Seek to a particular file offset on the semi-hosting device */
91
static int sh_file_seek(io_entity_t *entity, int mode, ssize_t offset)
92
{
93
	long file_handle, sh_result;
94
95
96

	assert(entity != NULL);

97
	file_handle = (long)entity->info;
98
99
100

	sh_result = semihosting_file_seek(file_handle, offset);

101
	return (sh_result == 0) ? 0 : -ENOENT;
102
103
104
105
}


/* Return the size of a file on the semi-hosting device */
106
static int sh_file_len(io_entity_t *entity, size_t *length)
107
{
108
	int result = -ENOENT;
109
110
111
112

	assert(entity != NULL);
	assert(length != NULL);

113
114
	long sh_handle = (long)entity->info;
	long sh_result = semihosting_file_length(sh_handle);
115
116

	if (sh_result >= 0) {
117
		result = 0;
118
119
120
121
122
123
124
125
		*length = (size_t)sh_result;
	}

	return result;
}


/* Read data from a file on the semi-hosting device */
126
static int sh_file_read(io_entity_t *entity, uintptr_t buffer, size_t length,
127
128
		size_t *length_read)
{
129
	int result = -ENOENT;
dp-arm's avatar
dp-arm committed
130
	long sh_result;
131
132
	size_t bytes = length;
	long file_handle;
133
134

	assert(entity != NULL);
135
	assert(buffer != (uintptr_t)NULL);
136
137
	assert(length_read != NULL);

138
	file_handle = (long)entity->info;
139
140
141
142
143

	sh_result = semihosting_file_read(file_handle, &bytes, buffer);

	if (sh_result >= 0) {
		*length_read = (bytes != length) ? bytes : length;
144
145
		result = 0;
	}
146
147
148
149
150
151

	return result;
}


/* Write data to a file on the semi-hosting device */
152
static int sh_file_write(io_entity_t *entity, const uintptr_t buffer,
153
154
		size_t length, size_t *length_written)
{
dp-arm's avatar
dp-arm committed
155
	long sh_result;
156
157
	long file_handle;
	size_t bytes = length;
158
159

	assert(entity != NULL);
160
	assert(buffer != (uintptr_t)NULL);
161
162
	assert(length_written != NULL);

163
	file_handle = (long)entity->info;
164
165
166

	sh_result = semihosting_file_write(file_handle, &bytes, buffer);

167
	*length_written = length - bytes;
168

169
	return (sh_result == 0) ? 0 : -ENOENT;
170
171
172
173
}


/* Close a file on the semi-hosting device */
174
static int sh_file_close(io_entity_t *entity)
175
{
dp-arm's avatar
dp-arm committed
176
	long sh_result;
177
	long file_handle;
178
179
180

	assert(entity != NULL);

181
	file_handle = (long)entity->info;
182
183
184

	sh_result = semihosting_file_close(file_handle);

185
	return (sh_result >= 0) ? 0 : -ENOENT;
186
187
188
189
190
191
}


/* Exported functions */

/* Register the semi-hosting driver with the IO abstraction */
192
int register_io_dev_sh(const io_dev_connector_t **dev_con)
193
{
194
	int result;
195
196
197
	assert(dev_con != NULL);

	result = io_register_device(&sh_dev_info);
198
	if (result == 0)
199
200
201
202
		*dev_con = &sh_dev_connector;

	return result;
}