flashdisk.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <string.h>
  7. #include <zephyr/types.h>
  8. #include <sys/__assert.h>
  9. #include <sys/util.h>
  10. #include <drivers/disk.h>
  11. #include <errno.h>
  12. #include <init.h>
  13. #include <device.h>
  14. #include <drivers/flash.h>
  15. #define SECTOR_SIZE CONFIG_DISK_FLASH_SECTOR_SIZE
  16. static const struct device *flash_dev;
  17. /* flash read-copy-erase-write operation */
  18. static uint8_t __aligned(4) read_copy_buf[CONFIG_DISK_ERASE_BLOCK_SIZE];
  19. static uint8_t *fs_buff = read_copy_buf;
  20. /* calculate number of blocks required for a given size */
  21. #define GET_NUM_BLOCK(total_size, block_size) \
  22. ((total_size + block_size - 1) / block_size)
  23. #define GET_SIZE_TO_BOUNDARY(start, block_size) \
  24. (block_size - (start & (block_size - 1)))
  25. static off_t lba_to_address(uint32_t sector_num)
  26. {
  27. off_t flash_addr;
  28. flash_addr = CONFIG_DISK_FLASH_START + sector_num * SECTOR_SIZE;
  29. __ASSERT(flash_addr < (CONFIG_DISK_FLASH_START +
  30. CONFIG_DISK_VOLUME_SIZE), "FS bound error");
  31. return flash_addr;
  32. }
  33. static int disk_flash_access_status(struct disk_info *disk)
  34. {
  35. if (!flash_dev) {
  36. return DISK_STATUS_NOMEDIA;
  37. }
  38. return DISK_STATUS_OK;
  39. }
  40. static int disk_flash_access_init(struct disk_info *disk)
  41. {
  42. if (flash_dev) {
  43. return 0;
  44. }
  45. flash_dev = device_get_binding(CONFIG_DISK_FLASH_DEV_NAME);
  46. if (!flash_dev) {
  47. return -ENODEV;
  48. }
  49. return 0;
  50. }
  51. static int disk_flash_access_read(struct disk_info *disk, uint8_t *buff,
  52. uint32_t start_sector, uint32_t sector_count)
  53. {
  54. off_t fl_addr;
  55. uint32_t remaining;
  56. uint32_t len;
  57. uint32_t num_read;
  58. fl_addr = lba_to_address(start_sector);
  59. remaining = (sector_count * SECTOR_SIZE);
  60. len = CONFIG_DISK_FLASH_MAX_RW_SIZE;
  61. num_read = GET_NUM_BLOCK(remaining, CONFIG_DISK_FLASH_MAX_RW_SIZE);
  62. for (uint32_t i = 0; i < num_read; i++) {
  63. if (remaining < CONFIG_DISK_FLASH_MAX_RW_SIZE) {
  64. len = remaining;
  65. }
  66. if (flash_read(flash_dev, fl_addr, buff, len) != 0) {
  67. return -EIO;
  68. }
  69. fl_addr += len;
  70. buff += len;
  71. remaining -= len;
  72. }
  73. return 0;
  74. }
  75. /* This performs read-copy into an output buffer */
  76. static int read_copy_flash_block(off_t start_addr, uint32_t size,
  77. const void *src_buff,
  78. uint8_t *dest_buff)
  79. {
  80. off_t fl_addr;
  81. uint32_t num_read;
  82. uint32_t offset = 0U;
  83. /* adjust offset if starting address is not erase-aligned address */
  84. if (start_addr & (CONFIG_DISK_FLASH_ERASE_ALIGNMENT - 1)) {
  85. offset = start_addr & (CONFIG_DISK_FLASH_ERASE_ALIGNMENT - 1);
  86. }
  87. /* align starting address to an aligned address for flash erase-write */
  88. fl_addr = ROUND_DOWN(start_addr, CONFIG_DISK_FLASH_ERASE_ALIGNMENT);
  89. num_read = GET_NUM_BLOCK(CONFIG_DISK_ERASE_BLOCK_SIZE,
  90. CONFIG_DISK_FLASH_MAX_RW_SIZE);
  91. /* read one block from flash */
  92. for (uint32_t i = 0; i < num_read; i++) {
  93. int rc;
  94. rc = flash_read(flash_dev,
  95. fl_addr + (CONFIG_DISK_FLASH_MAX_RW_SIZE * i),
  96. dest_buff + (CONFIG_DISK_FLASH_MAX_RW_SIZE * i),
  97. CONFIG_DISK_FLASH_MAX_RW_SIZE);
  98. if (rc != 0) {
  99. return -EIO;
  100. }
  101. }
  102. /* overwrite with user data */
  103. memcpy(dest_buff + offset, src_buff, size);
  104. return 0;
  105. }
  106. /* input size is either less or equal to a block size,
  107. * CONFIG_DISK_ERASE_BLOCK_SIZE.
  108. */
  109. static int update_flash_block(uint64_t start_addr, uint32_t size, const void *buff)
  110. {
  111. uint64_t fl_addr;
  112. uint8_t *src = (uint8_t *)buff;
  113. uint32_t num_write;
  114. /* if size is a partial block, perform read-copy with user data */
  115. if (size < CONFIG_DISK_ERASE_BLOCK_SIZE) {
  116. int rc;
  117. rc = read_copy_flash_block(start_addr, size, buff, fs_buff);
  118. if (rc != 0) {
  119. return -EIO;
  120. }
  121. /* now use the local buffer as the source */
  122. src = (uint8_t *)fs_buff;
  123. }
  124. /* always align starting address for flash write operation */
  125. fl_addr = ROUND_DOWN(start_addr, CONFIG_DISK_FLASH_ERASE_ALIGNMENT);
  126. if (flash_erase(flash_dev, fl_addr, CONFIG_DISK_ERASE_BLOCK_SIZE)
  127. != 0) {
  128. return -EIO;
  129. }
  130. /* write data to flash */
  131. num_write = GET_NUM_BLOCK(CONFIG_DISK_ERASE_BLOCK_SIZE,
  132. CONFIG_DISK_FLASH_MAX_RW_SIZE);
  133. for (uint32_t i = 0; i < num_write; i++) {
  134. if (flash_write(flash_dev, fl_addr, src,
  135. CONFIG_DISK_FLASH_MAX_RW_SIZE) != 0) {
  136. return -EIO;
  137. }
  138. fl_addr += CONFIG_DISK_FLASH_MAX_RW_SIZE;
  139. src += CONFIG_DISK_FLASH_MAX_RW_SIZE;
  140. }
  141. return 0;
  142. }
  143. static int disk_flash_access_write(struct disk_info *disk, const uint8_t *buff,
  144. uint32_t start_sector, uint32_t sector_count)
  145. {
  146. uint64_t fl_addr;
  147. uint32_t remaining;
  148. uint32_t size;
  149. fl_addr = lba_to_address(start_sector);
  150. remaining = (sector_count * SECTOR_SIZE);
  151. /* check if start address is erased-aligned address */
  152. if (fl_addr & (CONFIG_DISK_FLASH_ERASE_ALIGNMENT - 1)) {
  153. off_t block_bnd;
  154. /* not aligned */
  155. /* check if the size goes over flash block boundary */
  156. block_bnd = fl_addr + CONFIG_DISK_ERASE_BLOCK_SIZE;
  157. block_bnd = block_bnd & ~(CONFIG_DISK_ERASE_BLOCK_SIZE - 1);
  158. if ((fl_addr + remaining) < block_bnd) {
  159. /* not over block boundary (a partial block also) */
  160. if (update_flash_block(fl_addr, remaining, buff) != 0) {
  161. return -EIO;
  162. }
  163. return 0;
  164. }
  165. /* write goes over block boundary */
  166. size = GET_SIZE_TO_BOUNDARY(fl_addr,
  167. CONFIG_DISK_ERASE_BLOCK_SIZE);
  168. /* write first partial block */
  169. if (update_flash_block(fl_addr, size, buff) != 0) {
  170. return -EIO;
  171. }
  172. fl_addr += size;
  173. remaining -= size;
  174. buff += size;
  175. }
  176. /* start is an erase-aligned address */
  177. while (remaining) {
  178. int rc;
  179. if (remaining < CONFIG_DISK_ERASE_BLOCK_SIZE) {
  180. break;
  181. }
  182. rc = update_flash_block(fl_addr, CONFIG_DISK_ERASE_BLOCK_SIZE,
  183. buff);
  184. if (rc != 0) {
  185. return -EIO;
  186. }
  187. fl_addr += CONFIG_DISK_ERASE_BLOCK_SIZE;
  188. remaining -= CONFIG_DISK_ERASE_BLOCK_SIZE;
  189. buff += CONFIG_DISK_ERASE_BLOCK_SIZE;
  190. }
  191. /* remaining partial block */
  192. if (remaining) {
  193. if (update_flash_block(fl_addr, remaining, buff) != 0) {
  194. return -EIO;
  195. }
  196. }
  197. return 0;
  198. }
  199. static int disk_flash_access_ioctl(struct disk_info *disk, uint8_t cmd, void *buff)
  200. {
  201. switch (cmd) {
  202. case DISK_IOCTL_CTRL_SYNC:
  203. return 0;
  204. case DISK_IOCTL_GET_SECTOR_COUNT:
  205. *(uint32_t *)buff = CONFIG_DISK_VOLUME_SIZE / SECTOR_SIZE;
  206. return 0;
  207. case DISK_IOCTL_GET_SECTOR_SIZE:
  208. *(uint32_t *) buff = SECTOR_SIZE;
  209. return 0;
  210. case DISK_IOCTL_GET_ERASE_BLOCK_SZ: /* in sectors */
  211. *(uint32_t *)buff = CONFIG_DISK_ERASE_BLOCK_SIZE / SECTOR_SIZE;
  212. return 0;
  213. default:
  214. break;
  215. }
  216. return -EINVAL;
  217. }
  218. static const struct disk_operations flash_disk_ops = {
  219. .init = disk_flash_access_init,
  220. .status = disk_flash_access_status,
  221. .read = disk_flash_access_read,
  222. .write = disk_flash_access_write,
  223. .ioctl = disk_flash_access_ioctl,
  224. };
  225. static struct disk_info flash_disk = {
  226. .name = CONFIG_DISK_FLASH_VOLUME_NAME,
  227. .ops = &flash_disk_ops,
  228. };
  229. static int disk_flash_init(const struct device *dev)
  230. {
  231. ARG_UNUSED(dev);
  232. return disk_access_register(&flash_disk);
  233. }
  234. SYS_INIT(disk_flash_init, APPLICATION, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);