mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00

Added remediation driver for DRTM to set/get the error from non-volatile memory Change-Id: I8f0873dcef4936693e0f39a3c95096cb689c04b7 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com> Signed-off-by: Lucian Paul-Trifu <lucian.paultrifu@gmail.com>
15 lines
360 B
C
15 lines
360 B
C
/*
|
|
* Copyright (c) 2022 Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
#ifndef DRTM_REMEDIATION_H
|
|
#define DRTM_REMEDIATION_H
|
|
|
|
uint64_t drtm_set_error(uint64_t x1, void *ctx);
|
|
uint64_t drtm_get_error(void *ctx);
|
|
|
|
void drtm_enter_remediation(uint64_t error_code, const char *error_str);
|
|
|
|
#endif /* DRTM_REMEDIATION_H */
|