[PATCH v3 60/62] arm/acpi: Configure interrupts dynamically
shannon.zhao at linaro.org
shannon.zhao at linaro.org
Tue Nov 17 01:40:59 PST 2015
From: Parth Dixit <parth.dixit at linaro.org>
Interrupt information is described in DSDT and is not available at
the time of booting. Configure the interrupts dynamically when requested
by Dom0
Signed-off-by: Parth Dixit <parth.dixit at linaro.org>
Signed-off-by: Shannon Zhao <shannon.zhao at linaro.org>
---
xen/arch/arm/vgic.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/xen/arch/arm/vgic.c b/xen/arch/arm/vgic.c
index 7bb4570..d05abde 100644
--- a/xen/arch/arm/vgic.c
+++ b/xen/arch/arm/vgic.c
@@ -25,6 +25,7 @@
#include <xen/irq.h>
#include <xen/sched.h>
#include <xen/perfc.h>
+#include <xen/acpi.h>
#include <asm/current.h>
@@ -310,6 +311,8 @@ void vgic_disable_irqs(struct vcpu *v, uint32_t r, int n)
}
}
+#define VGIC_ICFG_MASK(intr) ( 1 << ( ( 2 * ( intr % 16 ) ) + 1 ) )
+
void vgic_enable_irqs(struct vcpu *v, uint32_t r, int n)
{
struct domain *d = v->domain;
@@ -321,7 +324,23 @@ void vgic_enable_irqs(struct vcpu *v, uint32_t r, int n)
struct vcpu *v_target;
while ( (i = find_next_bit(&mask, 32, i)) < 32 ) {
+#ifdef CONFIG_ACPI
+ struct vgic_irq_rank *vr = vgic_get_rank(v, n);
+ uint32_t tr;
+
irq = i + (32 * n);
+ if( ( !acpi_disabled ) && ( n != 0 ) && is_hardware_domain(d) )
+ {
+ tr = vr->icfg[i >> 4] ;
+
+ if( ( tr & VGIC_ICFG_MASK(i) ) )
+ irq_set_type(irq, ACPI_IRQ_TYPE_EDGE_BOTH);
+ else
+ irq_set_type(irq, ACPI_IRQ_TYPE_LEVEL_MASK);
+ }
+#else
+ irq = i + (32 * n);
+#endif
v_target = d->arch.vgic.handler->get_target_vcpu(v, irq);
p = irq_to_pending(v_target, irq);
set_bit(GIC_IRQ_GUEST_ENABLED, &p->status);
--
2.1.0
More information about the linux-arm-kernel
mailing list