1 /*
2  * Copyright (c) 2023, 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 BL_TOTAL_IDS	U(6)
17 
18 #ifdef __ASSEMBLER__
19 PMF_DECLARE_CAPTURE_TIMESTAMP(bl_svc)
20 #endif  /*__ASSEMBLER__*/
21 
22 #endif  /*BOOTMARKER_CAPTURE_H*/
23