ls_interrupt_mgmt.h 434 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2020 NXP
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. *
  6. */
  7. #ifndef LS_EL3_INTRPT_MGMT_H
  8. #define LS_EL3_INTRPT_MGMT_H
  9. #include <bl31/interrupt_mgmt.h>
  10. #define MAX_INTR_EL3 128
  11. /*
  12. * Register handler to specific GIC entrance
  13. * for INTR_TYPE_EL3 type of interrupt
  14. */
  15. int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler);
  16. void ls_el3_interrupt_config(void);
  17. #endif /* LS_EL3_INTRPT_MGMT_H */