plat_macros.S 484 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright 2018-2020 NXP
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. *
  6. */
  7. #ifndef PLAT_MACROS_S
  8. #define PLAT_MACROS_S
  9. /* ---------------------------------------------
  10. * The below required platform porting macro
  11. * prints out relevant GIC and CCI registers
  12. * whenever an unhandled exception is taken in
  13. * BL31.
  14. * Clobbers: x0 - x10, x16, x17, sp
  15. * ---------------------------------------------
  16. */
  17. .macro plat_crash_print_regs
  18. .endm
  19. #endif /* PLAT_MACROS_S */