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

Changes all occurrences of "RSS" and "rss" in the code and build files to "RSE" and "rse". Signed-off-by: Tamas Ban <tamas.ban@arm.com> Change-Id: I606e2663fb3719edf6372d6ffa4f1982eef45994
42 lines
960 B
C
42 lines
960 B
C
/*
|
|
* Copyright (c) 2022-2024, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef PSA_MEASURED_BOOT_PRIVATE_H
|
|
#define PSA_MEASURED_BOOT_PRIVATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <drivers/measured_boot/metadata.h>
|
|
|
|
/* Measured boot message types that distinguish its services */
|
|
#define RSE_MEASURED_BOOT_READ 1001U
|
|
#define RSE_MEASURED_BOOT_EXTEND 1002U
|
|
|
|
struct measured_boot_read_iovec_in_t {
|
|
uint8_t index;
|
|
uint8_t sw_type_size;
|
|
uint8_t version_size;
|
|
};
|
|
|
|
struct measured_boot_read_iovec_out_t {
|
|
uint8_t is_locked;
|
|
uint32_t measurement_algo;
|
|
uint8_t sw_type[SW_TYPE_MAX_SIZE];
|
|
uint8_t sw_type_len;
|
|
uint8_t version[VERSION_MAX_SIZE];
|
|
uint8_t version_len;
|
|
};
|
|
|
|
struct measured_boot_extend_iovec_t {
|
|
uint8_t index;
|
|
uint8_t lock_measurement;
|
|
uint32_t measurement_algo;
|
|
uint8_t sw_type[SW_TYPE_MAX_SIZE];
|
|
uint8_t sw_type_size;
|
|
};
|
|
|
|
#endif /* PSA_MEASURED_BOOT_PRIVATE_H */
|