xref: /rk3399_ARM-atf/include/lib/bootmarker_capture.h (revision e29693d9c12c9fb4cb09090b1ff57aeecbf034a9)
1*ed8f06ddSthagon01-arm /*
2*ed8f06ddSthagon01-arm  * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3*ed8f06ddSthagon01-arm  *
4*ed8f06ddSthagon01-arm  * SPDX-License-Identifier: BSD-3-Clause
5*ed8f06ddSthagon01-arm  */
6*ed8f06ddSthagon01-arm 
7*ed8f06ddSthagon01-arm #ifndef BOOTMARKER_CAPTURE_H
8*ed8f06ddSthagon01-arm #define BOOTMARKER_CAPTURE_H
9*ed8f06ddSthagon01-arm 
10*ed8f06ddSthagon01-arm #define BL1_ENTRY	U(0)
11*ed8f06ddSthagon01-arm #define BL1_EXIT	U(1)
12*ed8f06ddSthagon01-arm #define BL2_ENTRY	U(2)
13*ed8f06ddSthagon01-arm #define BL2_EXIT	U(3)
14*ed8f06ddSthagon01-arm #define BL31_ENTRY	U(4)
15*ed8f06ddSthagon01-arm #define BL31_EXIT	U(5)
16*ed8f06ddSthagon01-arm #define BL_TOTAL_IDS	U(6)
17*ed8f06ddSthagon01-arm 
18*ed8f06ddSthagon01-arm #ifdef __ASSEMBLER__
19*ed8f06ddSthagon01-arm PMF_DECLARE_CAPTURE_TIMESTAMP(bl_svc)
20*ed8f06ddSthagon01-arm #endif  /*__ASSEMBLER__*/
21*ed8f06ddSthagon01-arm 
22*ed8f06ddSthagon01-arm #endif  /*BOOTMARKER_CAPTURE_H*/
23