flash_img.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2017 Linaro Limited
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DFU_FLASH_IMG_H_
  8. #define ZEPHYR_INCLUDE_DFU_FLASH_IMG_H_
  9. #include <storage/stream_flash.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. struct flash_img_context {
  14. uint8_t buf[CONFIG_IMG_BLOCK_BUF_SIZE];
  15. const struct flash_area *flash_area;
  16. struct stream_flash_ctx stream;
  17. };
  18. /**
  19. * @brief Structure for verify flash region integrity
  20. *
  21. * Match vector length is fixed and depends on size from hash algorithm used
  22. * to verify flash integrity. The current available algorithm is SHA-256.
  23. */
  24. struct flash_img_check {
  25. const uint8_t *match; /** Match vector data */
  26. size_t clen; /** Content to be compared */
  27. };
  28. /**
  29. * @brief Initialize context needed for writing the image to the flash.
  30. *
  31. * @param ctx context to be initialized
  32. * @param area_id flash area id of partition where the image should be written
  33. *
  34. * @return 0 on success, negative errno code on fail
  35. */
  36. int flash_img_init_id(struct flash_img_context *ctx, uint8_t area_id);
  37. /**
  38. * @brief Initialize context needed for writing the image to the flash.
  39. *
  40. * @param ctx context to be initialized
  41. *
  42. * @return 0 on success, negative errno code on fail
  43. */
  44. int flash_img_init(struct flash_img_context *ctx);
  45. /**
  46. * @brief Read number of bytes of the image written to the flash.
  47. *
  48. * @param ctx context
  49. *
  50. * @return Number of bytes written to the image flash.
  51. */
  52. size_t flash_img_bytes_written(struct flash_img_context *ctx);
  53. /**
  54. * @brief Process input buffers to be written to the image slot 1. flash
  55. * memory in single blocks. Will store remainder between calls.
  56. *
  57. * A final call to this function with flush set to true
  58. * will write out the remaining block buffer to flash. Since flash is written to
  59. * in blocks, the contents of flash from the last byte written up to the next
  60. * multiple of CONFIG_IMG_BLOCK_BUF_SIZE is padded with 0xff.
  61. *
  62. * @param ctx context
  63. * @param data data to write
  64. * @param len Number of bytes to write
  65. * @param flush when true this forces any buffered
  66. * data to be written to flash
  67. *
  68. * @return 0 on success, negative errno code on fail
  69. */
  70. int flash_img_buffered_write(struct flash_img_context *ctx, const uint8_t *data,
  71. size_t len, bool flush);
  72. /**
  73. * @brief Verify flash memory length bytes integrity from a flash area. The
  74. * start point is indicated by an offset value.
  75. *
  76. * The function is enabled via CONFIG_IMG_ENABLE_IMAGE_CHECK Kconfig options.
  77. *
  78. * @param[in] ctx context.
  79. * @param[in] fic flash img check data.
  80. * @param[in] area_id flash area id of partition where the image should be
  81. * verified.
  82. *
  83. * @return 0 on success, negative errno code on fail
  84. */
  85. int flash_img_check(struct flash_img_context *ctx,
  86. const struct flash_img_check *fic,
  87. uint8_t area_id);
  88. #ifdef __cplusplus
  89. }
  90. #endif
  91. #endif /* ZEPHYR_INCLUDE_DFU_FLASH_IMG_H_ */