You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
450 B
22 lines
450 B
/*
|
|
* 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 */
|