arm-trusted-firmware/plat/rpi/rpi3/include/rpi3_measured_boot.h
Abhi Singh 6dfcf4e1df feat(rpi3): implement eventlog handoff to BL33
At the end of BL2 measured boot, write the address
and size of the TCG Event Log to NT_FW_CONFIG so
that the log can be consumed later by BL33.
-add dynamic configuration helpers for the fdt
-write the eventlog address and size to the fdt

Change-Id: I099dd9cc96d740ae13cb8b8e8c6b9f2e6c02accc
Signed-off-by: Abhi Singh <abhi.singh@arm.com>
2025-03-18 19:54:35 +01:00

18 lines
420 B
C

/*
* Copyright (c) 2025, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef RPI3_MEASURED_BOOT_H
#define RPI3_MEASURED_BOOT_H
#include <stdint.h>
#include <arch_helpers.h>
void rpi3_mboot_fetch_eventlog_info(uint8_t **eventlog_addr, size_t *eventlog_size);
int rpi3_set_nt_fw_info(size_t log_size, uintptr_t *ns_log_addr);
#endif /* RPI3_MEASURED_BOOT_H */