Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 1 | /* |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 2 | * Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved. |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 8 | #include <debug.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 9 | #include <io_driver.h> |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 10 | #include <io_memmap.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 11 | #include <io_storage.h> |
| 12 | #include <string.h> |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 13 | #include <utils.h> |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 14 | |
| 15 | /* As we need to be able to keep state for seek, only one file can be open |
| 16 | * at a time. Make this a structure and point to the entity->info. When we |
| 17 | * can malloc memory we can change this to support more open files. |
| 18 | */ |
| 19 | typedef struct { |
| 20 | /* Use the 'in_use' flag as any value for base and file_pos could be |
| 21 | * valid. |
| 22 | */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 23 | int in_use; |
| 24 | uintptr_t base; |
| 25 | size_t file_pos; |
Gerald Lejeune | 2a1f2d1 | 2015-03-18 14:41:42 +0100 | [diff] [blame] | 26 | size_t size; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 27 | } file_state_t; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 28 | |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 29 | static file_state_t current_file = {0}; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 30 | |
| 31 | /* Identify the device type as memmap */ |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 32 | static io_type_t device_type_memmap(void) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 33 | { |
| 34 | return IO_TYPE_MEMMAP; |
| 35 | } |
| 36 | |
| 37 | /* Memmap device functions */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 38 | static int memmap_dev_open(const uintptr_t dev_spec, io_dev_info_t **dev_info); |
| 39 | static int memmap_block_open(io_dev_info_t *dev_info, const uintptr_t spec, |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 40 | io_entity_t *entity); |
| 41 | static int memmap_block_seek(io_entity_t *entity, int mode, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 42 | ssize_t offset); |
Gerald Lejeune | 2a1f2d1 | 2015-03-18 14:41:42 +0100 | [diff] [blame] | 43 | static int memmap_block_len(io_entity_t *entity, size_t *length); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 44 | static int memmap_block_read(io_entity_t *entity, uintptr_t buffer, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 45 | size_t length, size_t *length_read); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 46 | static int memmap_block_write(io_entity_t *entity, const uintptr_t buffer, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 47 | size_t length, size_t *length_written); |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 48 | static int memmap_block_close(io_entity_t *entity); |
| 49 | static int memmap_dev_close(io_dev_info_t *dev_info); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 50 | |
| 51 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 52 | static const io_dev_connector_t memmap_dev_connector = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 53 | .dev_open = memmap_dev_open |
| 54 | }; |
| 55 | |
| 56 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 57 | static const io_dev_funcs_t memmap_dev_funcs = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 58 | .type = device_type_memmap, |
| 59 | .open = memmap_block_open, |
| 60 | .seek = memmap_block_seek, |
Gerald Lejeune | 2a1f2d1 | 2015-03-18 14:41:42 +0100 | [diff] [blame] | 61 | .size = memmap_block_len, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 62 | .read = memmap_block_read, |
| 63 | .write = memmap_block_write, |
| 64 | .close = memmap_block_close, |
| 65 | .dev_init = NULL, |
| 66 | .dev_close = memmap_dev_close, |
| 67 | }; |
| 68 | |
| 69 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 70 | /* No state associated with this device so structure can be const */ |
| 71 | static const io_dev_info_t memmap_dev_info = { |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 72 | .funcs = &memmap_dev_funcs, |
| 73 | .info = (uintptr_t)NULL |
| 74 | }; |
| 75 | |
| 76 | |
| 77 | /* Open a connection to the memmap device */ |
Soren Brinkmann | 46dd170 | 2016-01-14 10:11:05 -0800 | [diff] [blame] | 78 | static int memmap_dev_open(const uintptr_t dev_spec __unused, |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 79 | io_dev_info_t **dev_info) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 80 | { |
| 81 | assert(dev_info != NULL); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 82 | *dev_info = (io_dev_info_t *)&memmap_dev_info; /* cast away const */ |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 83 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 84 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | |
| 88 | |
| 89 | /* Close a connection to the memmap device */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 90 | static int memmap_dev_close(io_dev_info_t *dev_info) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 91 | { |
| 92 | /* NOP */ |
| 93 | /* TODO: Consider tracking open files and cleaning them up here */ |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 94 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | |
| 98 | /* Open a file on the memmap device */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 99 | static int memmap_block_open(io_dev_info_t *dev_info, const uintptr_t spec, |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 100 | io_entity_t *entity) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 101 | { |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 102 | int result = -ENOMEM; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 103 | const io_block_spec_t *block_spec = (io_block_spec_t *)spec; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 104 | |
| 105 | /* Since we need to track open state for seek() we only allow one open |
| 106 | * spec at a time. When we have dynamic memory we can malloc and set |
| 107 | * entity->info. |
| 108 | */ |
| 109 | if (current_file.in_use == 0) { |
| 110 | assert(block_spec != NULL); |
| 111 | assert(entity != NULL); |
| 112 | |
| 113 | current_file.in_use = 1; |
| 114 | current_file.base = block_spec->offset; |
| 115 | /* File cursor offset for seek and incremental reads etc. */ |
| 116 | current_file.file_pos = 0; |
Gerald Lejeune | 2a1f2d1 | 2015-03-18 14:41:42 +0100 | [diff] [blame] | 117 | current_file.size = block_spec->length; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 118 | entity->info = (uintptr_t)¤t_file; |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 119 | result = 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 120 | } else { |
Jeenu Viswambharan | 08c28d5 | 2014-02-20 12:03:31 +0000 | [diff] [blame] | 121 | WARN("A Memmap device is already active. Close first.\n"); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | return result; |
| 125 | } |
| 126 | |
| 127 | |
| 128 | /* Seek to a particular file offset on the memmap device */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 129 | static int memmap_block_seek(io_entity_t *entity, int mode, ssize_t offset) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 130 | { |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 131 | int result = -ENOENT; |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 132 | file_state_t *fp; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 133 | |
| 134 | /* We only support IO_SEEK_SET for the moment. */ |
| 135 | if (mode == IO_SEEK_SET) { |
| 136 | assert(entity != NULL); |
| 137 | |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 138 | fp = (file_state_t *) entity->info; |
| 139 | |
| 140 | /* Assert that new file position is valid */ |
| 141 | assert((offset >= 0) && (offset < fp->size)); |
| 142 | |
| 143 | /* Reset file position */ |
| 144 | fp->file_pos = offset; |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 145 | result = 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | return result; |
| 149 | } |
| 150 | |
| 151 | |
Gerald Lejeune | 2a1f2d1 | 2015-03-18 14:41:42 +0100 | [diff] [blame] | 152 | /* Return the size of a file on the memmap device */ |
| 153 | static int memmap_block_len(io_entity_t *entity, size_t *length) |
| 154 | { |
| 155 | assert(entity != NULL); |
| 156 | assert(length != NULL); |
| 157 | |
| 158 | *length = ((file_state_t *)entity->info)->size; |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 164 | /* Read data from a file on the memmap device */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 165 | static int memmap_block_read(io_entity_t *entity, uintptr_t buffer, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 166 | size_t length, size_t *length_read) |
| 167 | { |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 168 | file_state_t *fp; |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 169 | size_t pos_after; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 170 | |
| 171 | assert(entity != NULL); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 172 | assert(buffer != (uintptr_t)NULL); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 173 | assert(length_read != NULL); |
| 174 | |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 175 | fp = (file_state_t *) entity->info; |
| 176 | |
| 177 | /* Assert that file position is valid for this read operation */ |
| 178 | pos_after = fp->file_pos + length; |
| 179 | assert((pos_after >= fp->file_pos) && (pos_after <= fp->size)); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 180 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 181 | memcpy((void *)buffer, (void *)(fp->base + fp->file_pos), length); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 182 | |
| 183 | *length_read = length; |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 184 | |
| 185 | /* Set file position after read */ |
| 186 | fp->file_pos = pos_after; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 187 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 188 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | |
| 192 | /* Write data to a file on the memmap device */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 193 | static int memmap_block_write(io_entity_t *entity, const uintptr_t buffer, |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 194 | size_t length, size_t *length_written) |
| 195 | { |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 196 | file_state_t *fp; |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 197 | size_t pos_after; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 198 | |
| 199 | assert(entity != NULL); |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 200 | assert(buffer != (uintptr_t)NULL); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 201 | assert(length_written != NULL); |
| 202 | |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 203 | fp = (file_state_t *) entity->info; |
| 204 | |
| 205 | /* Assert that file position is valid for this write operation */ |
| 206 | pos_after = fp->file_pos + length; |
| 207 | assert((pos_after >= fp->file_pos) && (pos_after <= fp->size)); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 208 | |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 209 | memcpy((void *)(fp->base + fp->file_pos), (void *)buffer, length); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 210 | |
| 211 | *length_written = length; |
| 212 | |
Jeenu Viswambharan | e6bae8c | 2017-02-13 13:06:18 +0000 | [diff] [blame] | 213 | /* Set file position after write */ |
| 214 | fp->file_pos = pos_after; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 215 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 216 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | |
| 220 | /* Close a file on the memmap device */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 221 | static int memmap_block_close(io_entity_t *entity) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 222 | { |
| 223 | assert(entity != NULL); |
| 224 | |
| 225 | entity->info = 0; |
| 226 | |
| 227 | /* This would be a mem free() if we had malloc.*/ |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 228 | zeromem((void *)¤t_file, sizeof(current_file)); |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 229 | |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 230 | return 0; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | |
| 234 | /* Exported functions */ |
| 235 | |
| 236 | /* Register the memmap driver with the IO abstraction */ |
Dan Handley | a4cb68e | 2014-04-23 13:47:06 +0100 | [diff] [blame] | 237 | int register_io_dev_memmap(const io_dev_connector_t **dev_con) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 238 | { |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 239 | int result; |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 240 | assert(dev_con != NULL); |
| 241 | |
| 242 | result = io_register_device(&memmap_dev_info); |
Juan Castillo | 6e76206 | 2015-11-02 10:47:01 +0000 | [diff] [blame] | 243 | if (result == 0) |
Harry Liebel | 561cd33 | 2014-02-14 14:42:48 +0000 | [diff] [blame] | 244 | *dev_con = &memmap_dev_connector; |
| 245 | |
| 246 | return result; |
| 247 | } |