From: Christoffer Dall Date: Fri, 31 Jan 2014 14:47:38 +0000 (+0000) Subject: arm_gic: Fix GICD_ICPENDR and GICD_ISPENDR writes X-Git-Tag: qemu-xen-4.5.0-rc1~240^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5b0adce156216fb24dcc5f1683e8b686f3793fff;p=qemu-upstream-unstable.git arm_gic: Fix GICD_ICPENDR and GICD_ISPENDR writes Fix two bugs that would allow changing the state of SGIs through the ICPENDR and ISPENDRs. Signed-off-by: Christoffer Dall Reviewed-by: Peter Maydell Signed-off-by: Peter Maydell --- diff --git a/hw/intc/arm_gic.c b/hw/intc/arm_gic.c index 98c6ff5cc..1c4a1143a 100644 --- a/hw/intc/arm_gic.c +++ b/hw/intc/arm_gic.c @@ -428,7 +428,7 @@ static void gic_dist_writeb(void *opaque, hwaddr offset, if (irq >= s->num_irq) goto bad_reg; if (irq < GIC_NR_SGIS) { - irq = 0; + value = 0; } for (i = 0; i < 8; i++) { @@ -441,6 +441,10 @@ static void gic_dist_writeb(void *opaque, hwaddr offset, irq = (offset - 0x280) * 8 + GIC_BASE_IRQ; if (irq >= s->num_irq) goto bad_reg; + if (irq < GIC_NR_SGIS) { + value = 0; + } + for (i = 0; i < 8; i++) { /* ??? This currently clears the pending bit for all CPUs, even for per-CPU interrupts. It's unclear whether this is the