partition.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_DATA_NOR 3
  29. #define STORAGE_ID_BOOTNAND 4
  30. #define STORAGE_ID_MAX 5
  31. #define PARTITION_FLAG_ENABLE_CRC (1 << 0)
  32. #define PARTITION_FLAG_ENABLE_ENCRYPTION (1 << 1)
  33. #define PARTITION_FLAG_BOOT_CHECK (1 << 2)
  34. #define PARTITION_FLAG_USED_SECTOR (1 << 3)
  35. #define PARTITION_MIRROR_ID_A (0)
  36. #define PARTITION_MIRROR_ID_B (1)
  37. #define PARTITION_MIRROR_ID_INVALID (0xf)
  38. #define PARTITION_TYPE_INVALID (0)
  39. #define PARTITION_TYPE_BOOT (1)
  40. #define PARTITION_TYPE_SYSTEM (2)
  41. #define PARTITION_TYPE_RECOVERY (3)
  42. #define PARTITION_TYPE_DATA (4)
  43. #define PARTITION_TYPE_TEMP (5)
  44. #define PARTITION_TYPE_PARAM (6)
  45. /* predefined file ids */
  46. #define PARTITION_FILE_ID_INVALID (0)
  47. #define PARTITION_FILE_ID_BOOT (1)
  48. #define PARTITION_FILE_ID_PARAM (2)
  49. #define PARTITION_FILE_ID_RECOVERY (3)
  50. #define PARTITION_FILE_ID_SYSTEM (4)
  51. #define PARTITION_FILE_ID_SDFS (5)
  52. #define PARTITION_FILE_ID_NVRAM_FACTORY (6)
  53. #define PARTITION_FILE_ID_NVRAM_FACTORY_RW (7)
  54. #define PARTITION_FILE_ID_NVRAM_USER (8)
  55. #define PARTITION_FILE_ID_IMAGE_SCRATCH (9)
  56. /*sdfs 10-40*/
  57. #define PARTITION_FILE_ID_SDFS_PART_BASE (10)
  58. #define PARTITION_FILE_ID_SDFS_PART0 (PARTITION_FILE_ID_SDFS_PART_BASE+0)
  59. #define PARTITION_FILE_ID_SDFS_PART1 (PARTITION_FILE_ID_SDFS_PART_BASE+1)
  60. #define PARTITION_FILE_ID_SDFS_PART2 (PARTITION_FILE_ID_SDFS_PART_BASE+2)
  61. #define PARTITION_FILE_ID_SDFS_PART30 (PARTITION_FILE_ID_SDFS_PART_BASE+30)
  62. #define PARTITION_FILE_ID_UDISK 40
  63. #define PARTITION_FILE_ID_LITTLEFS 41
  64. #define PARTITION_FILE_ID_RUNTIME_LOGBUF (0xfa)
  65. #define PARTITION_FILE_ID_LOGBUF (0xfb)
  66. #define PARTITION_FILE_ID_EVTBUF (0xfc)
  67. #define PARTITION_FILE_ID_COREDUMP (0xfd)
  68. #define PARTITION_FILE_ID_OTA_TEMP (0xfe)
  69. #define PARTITION_FILE_ID_RESERVED (0xff)
  70. const struct partition_entry *partition_get_part(u8_t file_id);
  71. const struct partition_entry *partition_get_mirror_part(u8_t file_id);
  72. const struct partition_entry *partition_find_part(u32_t nor_phy_addr);
  73. const struct partition_entry *partition_get_part_by_id(u8_t part_id);
  74. const struct partition_entry *partition_get_temp_part(void);
  75. const struct partition_entry *partition_get_stf_part(u8_t stor_id, u8_t file_id);
  76. u8_t partition_get_current_file_id(void);
  77. u8_t partition_get_current_mirror_id(void);
  78. int partition_is_mirror_part(const struct partition_entry *part);
  79. struct device *partition_get_storage_dev(const struct partition_entry *part);
  80. int partition_get_max_file_size(const struct partition_entry *part);
  81. int partition_is_param_part(const struct partition_entry *part);
  82. int partition_is_boot_part(const struct partition_entry *part);
  83. int partition_file_mapping(u8_t file_id, u32_t vaddr);
  84. bool partition_is_used_sector(const struct partition_entry *part);
  85. #endif /* __PARTITION_H__ */