arm-trusted-firmware/include/drivers/measured_boot/measured_boot.h
Alexei Fedorov d686fa3b97 TF-A: Add Event Log for Measured Boot
This patch adds support for Event Log generation required
for Measured Boot functionality.

Change-Id: I34f05a33565e6659e78499d62cc6fb00b7d6c2dc
Signed-off-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
2020-07-21 20:33:15 +00:00

21 lines
450 B
C

/*
* Copyright (c) 2020, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef MEASURED_BOOT_H
#define MEASURED_BOOT_H
#include <stdint.h>
#include <drivers/measured_boot/event_log.h>
/* Platform specific table of image IDs, names and PCRs */
extern const image_data_t images_data[];
/* Functions' declarations */
void measured_boot_init(void);
void measured_boot_finish(void);
#endif /* MEASURED_BOOT_H */