fvp_trusted_boot.c 1.62 KB
Newer Older
1
/*
2
 * Copyright (c) 2016-2020, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
 */

#include <assert.h>
#include <stdint.h>
#include <string.h>
10

11
#include <lib/mmio.h>
12
#include <plat/arm/common/plat_arm.h>
13
#include <plat/common/platform.h>
14
#include <platform_def.h>
15
#include <tools_share/tbbr_oid.h>
16

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Return the ROTPK hash in the following ASN.1 structure in DER format:
 *
 * AlgorithmIdentifier  ::=  SEQUENCE  {
 *     algorithm         OBJECT IDENTIFIER,
 *     parameters        ANY DEFINED BY algorithm OPTIONAL
 * }
 *
 * DigestInfo ::= SEQUENCE {
 *     digestAlgorithm   AlgorithmIdentifier,
 *     digest            OCTET STRING
 * }
 */
int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len,
			unsigned int *flags)
{
33
	return arm_get_rotpk_info(cookie, key_ptr, key_len, flags);
34
35
}

36
/*
37
38
39
40
 * Store a new non-volatile counter value.
 *
 * On some FVP versions, the non-volatile counters are read-only so this
 * function will always fail.
41
42
43
44
45
46
 *
 * Return: 0 = success, Otherwise = error
 */
int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
{
	const char *oid;
47
	uintptr_t nv_ctr_addr;
48
49
50
51
52

	assert(cookie != NULL);

	oid = (const char *)cookie;
	if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
53
		nv_ctr_addr = TFW_NVCTR_BASE;
54
	} else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
55
		nv_ctr_addr = NTFW_CTR_BASE;
56
57
58
59
	} else {
		return 1;
	}

60
	mmio_write_32(nv_ctr_addr, nv_ctr);
61

62
63
64
65
66
	/*
	 * If the FVP models a locked counter then its value cannot be updated
	 * and the above write operation has been silently ignored.
	 */
	return (mmio_read_32(nv_ctr_addr) == nv_ctr) ? 0 : 1;
67
}