partition.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief partition interface
  9. */
  10. #ifndef __PARTITION_H__
  11. #define __PARTITION_H__
  12. #define MAX_PARTITION_COUNT 30
  13. struct partition_entry {
  14. u8_t name[8];
  15. u8_t type;
  16. u8_t file_id;
  17. u8_t mirror_id:4;
  18. u8_t storage_id:4;
  19. u8_t flag;
  20. u32_t offset;
  21. u32_t size;
  22. u32_t file_offset;
  23. } __attribute__((packed));
  24. //storage_id
  25. #define STORAGE_ID_NOR 0
  26. #define STORAGE_ID_SD 1
  27. #define STORAGE_ID_NAND 2
  28. #define STORAGE_ID_MAX 3
  29. #define PARTITION_FLAG_ENABLE_CRC (1 << 0)
  30. #define PARTITION_FLAG_ENABLE_ENCRYPTION (1 << 1)
  31. #define PARTITION_FLAG_BOOT_CHECK (1 << 2)
  32. #define PARTITION_MIRROR_ID_A (0)
  33. #define PARTITION_MIRROR_ID_B (1)
  34. #define PARTITION_MIRROR_ID_INVALID (0xf)
  35. #define PARTITION_TYPE_INVALID (0)
  36. #define PARTITION_TYPE_BOOT (1)
  37. #define PARTITION_TYPE_SYSTEM (2)
  38. #define PARTITION_TYPE_RECOVERY (3)
  39. #define PARTITION_TYPE_DATA (4)
  40. #define PARTITION_TYPE_TEMP (5)
  41. #define PARTITION_TYPE_PARAM (6)
  42. /* predefined file ids */
  43. #define PARTITION_FILE_ID_INVALID (0)
  44. #define PARTITION_FILE_ID_BOOT (1)
  45. #define PARTITION_FILE_ID_PARAM (2)
  46. #define PARTITION_FILE_ID_RECOVERY (3)
  47. #define PARTITION_FILE_ID_SYSTEM (4)
  48. #define PARTITION_FILE_ID_SDFS (5)
  49. #define PARTITION_FILE_ID_NVRAM_FACTORY (6)
  50. #define PARTITION_FILE_ID_NVRAM_FACTORY_RW (7)
  51. #define PARTITION_FILE_ID_NVRAM_USER (8)
  52. #define PARTITION_FILE_ID_IMAGE_SCRATCH (9)
  53. /*sdfs 10-40*/
  54. #define PARTITION_FILE_ID_SDFS_PART_BASE (10)
  55. #define PARTITION_FILE_ID_SDFS_PART0 (PARTITION_FILE_ID_SDFS_PART_BASE+0)
  56. #define PARTITION_FILE_ID_SDFS_PART1 (PARTITION_FILE_ID_SDFS_PART_BASE+1)
  57. #define PARTITION_FILE_ID_SDFS_PART2 (PARTITION_FILE_ID_SDFS_PART_BASE+2)
  58. #define PARTITION_FILE_ID_SDFS_PART30 (PARTITION_FILE_ID_SDFS_PART_BASE+30)
  59. #define PARTITION_FILE_ID_UDISK 40
  60. #define PARTITION_FILE_ID_OTA_TEMP (0xfe)
  61. #define PARTITION_FILE_ID_RESERVED (0xff)
  62. const struct partition_entry *partition_get_part(u8_t file_id);
  63. const struct partition_entry *partition_get_mirror_part(u8_t file_id);
  64. const struct partition_entry *partition_find_part(u32_t nor_phy_addr);
  65. const struct partition_entry *partition_get_part_by_id(u8_t part_id);
  66. const struct partition_entry *partition_get_temp_part(void);
  67. const struct partition_entry *partition_get_stf_part(u8_t stor_id, u8_t file_id);
  68. const struct partition_entry *partition_get_part_by_type_mirrorid(u8_t type, u8_t mirrorid);
  69. u8_t partition_get_current_file_id(void);
  70. u8_t partition_get_current_mirror_id(void);
  71. int partition_is_mirror_part(const struct partition_entry *part);
  72. int partition_get_max_file_size(const struct partition_entry *part);
  73. int partition_is_param_part(const struct partition_entry *part);
  74. int partition_is_boot_part(const struct partition_entry *part);
  75. int partition_file_mapping(u8_t file_id, u32_t vaddr);
  76. int partition_valid_check(void);
  77. #endif /* __PARTITION_H__ */