Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c221ed7c authored by E V Ravi's avatar E V Ravi Committed by Gerrit - the friendly Code Review server
Browse files

drivers: soc: boot_markers: Add bootmarkers for early camera



Create bootmarkers inorder to get bootloader early camera start time
from the RAM area

Change-Id: I6635f4bbae958c73cceae9bb4b33db339838f303
Signed-off-by: default avatarE V Ravi <evenka@codeaurora.org>
parent 84da71b2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -71,6 +71,8 @@ static void set_bootloader_stats(void)
		readl_relaxed(&boot_stats->bootloader_display));
	_create_boot_marker("M - APPSBL Early-Domain Start - ",
		readl_relaxed(&boot_stats->bootloader_early_domain_start));
	_create_boot_marker("M - APPSBL Early-Camera Start - ",
		readl_relaxed(&boot_stats->bootloader_early_camera_start));
	_create_boot_marker("D - APPSBL Kernel Load Time - ",
		readl_relaxed(&boot_stats->bootloader_load_kernel));
	_create_boot_marker("D - APPSBL Kernel Auth Time - ",
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ struct boot_stats {
	uint32_t load_kernel_end;
#ifdef CONFIG_MSM_BOOT_TIME_MARKER
	uint32_t bootloader_early_domain_start;
	uint32_t bootloader_early_camera_start;
	uint32_t bootloader_checksum;
#endif
};