blob: 4c3201e3a9cadeecd6f4741978f13cd12569e234 [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/*
laurenw-arm5b6f4ca2023-05-12 15:21:02 -050039 * Return the non-volatile counter address stored in the platform. The cookie
40 * will contain the OID of the counter in the certificate.
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010041 *
42 * Return: 0 = success, Otherwise = error
43 */
laurenw-arm5b6f4ca2023-05-12 15:21:02 -050044static int plat_get_nv_ctr_addr(void *cookie, uintptr_t *nv_ctr_addr)
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010045{
laurenw-arm5b6f4ca2023-05-12 15:21:02 -050046 const char *oid = (const char *)cookie;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010047
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010048 if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
laurenw-arm5b6f4ca2023-05-12 15:21:02 -050049 *nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
Manish V Badarkhe09a192c2020-08-23 09:58:44 +010050 TRUSTED_NV_CTR_ID);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010051 } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
laurenw-arm5b6f4ca2023-05-12 15:21:02 -050052 *nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
Manish V Badarkhe09a192c2020-08-23 09:58:44 +010053 NON_TRUSTED_NV_CTR_ID);
laurenw-arm7b7ebff2023-05-02 14:42:48 -050054 } else if (strcmp(oid, CCA_FW_NVCOUNTER_OID) == 0) {
55 /* FVP does not support the CCA NV Counter so use the Trusted NV */
laurenw-arm5b6f4ca2023-05-12 15:21:02 -050056 *nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
laurenw-arm7b7ebff2023-05-02 14:42:48 -050057 TRUSTED_NV_CTR_ID);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010058 } else {
59 return 1;
60 }
61
laurenw-arm5b6f4ca2023-05-12 15:21:02 -050062 return 0;
63}
64
65/*
66 * Store a new non-volatile counter value.
67 *
68 * On some FVP versions, the non-volatile counters are read-only so this
69 * function will always fail.
70 *
71 * Return: 0 = success, Otherwise = error
72 */
73int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
74{
75 uintptr_t nv_ctr_addr;
76 int rc;
77
78 assert(cookie != NULL);
79
80 rc = plat_get_nv_ctr_addr(cookie, &nv_ctr_addr);
81 if (rc != 0) {
82 return rc;
83 }
84
Sandrine Bailleux2397d472019-07-23 15:41:06 +020085 mmio_write_32(nv_ctr_addr, nv_ctr);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010086
Sandrine Bailleux2397d472019-07-23 15:41:06 +020087 /*
88 * If the FVP models a locked counter then its value cannot be updated
89 * and the above write operation has been silently ignored.
90 */
91 return (mmio_read_32(nv_ctr_addr) == nv_ctr) ? 0 : 1;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010092}
laurenw-arm7b7ebff2023-05-02 14:42:48 -050093
94/*
95 * Return the non-volatile counter value stored in the platform. The cookie
96 * will contain the OID of the counter in the certificate.
97 *
98 * Return: 0 = success, Otherwise = error
99 */
100int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr)
101{
laurenw-arm5b6f4ca2023-05-12 15:21:02 -0500102 uintptr_t nv_ctr_addr;
103 int rc;
laurenw-arm7b7ebff2023-05-02 14:42:48 -0500104
105 assert(cookie != NULL);
106 assert(nv_ctr != NULL);
107
laurenw-arm5b6f4ca2023-05-12 15:21:02 -0500108 rc = plat_get_nv_ctr_addr(cookie, &nv_ctr_addr);
109 if (rc != 0) {
110 return rc;
laurenw-arm7b7ebff2023-05-02 14:42:48 -0500111 }
112
laurenw-arm5b6f4ca2023-05-12 15:21:02 -0500113 *nv_ctr = *((unsigned int *)nv_ctr_addr);
laurenw-arm7b7ebff2023-05-02 14:42:48 -0500114
115 return 0;
116}