blob: e4458868a2248a7822d3303854dd96cbea7a2c9f [file] [log] [blame]
Boyan Karatotev8cef63d2025-01-07 11:26:56 +00001/*
2 * Copyright (c) 2025, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
Boyan Karatotev13b62812024-11-20 14:02:32 +00006
7#include <bl31/interrupt_mgmt.h>
8#include <drivers/arm/gicv5.h>
9
10uint32_t plat_ic_get_pending_interrupt_type(void)
11{
12 return gicv5_get_pending_interrupt_type();
13}
14
15bool plat_ic_has_interrupt_type(unsigned int type)
16{
17 return gicv5_has_interrupt_type(type);
18}