io_memmap.c 6.12 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2018, 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
 */

#include <assert.h>
8
#include <string.h>
9
10
11
12
13
14
15
16

#include <platform_def.h>

#include <common/debug.h>
#include <drivers/io/io_driver.h>
#include <drivers/io/io_memmap.h>
#include <drivers/io/io_storage.h>
#include <lib/utils.h>
17
18
19
20
21
22
23
24
25

/* As we need to be able to keep state for seek, only one file can be open
 * at a time. Make this a structure and point to the entity->info. When we
 * can malloc memory we can change this to support more open files.
 */
typedef struct {
	/* Use the 'in_use' flag as any value for base and file_pos could be
	 * valid.
	 */
26
27
28
29
	int			in_use;
	uintptr_t		base;
	unsigned long long	file_pos;
	unsigned long long	size;
30
} file_state_t;
31

32
static file_state_t current_file = {0};
33
34

/* Identify the device type as memmap */
35
static io_type_t device_type_memmap(void)
36
37
38
39
40
{
	return IO_TYPE_MEMMAP;
}

/* Memmap device functions */
41
42
static int memmap_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info);
static int memmap_block_open(io_dev_info_t *dev_info, const uintptr_t spec,
43
44
			     io_entity_t *entity);
static int memmap_block_seek(io_entity_t *entity, int mode,
45
			     signed long long offset);
46
static int memmap_block_len(io_entity_t *entity, size_t *length);
47
static int memmap_block_read(io_entity_t *entity, uintptr_t buffer,
48
			     size_t length, size_t *length_read);
49
static int memmap_block_write(io_entity_t *entity, const uintptr_t buffer,
50
			      size_t length, size_t *length_written);
51
52
static int memmap_block_close(io_entity_t *entity);
static int memmap_dev_close(io_dev_info_t *dev_info);
53
54


55
static const io_dev_connector_t memmap_dev_connector = {
56
57
58
59
	.dev_open = memmap_dev_open
};


60
static const io_dev_funcs_t memmap_dev_funcs = {
61
62
63
	.type = device_type_memmap,
	.open = memmap_block_open,
	.seek = memmap_block_seek,
64
	.size = memmap_block_len,
65
66
67
68
69
70
71
72
	.read = memmap_block_read,
	.write = memmap_block_write,
	.close = memmap_block_close,
	.dev_init = NULL,
	.dev_close = memmap_dev_close,
};


73
74
/* No state associated with this device so structure can be const */
static const io_dev_info_t memmap_dev_info = {
75
76
77
78
79
80
	.funcs = &memmap_dev_funcs,
	.info = (uintptr_t)NULL
};


/* Open a connection to the memmap device */
81
static int memmap_dev_open(const uintptr_t dev_spec __unused,
82
			   io_dev_info_t **dev_info)
83
84
{
	assert(dev_info != NULL);
85
	*dev_info = (io_dev_info_t *)&memmap_dev_info; /* cast away const */
86

87
	return 0;
88
89
90
91
92
}



/* Close a connection to the memmap device */
93
static int memmap_dev_close(io_dev_info_t *dev_info)
94
95
96
{
	/* NOP */
	/* TODO: Consider tracking open files and cleaning them up here */
97
	return 0;
98
99
100
101
}


/* Open a file on the memmap device */
102
static int memmap_block_open(io_dev_info_t *dev_info, const uintptr_t spec,
103
			     io_entity_t *entity)
104
{
105
	int result = -ENOMEM;
106
	const io_block_spec_t *block_spec = (io_block_spec_t *)spec;
107
108
109
110
111
112
113
114
115
116
117
118
119

	/* Since we need to track open state for seek() we only allow one open
	 * spec at a time. When we have dynamic memory we can malloc and set
	 * entity->info.
	 */
	if (current_file.in_use == 0) {
		assert(block_spec != NULL);
		assert(entity != NULL);

		current_file.in_use = 1;
		current_file.base = block_spec->offset;
		/* File cursor offset for seek and incremental reads etc. */
		current_file.file_pos = 0;
120
		current_file.size = block_spec->length;
121
		entity->info = (uintptr_t)&current_file;
122
		result = 0;
123
	} else {
124
		WARN("A Memmap device is already active. Close first.\n");
125
126
127
128
129
130
131
	}

	return result;
}


/* Seek to a particular file offset on the memmap device */
132
133
static int memmap_block_seek(io_entity_t *entity, int mode,
			     signed long long offset)
134
{
135
	int result = -ENOENT;
136
	file_state_t *fp;
137
138
139
140
141

	/* We only support IO_SEEK_SET for the moment. */
	if (mode == IO_SEEK_SET) {
		assert(entity != NULL);

142
143
144
		fp = (file_state_t *) entity->info;

		/* Assert that new file position is valid */
145
146
		assert((offset >= 0) &&
		       ((unsigned long long)offset < fp->size));
147
148

		/* Reset file position */
149
		fp->file_pos = (unsigned long long)offset;
150
		result = 0;
151
152
153
154
155
156
	}

	return result;
}


157
158
159
160
161
162
/* Return the size of a file on the memmap device */
static int memmap_block_len(io_entity_t *entity, size_t *length)
{
	assert(entity != NULL);
	assert(length != NULL);

163
	*length = (size_t)((file_state_t *)entity->info)->size;
164
165
166
167
168

	return 0;
}


169
/* Read data from a file on the memmap device */
170
static int memmap_block_read(io_entity_t *entity, uintptr_t buffer,
171
172
			     size_t length, size_t *length_read)
{
173
	file_state_t *fp;
174
	unsigned long long pos_after;
175
176
177
178

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

179
180
181
182
183
	fp = (file_state_t *) entity->info;

	/* Assert that file position is valid for this read operation */
	pos_after = fp->file_pos + length;
	assert((pos_after >= fp->file_pos) && (pos_after <= fp->size));
184

185
186
	memcpy((void *)buffer,
	       (void *)((uintptr_t)(fp->base + fp->file_pos)), length);
187
188

	*length_read = length;
189
190
191

	/* Set file position after read */
	fp->file_pos = pos_after;
192

193
	return 0;
194
195
196
197
}


/* Write data to a file on the memmap device */
198
static int memmap_block_write(io_entity_t *entity, const uintptr_t buffer,
199
200
			      size_t length, size_t *length_written)
{
201
	file_state_t *fp;
202
	unsigned long long pos_after;
203
204
205
206

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

207
208
209
210
211
	fp = (file_state_t *) entity->info;

	/* Assert that file position is valid for this write operation */
	pos_after = fp->file_pos + length;
	assert((pos_after >= fp->file_pos) && (pos_after <= fp->size));
212

213
214
	memcpy((void *)((uintptr_t)(fp->base + fp->file_pos)),
	       (void *)buffer, length);
215
216
217

	*length_written = length;

218
219
	/* Set file position after write */
	fp->file_pos = pos_after;
220

221
	return 0;
222
223
224
225
}


/* Close a file on the memmap device */
226
static int memmap_block_close(io_entity_t *entity)
227
228
229
230
231
232
{
	assert(entity != NULL);

	entity->info = 0;

	/* This would be a mem free() if we had malloc.*/
233
	zeromem((void *)&current_file, sizeof(current_file));
234

235
	return 0;
236
237
238
239
240
241
}


/* Exported functions */

/* Register the memmap driver with the IO abstraction */
242
int register_io_dev_memmap(const io_dev_connector_t **dev_con)
243
{
244
	int result;
245
246
247
	assert(dev_con != NULL);

	result = io_register_device(&memmap_dev_info);
248
	if (result == 0)
249
250
251
252
		*dev_con = &memmap_dev_connector;

	return result;
}