qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 4/9] arm: add dummy gic security registers


From: Mark Langsdorf
Subject: [Qemu-devel] [PATCH 4/9] arm: add dummy gic security registers
Date: Tue, 20 Dec 2011 13:11:39 -0600
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/20111124 Thunderbird/8.0

From: Rob Herring <address@hidden>

Signed-off-by: Rob Herring <address@hidden>
Signed-off-by: Mark Langsdorf <address@hidden>
---
 hw/arm_gic.c |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/hw/arm_gic.c b/hw/arm_gic.c
index 9b52119..5974c2f 100644
--- a/hw/arm_gic.c
+++ b/hw/arm_gic.c
@@ -274,7 +274,7 @@ static uint32_t gic_dist_readb(void *opaque, target_phys_addr_t offset)

     cpu = gic_get_current_cpu();
     cm = 1 << cpu;
-    if (offset < 0x100) {
+    if (offset < 0x80) {
 #ifndef NVIC
         if (offset == 0)
             return s->enabled;
@@ -284,6 +284,9 @@ static uint32_t gic_dist_readb(void *opaque, target_phys_addr_t offset)
             return 0;
 #endif
         goto bad_reg;
+    } else if (offset < 0x100) {
+        /* Interrupt Security */
+        return 0;
     } else if (offset < 0x200) {
         /* Interrupt Set/Clear Enable.  */
         if (offset < 0x180)
@@ -404,7 +407,7 @@ static void gic_dist_writeb(void *opaque, target_phys_addr_t offset,
     int cpu;

     cpu = gic_get_current_cpu();
-    if (offset < 0x100) {
+    if (offset < 0x80) {
 #ifdef NVIC
         goto bad_reg;
 #else
@@ -417,6 +420,9 @@ static void gic_dist_writeb(void *opaque, target_phys_addr_t offset,
             goto bad_reg;
         }
 #endif
+    } else if (offset < 0x100) {
+        /* Interrupt Security Registers */
+        /* ignore */
     } else if (offset < 0x180) {
         /* Interrupt Set Enable.  */
         irq = (offset - 0x100) * 8 + GIC_BASE_IRQ;
--
1.7.5.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]