| 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| 2 | /* |
| 3 | * include/linux/irqchip/arm-gic-common.h |
| 4 | * |
| 5 | * Copyright (C) 2016 ARM Limited, All Rights Reserved. |
| 6 | */ |
| 7 | #ifndef __LINUX_IRQCHIP_ARM_GIC_COMMON_H |
| 8 | #define __LINUX_IRQCHIP_ARM_GIC_COMMON_H |
| 9 | |
| 10 | #include <linux/irqchip/arm-vgic-info.h> |
| 11 | |
| 12 | #define GICD_INT_DEF_PRI 0xa0 |
| 13 | |
| 14 | struct irq_domain; |
| 15 | struct fwnode_handle; |
| 16 | int gicv2m_init(struct fwnode_handle *parent_handle, |
| 17 | struct irq_domain *parent); |
| 18 | |
| 19 | #endif /* __LINUX_IRQCHIP_ARM_GIC_COMMON_H */ |
| 20 | |