blob: 8e59529531b8b9d9fe8d5cc613863ec231a533df [file] [log] [blame]
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +01001/*
laurenw-arm7b7ebff2023-05-02 14:42:48 -05002 * Copyright (c) 2016-2023, Arm Limited and Contributors. All rights reserved.
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +01005 */
6
7#include <assert.h>
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +01008#include <stdint.h>
9#include <string.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010
Sandrine Bailleux2397d472019-07-23 15:41:06 +020011#include <lib/mmio.h>
Manish V Badarkhe09a192c2020-08-23 09:58:44 +010012#include <lib/fconf/fconf.h>
Max Shvetsov06dba292019-12-06 11:50:12 +000013#include <plat/arm/common/plat_arm.h>
Manish V Badarkhe09a192c2020-08-23 09:58:44 +010014#include <plat/arm/common/fconf_nv_cntr_getter.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <plat/common/platform.h>
Antonio Nino Diaza320ecd2019-01-15 14:19:50 +000016#include <platform_def.h>
laurenw-arm7b7ebff2023-05-02 14:42:48 -050017#include <tools_share/cca_oid.h>
Masahiro Yamadad1f97752017-05-23 19:41:36 +090018
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010019/*
Max Shvetsov06dba292019-12-06 11:50:12 +000020 * Return the ROTPK hash in the following ASN.1 structure in DER format:
21 *
22 * AlgorithmIdentifier ::= SEQUENCE {
23 * algorithm OBJECT IDENTIFIER,
24 * parameters ANY DEFINED BY algorithm OPTIONAL
25 * }
26 *
27 * DigestInfo ::= SEQUENCE {
28 * digestAlgorithm AlgorithmIdentifier,
29 * digest OCTET STRING
30 * }
31 */
32int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len,
33 unsigned int *flags)
34{
Sandrine Bailleux7b7a41c2020-02-06 14:34:44 +010035 return arm_get_rotpk_info(cookie, key_ptr, key_len, flags);
Max Shvetsov06dba292019-12-06 11:50:12 +000036}
37
38/*
Sandrine Bailleux2397d472019-07-23 15:41:06 +020039 * Store a new non-volatile counter value.
40 *
41 * On some FVP versions, the non-volatile counters are read-only so this
42 * function will always fail.
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010043 *
44 * Return: 0 = success, Otherwise = error
45 */
46int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
47{
48 const char *oid;
Sandrine Bailleux2397d472019-07-23 15:41:06 +020049 uintptr_t nv_ctr_addr;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010050
51 assert(cookie != NULL);
52
53 oid = (const char *)cookie;
54 if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
Manish V Badarkhe09a192c2020-08-23 09:58:44 +010055 nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
56 TRUSTED_NV_CTR_ID);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010057 } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
Manish V Badarkhe09a192c2020-08-23 09:58:44 +010058 nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
59 NON_TRUSTED_NV_CTR_ID);
laurenw-arm7b7ebff2023-05-02 14:42:48 -050060 } else if (strcmp(oid, CCA_FW_NVCOUNTER_OID) == 0) {
61 /* FVP does not support the CCA NV Counter so use the Trusted NV */
62 nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
63 TRUSTED_NV_CTR_ID);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010064 } else {
65 return 1;
66 }
67
Sandrine Bailleux2397d472019-07-23 15:41:06 +020068 mmio_write_32(nv_ctr_addr, nv_ctr);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010069
Sandrine Bailleux2397d472019-07-23 15:41:06 +020070 /*
71 * If the FVP models a locked counter then its value cannot be updated
72 * and the above write operation has been silently ignored.
73 */
74 return (mmio_read_32(nv_ctr_addr) == nv_ctr) ? 0 : 1;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010075}
laurenw-arm7b7ebff2023-05-02 14:42:48 -050076
77/*
78 * Return the non-volatile counter value stored in the platform. The cookie
79 * will contain the OID of the counter in the certificate.
80 *
81 * Return: 0 = success, Otherwise = error
82 */
83int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr)
84{
85 const char *oid;
86 uint32_t *nv_ctr_addr;
87
88 assert(cookie != NULL);
89 assert(nv_ctr != NULL);
90
91 oid = (const char *)cookie;
92 if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
93 nv_ctr_addr = (uint32_t *)FCONF_GET_PROPERTY(cot, nv_cntr_addr,
94 TRUSTED_NV_CTR_ID);
95 } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
96 nv_ctr_addr = (uint32_t *)FCONF_GET_PROPERTY(cot, nv_cntr_addr,
97 NON_TRUSTED_NV_CTR_ID);
98 } else if (strcmp(oid, CCA_FW_NVCOUNTER_OID) == 0) {
99 /* FVP does not support the CCA NV Counter so use the Trusted NV */
100 nv_ctr_addr = (uint32_t *)FCONF_GET_PROPERTY(cot, nv_cntr_addr,
101 TRUSTED_NV_CTR_ID);
102 } else {
103 return 1;
104 }
105
106 *nv_ctr = (unsigned int)(*nv_ctr_addr);
107
108 return 0;
109}