stream_flash.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * Copyright (c) 2017, 2020 Nordic Semiconductor ASA
  3. * Copyright (c) 2017 Linaro Limited
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Public API for stream writes to flash
  10. */
  11. #ifndef ZEPHYR_INCLUDE_STORAGE_STREAM_FLASH_H_
  12. #define ZEPHYR_INCLUDE_STORAGE_STREAM_FLASH_H_
  13. /**
  14. * @brief Abstraction over stream writes to flash
  15. *
  16. * @defgroup stream_flash Stream to flash interface
  17. * @{
  18. */
  19. #include <stdbool.h>
  20. #include <drivers/flash.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @typedef stream_flash_callback_t
  26. *
  27. * @brief Signature for callback invoked after flash write completes.
  28. *
  29. * @details Functions of this type are invoked with a buffer containing
  30. * data read back from the flash after a flash write has completed.
  31. * This enables verifying that the data has been correctly stored (for
  32. * instance by using a SHA function). The write buffer 'buf' provided in
  33. * stream_flash_init is used as a read buffer for this purpose.
  34. *
  35. * @param buf Pointer to the data read.
  36. * @param len The length of the data read.
  37. * @param offset The offset the data was read from.
  38. */
  39. typedef int (*stream_flash_callback_t)(uint8_t *buf, size_t len, size_t offset);
  40. /**
  41. * @brief Structure for stream flash context
  42. *
  43. * Users should treat these structures as opaque values and only interact
  44. * with them through the below API.
  45. */
  46. struct stream_flash_ctx {
  47. uint8_t *buf; /* Write buffer */
  48. size_t buf_len; /* Length of write buffer */
  49. size_t buf_bytes; /* Number of bytes currently stored in write buf */
  50. const struct device *fdev; /* Flash device */
  51. size_t bytes_written; /* Number of bytes written to flash */
  52. size_t offset; /* Offset from base of flash device to write area */
  53. size_t available; /* Available bytes in write area */
  54. stream_flash_callback_t callback; /* Callback invoked after write op */
  55. #ifdef CONFIG_STREAM_FLASH_ERASE
  56. off_t last_erased_page_start_offset; /* Last erased offset */
  57. #endif
  58. };
  59. /**
  60. * @brief Initialize context needed for stream writes to flash.
  61. *
  62. * @param ctx context to be initialized
  63. * @param fdev Flash device to operate on
  64. * @param buf Write buffer
  65. * @param buf_len Length of write buffer. Can not be larger than the page size.
  66. * Must be multiple of the flash device write-block-size.
  67. * @param offset Offset within flash device to start writing to
  68. * @param size Number of bytes available for performing buffered write.
  69. * If this is '0', the size will be set to the total size
  70. * of the flash device minus the offset.
  71. * @param cb Callback to be invoked on completed flash write operations.
  72. *
  73. * @return non-negative on success, negative errno code on fail
  74. */
  75. int stream_flash_init(struct stream_flash_ctx *ctx, const struct device *fdev,
  76. uint8_t *buf, size_t buf_len, size_t offset, size_t size,
  77. stream_flash_callback_t cb);
  78. /**
  79. * @brief Read number of bytes written to the flash.
  80. *
  81. * @note api-tags: pre-kernel-ok isr-ok
  82. *
  83. * @param ctx context
  84. *
  85. * @return Number of payload bytes written to flash.
  86. */
  87. size_t stream_flash_bytes_written(struct stream_flash_ctx *ctx);
  88. /**
  89. * @brief Process input buffers to be written to flash device in single blocks.
  90. * Will store remainder between calls.
  91. *
  92. * A final call to this function with flush set to true
  93. * will write out the remaining block buffer to flash.
  94. *
  95. * @param ctx context
  96. * @param data data to write
  97. * @param len Number of bytes to write
  98. * @param flush when true this forces any buffered data to be written to flash
  99. * A flush write should be the last write operation in a sequence of
  100. * write operations for given context (although this is not mandatory
  101. * if the total data size is a multiple of the buffer size).
  102. *
  103. * @return non-negative on success, negative errno code on fail
  104. */
  105. int stream_flash_buffered_write(struct stream_flash_ctx *ctx, const uint8_t *data,
  106. size_t len, bool flush);
  107. /**
  108. * @brief Erase the flash page to which a given offset belongs.
  109. *
  110. * This function erases a flash page to which an offset belongs if this page
  111. * is not the page previously erased by the provided ctx
  112. * (ctx->last_erased_page_start_offset).
  113. *
  114. * @param ctx context
  115. * @param off offset from the base address of the flash device
  116. *
  117. * @return non-negative on success, negative errno code on fail
  118. */
  119. int stream_flash_erase_page(struct stream_flash_ctx *ctx, off_t off);
  120. /**
  121. * @brief Load persistent stream write progress stored with key
  122. * @p settings_key .
  123. *
  124. * This function should be called directly after @ref stream_flash_init to
  125. * load previous stream write progress before writing any data. If the loaded
  126. * progress has fewer bytes written than @p ctx then it will be ignored.
  127. *
  128. * @param ctx context
  129. * @param settings_key key to use with the settings module for loading
  130. * the stream write progress
  131. *
  132. * @return non-negative on success, negative errno code on fail
  133. */
  134. int stream_flash_progress_load(struct stream_flash_ctx *ctx,
  135. const char *settings_key);
  136. /**
  137. * @brief Save persistent stream write progress using key @p settings_key .
  138. *
  139. * @param ctx context
  140. * @param settings_key key to use with the settings module for storing
  141. * the stream write progress
  142. *
  143. * @return non-negative on success, negative errno code on fail
  144. */
  145. int stream_flash_progress_save(struct stream_flash_ctx *ctx,
  146. const char *settings_key);
  147. /**
  148. * @brief Clear persistent stream write progress stored with key
  149. * @p settings_key .
  150. *
  151. * @param ctx context
  152. * @param settings_key key previously used for storing the stream write progress
  153. *
  154. * @return non-negative on success, negative errno code on fail
  155. */
  156. int stream_flash_progress_clear(struct stream_flash_ctx *ctx,
  157. const char *settings_key);
  158. #ifdef __cplusplus
  159. }
  160. #endif
  161. /**
  162. * @}
  163. */
  164. #endif /* ZEPHYR_INCLUDE_STORAGE_STREAM_FLASH_H_ */