blob: 4c3201e3a9cadeecd6f4741978f13cd12569e234 [file] [log] [blame]
Antonio Nino Diazfe7de032016-05-20 14:14:16 +01001/*
laurenw-arm02552d42023-05-02 14:42:48 -05002 * Copyright (c) 2016-2023, Arm Limited and Contributors. All rights reserved.
Antonio Nino Diazfe7de032016-05-20 14:14:16 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Antonio Nino Diazfe7de032016-05-20 14:14:16 +01005 */
6
7#include <assert.h>
Antonio Nino Diazfe7de032016-05-20 14:14:16 +01008#include <stdint.h>
9#include <string.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000010
Sandrine Bailleuxbd363d32019-07-23 15:41:06 +020011#include <lib/mmio.h>
Manish V Badarkhe14d095c2020-08-23 09:58:44 +010012#include <lib/fconf/fconf.h>
Max Shvetsova6ffdde2019-12-06 11:50:12 +000013#include <plat/arm/common/plat_arm.h>
Manish V Badarkhe14d095c2020-08-23 09:58:44 +010014#include <plat/arm/common/fconf_nv_cntr_getter.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000015#include <plat/common/platform.h>
Antonio Nino Diaz234bc7f2019-01-15 14:19:50 +000016#include <platform_def.h>
laurenw-arm02552d42023-05-02 14:42:48 -050017#include <tools_share/cca_oid.h>
Masahiro Yamada232c6b32017-05-23 19:41:36 +090018
Antonio Nino Diazfe7de032016-05-20 14:14:16 +010019/*
Max Shvetsova6ffdde2019-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 Bailleux88005702020-02-06 14:34:44 +010035 return arm_get_rotpk_info(cookie, key_ptr, key_len, flags);
Max Shvetsova6ffdde2019-12-06 11:50:12 +000036}
37
38/*
laurenw-armb695b2f2023-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.
41 *
42 * Return: 0 = success, Otherwise = error
43 */
44static int plat_get_nv_ctr_addr(void *cookie, uintptr_t *nv_ctr_addr)
45{
46 const char *oid = (const char *)cookie;
47
48 if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
49 *nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
50 TRUSTED_NV_CTR_ID);
51 } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
52 *nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
53 NON_TRUSTED_NV_CTR_ID);
54 } else if (strcmp(oid, CCA_FW_NVCOUNTER_OID) == 0) {
55 /* FVP does not support the CCA NV Counter so use the Trusted NV */
56 *nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr,
57 TRUSTED_NV_CTR_ID);
58 } else {
59 return 1;
60 }
61
62 return 0;
63}
64
65/*
Sandrine Bailleuxbd363d32019-07-23 15:41:06 +020066 * 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.
Antonio Nino Diazfe7de032016-05-20 14:14:16 +010070 *
71 * Return: 0 = success, Otherwise = error
72 */
73int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
74{
Sandrine Bailleuxbd363d32019-07-23 15:41:06 +020075 uintptr_t nv_ctr_addr;
laurenw-armb695b2f2023-05-12 15:21:02 -050076 int rc;
Antonio Nino Diazfe7de032016-05-20 14:14:16 +010077
78 assert(cookie != NULL);
79
laurenw-armb695b2f2023-05-12 15:21:02 -050080 rc = plat_get_nv_ctr_addr(cookie, &nv_ctr_addr);
81 if (rc != 0) {
82 return rc;
Antonio Nino Diazfe7de032016-05-20 14:14:16 +010083 }
84
Sandrine Bailleuxbd363d32019-07-23 15:41:06 +020085 mmio_write_32(nv_ctr_addr, nv_ctr);
Antonio Nino Diazfe7de032016-05-20 14:14:16 +010086
Sandrine Bailleuxbd363d32019-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 Diazfe7de032016-05-20 14:14:16 +010092}
laurenw-arm02552d42023-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-armb695b2f2023-05-12 15:21:02 -0500102 uintptr_t nv_ctr_addr;
103 int rc;
laurenw-arm02552d42023-05-02 14:42:48 -0500104
105 assert(cookie != NULL);
106 assert(nv_ctr != NULL);
107
laurenw-armb695b2f2023-05-12 15:21:02 -0500108 rc = plat_get_nv_ctr_addr(cookie, &nv_ctr_addr);
109 if (rc != 0) {
110 return rc;
laurenw-arm02552d42023-05-02 14:42:48 -0500111 }
112
laurenw-armb695b2f2023-05-12 15:21:02 -0500113 *nv_ctr = *((unsigned int *)nv_ctr_addr);
laurenw-arm02552d42023-05-02 14:42:48 -0500114
115 return 0;
116}