disk.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. * Copyright (c) 2021 Nordic Semiconductor ASA
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Disk Driver Interface
  10. *
  11. * This file contains interface for disk access. Apart from disks, various
  12. * other storage media like Flash and RAM disks may implement this interface to
  13. * be used by various higher layers(consumers) like USB Mass storage
  14. * and Filesystems.
  15. */
  16. #ifndef ZEPHYR_INCLUDE_DRIVERS_DISK_H_
  17. #define ZEPHYR_INCLUDE_DRIVERS_DISK_H_
  18. /**
  19. * @brief Disk Driver Interface
  20. * @defgroup disk_driver_interface Disk Driver Interface
  21. * @{
  22. */
  23. #include <kernel.h>
  24. #include <zephyr/types.h>
  25. #include <sys/dlist.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /**
  30. * @brief Possible Cmd Codes for disk_ioctl()
  31. */
  32. /** Get the number of sectors in the disk */
  33. #define DISK_IOCTL_GET_SECTOR_COUNT 1
  34. /** Get the size of a disk SECTOR in bytes */
  35. #define DISK_IOCTL_GET_SECTOR_SIZE 2
  36. /* Get the size of the disk in bytes */
  37. #define DISK_IOCTL_GET_DISK_SIZE 3
  38. /* How many sectors constitute a FLASH Erase block */
  39. #define DISK_IOCTL_GET_ERASE_BLOCK_SZ 4
  40. /** Commit any cached read/writes to disk */
  41. #define DISK_IOCTL_CTRL_SYNC 5
  42. /* Detect disk hardware insert or remove */
  43. #define DISK_IOCTL_HW_DETECT 10
  44. /* Control the disk device to enter high speed mode */
  45. #define DISK_IOCTL_ENTER_HIGH_SPEED 11
  46. /* Control the disk device to exit high speed mode */
  47. #define DISK_IOCTL_EXIT_HIGH_SPEED 12
  48. /* Detect disk hardware hotplug period detect */
  49. #define DISK_IOCTL_HOTPLUG_PERIOD_DETECT 13
  50. /* 3 is reserved. It used to be DISK_IOCTL_GET_DISK_SIZE */
  51. /**
  52. * @brief Possible return bitmasks for disk_status()
  53. */
  54. /** Disk status okay */
  55. #define DISK_STATUS_OK 0x00
  56. /** Disk status uninitialized */
  57. #define DISK_STATUS_UNINIT 0x01
  58. /** Disk status no media */
  59. #define DISK_STATUS_NOMEDIA 0x02
  60. /** Disk status write protected */
  61. #define DISK_STATUS_WR_PROTECT 0x04
  62. struct disk_operations;
  63. /**
  64. * @brief Disk info
  65. */
  66. struct disk_info {
  67. /** Internally used list node */
  68. sys_dnode_t node;
  69. /** Disk name */
  70. char *name;
  71. uint16_t sector_size;
  72. uint32_t sector_offset;
  73. uint32_t sector_cnt;
  74. /** Disk operations */
  75. const struct disk_operations *ops;
  76. /** Device associated to this disk */
  77. const struct device *dev;
  78. };
  79. /**
  80. * @brief Disk operations
  81. */
  82. struct disk_operations {
  83. int (*init)(struct disk_info *disk);
  84. int (*status)(struct disk_info *disk);
  85. int (*read)(struct disk_info *disk, uint8_t *data_buf,
  86. uint32_t start_sector, uint32_t num_sector);
  87. int (*write)(struct disk_info *disk, const uint8_t *data_buf,
  88. uint32_t start_sector, uint32_t num_sector);
  89. int (*ioctl)(struct disk_info *disk, uint8_t cmd, void *buff);
  90. };
  91. /**
  92. * @brief Register disk
  93. *
  94. * @param[in] disk Pointer to the disk info structure
  95. *
  96. * @return 0 on success, negative errno code on fail
  97. */
  98. int disk_access_register(struct disk_info *disk);
  99. /**
  100. * @brief Unregister disk
  101. *
  102. * @param[in] disk Pointer to the disk info structure
  103. *
  104. * @return 0 on success, negative errno code on fail
  105. */
  106. int disk_access_unregister(struct disk_info *disk);
  107. struct disk_info *disk_access_get_di(const char *pdrv);
  108. #ifdef __cplusplus
  109. }
  110. #endif
  111. /**
  112. * @}
  113. */
  114. #endif /* ZEPHYR_INCLUDE_DRIVERS_DISK_H_ */