plat_macros.S 575 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2018-2024, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PLAT_MACROS_S
  7. #define PLAT_MACROS_S
  8. #include <css_macros.S>
  9. /* ---------------------------------------------
  10. * The below required platform porting macro
  11. * prints out relevant platform registers
  12. * whenever an unhandled exception is taken in
  13. * BL31.
  14. *
  15. * There are currently no platform specific regs
  16. * to print.
  17. * ---------------------------------------------
  18. */
  19. .macro plat_crash_print_regs
  20. .endm
  21. #endif /* PLAT_MACROS_S */