blob: 8825198a133ce3e9429b98ab1a3b09c8e2d980bf [file] [log] [blame]
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +01001/*
Max Shvetsov06dba292019-12-06 11:50:12 +00002 * Copyright (c) 2016-2020, 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>
Max Shvetsov06dba292019-12-06 11:50:12 +000012#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000013#include <plat/common/platform.h>
Antonio Nino Diaza320ecd2019-01-15 14:19:50 +000014#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <tools_share/tbbr_oid.h>
Masahiro Yamadad1f97752017-05-23 19:41:36 +090016
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010017/*
Max Shvetsov06dba292019-12-06 11:50:12 +000018 * Return the ROTPK hash in the following ASN.1 structure in DER format:
19 *
20 * AlgorithmIdentifier ::= SEQUENCE {
21 * algorithm OBJECT IDENTIFIER,
22 * parameters ANY DEFINED BY algorithm OPTIONAL
23 * }
24 *
25 * DigestInfo ::= SEQUENCE {
26 * digestAlgorithm AlgorithmIdentifier,
27 * digest OCTET STRING
28 * }
29 */
30int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len,
31 unsigned int *flags)
32{
Sandrine Bailleux7b7a41c2020-02-06 14:34:44 +010033 return arm_get_rotpk_info(cookie, key_ptr, key_len, flags);
Max Shvetsov06dba292019-12-06 11:50:12 +000034}
35
36/*
Sandrine Bailleux2397d472019-07-23 15:41:06 +020037 * Store a new non-volatile counter value.
38 *
39 * On some FVP versions, the non-volatile counters are read-only so this
40 * function will always fail.
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010041 *
42 * Return: 0 = success, Otherwise = error
43 */
44int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
45{
46 const char *oid;
Sandrine Bailleux2397d472019-07-23 15:41:06 +020047 uintptr_t nv_ctr_addr;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010048
49 assert(cookie != NULL);
50
51 oid = (const char *)cookie;
52 if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
Sandrine Bailleux2397d472019-07-23 15:41:06 +020053 nv_ctr_addr = TFW_NVCTR_BASE;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010054 } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
Sandrine Bailleux2397d472019-07-23 15:41:06 +020055 nv_ctr_addr = NTFW_CTR_BASE;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010056 } else {
57 return 1;
58 }
59
Sandrine Bailleux2397d472019-07-23 15:41:06 +020060 mmio_write_32(nv_ctr_addr, nv_ctr);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010061
Sandrine Bailleux2397d472019-07-23 15:41:06 +020062 /*
63 * If the FVP models a locked counter then its value cannot be updated
64 * and the above write operation has been silently ignored.
65 */
66 return (mmio_read_32(nv_ctr_addr) == nv_ctr) ? 0 : 1;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010067}