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