blob: dc95ba1c052a2e8db2679d06e03f4e35ba4cf165 [file] [log] [blame]
Manish V Badarkhea74d9632021-09-14 23:12:42 +01001/*
Manish V Badarkhec774ec82023-06-16 13:03:51 +01002 * Copyright (c) 2021-2023, Arm Limited. All rights reserved.
Manish V Badarkhea74d9632021-09-14 23:12:42 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdint.h>
8
9#include <drivers/measured_boot/event_log/event_log.h>
Tamas Banb0f83252022-02-11 09:49:36 +010010#include <drivers/measured_boot/rss/rss_measured_boot.h>
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010011#include <plat/arm/common/plat_arm.h>
Manish V Badarkhe95af6a02023-04-11 14:46:10 +010012#include <tools_share/zero_oid.h>
Manish V Badarkhea74d9632021-09-14 23:12:42 +010013
14/* Event Log data */
15static uint8_t event_log[PLAT_ARM_EVENT_LOG_MAX_SIZE];
16
17/* FVP table with platform specific image IDs, names and PCRs */
18const event_log_metadata_t fvp_event_log_metadata[] = {
Manish V Badarkhe72e03692021-09-08 20:04:24 +010019 { FW_CONFIG_ID, EVLOG_FW_CONFIG_STRING, PCR_0 },
20 { TB_FW_CONFIG_ID, EVLOG_TB_FW_CONFIG_STRING, PCR_0 },
21 { BL2_IMAGE_ID, EVLOG_BL2_STRING, PCR_0 },
Manish V Badarkhe67009c32021-10-31 14:47:49 +000022
23 { EVLOG_INVALID_ID, NULL, (unsigned int)(-1) } /* Terminator */
Manish V Badarkhea74d9632021-09-14 23:12:42 +010024};
25
Tamas Banb0f83252022-02-11 09:49:36 +010026/* FVP table with platform specific image IDs and metadata. Intentionally not a
27 * const struct, some members might set by bootloaders during trusted boot.
28 */
29struct rss_mboot_metadata fvp_rss_mboot_metadata[] = {
30 {
31 .id = FW_CONFIG_ID,
32 .slot = U(6),
33 .signer_id_size = SIGNER_ID_MIN_SIZE,
34 .sw_type = RSS_MBOOT_FW_CONFIG_STRING,
Manish V Badarkhe95af6a02023-04-11 14:46:10 +010035 .pk_oid = ZERO_OID,
Tamas Banb0f83252022-02-11 09:49:36 +010036 .lock_measurement = true },
37 {
38 .id = TB_FW_CONFIG_ID,
39 .slot = U(7),
40 .signer_id_size = SIGNER_ID_MIN_SIZE,
41 .sw_type = RSS_MBOOT_TB_FW_CONFIG_STRING,
Manish V Badarkhe95af6a02023-04-11 14:46:10 +010042 .pk_oid = ZERO_OID,
Tamas Banb0f83252022-02-11 09:49:36 +010043 .lock_measurement = true },
44 {
45 .id = BL2_IMAGE_ID,
46 .slot = U(8),
47 .signer_id_size = SIGNER_ID_MIN_SIZE,
48 .sw_type = RSS_MBOOT_BL2_STRING,
Manish V Badarkhe95af6a02023-04-11 14:46:10 +010049 .pk_oid = ZERO_OID,
Tamas Banb0f83252022-02-11 09:49:36 +010050 .lock_measurement = true },
51
52 {
53 .id = RSS_MBOOT_INVALID_ID }
54};
55
Manish V Badarkhea74d9632021-09-14 23:12:42 +010056void bl1_plat_mboot_init(void)
57{
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010058 event_log_init(event_log, event_log + sizeof(event_log));
59 event_log_write_header();
Tamas Banb0f83252022-02-11 09:49:36 +010060
Manish V Badarkhec774ec82023-06-16 13:03:51 +010061 rss_measured_boot_init(fvp_rss_mboot_metadata);
Manish V Badarkhea74d9632021-09-14 23:12:42 +010062}
63
64void bl1_plat_mboot_finish(void)
65{
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010066 size_t event_log_cur_size;
67
68 event_log_cur_size = event_log_get_cur_size(event_log);
69 int rc = arm_set_tb_fw_info((uintptr_t)event_log,
Manish V Badarkhe6e6df442023-03-20 14:58:06 +000070 event_log_cur_size,
71 PLAT_ARM_EVENT_LOG_MAX_SIZE);
Manish V Badarkhe4edf4bd2021-08-11 10:45:03 +010072 if (rc != 0) {
73 /*
74 * It is a fatal error because on FVP platform, BL2 software
75 * assumes that a valid Event Log buffer exist and it will use
76 * same Event Log buffer to append image measurements.
77 */
78 panic();
79 }
Manish V Badarkhea74d9632021-09-14 23:12:42 +010080}