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
26 lines
669 B
C
26 lines
669 B
C
/*
|
|
* Copyright (c) 2019-2024, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef PSA_MANIFEST_SID_H
|
|
#define PSA_MANIFEST_SID_H
|
|
|
|
/******** RSE_SP_CRYPTO ********/
|
|
#define RSE_CRYPTO_HANDLE (0x40000100U)
|
|
|
|
/******** RSE_SP_PLATFORM ********/
|
|
#define RSE_PLATFORM_SERVICE_HANDLE (0x40000105U)
|
|
|
|
/******** PSA_SP_MEASURED_BOOT ********/
|
|
#define RSE_MEASURED_BOOT_HANDLE (0x40000110U)
|
|
|
|
/******** PSA_SP_DELEGATED_ATTESTATION ********/
|
|
#define RSE_DELEGATED_SERVICE_HANDLE (0x40000111U)
|
|
|
|
/******** PSA_SP_DICE_PROTECTION_ENVIRONMENT ********/
|
|
#define RSE_DPE_SERVICE_HANDLE (0x40000112U)
|
|
|
|
#endif /* PSA_MANIFEST_SID_H */
|