4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2011 Alexander Graf
6 * Copyright (c) 2012 SUSE LINUX Products GmbH
7 * Copyright (c) 2012 IBM Corp.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see
21 * <http://www.gnu.org/licenses/lgpl-2.1.html>
22 * Contributions after 2012-12-11 are licensed under the terms of the
23 * GNU GPL, version 2 or (at your option) any later version.
26 #include "qemu/osdep.h"
27 #include "qapi/error.h"
30 #include "kvm_s390x.h"
31 #include "sysemu/kvm.h"
32 #include "qemu-common.h"
33 #include "qemu/timer.h"
34 #include "qemu/error-report.h"
36 #include "qapi/visitor.h"
37 #include "qapi/qapi-visit-misc.h"
38 #include "qapi/qapi-visit-run-state.h"
39 #include "sysemu/hw_accel.h"
40 #include "hw/qdev-properties.h"
41 #ifndef CONFIG_USER_ONLY
43 #include "sysemu/arch_init.h"
44 #include "sysemu/sysemu.h"
46 #include "fpu/softfloat.h"
48 #define CR0_RESET 0xE0UL
49 #define CR14_RESET 0xC2000000UL;
51 static void s390_cpu_set_pc(CPUState
*cs
, vaddr value
)
53 S390CPU
*cpu
= S390_CPU(cs
);
55 cpu
->env
.psw
.addr
= value
;
58 static bool s390_cpu_has_work(CPUState
*cs
)
60 S390CPU
*cpu
= S390_CPU(cs
);
62 /* STOPPED cpus can never wake up */
63 if (s390_cpu_get_state(cpu
) != S390_CPU_STATE_LOAD
&&
64 s390_cpu_get_state(cpu
) != S390_CPU_STATE_OPERATING
) {
68 if (!(cs
->interrupt_request
& CPU_INTERRUPT_HARD
)) {
72 return s390_cpu_has_int(cpu
);
75 #if !defined(CONFIG_USER_ONLY)
76 /* S390CPUClass::load_normal() */
77 static void s390_cpu_load_normal(CPUState
*s
)
79 S390CPU
*cpu
= S390_CPU(s
);
80 cpu
->env
.psw
.addr
= ldl_phys(s
->as
, 4) & PSW_MASK_ESA_ADDR
;
81 cpu
->env
.psw
.mask
= PSW_MASK_32
| PSW_MASK_64
;
82 s390_cpu_set_state(S390_CPU_STATE_OPERATING
, cpu
);
86 /* S390CPUClass::cpu_reset() */
87 static void s390_cpu_reset(CPUState
*s
)
89 S390CPU
*cpu
= S390_CPU(s
);
90 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
91 CPUS390XState
*env
= &cpu
->env
;
93 env
->pfault_token
= -1UL;
96 cpu
->env
.sigp_order
= 0;
97 s390_cpu_set_state(S390_CPU_STATE_STOPPED
, cpu
);
100 /* S390CPUClass::initial_reset() */
101 static void s390_cpu_initial_reset(CPUState
*s
)
103 S390CPU
*cpu
= S390_CPU(s
);
104 CPUS390XState
*env
= &cpu
->env
;
107 /* initial reset does not clear everything! */
108 memset(&env
->start_initial_reset_fields
, 0,
109 offsetof(CPUS390XState
, end_reset_fields
) -
110 offsetof(CPUS390XState
, start_initial_reset_fields
));
112 /* architectured initial values for CR 0 and 14 */
113 env
->cregs
[0] = CR0_RESET
;
114 env
->cregs
[14] = CR14_RESET
;
116 /* architectured initial value for Breaking-Event-Address register */
119 env
->pfault_token
= -1UL;
121 /* tininess for underflow is detected before rounding */
122 set_float_detect_tininess(float_tininess_before_rounding
,
125 /* Reset state inside the kernel that we cannot access yet from QEMU. */
127 kvm_s390_reset_vcpu(cpu
);
131 /* CPUClass:reset() */
132 static void s390_cpu_full_reset(CPUState
*s
)
134 S390CPU
*cpu
= S390_CPU(s
);
135 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
136 CPUS390XState
*env
= &cpu
->env
;
138 scc
->parent_reset(s
);
139 cpu
->env
.sigp_order
= 0;
140 s390_cpu_set_state(S390_CPU_STATE_STOPPED
, cpu
);
142 memset(env
, 0, offsetof(CPUS390XState
, end_reset_fields
));
144 /* architectured initial values for CR 0 and 14 */
145 env
->cregs
[0] = CR0_RESET
;
146 env
->cregs
[14] = CR14_RESET
;
148 #if defined(CONFIG_USER_ONLY)
149 /* user mode should always be allowed to use the full FPU */
150 env
->cregs
[0] |= CR0_AFP
;
153 /* architectured initial value for Breaking-Event-Address register */
156 env
->pfault_token
= -1UL;
158 /* tininess for underflow is detected before rounding */
159 set_float_detect_tininess(float_tininess_before_rounding
,
162 /* Reset state inside the kernel that we cannot access yet from QEMU. */
164 kvm_s390_reset_vcpu(cpu
);
168 #if !defined(CONFIG_USER_ONLY)
169 static void s390_cpu_machine_reset_cb(void *opaque
)
171 S390CPU
*cpu
= opaque
;
173 run_on_cpu(CPU(cpu
), s390_do_cpu_full_reset
, RUN_ON_CPU_NULL
);
177 static void s390_cpu_disas_set_info(CPUState
*cpu
, disassemble_info
*info
)
179 info
->mach
= bfd_mach_s390_64
;
180 info
->print_insn
= print_insn_s390
;
183 static void s390_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
185 CPUState
*cs
= CPU(dev
);
186 S390CPUClass
*scc
= S390_CPU_GET_CLASS(dev
);
187 #if !defined(CONFIG_USER_ONLY)
188 S390CPU
*cpu
= S390_CPU(dev
);
192 /* the model has to be realized before qemu_init_vcpu() due to kvm */
193 s390_realize_cpu_model(cs
, &err
);
198 #if !defined(CONFIG_USER_ONLY)
199 if (cpu
->env
.core_id
>= max_cpus
) {
200 error_setg(&err
, "Unable to add CPU with core-id: %" PRIu32
201 ", maximum core-id: %d", cpu
->env
.core_id
,
206 if (cpu_exists(cpu
->env
.core_id
)) {
207 error_setg(&err
, "Unable to add CPU with core-id: %" PRIu32
208 ", it already exists", cpu
->env
.core_id
);
212 /* sync cs->cpu_index and env->core_id. The latter is needed for TCG. */
213 cs
->cpu_index
= cpu
->env
.core_id
;
216 cpu_exec_realizefn(cs
, &err
);
221 #if !defined(CONFIG_USER_ONLY)
222 qemu_register_reset(s390_cpu_machine_reset_cb
, cpu
);
224 s390_cpu_gdb_init(cs
);
228 * KVM requires the initial CPU reset ioctl to be executed on the target
229 * CPU thread. CPU hotplug under single-threaded TCG will not work with
230 * run_on_cpu(), as run_on_cpu() will not work properly if called while
231 * the main thread is already running but the CPU hasn't been realized.
234 run_on_cpu(cs
, s390_do_cpu_full_reset
, RUN_ON_CPU_NULL
);
239 scc
->parent_realize(dev
, &err
);
241 error_propagate(errp
, err
);
244 static GuestPanicInformation
*s390_cpu_get_crash_info(CPUState
*cs
)
246 GuestPanicInformation
*panic_info
;
247 S390CPU
*cpu
= S390_CPU(cs
);
249 cpu_synchronize_state(cs
);
250 panic_info
= g_malloc0(sizeof(GuestPanicInformation
));
252 panic_info
->type
= GUEST_PANIC_INFORMATION_TYPE_S390
;
253 #if !defined(CONFIG_USER_ONLY)
254 panic_info
->u
.s390
.core
= cpu
->env
.core_id
;
256 panic_info
->u
.s390
.core
= 0; /* sane default for non system emulation */
258 panic_info
->u
.s390
.psw_mask
= cpu
->env
.psw
.mask
;
259 panic_info
->u
.s390
.psw_addr
= cpu
->env
.psw
.addr
;
260 panic_info
->u
.s390
.reason
= cpu
->env
.crash_reason
;
265 static void s390_cpu_get_crash_info_qom(Object
*obj
, Visitor
*v
,
266 const char *name
, void *opaque
,
269 CPUState
*cs
= CPU(obj
);
270 GuestPanicInformation
*panic_info
;
272 if (!cs
->crash_occurred
) {
273 error_setg(errp
, "No crash occurred");
277 panic_info
= s390_cpu_get_crash_info(cs
);
279 visit_type_GuestPanicInformation(v
, "crash-information", &panic_info
,
281 qapi_free_GuestPanicInformation(panic_info
);
284 static void s390_cpu_initfn(Object
*obj
)
286 CPUState
*cs
= CPU(obj
);
287 S390CPU
*cpu
= S390_CPU(obj
);
288 CPUS390XState
*env
= &cpu
->env
;
292 cs
->exception_index
= EXCP_HLT
;
293 object_property_add(obj
, "crash-information", "GuestPanicInformation",
294 s390_cpu_get_crash_info_qom
, NULL
, NULL
, NULL
, NULL
);
295 s390_cpu_model_register_props(obj
);
296 #if !defined(CONFIG_USER_ONLY)
297 env
->tod_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, s390x_tod_timer
, cpu
);
298 env
->cpu_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, s390x_cpu_timer
, cpu
);
299 s390_cpu_set_state(S390_CPU_STATE_STOPPED
, cpu
);
303 static void s390_cpu_finalize(Object
*obj
)
305 #if !defined(CONFIG_USER_ONLY)
306 S390CPU
*cpu
= S390_CPU(obj
);
308 qemu_unregister_reset(s390_cpu_machine_reset_cb
, cpu
);
309 g_free(cpu
->irqstate
);
313 #if !defined(CONFIG_USER_ONLY)
314 static bool disabled_wait(CPUState
*cpu
)
316 return cpu
->halted
&& !(S390_CPU(cpu
)->env
.psw
.mask
&
317 (PSW_MASK_IO
| PSW_MASK_EXT
| PSW_MASK_MCHECK
));
320 static unsigned s390_count_running_cpus(void)
326 uint8_t state
= S390_CPU(cpu
)->env
.cpu_state
;
327 if (state
== S390_CPU_STATE_OPERATING
||
328 state
== S390_CPU_STATE_LOAD
) {
329 if (!disabled_wait(cpu
)) {
338 unsigned int s390_cpu_halt(S390CPU
*cpu
)
340 CPUState
*cs
= CPU(cpu
);
341 trace_cpu_halt(cs
->cpu_index
);
345 cs
->exception_index
= EXCP_HLT
;
348 return s390_count_running_cpus();
351 void s390_cpu_unhalt(S390CPU
*cpu
)
353 CPUState
*cs
= CPU(cpu
);
354 trace_cpu_unhalt(cs
->cpu_index
);
358 cs
->exception_index
= -1;
362 unsigned int s390_cpu_set_state(uint8_t cpu_state
, S390CPU
*cpu
)
364 trace_cpu_set_state(CPU(cpu
)->cpu_index
, cpu_state
);
367 case S390_CPU_STATE_STOPPED
:
368 case S390_CPU_STATE_CHECK_STOP
:
369 /* halt the cpu for common infrastructure */
372 case S390_CPU_STATE_OPERATING
:
373 case S390_CPU_STATE_LOAD
:
375 * Starting a CPU with a PSW WAIT bit set:
376 * KVM: handles this internally and triggers another WAIT exit.
377 * TCG: will actually try to continue to run. Don't unhalt, will
378 * be done when the CPU actually has work (an interrupt).
380 if (!tcg_enabled() || !(cpu
->env
.psw
.mask
& PSW_MASK_WAIT
)) {
381 s390_cpu_unhalt(cpu
);
385 error_report("Requested CPU state is not a valid S390 CPU state: %u",
389 if (kvm_enabled() && cpu
->env
.cpu_state
!= cpu_state
) {
390 kvm_s390_set_cpu_state(cpu
, cpu_state
);
392 cpu
->env
.cpu_state
= cpu_state
;
394 return s390_count_running_cpus();
397 int s390_set_memory_limit(uint64_t new_limit
, uint64_t *hw_limit
)
400 return kvm_s390_set_mem_limit(new_limit
, hw_limit
);
405 void s390_cmma_reset(void)
408 kvm_s390_cmma_reset();
412 int s390_assign_subch_ioeventfd(EventNotifier
*notifier
, uint32_t sch_id
,
416 return kvm_s390_assign_subch_ioeventfd(notifier
, sch_id
, vq
, assign
);
422 void s390_crypto_reset(void)
425 kvm_s390_crypto_reset();
429 void s390_enable_css_support(S390CPU
*cpu
)
432 kvm_s390_enable_css_support(cpu
);
437 static gchar
*s390_gdb_arch_name(CPUState
*cs
)
439 return g_strdup("s390:64-bit");
442 static Property s390x_cpu_properties
[] = {
443 #if !defined(CONFIG_USER_ONLY)
444 DEFINE_PROP_UINT32("core-id", S390CPU
, env
.core_id
, 0),
446 DEFINE_PROP_END_OF_LIST()
449 static void s390_cpu_class_init(ObjectClass
*oc
, void *data
)
451 S390CPUClass
*scc
= S390_CPU_CLASS(oc
);
452 CPUClass
*cc
= CPU_CLASS(scc
);
453 DeviceClass
*dc
= DEVICE_CLASS(oc
);
455 device_class_set_parent_realize(dc
, s390_cpu_realizefn
,
456 &scc
->parent_realize
);
457 dc
->props
= s390x_cpu_properties
;
458 dc
->user_creatable
= true;
460 scc
->parent_reset
= cc
->reset
;
461 #if !defined(CONFIG_USER_ONLY)
462 scc
->load_normal
= s390_cpu_load_normal
;
464 scc
->cpu_reset
= s390_cpu_reset
;
465 scc
->initial_cpu_reset
= s390_cpu_initial_reset
;
466 cc
->reset
= s390_cpu_full_reset
;
467 cc
->class_by_name
= s390_cpu_class_by_name
,
468 cc
->has_work
= s390_cpu_has_work
;
470 cc
->do_interrupt
= s390_cpu_do_interrupt
;
472 cc
->dump_state
= s390_cpu_dump_state
;
473 cc
->get_crash_info
= s390_cpu_get_crash_info
;
474 cc
->set_pc
= s390_cpu_set_pc
;
475 cc
->gdb_read_register
= s390_cpu_gdb_read_register
;
476 cc
->gdb_write_register
= s390_cpu_gdb_write_register
;
477 #ifdef CONFIG_USER_ONLY
478 cc
->handle_mmu_fault
= s390_cpu_handle_mmu_fault
;
480 cc
->get_phys_page_debug
= s390_cpu_get_phys_page_debug
;
481 cc
->vmsd
= &vmstate_s390_cpu
;
482 cc
->write_elf64_note
= s390_cpu_write_elf64_note
;
484 cc
->cpu_exec_interrupt
= s390_cpu_exec_interrupt
;
485 cc
->debug_excp_handler
= s390x_cpu_debug_excp_handler
;
486 cc
->do_unaligned_access
= s390x_cpu_do_unaligned_access
;
489 cc
->disas_set_info
= s390_cpu_disas_set_info
;
491 cc
->tcg_initialize
= s390x_translate_init
;
494 cc
->gdb_num_core_regs
= S390_NUM_CORE_REGS
;
495 cc
->gdb_core_xml_file
= "s390x-core64.xml";
496 cc
->gdb_arch_name
= s390_gdb_arch_name
;
498 s390_cpu_model_class_register_props(oc
);
501 static const TypeInfo s390_cpu_type_info
= {
502 .name
= TYPE_S390_CPU
,
504 .instance_size
= sizeof(S390CPU
),
505 .instance_init
= s390_cpu_initfn
,
506 .instance_finalize
= s390_cpu_finalize
,
508 .class_size
= sizeof(S390CPUClass
),
509 .class_init
= s390_cpu_class_init
,
512 static void s390_cpu_register_types(void)
514 type_register_static(&s390_cpu_type_info
);
517 type_init(s390_cpu_register_types
)