Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | /* * Copyright (c) 2016 Intel Corporation. * * SPDX-License-Identifier: Apache-2.0 */ #include <string.h> #include <stdint.h> #include <misc/__assert.h> #include <misc/util.h> #include <disk_access.h> #include <errno.h> #include <device.h> #include <flash.h> #define SECTOR_SIZE 512 static struct device *flash_dev; /* flash read-copy-erase-write operation */ static uint8_t read_copy_buf[CONFIG_DISK_ERASE_BLOCK_SIZE]; static uint8_t *fs_buff = read_copy_buf; /* calculate number of blocks required for a given size */ #define GET_NUM_BLOCK(total_size, block_size) \ ((total_size + block_size - 1) / block_size) #define GET_SIZE_TO_BOUNDARY(start, block_size) \ (block_size - (start & (block_size - 1))) static off_t lba_to_address(uint32_t sector_num) { off_t flash_addr; flash_addr = CONFIG_DISK_FLASH_START + sector_num * SECTOR_SIZE; __ASSERT(flash_addr < (CONFIG_DISK_FLASH_START + CONFIG_DISK_VOLUME_SIZE), "FS bound error"); return flash_addr; } int disk_access_status(void) { if (!flash_dev) { return DISK_STATUS_NOMEDIA; } return DISK_STATUS_OK; } int disk_access_init(void) { if (flash_dev) { return 0; } flash_dev = device_get_binding(CONFIG_DISK_FLASH_DEV_NAME); if (!flash_dev) { return -ENODEV; } return 0; } int disk_access_read(uint8_t *buff, uint32_t start_sector, uint32_t sector_count) { off_t fl_addr; uint32_t remaining; uint32_t len; uint32_t num_read; fl_addr = lba_to_address(start_sector); remaining = (sector_count * SECTOR_SIZE); len = CONFIG_DISK_FLASH_MAX_RW_SIZE; num_read = GET_NUM_BLOCK(remaining, CONFIG_DISK_FLASH_MAX_RW_SIZE); for (uint32_t i = 0; i < num_read; i++) { if (remaining < CONFIG_DISK_FLASH_MAX_RW_SIZE) { len = remaining; } if (flash_read(flash_dev, fl_addr, buff, len) != 0) { return -EIO; } fl_addr += len; buff += len; remaining -= len; } return 0; } /* This performs read-copy into an output buffer */ static int read_copy_flash_block(off_t start_addr, uint32_t size, const void *src_buff, uint8_t *dest_buff) { off_t fl_addr; uint32_t num_read; uint32_t offset = 0; /* adjust offset if starting address is not erase-aligned address */ if (start_addr & (CONFIG_DISK_FLASH_ERASE_ALIGNMENT - 1)) { offset = start_addr & (CONFIG_DISK_FLASH_ERASE_ALIGNMENT - 1); } /* align starting address to an aligned address for flash erase-write */ fl_addr = ROUND_DOWN(start_addr, CONFIG_DISK_FLASH_ERASE_ALIGNMENT); num_read = GET_NUM_BLOCK(CONFIG_DISK_ERASE_BLOCK_SIZE, CONFIG_DISK_FLASH_MAX_RW_SIZE); /* read one block from flash */ for (uint32_t i = 0; i < num_read; i++) { int rc; rc = flash_read(flash_dev, fl_addr + (CONFIG_DISK_FLASH_MAX_RW_SIZE * i), dest_buff + (CONFIG_DISK_FLASH_MAX_RW_SIZE * i), CONFIG_DISK_FLASH_MAX_RW_SIZE); if (rc != 0) { return -EIO; } } /* overwrite with user data */ memcpy(dest_buff + offset, src_buff, size); return 0; } /* input size is either less or equal to a block size, * CONFIG_DISK_ERASE_BLOCK_SIZE. */ static int update_flash_block(off_t start_addr, uint32_t size, const void *buff) { off_t fl_addr; uint8_t *src = (uint8_t *)buff; uint32_t num_write; /* if size is a partial block, perform read-copy with user data */ if (size < CONFIG_DISK_ERASE_BLOCK_SIZE) { int rc; rc = read_copy_flash_block(start_addr, size, buff, fs_buff); if (rc != 0) { return -EIO; } /* now use the local buffer as the source */ src = (uint8_t *)fs_buff; } /* always align starting address for flash write operation */ fl_addr = ROUND_DOWN(start_addr, CONFIG_DISK_FLASH_ERASE_ALIGNMENT); /* disable write-protection first before erase */ flash_write_protection_set(flash_dev, false); if (flash_erase(flash_dev, fl_addr, CONFIG_DISK_ERASE_BLOCK_SIZE) != 0) { return -EIO; } /* write data to flash */ num_write = GET_NUM_BLOCK(CONFIG_DISK_ERASE_BLOCK_SIZE, CONFIG_DISK_FLASH_MAX_RW_SIZE); for (uint32_t i = 0; i < num_write; i++) { /* flash_write reenabled write-protection so disable it again */ flash_write_protection_set(flash_dev, false); if (flash_write(flash_dev, fl_addr, src, CONFIG_DISK_FLASH_MAX_RW_SIZE) != 0) { return -EIO; } fl_addr += CONFIG_DISK_FLASH_MAX_RW_SIZE; src += CONFIG_DISK_FLASH_MAX_RW_SIZE; } return 0; } int disk_access_write(const uint8_t *buff, uint32_t start_sector, uint32_t sector_count) { off_t fl_addr; uint32_t remaining; uint32_t size; fl_addr = lba_to_address(start_sector); remaining = (sector_count * SECTOR_SIZE); /* check if start address is erased-aligned address */ if (fl_addr & (CONFIG_DISK_FLASH_ERASE_ALIGNMENT - 1)) { off_t block_bnd; /* not aligned */ /* check if the size goes over flash block boundary */ block_bnd = fl_addr + CONFIG_DISK_ERASE_BLOCK_SIZE; block_bnd = block_bnd & ~(CONFIG_DISK_ERASE_BLOCK_SIZE - 1); if ((fl_addr + remaining) < block_bnd) { /* not over block boundary (a partial block also) */ if (update_flash_block(fl_addr, remaining, buff) != 0) { return -EIO; } return 0; } /* write goes over block boundary */ size = GET_SIZE_TO_BOUNDARY(fl_addr, CONFIG_DISK_ERASE_BLOCK_SIZE); /* write first partial block */ if (update_flash_block(fl_addr, size, buff) != 0) { return -EIO; } fl_addr += size; remaining -= size; buff += size; } /* start is an erase-aligned address */ while (remaining) { int rc; if (remaining < CONFIG_DISK_ERASE_BLOCK_SIZE) { break; } rc = update_flash_block(fl_addr, CONFIG_DISK_ERASE_BLOCK_SIZE, buff); if (rc != 0) { return -EIO; } fl_addr += CONFIG_DISK_ERASE_BLOCK_SIZE; remaining -= CONFIG_DISK_ERASE_BLOCK_SIZE; buff += CONFIG_DISK_ERASE_BLOCK_SIZE; } /* remaining partial block */ if (remaining) { if (update_flash_block(fl_addr, remaining, buff) != 0) { return -EIO; } } return 0; } int disk_access_ioctl(uint8_t cmd, void *buff) { switch (cmd) { case DISK_IOCTL_CTRL_SYNC: return 0; case DISK_IOCTL_GET_SECTOR_COUNT: *(uint32_t *)buff = CONFIG_DISK_VOLUME_SIZE / SECTOR_SIZE; return 0; case DISK_IOCTL_GET_SECTOR_SIZE: *(uint32_t *) buff = SECTOR_SIZE; return 0; case DISK_IOCTL_GET_ERASE_BLOCK_SZ: /* in sectors */ *(uint32_t *)buff = CONFIG_DISK_ERASE_BLOCK_SIZE / SECTOR_SIZE; return 0; case DISK_IOCTL_GET_DISK_SIZE: *(uint32_t *)buff = CONFIG_DISK_VOLUME_SIZE; return 0; default: break; } return -EINVAL; } |