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

#include <assert.h>
#include <errno.h>
9
#include <string.h>
10

11
12
#include <lib/semihosting.h>

13
14
15
16
#ifndef SEMIHOSTING_SUPPORTED
#define SEMIHOSTING_SUPPORTED  1
#endif

17
18
long semihosting_call(unsigned long operation,
			void *system_block_address);
19
20
21

typedef struct {
	const char *file_name;
22
23
	unsigned long mode;
	size_t name_length;
24
} smh_file_open_block_t;
25
26

typedef struct {
27
	long handle;
28
	uintptr_t buffer;
29
	size_t length;
30
} smh_file_read_write_block_t;
31
32

typedef struct {
33
34
	long handle;
	ssize_t location;
35
} smh_file_seek_block_t;
36
37
38

typedef struct {
	char *command_line;
39
	size_t command_length;
40
} smh_system_block_t;
41

42
long semihosting_connection_supported(void)
43
44
45
46
{
	return SEMIHOSTING_SUPPORTED;
}

47
long semihosting_file_open(const char *file_name, size_t mode)
48
{
49
	smh_file_open_block_t open_block;
50
51
52
53
54
55
56
57
58

	open_block.file_name = file_name;
	open_block.mode = mode;
	open_block.name_length = strlen(file_name);

	return semihosting_call(SEMIHOSTING_SYS_OPEN,
				(void *) &open_block);
}

59
long semihosting_file_seek(long file_handle, ssize_t offset)
60
{
61
	smh_file_seek_block_t seek_block;
62
	long result;
63
64
65
66
67
68
69
70
71
72
73
74
75

	seek_block.handle = file_handle;
	seek_block.location = offset;

	result = semihosting_call(SEMIHOSTING_SYS_SEEK,
				  (void *) &seek_block);

	if (result)
		result = semihosting_call(SEMIHOSTING_SYS_ERRNO, 0);

	return result;
}

76
long semihosting_file_read(long file_handle, size_t *length, uintptr_t buffer)
77
{
78
	smh_file_read_write_block_t read_block;
79
	long result = -EINVAL;
80

81
	if ((length == NULL) || (buffer == (uintptr_t)NULL))
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
		return result;

	read_block.handle = file_handle;
	read_block.buffer = buffer;
	read_block.length = *length;

	result = semihosting_call(SEMIHOSTING_SYS_READ,
				  (void *) &read_block);

	if (result == *length) {
		return -EINVAL;
	} else if (result < *length) {
		*length -= result;
		return 0;
	} else
		return result;
}

100
101
long semihosting_file_write(long file_handle,
			    size_t *length,
102
			    const uintptr_t buffer)
103
{
104
	smh_file_read_write_block_t write_block;
105
	long result = -EINVAL;
106

107
	if ((length == NULL) || (buffer == (uintptr_t)NULL))
108
109
110
		return -EINVAL;

	write_block.handle = file_handle;
111
	write_block.buffer = (uintptr_t)buffer; /* cast away const */
112
113
	write_block.length = *length;

114
	result = semihosting_call(SEMIHOSTING_SYS_WRITE,
115
116
				   (void *) &write_block);

117
118
119
	*length = result;

	return (result == 0) ? 0 : -EINVAL;
120
121
}

122
long semihosting_file_close(long file_handle)
123
124
125
126
127
{
	return semihosting_call(SEMIHOSTING_SYS_CLOSE,
				(void *) &file_handle);
}

128
long semihosting_file_length(long file_handle)
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
	return semihosting_call(SEMIHOSTING_SYS_FLEN,
				(void *) &file_handle);
}

char semihosting_read_char(void)
{
	return semihosting_call(SEMIHOSTING_SYS_READC, NULL);
}

void semihosting_write_char(char character)
{
	semihosting_call(SEMIHOSTING_SYS_WRITEC, (void *) &character);
}

void semihosting_write_string(char *string)
{
	semihosting_call(SEMIHOSTING_SYS_WRITE0, (void *) string);
}

149
long semihosting_system(char *command_line)
150
{
151
	smh_system_block_t system_block;
152
153
154
155
156
157
158
159

	system_block.command_line = command_line;
	system_block.command_length = strlen(command_line);

	return semihosting_call(SEMIHOSTING_SYS_SYSTEM,
				(void *) &system_block);
}

160
long semihosting_get_flen(const char *file_name)
161
{
162
163
	long file_handle;
	size_t length;
164
165
166
167
168
169
170
171
172
173
174
175
176

	assert(semihosting_connection_supported());

	file_handle = semihosting_file_open(file_name, FOPEN_MODE_RB);
	if (file_handle == -1)
		return file_handle;

	/* Find the length of the file */
	length = semihosting_file_length(file_handle);

	return semihosting_file_close(file_handle) ? -1 : length;
}

177
178
long semihosting_download_file(const char *file_name,
			      size_t buf_size,
179
			      uintptr_t buf)
180
{
181
182
183
	long ret = -EINVAL;
	size_t length;
	long file_handle;
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218

	/* Null pointer check */
	if (!buf)
		return ret;

	assert(semihosting_connection_supported());

	file_handle = semihosting_file_open(file_name, FOPEN_MODE_RB);
	if (file_handle == -1)
		return ret;

	/* Find the actual length of the file */
	length = semihosting_file_length(file_handle);
	if (length == -1)
		goto semihosting_fail;

	/* Signal error if we do not have enough space for the file */
	if (length > buf_size)
		goto semihosting_fail;

	/*
	 * A successful read will return 0 in which case we pass back
	 * the actual number of bytes read. Else we pass a negative
	 * value indicating an error.
	 */
	ret = semihosting_file_read(file_handle, &length, buf);
	if (ret)
		goto semihosting_fail;
	else
		ret = length;

semihosting_fail:
	semihosting_file_close(file_handle);
	return ret;
}