]> Git Repo - qemu.git/commitdiff
hw: arm_gic: Introduce gic_set_priority function
authorChristoffer Dall <[email protected]>
Sat, 21 Dec 2013 06:09:33 +0000 (22:09 -0800)
committerPeter Maydell <[email protected]>
Tue, 7 Jan 2014 19:18:07 +0000 (19:18 +0000)
To make the code slightly cleaner to look at and make the save/restore
code easier to understand, introduce this function to set the priority of
interrupts.

Reviewed-by: Peter Maydell <[email protected]>
Signed-off-by: Christoffer Dall <[email protected]>
Message-id: 1387606179[email protected]
Signed-off-by: Peter Maydell <[email protected]>
hw/intc/arm_gic.c
hw/intc/gic_internal.h

index 27c258a6fd7ccfe6f610fa1943e601fd0d3e27bc..6c5965093e29ecb3cc2d0fda82462dfed5a51c3d 100644 (file)
@@ -168,6 +168,15 @@ uint32_t gic_acknowledge_irq(GICState *s, int cpu)
     return new_irq;
 }
 
+void gic_set_priority(GICState *s, int cpu, int irq, uint8_t val)
+{
+    if (irq < GIC_INTERNAL) {
+        s->priority1[irq][cpu] = val;
+    } else {
+        s->priority2[(irq) - GIC_INTERNAL] = val;
+    }
+}
+
 void gic_complete_irq(GICState *s, int cpu, int irq)
 {
     int update = 0;
@@ -443,11 +452,7 @@ static void gic_dist_writeb(void *opaque, hwaddr offset,
         irq = (offset - 0x400) + GIC_BASE_IRQ;
         if (irq >= s->num_irq)
             goto bad_reg;
-        if (irq < GIC_INTERNAL) {
-            s->priority1[irq][cpu] = value;
-        } else {
-            s->priority2[irq - GIC_INTERNAL] = value;
-        }
+        gic_set_priority(s, cpu, irq, value);
     } else if (offset < 0xc00) {
         /* Interrupt CPU Target. RAZ/WI on uniprocessor GICs, with the
          * annoying exception of the 11MPCore's GIC.
index efac78d44bfb5d54c0975d4284b0e411b28dacff..8c02d5888cd853491c2eb741fc28351516d22ac3 100644 (file)
@@ -61,5 +61,6 @@ uint32_t gic_acknowledge_irq(GICState *s, int cpu);
 void gic_complete_irq(GICState *s, int cpu, int irq);
 void gic_update(GICState *s);
 void gic_init_irqs_and_distributor(GICState *s, int num_irq);
+void gic_set_priority(GICState *s, int cpu, int irq, uint8_t val);
 
 #endif /* !QEMU_ARM_GIC_INTERNAL_H */
This page took 0.032108 seconds and 4 git commands to generate.