bl2_el3_exceptions.S 523 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <arch.h>
  7. #include <asm_macros.S>
  8. #include <common/bl_common.h>
  9. .globl bl2_vector_table
  10. vector_base bl2_vector_table
  11. b bl2_entrypoint
  12. b report_exception /* Undef */
  13. b report_exception /* SVC call */
  14. b report_prefetch_abort /* Prefetch abort */
  15. b report_data_abort /* Data abort */
  16. b report_exception /* Reserved */
  17. b report_exception /* IRQ */
  18. b report_exception /* FIQ */