summaryrefslogtreecommitdiff
path: root/include/android_image.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/android_image.h')
-rw-r--r--include/android_image.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/android_image.h b/include/android_image.h
index 1c70bf8e22..6fde9b7aae 100644
--- a/include/android_image.h
+++ b/include/android_image.h
@@ -17,6 +17,19 @@
#define ANDR_BOOT_NAME_SIZE 16
#define ANDR_BOOT_ARGS_SIZE 512
+/* Boot metric variables (in millisecond) */
+struct boot_metric
+{
+ u32 bll_1; /* 1th bootloader load duration */
+ u32 ble_1; /* 1th bootloader exec duration */
+ u32 kl; /* kernel image load duration */
+ u32 kd; /* kernel image decompress duration */
+ u32 avb; /* avb verify boot.img duration */
+ u32 odt; /* overlay device tree duration */
+ u32 sw; /* system wait for UI interaction duration*/
+};
+typedef struct boot_metric boot_metric;
+
struct andr_img_hdr {
char magic[ANDR_BOOT_MAGIC_SIZE];