ramdisk.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 <drivers/disk.h>
  10. #include <errno.h>
  11. #include <init.h>
  12. #include <device.h>
  13. #define RAMDISK_SECTOR_SIZE 512
  14. #define RAMDISK_VOLUME_SIZE (CONFIG_DISK_RAM_VOLUME_SIZE * 1024)
  15. static uint8_t ramdisk_buf[RAMDISK_VOLUME_SIZE];
  16. static void *lba_to_address(uint32_t lba)
  17. {
  18. __ASSERT(((lba * RAMDISK_SECTOR_SIZE) < RAMDISK_VOLUME_SIZE),
  19. "FS bound error");
  20. return &ramdisk_buf[(lba * RAMDISK_SECTOR_SIZE)];
  21. }
  22. static int disk_ram_access_status(struct disk_info *disk)
  23. {
  24. return DISK_STATUS_OK;
  25. }
  26. static int disk_ram_access_init(struct disk_info *disk)
  27. {
  28. return 0;
  29. }
  30. static int disk_ram_access_read(struct disk_info *disk, uint8_t *buff,
  31. uint32_t sector, uint32_t count)
  32. {
  33. memcpy(buff, lba_to_address(sector), count * RAMDISK_SECTOR_SIZE);
  34. return 0;
  35. }
  36. static int disk_ram_access_write(struct disk_info *disk, const uint8_t *buff,
  37. uint32_t sector, uint32_t count)
  38. {
  39. memcpy(lba_to_address(sector), buff, count * RAMDISK_SECTOR_SIZE);
  40. return 0;
  41. }
  42. static int disk_ram_access_ioctl(struct disk_info *disk, uint8_t cmd, void *buff)
  43. {
  44. switch (cmd) {
  45. case DISK_IOCTL_CTRL_SYNC:
  46. break;
  47. case DISK_IOCTL_GET_SECTOR_COUNT:
  48. *(uint32_t *)buff = RAMDISK_VOLUME_SIZE / RAMDISK_SECTOR_SIZE;
  49. break;
  50. case DISK_IOCTL_GET_SECTOR_SIZE:
  51. *(uint32_t *)buff = RAMDISK_SECTOR_SIZE;
  52. break;
  53. case DISK_IOCTL_GET_ERASE_BLOCK_SZ:
  54. *(uint32_t *)buff = 1U;
  55. break;
  56. default:
  57. return -EINVAL;
  58. }
  59. return 0;
  60. }
  61. static const struct disk_operations ram_disk_ops = {
  62. .init = disk_ram_access_init,
  63. .status = disk_ram_access_status,
  64. .read = disk_ram_access_read,
  65. .write = disk_ram_access_write,
  66. .ioctl = disk_ram_access_ioctl,
  67. };
  68. static struct disk_info ram_disk = {
  69. .name = CONFIG_DISK_RAM_VOLUME_NAME,
  70. .ops = &ram_disk_ops,
  71. };
  72. static int disk_ram_init(const struct device *dev)
  73. {
  74. ARG_UNUSED(dev);
  75. return disk_access_register(&ram_disk);
  76. }
  77. SYS_INIT(disk_ram_init, APPLICATION, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);