fcb_priv.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (c) 2017-2020 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Runtime Inc
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef __FCB_PRIV_H_
  8. #define __FCB_PRIV_H_
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #define FCB_CRC_SZ sizeof(uint8_t)
  13. #define FCB_TMP_BUF_SZ 32
  14. #define FCB_ID_GT(a, b) (((int16_t)(a) - (int16_t)(b)) > 0)
  15. #define MK32(val) ((((uint32_t)(val)) << 24) | \
  16. (((uint32_t)((val) & 0xff)) << 16) | \
  17. (((uint32_t)((val) & 0xff)) << 8) | \
  18. (((uint32_t)((val) & 0xff))))
  19. /* @brief Gets magic value in flash formatted version
  20. *
  21. * Magic, the fcb->f_magic, prior to being written to flash, is xored with
  22. * binary inversion of fcb->f_erase_value to avoid it matching a 4 consecutive
  23. * bytes of flash erase value, which is used to recognize end of records,
  24. * by accident. Only the value of 0xFFFFFFFF will be always written as
  25. * 4 bytes of erase value.
  26. *
  27. * @param fcb pointer to initialized fcb structure
  28. *
  29. * @return uin32_t formatted magic value
  30. */
  31. static inline uint32_t fcb_flash_magic(const struct fcb *fcb)
  32. {
  33. const uint8_t ev = fcb->f_erase_value;
  34. return (fcb->f_magic ^ ~MK32(ev));
  35. }
  36. struct fcb_disk_area {
  37. uint32_t fd_magic;
  38. uint8_t fd_ver;
  39. uint8_t _pad;
  40. uint16_t fd_id;
  41. };
  42. int fcb_put_len(const struct fcb *fcb, uint8_t *buf, uint16_t len);
  43. int fcb_get_len(const struct fcb *fcb, uint8_t *buf, uint16_t *len);
  44. static inline int fcb_len_in_flash(struct fcb *fcb, uint16_t len)
  45. {
  46. if (fcb->f_align <= 1U) {
  47. return len;
  48. }
  49. return (len + (fcb->f_align - 1U)) & ~(fcb->f_align - 1U);
  50. }
  51. const struct flash_area *fcb_open_flash(const struct fcb *fcb);
  52. uint8_t fcb_get_align(const struct fcb *fcb);
  53. int fcb_erase_sector(const struct fcb *fcb, const struct flash_sector *sector);
  54. int fcb_getnext_in_sector(struct fcb *fcb, struct fcb_entry *loc);
  55. struct flash_sector *fcb_getnext_sector(struct fcb *fcb,
  56. struct flash_sector *sector);
  57. int fcb_getnext_nolock(struct fcb *fcb, struct fcb_entry *loc);
  58. int fcb_elem_info(struct fcb *fcb, struct fcb_entry *loc);
  59. int fcb_elem_crc8(struct fcb *fcb, struct fcb_entry *loc, uint8_t *crc8p);
  60. int fcb_sector_hdr_init(struct fcb *fcb, struct flash_sector *sector, uint16_t id);
  61. int fcb_sector_hdr_read(struct fcb *fcb, struct flash_sector *sector,
  62. struct fcb_disk_area *fdap);
  63. #ifdef __cplusplus
  64. }
  65. #endif
  66. #endif /* __FCB_PRIV_H_ */