summaryrefslogtreecommitdiffstats
path: root/plat/arm/board/fvp/fvp_drtm_err.c
blob: 95259fa8200669c700679f3a805d15a25714f754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2022, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <stdint.h>

#include <plat/common/platform.h>

int plat_set_drtm_error(uint64_t error_code)
{
	/* TODO: Set DRTM error in NV-storage */
	return 0;
}

int plat_get_drtm_error(uint64_t *error_code)
{
	/* TODO: Get DRTM error from NV-storage */
	*error_code = 0;
	return 0;
}