mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00

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>
18 lines
420 B
C
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 */
|