blob: 107cc5fa6589f6f47aef72a4edb545717c0f9624 [file] [log] [blame]
xf.li6c8fc1e2023-08-12 00:11:09 -07001/**
2 * @file pub_flags.h
3 * @brief flags·ÖÇø×Ö¶Î
4 *
5 * Copyright (C) 2023 Sanechips Technology Co., Ltd.
6 * @author
7 * @ingroup
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation. £¨±ØÑ¡£ºGPLv2 Licence£©
12 *
13 */
14
15
16#ifndef _PUB_FLAGS_H
17#define _PUB_FLAGS_H
18
19
20/*******************************************************************************
21 * Include header files *
22 ******************************************************************************/
23
24
25/*******************************************************************************
26 * Macro definitions *
27 ******************************************************************************/
28/**
29 * @brief ÔÚflags·ÖÇøÀïÆ«ÒÆµØÖ·
30 */
31#define FLAGS_MAGIC (0x464C4147UL)
32
33#define DUALSYSTEM_STATUS_BOOTABLE (0xB0AB) /* ¿ÉÆô¶¯ */
34#define DUALSYSTEM_STATUS_SUCCESSFUL (0x5CCF) /* Äܳɹ¦Æô¶¯ */
35#define DUALSYSTEM_STATUS_UNBOOTABLE (0xBABE) /* ²»¿ÉÆô¶¯ */
36
xf.lice873192023-11-08 17:10:35 -080037#define OTA_PARTITION_NUM_MAX 15
38
xf.li6c8fc1e2023-08-12 00:11:09 -070039
40/*******************************************************************************
41 * Type definitions *
42 ******************************************************************************/
43typedef struct
44{
45 int status; /* bootable/successful/unbootable */
46 int try_cnt;
47} T_DualSystem_Status;
48
49typedef enum
50{
51 DUAL_SYSTEM = 0x875A, /* µÚÒ»¸öϵͳ */
52 DUAL_SYSTEM2 = 0x986B, /* µÚ¶þ¸öϵͳ */
53} T_BOOT_TARGET;
54
xf.liaa4d92f2023-09-13 00:18:58 -070055#define NVRO_INIT (0) /* initial state */
56#define NVRO_BACKED_UP (0xBACE) /* nvro backed up already */
57#define NVRO_RESTORING (0x2E20) /* nvro restoring */
58#define NVRO_INVALID (0xDEAD) /* nvro invalid */
59
xf.li6c8fc1e2023-08-12 00:11:09 -070060/* ˫ϵͳÀàÐÍ */
61typedef enum
62{
63 DUALSYSTEM_RECOVERY = 0x7575, /* normal-recovery˫ϵͳ */
64 DUALSYSTEM_AA = 0xAAAA, /* AA˫ϵͳ */
65 DUALSYSTEM_AB = 0xABAB /* AB˫ϵͳ */
66} T_BOOT_DUALSYSTEM_TYPE;
67
68typedef struct
69{
70 T_BOOT_TARGET boot_to; /* µ±Ç°Æô¶¯ÏµÍ³±êÖ¾*/
71 unsigned int fota_status; /* fota״̬ */
72 T_DualSystem_Status system; /* µÚÒ»¸öϵͳ״̬ */
73 T_DualSystem_Status system2; /* µÚ¶þ¸öϵͳ״̬ */
74} T_BOOT_FOTA_FLAG;
75
76typedef struct
77{
78 T_BOOT_DUALSYSTEM_TYPE dualsys_type; /* ˫ϵͳÀàÐÍ */
79 char system_boot_env[128];
80 char system2_boot_env[128];
81} T_BOOT_ENV;
82
83typedef struct
84{
85 int fs_status; /* ÎļþϵͳÒì³£±êʶ */
86 char fs_mtd_name[16];
87 char fs_ubi_vol_name[16];
88} T_UBIFS_STATUS;
89
xf.lice873192023-11-08 17:10:35 -080090typedef struct {
91 int mtdnum;
92 unsigned int len;
93} T_AA_PARTITION_INFO;
94
xf.li6c8fc1e2023-08-12 00:11:09 -070095typedef struct
96{
97 unsigned int magic_start; /* Êý¾ÝÓÐЧÐÔħÊõ×Ö */
98
99 T_BOOT_FOTA_FLAG boot_fota_flag;
100 T_BOOT_ENV boot_env;
101 T_UBIFS_STATUS ubifs_status;
xf.liaa4d92f2023-09-13 00:18:58 -0700102 unsigned int nvro_flag;
xf.lice873192023-11-08 17:10:35 -0800103 unsigned int crc32;
104 T_BOOT_TARGET ota_system; /* Éý¼¶Ê±ÊÇϵͳA»¹ÊÇϵͳB */
105 T_AA_PARTITION_INFO ota_partiton_info[OTA_PARTITION_NUM_MAX]; /* ÈÝÄÉ×î¶à15¸öÉý¼¶·ÖÇøµÄimage¾µÏñ´óС */
106 char reserve[52];
xf.li6c8fc1e2023-08-12 00:11:09 -0700107
108 unsigned int magic_end; /* Êý¾ÝÓÐЧÐÔħÊõ×Ö */
109} T_FLAGS_INFO;
110
111
112#endif // _PUB_FLAGS_H
113