plat_macros.S 497 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2023, Aspeed Technology Inc.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PLAT_MACROS_S
  7. #define PLAT_MACROS_S
  8. /* ---------------------------------------------
  9. * The below required platform porting macro
  10. * prints out relevant platform registers
  11. * whenever an unhandled exception is taken in
  12. * BL31.
  13. * Clobbers: x0 - x10, x16, x17, sp
  14. * ---------------------------------------------
  15. */
  16. .macro plat_crash_print_regs
  17. .endm
  18. #endif /* PLAT_MACROS_S */