]> Git Repo - qemu.git/commitdiff
watchdog/diag288: correctly register for system reset requests
authorXu Wang <[email protected]>
Mon, 29 Jun 2015 06:21:10 +0000 (08:21 +0200)
committerCornelia Huck <[email protected]>
Tue, 14 Jul 2015 17:10:03 +0000 (19:10 +0200)
The diag288 watchdog is no sysbus device, therefore it doesn't get
triggered on resets automatically using dc->reset.

Let's register the reset handler manually, so we get correctly notified
again when a system reset was requested. Also reset the watchdog on
subsystem resets that don't trigger a full system reset.

Signed-off-by: Xu Wang <[email protected]>
Reviewed-by: David Hildenbrand <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
Tested-by: Christian Borntraeger <[email protected]>
Reviewed-by: Andreas Färber <[email protected]>
hw/s390x/s390-virtio-ccw.c
hw/watchdog/wdt_diag288.c

index 3d20d6a0f72b8d6bf7e538be70533bcbdef15b1f..4c51d1a5bd79430e394aa965e8ec33160f3deca3 100644 (file)
@@ -36,7 +36,7 @@ typedef struct S390CcwMachineState {
 
 void io_subsystem_reset(void)
 {
-    DeviceState *css, *sclp, *flic;
+    DeviceState *css, *sclp, *flic, *diag288;
 
     css = DEVICE(object_resolve_path_type("", "virtual-css-bridge", NULL));
     if (css) {
@@ -51,6 +51,10 @@ void io_subsystem_reset(void)
     if (flic) {
         qdev_reset_all(flic);
     }
+    diag288 = DEVICE(object_resolve_path_type("", "diag288", NULL));
+    if (diag288) {
+        qdev_reset_all(diag288);
+    }
 }
 
 static int virtio_ccw_hcall_notify(const uint64_t *args)
index 1185e0681c17802c0ff5cb99b6ecf41df36b108b..2a885a447c40f9e736a3c6fe1e94564379dd9de9 100644 (file)
@@ -40,6 +40,13 @@ static void wdt_diag288_reset(DeviceState *dev)
     timer_del(diag288->timer);
 }
 
+static void diag288_reset(void *opaque)
+{
+    DeviceState *diag288 = opaque;
+
+    wdt_diag288_reset(diag288);
+}
+
 static void diag288_timer_expired(void *dev)
 {
     qemu_log_mask(CPU_LOG_RESET, "Watchdog timer expired.\n");
@@ -80,6 +87,7 @@ static void wdt_diag288_realize(DeviceState *dev, Error **errp)
 {
     DIAG288State *diag288 = DIAG288(dev);
 
+    qemu_register_reset(diag288_reset, diag288);
     diag288->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, diag288_timer_expired,
                                   dev);
 }
This page took 0.028435 seconds and 4 git commands to generate.