nvs.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /* NVS: non volatile storage in flash
  2. *
  3. * Copyright (c) 2018 Laczen
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_FS_NVS_H_
  8. #define ZEPHYR_INCLUDE_FS_NVS_H_
  9. #include <sys/types.h>
  10. #include <kernel.h>
  11. #include <device.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @brief Non-volatile Storage
  17. * @defgroup nvs Non-volatile Storage
  18. * @ingroup file_system_storage
  19. * @{
  20. * @}
  21. */
  22. /**
  23. * @brief Non-volatile Storage Data Structures
  24. * @defgroup nvs_data_structures Non-volatile Storage Data Structures
  25. * @ingroup nvs
  26. * @{
  27. */
  28. /**
  29. * @brief Non-volatile Storage File system structure
  30. *
  31. * @param offset File system offset in flash
  32. * @param ate_wra Allocation table entry write address. Addresses are stored as uint32_t:
  33. * high 2 bytes correspond to the sector, low 2 bytes are the offset in the sector
  34. * @param data_wra Data write address
  35. * @param sector_size File system is split into sectors, each sector must be multiple of pagesize
  36. * @param sector_count Number of sectors in the file systems
  37. * @param ready Flag indicating if the filesystem is initialized
  38. * @param nvs_lock Mutex
  39. * @param flash_device Flash Device runtime structure
  40. * @param flash_parameters Flash memory parameters structure
  41. */
  42. struct nvs_fs {
  43. off_t offset;
  44. uint32_t ate_wra;
  45. uint32_t data_wra;
  46. uint16_t sector_size;
  47. uint16_t sector_count;
  48. bool ready;
  49. struct k_mutex nvs_lock;
  50. const struct device *flash_device;
  51. const struct flash_parameters *flash_parameters;
  52. };
  53. /**
  54. * @}
  55. */
  56. /**
  57. * @brief Non-volatile Storage APIs
  58. * @defgroup nvs_high_level_api Non-volatile Storage APIs
  59. * @ingroup nvs
  60. * @{
  61. */
  62. /**
  63. * @brief nvs_init
  64. *
  65. * Initializes a NVS file system in flash.
  66. *
  67. * @param fs Pointer to file system
  68. * @param dev_name Pointer to flash device name
  69. * @retval 0 Success
  70. * @retval -ERRNO errno code if error
  71. */
  72. int nvs_init(struct nvs_fs *fs, const char *dev_name);
  73. /**
  74. * @brief nvs_clear
  75. *
  76. * Clears the NVS file system from flash.
  77. * @param fs Pointer to file system
  78. * @retval 0 Success
  79. * @retval -ERRNO errno code if error
  80. */
  81. int nvs_clear(struct nvs_fs *fs);
  82. /**
  83. * @brief nvs_write
  84. *
  85. * Write an entry to the file system.
  86. *
  87. * @param fs Pointer to file system
  88. * @param id Id of the entry to be written
  89. * @param data Pointer to the data to be written
  90. * @param len Number of bytes to be written
  91. *
  92. * @return Number of bytes written. On success, it will be equal to the number of bytes requested
  93. * to be written. When a rewrite of the same data already stored is attempted, nothing is written
  94. * to flash, thus 0 is returned. On error, returns negative value of errno.h defined error codes.
  95. */
  96. ssize_t nvs_write(struct nvs_fs *fs, uint16_t id, const void *data, size_t len);
  97. /**
  98. * @brief nvs_delete
  99. *
  100. * Delete an entry from the file system
  101. *
  102. * @param fs Pointer to file system
  103. * @param id Id of the entry to be deleted
  104. * @retval 0 Success
  105. * @retval -ERRNO errno code if error
  106. */
  107. int nvs_delete(struct nvs_fs *fs, uint16_t id);
  108. /**
  109. * @brief nvs_read
  110. *
  111. * Read an entry from the file system.
  112. *
  113. * @param fs Pointer to file system
  114. * @param id Id of the entry to be read
  115. * @param data Pointer to data buffer
  116. * @param len Number of bytes to be read
  117. *
  118. * @return Number of bytes read. On success, it will be equal to the number of bytes requested
  119. * to be read. When the return value is larger than the number of bytes requested to read this
  120. * indicates not all bytes were read, and more data is available. On error, returns negative
  121. * value of errno.h defined error codes.
  122. */
  123. ssize_t nvs_read(struct nvs_fs *fs, uint16_t id, void *data, size_t len);
  124. /**
  125. * @brief nvs_read_hist
  126. *
  127. * Read a history entry from the file system.
  128. *
  129. * @param fs Pointer to file system
  130. * @param id Id of the entry to be read
  131. * @param data Pointer to data buffer
  132. * @param len Number of bytes to be read
  133. * @param cnt History counter: 0: latest entry, 1: one before latest ...
  134. *
  135. * @return Number of bytes read. On success, it will be equal to the number of bytes requested
  136. * to be read. When the return value is larger than the number of bytes requested to read this
  137. * indicates not all bytes were read, and more data is available. On error, returns negative
  138. * value of errno.h defined error codes.
  139. */
  140. ssize_t nvs_read_hist(struct nvs_fs *fs, uint16_t id, void *data, size_t len, uint16_t cnt);
  141. /**
  142. * @brief nvs_calc_free_space
  143. *
  144. * Calculate the available free space in the file system.
  145. *
  146. * @param fs Pointer to file system
  147. *
  148. * @return Number of bytes free. On success, it will be equal to the number of bytes that can
  149. * still be written to the file system. Calculating the free space is a time consuming operation,
  150. * especially on spi flash. On error, returns negative value of errno.h defined error codes.
  151. */
  152. ssize_t nvs_calc_free_space(struct nvs_fs *fs);
  153. /**
  154. * @}
  155. */
  156. #ifdef __cplusplus
  157. }
  158. #endif
  159. #endif /* ZEPHYR_INCLUDE_FS_NVS_H_ */