39be4a6e7ec357e357f80979857223b0525690b2
[project/bcm63xx/atf.git] / plat / arm / board / fvp / fvp_trusted_boot.c
1 /*
2 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7 #include <assert.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <platform.h>
11 #include <tbbr_oid.h>
12
13 #include "fvp_def.h"
14
15 /*
16 * Store a new non-volatile counter value. On some FVP versions, the
17 * non-volatile counters are RO. On these versions we expect the values in the
18 * certificates to always match the RO values so that this function is never
19 * called.
20 *
21 * Return: 0 = success, Otherwise = error
22 */
23 int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
24 {
25 const char *oid;
26 uint32_t *nv_ctr_addr;
27
28 assert(cookie != NULL);
29
30 oid = (const char *)cookie;
31 if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
32 nv_ctr_addr = (uint32_t *)TFW_NVCTR_BASE;
33 } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
34 nv_ctr_addr = (uint32_t *)NTFW_CTR_BASE;
35 } else {
36 return 1;
37 }
38
39 *(unsigned int *)nv_ctr_addr = nv_ctr;
40
41 /* Verify that the current value is the one we just wrote. */
42 if (nv_ctr != (unsigned int)(*nv_ctr_addr))
43 return 1;
44
45 return 0;
46 }