plat_macros.S 770 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /*
  7. * the below macros print out relevant GIC
  8. * registers whenever an unhandled exception is
  9. * taken in BL3-1
  10. */
  11. .macro plat_print_gic_regs
  12. /* TODO */
  13. .endm
  14. /*
  15. * the below macros print out relevant interconnect
  16. * registers whenever an unhandled exception is
  17. * taken in BL3-1
  18. */
  19. .macro plat_print_interconnect_regs
  20. /* TODO */
  21. .endm
  22. /* ---------------------------------------------
  23. * The below required platform porting macro
  24. * prints out relevant platform registers
  25. * whenever an unhandled exception is taken in
  26. * BL31.
  27. * ---------------------------------------------
  28. */
  29. .macro plat_crash_print_regs
  30. /* TODO */
  31. .endm