1 /* 2 * Copyright (c) 2021-2022, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 #ifndef FVP_CRITICAL_DATA_H 7 #define FVP_CRITICAL_DATA_H 8 9 #include <common/nv_cntr_ids.h> 10 #include <lib/utils_def.h> 11 #include <plat/common/platform.h> 12 13 #define EVLOG_CRITICAL_DATA_STRING "CRITICAL DATA" 14 15 #define CRITICAL_DATA_ID CRITICAL_DATA_ID_BASE 16 17 struct fvp_critical_data { 18 19 /* platform NV counters */ 20 unsigned int nv_ctr[MAX_NV_CTR_IDS]; 21 }; 22 23 #endif /* FVP_CRITICAL_DATA_H */ 24