blob: d964aa743da89f88c72607ab43be538892c761e4 [file] [log] [blame]
laurenw-arm483e5ac2022-04-21 15:49:00 -05001/*
laurenw-arm9b4f9d52023-05-02 14:28:38 -05002 * Copyright (c) 2022-2023, Arm Limited. All rights reserved.
laurenw-arm483e5ac2022-04-21 15:49:00 -05003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef CCA_OID_H
8#define CCA_OID_H
9
10/* Reuse the Object IDs defined by TBBR for certificate extensions. */
11#include "tbbr_oid.h"
Manish V Badarkhe064aad52023-04-11 12:57:12 +010012#include "zero_oid.h"
laurenw-arm483e5ac2022-04-21 15:49:00 -050013
14/*
15 * Assign arbitrary Object ID values that do not conflict with any of the
16 * TBBR reserved OIDs.
17 */
18/* Platform root-of-trust public key */
19#define PROT_PK_OID "1.3.6.1.4.1.4128.2100.1102"
20/* Secure World root-of-trust public key */
21#define SWD_ROT_PK_OID "1.3.6.1.4.1.4128.2100.1103"
22/* Core Secure World public key */
23#define CORE_SWD_PK_OID "1.3.6.1.4.1.4128.2100.1104"
24/* Platform public key */
25#define PLAT_PK_OID "1.3.6.1.4.1.4128.2100.1105"
26/* Realm Monitor Manager (RMM) Hash */
27#define RMM_HASH_OID "1.3.6.1.4.1.4128.2100.1106"
28
laurenw-arm9b4f9d52023-05-02 14:28:38 -050029/* CCAFirmwareNVCounter - Non-volatile counter extension */
30#define CCA_FW_NVCOUNTER_OID "1.3.6.1.4.1.4128.2100.3"
31
laurenw-arm483e5ac2022-04-21 15:49:00 -050032#endif /* CCA_OID_H */