From 41ed7a1ed6cd3595f5720cee1d39e12ed443d8f8 Mon Sep 17 00:00:00 2001 From: David Karoly Date: Sat, 23 Apr 2022 20:12:14 +0200 Subject: [PATCH] boot/efi/arm: use GICv2 driver for GIC-400 The GIC-400 is compliant with Version 2 of the ARM GIC Architecture Specification. Untested. see: * ARM Generic Interrupt Controller Architecture Specification * CoreLink GIC-400 Generic Interrupt Controller Technical Reference Manual Change-Id: I4e062173c56dddcc579c04050ca62cb341b60959 Reviewed-on: https://review.haiku-os.org/c/haiku/+/5240 Reviewed-by: Adrien Destugues Tested-by: Commit checker robot --- src/system/boot/platform/efi/arch/arm/arch_dtb.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/system/boot/platform/efi/arch/arm/arch_dtb.cpp b/src/system/boot/platform/efi/arch/arm/arch_dtb.cpp index b95c34b283..fc2f1fcbfd 100644 --- a/src/system/boot/platform/efi/arch/arm/arch_dtb.cpp +++ b/src/system/boot/platform/efi/arch/arm/arch_dtb.cpp @@ -25,6 +25,7 @@ const struct supported_interrupt_controllers { } kSupportedInterruptControllers[] = { { "arm,cortex-a9-gic", INTC_KIND_GICV1 }, { "arm,cortex-a15-gic", INTC_KIND_GICV2 }, + { "arm,gic-400", INTC_KIND_GICV2 }, { "ti,omap3-intc", INTC_KIND_OMAP3 }, { "marvell,pxa-intc", INTC_KIND_PXA }, };