fw_version.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief firmware version interface
  9. */
  10. #ifndef __FW_VERSION_H__
  11. #define __FW_VERSION_H__
  12. #define FIRMWARE_VERSION_MAGIC 0x52455646 /* 'FVER' */
  13. #define FIRMWARE_VERSION "FW_VERS" /* 'FVER' */
  14. #define DEFAULT_VER_CODE (0x10000)
  15. #define DEFAULT_VER_RES (0x10000)
  16. struct fw_version {
  17. uint32_t magic;
  18. uint32_t version_code;
  19. uint32_t version_res;
  20. uint32_t system_version_code;
  21. char version_name[64];
  22. char board_name[32];
  23. uint8_t reserved1[12];
  24. uint32_t checksum;
  25. };
  26. struct code_res_version {
  27. uint32_t version_code;
  28. uint32_t version_res;
  29. };
  30. const struct fw_version *fw_version_get_current(void);
  31. void fw_version_dump(const struct fw_version *ver);
  32. int fw_version_check(const struct fw_version *ver);
  33. static inline void fw_version_dump_current(void)
  34. {
  35. fw_version_dump(fw_version_get_current());
  36. }
  37. static inline uint32_t fw_version_get_code(void)
  38. {
  39. return fw_version_get_current()->version_code;
  40. }
  41. static inline uint32_t fw_version_get_res(void)
  42. {
  43. return fw_version_get_current()->version_res;
  44. }
  45. static inline const char *fw_version_get_name(void)
  46. {
  47. return fw_version_get_current()->version_name;
  48. }
  49. static inline const char *fw_version_get_board_name(void)
  50. {
  51. return fw_version_get_current()->board_name;
  52. }
  53. #endif /* __FW_VERSION_H__ */