Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 1 | /* |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 2 | * Copyright (c) 2016-2020, ARM Limited and Contributors. All rights reserved. |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 8 | #include <stdint.h> |
| 9 | #include <string.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | |
Sandrine Bailleux | 2397d47 | 2019-07-23 15:41:06 +0200 | [diff] [blame] | 11 | #include <lib/mmio.h> |
Manish V Badarkhe | 09a192c | 2020-08-23 09:58:44 +0100 | [diff] [blame] | 12 | #include <lib/fconf/fconf.h> |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 13 | #include <plat/arm/common/plat_arm.h> |
Manish V Badarkhe | 09a192c | 2020-08-23 09:58:44 +0100 | [diff] [blame] | 14 | #include <plat/arm/common/fconf_nv_cntr_getter.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <plat/common/platform.h> |
Antonio Nino Diaz | a320ecd | 2019-01-15 14:19:50 +0000 | [diff] [blame] | 16 | #include <platform_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 17 | #include <tools_share/tbbr_oid.h> |
Masahiro Yamada | d1f9775 | 2017-05-23 19:41:36 +0900 | [diff] [blame] | 18 | |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 19 | /* |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 20 | * 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 | */ |
| 32 | int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len, |
| 33 | unsigned int *flags) |
| 34 | { |
Sandrine Bailleux | 7b7a41c | 2020-02-06 14:34:44 +0100 | [diff] [blame] | 35 | return arm_get_rotpk_info(cookie, key_ptr, key_len, flags); |
Max Shvetsov | 06dba29 | 2019-12-06 11:50:12 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | /* |
Sandrine Bailleux | 2397d47 | 2019-07-23 15:41:06 +0200 | [diff] [blame] | 39 | * 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 Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 43 | * |
| 44 | * Return: 0 = success, Otherwise = error |
| 45 | */ |
| 46 | int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr) |
| 47 | { |
| 48 | const char *oid; |
Sandrine Bailleux | 2397d47 | 2019-07-23 15:41:06 +0200 | [diff] [blame] | 49 | uintptr_t nv_ctr_addr; |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 50 | |
| 51 | assert(cookie != NULL); |
| 52 | |
| 53 | oid = (const char *)cookie; |
| 54 | if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) { |
Manish V Badarkhe | 09a192c | 2020-08-23 09:58:44 +0100 | [diff] [blame] | 55 | nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr, |
| 56 | TRUSTED_NV_CTR_ID); |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 57 | } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) { |
Manish V Badarkhe | 09a192c | 2020-08-23 09:58:44 +0100 | [diff] [blame] | 58 | nv_ctr_addr = FCONF_GET_PROPERTY(cot, nv_cntr_addr, |
| 59 | NON_TRUSTED_NV_CTR_ID); |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 60 | } else { |
| 61 | return 1; |
| 62 | } |
| 63 | |
Sandrine Bailleux | 2397d47 | 2019-07-23 15:41:06 +0200 | [diff] [blame] | 64 | mmio_write_32(nv_ctr_addr, nv_ctr); |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 65 | |
Sandrine Bailleux | 2397d47 | 2019-07-23 15:41:06 +0200 | [diff] [blame] | 66 | /* |
| 67 | * If the FVP models a locked counter then its value cannot be updated |
| 68 | * and the above write operation has been silently ignored. |
| 69 | */ |
| 70 | return (mmio_read_32(nv_ctr_addr) == nv_ctr) ? 0 : 1; |
Antonio Nino Diaz | 9d602fe | 2016-05-20 14:14:16 +0100 | [diff] [blame] | 71 | } |