[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 5/6] s390: Implement load normal reset
From: |
Christian Borntraeger |
Subject: |
[Qemu-devel] [PULL 5/6] s390: Implement load normal reset |
Date: |
Thu, 29 Aug 2013 23:10:48 +0200 |
kdump on s390 uses a load normal reset to bring the system in a defined
state by doing a subsystem reset. The issuing CPUs will have an initial
CPU reset, all other CPUs will have a CPU reset as defined in POP (no
register content will change).
Implement this as architectured.
Signed-off-by: Christian Borntraeger <address@hidden>
---
target-s390x/kvm.c | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c
index 9d3d201..8a32af0 100644
--- a/target-s390x/kvm.c
+++ b/target-s390x/kvm.c
@@ -33,6 +33,7 @@
#include "sysemu/sysemu.h"
#include "sysemu/kvm.h"
#include "cpu.h"
+#include "sysemu/cpus.h"
#include "sysemu/device_tree.h"
#include "qapi/qmp/qjson.h"
#include "monitor/monitor.h"
@@ -581,6 +582,32 @@ static int handle_hypercall(S390CPU *cpu, struct kvm_run
*run)
return 0;
}
+static void cpu_reset_all(void)
+{
+ CPUState *cpu;
+ S390CPUClass *scc;
+
+ for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
+ scc = S390_CPU_GET_CLASS(CPU(cpu));
+ scc->cpu_reset(CPU(cpu));
+ }
+}
+
+static int load_normal_reset(S390CPU *cpu)
+{
+ S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
+
+ pause_all_vcpus();
+ cpu_synchronize_all_states();
+ cpu_reset_all();
+ io_subsystem_reset();
+ scc->initial_cpu_reset(CPU(cpu));
+ scc->load_normal(CPU(cpu));
+ cpu_synchronize_all_post_reset();
+ resume_all_vcpus();
+ return 0;
+}
+
static int handle_diag308(S390CPU *cpu, struct kvm_run *run)
{
uint64_t r1, r3, addr, subcode;
@@ -603,6 +630,8 @@ static int handle_diag308(S390CPU *cpu, struct kvm_run *run)
}
switch (subcode) {
+ case 1:
+ return load_normal_reset(cpu);
case 5:
if ((r1 & 1) || (addr & 0x0fffULL)) {
enter_pgmcheck(cpu, PGM_SPECIFICATION);
--
1.8.3.1
- [Qemu-devel] [PULL 0/6] kdump patches for s390x/kvm, Christian Borntraeger, 2013/08/29
- [Qemu-devel] [PULL 1/6] s390/kvm: basic implementation of diagnose 308 subcode 6, Christian Borntraeger, 2013/08/29
- [Qemu-devel] [PULL 5/6] s390: Implement load normal reset,
Christian Borntraeger <=
- [Qemu-devel] [PULL 2/6] s390: provide I/O subsystem reset, Christian Borntraeger, 2013/08/29
- [Qemu-devel] [PULL 4/6] s390/cpu: split CPU reset into architectured functions, Christian Borntraeger, 2013/08/29
- [Qemu-devel] [PULL 3/6] s390: provide a cpu load normal function, Christian Borntraeger, 2013/08/29
- [Qemu-devel] [PULL 6/6] s390: wire up nmi command to raise a RESTART interrupt on S390, Christian Borntraeger, 2013/08/29
- Re: [Qemu-devel] [PULL 0/6] kdump patches for s390x/kvm, Alexander Graf, 2013/08/29