fvp_spmd.c 324 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <stdint.h>
  7. int plat_spmd_handle_group0_interrupt(uint32_t intid)
  8. {
  9. /*
  10. * As of now, there are no sources of Group0 secure interrupt enabled
  11. * for FVP.
  12. */
  13. (void)intid;
  14. return -1;
  15. }