flash_map.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Runtime Inc
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Public API for flash map
  10. */
  11. #ifndef ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_
  12. #define ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_
  13. /**
  14. * @brief Abstraction over flash partitions/areas and their drivers
  15. *
  16. * @defgroup flash_area_api flash area Interface
  17. * @{
  18. */
  19. /*
  20. * This API makes it possible to operate on flash areas easily and
  21. * effectively.
  22. *
  23. * The system contains global data about flash areas. Every area
  24. * contains an ID number, offset, and length.
  25. */
  26. /**
  27. *
  28. */
  29. #include <zephyr/types.h>
  30. #include <stddef.h>
  31. #include <sys/types.h>
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. /** Provided for compatibility with MCUboot */
  36. #define SOC_FLASH_0_ID 0
  37. /** Provided for compatibility with MCUboot */
  38. #define SPI_FLASH_0_ID 1
  39. /**
  40. * @brief Flash partition
  41. *
  42. * This structure represents a fixed-size partition on a flash device.
  43. * Each partition contains one or more flash sectors.
  44. */
  45. struct flash_area {
  46. /** ID number */
  47. uint8_t fa_id;
  48. /** Provided for compatibility with MCUboot */
  49. uint8_t fa_device_id;
  50. uint16_t pad16;
  51. /** Start offset from the beginning of the flash device */
  52. off_t fa_off;
  53. /** Total size */
  54. size_t fa_size;
  55. /**
  56. * Name of the flash device, suitable for passing to
  57. * device_get_binding().
  58. */
  59. const char *fa_dev_name;
  60. };
  61. /**
  62. * @brief Structure for transfer flash sector boundaries
  63. *
  64. * This template is used for presentation of flash memory structure. It
  65. * consumes much less RAM than @ref flash_area
  66. */
  67. struct flash_sector {
  68. /** Sector offset from the beginning of the flash device */
  69. off_t fs_off;
  70. /** Sector size in bytes */
  71. size_t fs_size;
  72. };
  73. #if defined(CONFIG_FLASH_AREA_CHECK_INTEGRITY)
  74. /**
  75. * @brief Structure for verify flash region integrity
  76. *
  77. * This is used to pass data to be used to check flash integrity using SHA-256
  78. * algorithm.
  79. */
  80. struct flash_area_check {
  81. const uint8_t *match; /** 256 bits match vector */
  82. size_t clen; /** Content len to be compared */
  83. size_t off; /** Start Offset */
  84. uint8_t *rbuf; /** Temporary read buffer */
  85. size_t rblen; /** Size of read buffer */
  86. };
  87. /**
  88. * Verify flash memory length bytes integrity from a flash area. The start
  89. * point is indicated by an offset value.
  90. *
  91. * @param[in] fa Flash area
  92. * @param[in] fic Flash area check integrity data
  93. *
  94. * @return 0 on success, negative errno code on fail
  95. */
  96. int flash_area_check_int_sha256(const struct flash_area *fa,
  97. const struct flash_area_check *fac);
  98. #endif
  99. /**
  100. * @brief Retrieve partitions flash area from the flash_map.
  101. *
  102. * Function Retrieves flash_area from flash_map for given partition.
  103. *
  104. * @param[in] id ID of the flash partition.
  105. * @param[out] fa Pointer which has to reference flash_area. If
  106. * @p ID is unknown, it will be NULL on output.
  107. *
  108. * @return 0 on success, -EACCES if the flash_map is not available ,
  109. * -ENOENT if @p ID is unknown.
  110. */
  111. int flash_area_open(uint8_t id, const struct flash_area **fa);
  112. /**
  113. * @brief Close flash_area
  114. *
  115. * Reserved for future usage and external projects compatibility reason.
  116. * Currently is NOP.
  117. *
  118. * @param[in] fa Flash area to be closed.
  119. */
  120. void flash_area_close(const struct flash_area *fa);
  121. /**
  122. * @brief Read flash area data
  123. *
  124. * Read data from flash area. Area readout boundaries are asserted before read
  125. * request. API has the same limitation regard read-block alignment and size
  126. * as wrapped flash driver.
  127. *
  128. * @param[in] fa Flash area
  129. * @param[in] off Offset relative from beginning of flash area to read
  130. * @param[out] dst Buffer to store read data
  131. * @param[in] len Number of bytes to read
  132. *
  133. * @return 0 on success, negative errno code on fail.
  134. */
  135. int flash_area_read(const struct flash_area *fa, off_t off, void *dst,
  136. size_t len);
  137. /**
  138. * @brief Write data to flash area
  139. *
  140. * Write data to flash area. Area write boundaries are asserted before write
  141. * request. API has the same limitation regard write-block alignment and size
  142. * as wrapped flash driver.
  143. *
  144. * @param[in] fa Flash area
  145. * @param[in] off Offset relative from beginning of flash area to read
  146. * @param[out] src Buffer with data to be written
  147. * @param[in] len Number of bytes to write
  148. *
  149. * @return 0 on success, negative errno code on fail.
  150. */
  151. int flash_area_write(const struct flash_area *fa, off_t off, const void *src,
  152. size_t len);
  153. /**
  154. * @brief Erase flash area
  155. *
  156. * Erase given flash area range. Area boundaries are asserted before erase
  157. * request. API has the same limitation regard erase-block alignment and size
  158. * as wrapped flash driver.
  159. *
  160. * @param[in] fa Flash area
  161. * @param[in] off Offset relative from beginning of flash area.
  162. * @param[in] len Number of bytes to be erase
  163. *
  164. * @return 0 on success, negative errno code on fail.
  165. */
  166. int flash_area_erase(const struct flash_area *fa, off_t off, size_t len);
  167. /**
  168. * @brief Get write block size of the flash area
  169. *
  170. * Currently write block size might be treated as read block size, although
  171. * most of drivers supports unaligned readout.
  172. *
  173. * @param[in] fa Flash area
  174. *
  175. * @return Alignment restriction for flash writes in [B].
  176. */
  177. uint8_t flash_area_align(const struct flash_area *fa);
  178. /**
  179. * Retrieve info about sectors within the area.
  180. *
  181. * @param[in] fa_id Given flash area ID
  182. * @param[out] sectors buffer for sectors data
  183. * @param[in,out] count On input Capacity of @p sectors, on output number of
  184. * sectors Retrieved.
  185. *
  186. * @return 0 on success, negative errno code on fail. Especially returns
  187. * -ENOMEM if There are too many flash pages on the flash_area to fit in the
  188. * array.
  189. */
  190. int flash_area_get_sectors(int fa_id, uint32_t *count,
  191. struct flash_sector *sectors);
  192. /**
  193. * Flash map iteration callback
  194. *
  195. * @param fa flash area
  196. * @param user_data User supplied data
  197. *
  198. */
  199. typedef void (*flash_area_cb_t)(const struct flash_area *fa,
  200. void *user_data);
  201. /**
  202. * Iterate over flash map
  203. *
  204. * @param user_cb User callback
  205. * @param user_data User supplied data
  206. */
  207. void flash_area_foreach(flash_area_cb_t user_cb, void *user_data);
  208. /**
  209. * Check whether given flash area has supporting flash driver
  210. * in the system.
  211. *
  212. * @param[in] fa Flash area.
  213. *
  214. * @return 1 On success. -ENODEV if no driver match.
  215. */
  216. int flash_area_has_driver(const struct flash_area *fa);
  217. /**
  218. * Get driver for given flash area.
  219. *
  220. * @param fa Flash area.
  221. *
  222. * @return device driver.
  223. */
  224. const struct device *flash_area_get_device(const struct flash_area *fa);
  225. /**
  226. * Get the value expected to be read when accessing any erased
  227. * flash byte.
  228. * This API is compatible with the MCUBoot's porting layer.
  229. *
  230. * @param fa Flash area.
  231. *
  232. * @return Byte value of erase memory.
  233. */
  234. uint8_t flash_area_erased_val(const struct flash_area *fa);
  235. #define FLASH_AREA_LABEL_EXISTS(label) \
  236. DT_HAS_FIXED_PARTITION_LABEL(label)
  237. #define FLASH_AREA_LABEL_STR(lbl) \
  238. DT_PROP(DT_NODE_BY_FIXED_PARTITION_LABEL(lbl), label)
  239. #define FLASH_AREA_ID(label) \
  240. DT_FIXED_PARTITION_ID(DT_NODE_BY_FIXED_PARTITION_LABEL(label))
  241. #define FLASH_AREA_OFFSET(label) \
  242. DT_REG_ADDR(DT_NODE_BY_FIXED_PARTITION_LABEL(label))
  243. #define FLASH_AREA_SIZE(label) \
  244. DT_REG_SIZE(DT_NODE_BY_FIXED_PARTITION_LABEL(label))
  245. #ifdef __cplusplus
  246. }
  247. #endif
  248. /**
  249. * @}
  250. */
  251. #endif /* ZEPHYR_INCLUDE_STORAGE_FLASH_MAP_H_ */