blob: dc50764356d8870dbbc704f101c032f6e9de8935 [file] [log] [blame]
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +01001/*
Sandrine Bailleux2397d472019-07-23 15:41:06 +02002 * Copyright (c) 2016-2019, 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>
12
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/*
Sandrine Bailleux2397d472019-07-23 15:41:06 +020018 * Store a new non-volatile counter value.
19 *
20 * On some FVP versions, the non-volatile counters are read-only so this
21 * function will always fail.
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010022 *
23 * Return: 0 = success, Otherwise = error
24 */
25int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
26{
27 const char *oid;
Sandrine Bailleux2397d472019-07-23 15:41:06 +020028 uintptr_t nv_ctr_addr;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010029
30 assert(cookie != NULL);
31
32 oid = (const char *)cookie;
33 if (strcmp(oid, TRUSTED_FW_NVCOUNTER_OID) == 0) {
Sandrine Bailleux2397d472019-07-23 15:41:06 +020034 nv_ctr_addr = TFW_NVCTR_BASE;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010035 } else if (strcmp(oid, NON_TRUSTED_FW_NVCOUNTER_OID) == 0) {
Sandrine Bailleux2397d472019-07-23 15:41:06 +020036 nv_ctr_addr = NTFW_CTR_BASE;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010037 } else {
38 return 1;
39 }
40
Sandrine Bailleux2397d472019-07-23 15:41:06 +020041 mmio_write_32(nv_ctr_addr, nv_ctr);
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010042
Sandrine Bailleux2397d472019-07-23 15:41:06 +020043 /*
44 * If the FVP models a locked counter then its value cannot be updated
45 * and the above write operation has been silently ignored.
46 */
47 return (mmio_read_32(nv_ctr_addr) == nv_ctr) ? 0 : 1;
Antonio Nino Diaz9d602fe2016-05-20 14:14:16 +010048}