1 /* 2 * Copyright (c) 2023-2026, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef BOOTMARKER_CAPTURE_H 8 #define BOOTMARKER_CAPTURE_H 9 10 #define BL1_ENTRY U(0) 11 #define BL1_EXIT U(1) 12 #define BL2_ENTRY U(2) 13 #define BL2_EXIT U(3) 14 #define BL31_ENTRY U(4) 15 #define BL31_EXIT U(5) 16 #define BL1_AUTH_START U(6) 17 #define BL1_AUTH_END U(7) 18 #define BL2_AUTH_START U(8) 19 #define BL2_AUTH_END U(9) 20 #define BL_TOTAL_IDS U(10) 21 22 #ifdef __ASSEMBLER__ 23 PMF_DECLARE_CAPTURE_TIMESTAMP(bl_svc) 24 #endif /*__ASSEMBLER__*/ 25 26 #endif /*BOOTMARKER_CAPTURE_H*/ 27