disk_access.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Disk Access layer API
  9. *
  10. * This file contains APIs for disk access.
  11. */
  12. #ifndef ZEPHYR_INCLUDE_STORAGE_DISK_ACCESS_H_
  13. #define ZEPHYR_INCLUDE_STORAGE_DISK_ACCESS_H_
  14. /**
  15. * @brief Disk Access APIs
  16. * @defgroup disk_access_interface Disk Access Interface
  17. * @{
  18. */
  19. #include <drivers/disk.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @brief perform any initialization
  25. *
  26. * This call is made by the consumer before doing any IO calls so that the
  27. * disk or the backing device can do any initialization.
  28. *
  29. * @param[in] pdrv Disk name
  30. *
  31. * @return 0 on success, negative errno code on fail
  32. */
  33. int disk_access_init(const char *pdrv);
  34. /**
  35. * @brief Get the status of disk
  36. *
  37. * This call is used to get the status of the disk
  38. *
  39. * @param[in] pdrv Disk name
  40. *
  41. * @return DISK_STATUS_OK or other DISK_STATUS_*s
  42. */
  43. int disk_access_status(const char *pdrv);
  44. /**
  45. * @brief read data from disk
  46. *
  47. * Function to read data from disk to a memory buffer.
  48. *
  49. * @param[in] pdrv Disk name
  50. * @param[in] data_buf Pointer to the memory buffer to put data.
  51. * @param[in] start_sector Start disk sector to read from
  52. * @param[in] num_sector Number of disk sectors to read
  53. *
  54. * @return 0 on success, negative errno code on fail
  55. */
  56. int disk_access_read(const char *pdrv, uint8_t *data_buf,
  57. uint32_t start_sector, uint32_t num_sector);
  58. /**
  59. * @brief write data to disk
  60. *
  61. * Function write data from memory buffer to disk.
  62. *
  63. * @param[in] pdrv Disk name
  64. * @param[in] data_buf Pointer to the memory buffer
  65. * @param[in] start_sector Start disk sector to write to
  66. * @param[in] num_sector Number of disk sectors to write
  67. *
  68. * @return 0 on success, negative errno code on fail
  69. */
  70. int disk_access_write(const char *pdrv, const uint8_t *data_buf,
  71. uint32_t start_sector, uint32_t num_sector);
  72. /**
  73. * @brief Get/Configure disk parameters
  74. *
  75. * Function to get disk parameters and make any special device requests.
  76. *
  77. * @param[in] pdrv Disk name
  78. * @param[in] cmd DISK_IOCTL_* code describing the request
  79. * @param[in] buff Command data buffer
  80. *
  81. * @return 0 on success, negative errno code on fail
  82. */
  83. int disk_access_ioctl(const char *pdrv, uint8_t cmd, void *buff);
  84. #ifdef __cplusplus
  85. }
  86. #endif
  87. /**
  88. * @}
  89. */
  90. #endif /* ZEPHYR_INCLUDE_STORAGE_DISK_ACCESS_H_ */