qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] Support system reset in Exynos4210


From: Maksim Kozlov
Subject: Re: [Qemu-devel] [PATCH] Support system reset in Exynos4210
Date: Wed, 04 Apr 2012 15:55:48 +0400
User-agent: Mozilla/5.0 (X11; Linux i686; rv:10.0) Gecko/20120129 Thunderbird/10.0

04.04.2012 14:08, Dmitry Zhurikhin пишет:
Reset the system when 1 is written to SWRESET register

Signed-off-by: Dmitry Zhurikhin<address@hidden>
---
  hw/exynos4210_pmu.c |   11 +++++++++++
  1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/hw/exynos4210_pmu.c b/hw/exynos4210_pmu.c
index c12d750..edf6e34 100644
--- a/hw/exynos4210_pmu.c
+++ b/hw/exynos4210_pmu.c
@@ -25,6 +25,7 @@
   */

  #include "sysbus.h"
+#include "sysemu.h"

  #ifndef DEBUG_PMU
  #define DEBUG_PMU           0
@@ -422,6 +423,16 @@ static void exynos4210_pmu_write(void *opaque, 
target_phys_addr_t offset,
          if (reg_p->offset == offset) {
              PRINT_DEBUG_EXTEND("%s<0x%04x>  <- 0x%04x\n", reg_p->name,
                      (uint32_t)offset, (uint32_t)val);
+            switch (offset) {
+            case SWRESET:
+                if (val&  1) {
+                    qemu_system_reset_request();
+                }
+                break;
+            default:
+                /* Nothing */
+                break;
+            }
              s->reg[i] = val;
              return;
          }
It's not quite well. At first, when you do reset, appropriate status must be set in RST_STAT register. At second, not all registers in PMU should be set in default value after reset, so you should change PMU reset function for handling different resets (see spec) So, this functionality should be wrote more carefully

And use #define for registers and fields of the registers. It's more clearly, as for me.

Regards,
MK




reply via email to

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