xref: /rk3399_ARM-atf/include/tools_share/cca_oid.h (revision 56b741d3e41cd6b2f6863a372a9489c819e2b0e9)
1*56b741d3Slaurenw-arm /*
2*56b741d3Slaurenw-arm  * Copyright (c) 2022, Arm Limited. All rights reserved.
3*56b741d3Slaurenw-arm  *
4*56b741d3Slaurenw-arm  * SPDX-License-Identifier: BSD-3-Clause
5*56b741d3Slaurenw-arm  */
6*56b741d3Slaurenw-arm 
7*56b741d3Slaurenw-arm #ifndef CCA_OID_H
8*56b741d3Slaurenw-arm #define CCA_OID_H
9*56b741d3Slaurenw-arm 
10*56b741d3Slaurenw-arm /* Reuse the Object IDs defined by TBBR for certificate extensions. */
11*56b741d3Slaurenw-arm #include "tbbr_oid.h"
12*56b741d3Slaurenw-arm 
13*56b741d3Slaurenw-arm /*
14*56b741d3Slaurenw-arm  * Assign arbitrary Object ID values that do not conflict with any of the
15*56b741d3Slaurenw-arm  * TBBR reserved OIDs.
16*56b741d3Slaurenw-arm  */
17*56b741d3Slaurenw-arm /* Platform root-of-trust public key */
18*56b741d3Slaurenw-arm #define PROT_PK_OID				"1.3.6.1.4.1.4128.2100.1102"
19*56b741d3Slaurenw-arm /* Secure World root-of-trust public key */
20*56b741d3Slaurenw-arm #define SWD_ROT_PK_OID				"1.3.6.1.4.1.4128.2100.1103"
21*56b741d3Slaurenw-arm /* Core Secure World public key */
22*56b741d3Slaurenw-arm #define CORE_SWD_PK_OID				"1.3.6.1.4.1.4128.2100.1104"
23*56b741d3Slaurenw-arm /* Platform public key */
24*56b741d3Slaurenw-arm #define PLAT_PK_OID				"1.3.6.1.4.1.4128.2100.1105"
25*56b741d3Slaurenw-arm /* Realm Monitor Manager (RMM) Hash */
26*56b741d3Slaurenw-arm #define RMM_HASH_OID				"1.3.6.1.4.1.4128.2100.1106"
27*56b741d3Slaurenw-arm 
28*56b741d3Slaurenw-arm #endif /* CCA_OID_H */
29