5544c1b
From 12d4393d0830a2a63828d302f177a9b8e31f433a Mon Sep 17 00:00:00 2001
5544c1b
From: Brendan Fennell <bfennell@skynet.ie>
5544c1b
Date: Wed, 26 Sep 2012 16:46:28 +0100
5544c1b
Subject: [PATCH] pl190: fix read of VECTADDR
5544c1b
5544c1b
Reading VECTADDR was causing us to set the current priority to
5544c1b
the wrong value, the most obvious effect of which was that we
5544c1b
would return the vector for the wrong interrupt as the result
5544c1b
of the read.
5544c1b
5544c1b
Signed-off-by: Brendan Fennell <bfennell@skynet.ie>
5544c1b
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
5544c1b
(cherry picked from commit 14c126baf1c38607c5bd988878de85a06cefd8cf)
5544c1b
5544c1b
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
5544c1b
---
5544c1b
 hw/pl190.c | 18 ++++++++++++------
5544c1b
 1 file changed, 12 insertions(+), 6 deletions(-)
5544c1b
5544c1b
diff --git a/hw/pl190.c b/hw/pl190.c
5544c1b
index cb50afb..7332f4d 100644
5544c1b
--- a/hw/pl190.c
5544c1b
+++ b/hw/pl190.c
5544c1b
@@ -117,12 +117,18 @@ static uint64_t pl190_read(void *opaque, target_phys_addr_t offset,
5544c1b
         return s->protected;
5544c1b
     case 12: /* VECTADDR */
5544c1b
         /* Read vector address at the start of an ISR.  Increases the
5544c1b
-           current priority level to that of the current interrupt.  */
5544c1b
-        for (i = 0; i < s->priority; i++)
5544c1b
-          {
5544c1b
-            if ((s->level | s->soft_level) & s->prio_mask[i])
5544c1b
-              break;
5544c1b
-          }
5544c1b
+         * current priority level to that of the current interrupt.
5544c1b
+         *
5544c1b
+         * Since an enabled interrupt X at priority P causes prio_mask[Y]
5544c1b
+         * to have bit X set for all Y > P, this loop will stop with
5544c1b
+         * i == the priority of the highest priority set interrupt.
5544c1b
+         */
5544c1b
+        for (i = 0; i < s->priority; i++) {
5544c1b
+            if ((s->level | s->soft_level) & s->prio_mask[i + 1]) {
5544c1b
+                break;
5544c1b
+            }
5544c1b
+        }
5544c1b
+
5544c1b
         /* Reading this value with no pending interrupts is undefined.
5544c1b
            We return the default address.  */
5544c1b
         if (i == PL190_NUM_PRIO)