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

Implemented 'plat_mboot_measure_key' platform function for TC platform to measure and publicise the public key information via RSS. Change-Id: I10d90e921b135e729d5450d5a7468d0598072e60 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
36 lines
890 B
C
36 lines
890 B
C
/*
|
|
* Copyright (c) 2022-2023, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
|
|
#include <common/desc_image_load.h>
|
|
#include <drivers/measured_boot/rss/rss_measured_boot.h>
|
|
|
|
extern struct rss_mboot_metadata tc_rss_mboot_metadata[];
|
|
|
|
int plat_mboot_measure_image(unsigned int image_id, image_info_t *image_data)
|
|
{
|
|
int err;
|
|
|
|
/* Calculate image hash and record data in RSS */
|
|
err = rss_mboot_measure_and_record(tc_rss_mboot_metadata,
|
|
image_data->image_base,
|
|
image_data->image_size,
|
|
image_id);
|
|
if (err != 0) {
|
|
ERROR("%s%s image id %u (%i)\n",
|
|
"Failed to ", "record in RSS", image_id, err);
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
int plat_mboot_measure_key(void *pk_oid, void *pk_ptr, unsigned int pk_len)
|
|
{
|
|
return rss_mboot_set_signer_id(tc_rss_mboot_metadata, pk_oid, pk_ptr,
|
|
pk_len);
|
|
}
|