bootmarker_capture.h 468 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef BOOTMARKER_CAPTURE_H
  7. #define BOOTMARKER_CAPTURE_H
  8. #define BL1_ENTRY U(0)
  9. #define BL1_EXIT U(1)
  10. #define BL2_ENTRY U(2)
  11. #define BL2_EXIT U(3)
  12. #define BL31_ENTRY U(4)
  13. #define BL31_EXIT U(5)
  14. #define BL_TOTAL_IDS U(6)
  15. #ifdef __ASSEMBLER__
  16. PMF_DECLARE_CAPTURE_TIMESTAMP(bl_svc)
  17. #endif /*__ASSEMBLER__*/
  18. #endif /*BOOTMARKER_CAPTURE_H*/