aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRuchika Gupta <ruchika.gupta@linaro.org>2021-11-29 13:09:44 +0530
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2021-11-30 09:23:49 +0100
commit34287efdaf6ed186a64445f65227b5407a1dcd63 (patch)
tree4970ebd5afe25dc716afba4a2a36a6e4b008ff49 /include
parent3b7bf8a9e48f0951e4060f832bba409fd406273e (diff)
downloadu-boot-34287efdaf6ed186a64445f65227b5407a1dcd63.zip
u-boot-34287efdaf6ed186a64445f65227b5407a1dcd63.tar.gz
u-boot-34287efdaf6ed186a64445f65227b5407a1dcd63.tar.bz2
efi_loader: Add check for event log passed from firmware
Platforms may have support to measure their initial firmware components and pass the event log to u-boot. The event log address can be passed in property tpm_event_log_addr and tpm_event_log_size of the tpm node. Platforms may choose their own specific mechanism to do so. A weak function is added to check if even log has been passed to u-boot from earlier firmware components. If available, the eventlog is parsed to check for its correctness and further event logs are appended to the passed log. Signed-off-by: Ruchika Gupta <ruchika.gupta@linaro.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Tested-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/efi_loader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h
index d52e399..67c40ca 100644
--- a/include/efi_loader.h
+++ b/include/efi_loader.h
@@ -988,4 +988,6 @@ efi_status_t efi_esrt_register(void);
*/
efi_status_t efi_esrt_populate(void);
efi_status_t efi_load_capsule_drivers(void);
+
+efi_status_t platform_get_eventlog(struct udevice *dev, u64 *addr, u32 *sz);
#endif /* _EFI_LOADER_H */