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 program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program 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 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "qemu/osdep.h"
24 #include "qapi/error.h"
27 #include "kvm_s390x.h"
28 #include "sysemu/kvm.h"
29 #include "qemu-common.h"
30 #include "qemu/timer.h"
31 #include "qemu/error-report.h"
33 #include "qapi/visitor.h"
34 #include "qapi/qapi-visit-misc.h"
35 #include "qapi/qapi-visit-run-state.h"
36 #include "sysemu/hw_accel.h"
37 #include "hw/qdev-properties.h"
38 #ifndef CONFIG_USER_ONLY
40 #include "sysemu/arch_init.h"
41 #include "sysemu/sysemu.h"
43 #include "fpu/softfloat.h"
45 #define CR0_RESET 0xE0UL
46 #define CR14_RESET 0xC2000000UL;
48 static void s390_cpu_set_pc(CPUState
*cs
, vaddr value
)
50 S390CPU
*cpu
= S390_CPU(cs
);
52 cpu
->env
.psw
.addr
= value
;
55 static bool s390_cpu_has_work(CPUState
*cs
)
57 S390CPU
*cpu
= S390_CPU(cs
);
59 /* STOPPED cpus can never wake up */
60 if (s390_cpu_get_state(cpu
) != S390_CPU_STATE_LOAD
&&
61 s390_cpu_get_state(cpu
) != S390_CPU_STATE_OPERATING
) {
65 if (!(cs
->interrupt_request
& CPU_INTERRUPT_HARD
)) {
69 return s390_cpu_has_int(cpu
);
72 #if !defined(CONFIG_USER_ONLY)
73 /* S390CPUClass::load_normal() */
74 static void s390_cpu_load_normal(CPUState
*s
)
76 S390CPU
*cpu
= S390_CPU(s
);
77 cpu
->env
.psw
.addr
= ldl_phys(s
->as
, 4) & PSW_MASK_ESA_ADDR
;
78 cpu
->env
.psw
.mask
= PSW_MASK_32
| PSW_MASK_64
;
79 s390_cpu_set_state(S390_CPU_STATE_OPERATING
, cpu
);
83 /* S390CPUClass::cpu_reset() */
84 static void s390_cpu_reset(CPUState
*s
)
86 S390CPU
*cpu
= S390_CPU(s
);
87 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
88 CPUS390XState
*env
= &cpu
->env
;
90 env
->pfault_token
= -1UL;
93 cpu
->env
.sigp_order
= 0;
94 s390_cpu_set_state(S390_CPU_STATE_STOPPED
, cpu
);
97 /* S390CPUClass::initial_reset() */
98 static void s390_cpu_initial_reset(CPUState
*s
)
100 S390CPU
*cpu
= S390_CPU(s
);
101 CPUS390XState
*env
= &cpu
->env
;
104 /* initial reset does not clear everything! */
105 memset(&env
->start_initial_reset_fields
, 0,
106 offsetof(CPUS390XState
, end_reset_fields
) -
107 offsetof(CPUS390XState
, start_initial_reset_fields
));
109 /* architectured initial values for CR 0 and 14 */
110 env
->cregs
[0] = CR0_RESET
;
111 env
->cregs
[14] = CR14_RESET
;
113 /* architectured initial value for Breaking-Event-Address register */
116 env
->pfault_token
= -1UL;
118 /* tininess for underflow is detected before rounding */
119 set_float_detect_tininess(float_tininess_before_rounding
,
122 /* Reset state inside the kernel that we cannot access yet from QEMU. */
124 kvm_s390_reset_vcpu(cpu
);
128 /* CPUClass:reset() */
129 static void s390_cpu_full_reset(CPUState
*s
)
131 S390CPU
*cpu
= S390_CPU(s
);
132 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
133 CPUS390XState
*env
= &cpu
->env
;
135 scc
->parent_reset(s
);
136 cpu
->env
.sigp_order
= 0;
137 s390_cpu_set_state(S390_CPU_STATE_STOPPED
, cpu
);
139 memset(env
, 0, offsetof(CPUS390XState
, end_reset_fields
));
141 /* architectured initial values for CR 0 and 14 */
142 env
->cregs
[0] = CR0_RESET
;
143 env
->cregs
[14] = CR14_RESET
;
145 #if defined(CONFIG_USER_ONLY)
146 /* user mode should always be allowed to use the full FPU */
147 env
->cregs
[0] |= CR0_AFP
;
150 /* architectured initial value for Breaking-Event-Address register */
153 env
->pfault_token
= -1UL;
155 /* tininess for underflow is detected before rounding */
156 set_float_detect_tininess(float_tininess_before_rounding
,
159 /* Reset state inside the kernel that we cannot access yet from QEMU. */
161 kvm_s390_reset_vcpu(cpu
);
165 #if !defined(CONFIG_USER_ONLY)
166 static void s390_cpu_machine_reset_cb(void *opaque
)
168 S390CPU
*cpu
= opaque
;
170 run_on_cpu(CPU(cpu
), s390_do_cpu_full_reset
, RUN_ON_CPU_NULL
);
174 static void s390_cpu_disas_set_info(CPUState
*cpu
, disassemble_info
*info
)
176 info
->mach
= bfd_mach_s390_64
;
177 info
->print_insn
= print_insn_s390
;
180 static void s390_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
182 CPUState
*cs
= CPU(dev
);
183 S390CPUClass
*scc
= S390_CPU_GET_CLASS(dev
);
184 #if !defined(CONFIG_USER_ONLY)
185 S390CPU
*cpu
= S390_CPU(dev
);
189 /* the model has to be realized before qemu_init_vcpu() due to kvm */
190 s390_realize_cpu_model(cs
, &err
);
195 #if !defined(CONFIG_USER_ONLY)
196 if (cpu
->env
.core_id
>= max_cpus
) {
197 error_setg(&err
, "Unable to add CPU with core-id: %" PRIu32
198 ", maximum core-id: %d", cpu
->env
.core_id
,
203 if (cpu_exists(cpu
->env
.core_id
)) {
204 error_setg(&err
, "Unable to add CPU with core-id: %" PRIu32
205 ", it already exists", cpu
->env
.core_id
);
209 /* sync cs->cpu_index and env->core_id. The latter is needed for TCG. */
210 cs
->cpu_index
= cpu
->env
.core_id
;
213 cpu_exec_realizefn(cs
, &err
);
218 #if !defined(CONFIG_USER_ONLY)
219 qemu_register_reset(s390_cpu_machine_reset_cb
, cpu
);
221 s390_cpu_gdb_init(cs
);
225 * KVM requires the initial CPU reset ioctl to be executed on the target
226 * CPU thread. CPU hotplug under single-threaded TCG will not work with
227 * run_on_cpu(), as run_on_cpu() will not work properly if called while
228 * the main thread is already running but the CPU hasn't been realized.
231 run_on_cpu(cs
, s390_do_cpu_full_reset
, RUN_ON_CPU_NULL
);
236 scc
->parent_realize(dev
, &err
);
238 error_propagate(errp
, err
);
241 static GuestPanicInformation
*s390_cpu_get_crash_info(CPUState
*cs
)
243 GuestPanicInformation
*panic_info
;
244 S390CPU
*cpu
= S390_CPU(cs
);
246 cpu_synchronize_state(cs
);
247 panic_info
= g_malloc0(sizeof(GuestPanicInformation
));
249 panic_info
->type
= GUEST_PANIC_INFORMATION_TYPE_S390
;
250 #if !defined(CONFIG_USER_ONLY)
251 panic_info
->u
.s390
.core
= cpu
->env
.core_id
;
253 panic_info
->u
.s390
.core
= 0; /* sane default for non system emulation */
255 panic_info
->u
.s390
.psw_mask
= cpu
->env
.psw
.mask
;
256 panic_info
->u
.s390
.psw_addr
= cpu
->env
.psw
.addr
;
257 panic_info
->u
.s390
.reason
= cpu
->env
.crash_reason
;
262 static void s390_cpu_get_crash_info_qom(Object
*obj
, Visitor
*v
,
263 const char *name
, void *opaque
,
266 CPUState
*cs
= CPU(obj
);
267 GuestPanicInformation
*panic_info
;
269 if (!cs
->crash_occurred
) {
270 error_setg(errp
, "No crash occurred");
274 panic_info
= s390_cpu_get_crash_info(cs
);
276 visit_type_GuestPanicInformation(v
, "crash-information", &panic_info
,
278 qapi_free_GuestPanicInformation(panic_info
);
281 static void s390_cpu_initfn(Object
*obj
)
283 CPUState
*cs
= CPU(obj
);
284 S390CPU
*cpu
= S390_CPU(obj
);
285 CPUS390XState
*env
= &cpu
->env
;
289 cs
->exception_index
= EXCP_HLT
;
290 object_property_add(obj
, "crash-information", "GuestPanicInformation",
291 s390_cpu_get_crash_info_qom
, NULL
, NULL
, NULL
, NULL
);
292 s390_cpu_model_register_props(obj
);
293 #if !defined(CONFIG_USER_ONLY)
294 env
->tod_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, s390x_tod_timer
, cpu
);
295 env
->cpu_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, s390x_cpu_timer
, cpu
);
296 s390_cpu_set_state(S390_CPU_STATE_STOPPED
, cpu
);
300 static void s390_cpu_finalize(Object
*obj
)
302 #if !defined(CONFIG_USER_ONLY)
303 S390CPU
*cpu
= S390_CPU(obj
);
305 qemu_unregister_reset(s390_cpu_machine_reset_cb
, cpu
);
306 g_free(cpu
->irqstate
);
310 #if !defined(CONFIG_USER_ONLY)
311 static bool disabled_wait(CPUState
*cpu
)
313 return cpu
->halted
&& !(S390_CPU(cpu
)->env
.psw
.mask
&
314 (PSW_MASK_IO
| PSW_MASK_EXT
| PSW_MASK_MCHECK
));
317 static unsigned s390_count_running_cpus(void)
323 uint8_t state
= S390_CPU(cpu
)->env
.cpu_state
;
324 if (state
== S390_CPU_STATE_OPERATING
||
325 state
== S390_CPU_STATE_LOAD
) {
326 if (!disabled_wait(cpu
)) {
335 unsigned int s390_cpu_halt(S390CPU
*cpu
)
337 CPUState
*cs
= CPU(cpu
);
338 trace_cpu_halt(cs
->cpu_index
);
342 cs
->exception_index
= EXCP_HLT
;
345 return s390_count_running_cpus();
348 void s390_cpu_unhalt(S390CPU
*cpu
)
350 CPUState
*cs
= CPU(cpu
);
351 trace_cpu_unhalt(cs
->cpu_index
);
355 cs
->exception_index
= -1;
359 unsigned int s390_cpu_set_state(uint8_t cpu_state
, S390CPU
*cpu
)
361 trace_cpu_set_state(CPU(cpu
)->cpu_index
, cpu_state
);
364 case S390_CPU_STATE_STOPPED
:
365 case S390_CPU_STATE_CHECK_STOP
:
366 /* halt the cpu for common infrastructure */
369 case S390_CPU_STATE_OPERATING
:
370 case S390_CPU_STATE_LOAD
:
372 * Starting a CPU with a PSW WAIT bit set:
373 * KVM: handles this internally and triggers another WAIT exit.
374 * TCG: will actually try to continue to run. Don't unhalt, will
375 * be done when the CPU actually has work (an interrupt).
377 if (!tcg_enabled() || !(cpu
->env
.psw
.mask
& PSW_MASK_WAIT
)) {
378 s390_cpu_unhalt(cpu
);
382 error_report("Requested CPU state is not a valid S390 CPU state: %u",
386 if (kvm_enabled() && cpu
->env
.cpu_state
!= cpu_state
) {
387 kvm_s390_set_cpu_state(cpu
, cpu_state
);
389 cpu
->env
.cpu_state
= cpu_state
;
391 return s390_count_running_cpus();
394 int s390_set_memory_limit(uint64_t new_limit
, uint64_t *hw_limit
)
397 return kvm_s390_set_mem_limit(new_limit
, hw_limit
);
402 void s390_cmma_reset(void)
405 kvm_s390_cmma_reset();
409 int s390_assign_subch_ioeventfd(EventNotifier
*notifier
, uint32_t sch_id
,
413 return kvm_s390_assign_subch_ioeventfd(notifier
, sch_id
, vq
, assign
);
419 void s390_crypto_reset(void)
422 kvm_s390_crypto_reset();
426 void s390_enable_css_support(S390CPU
*cpu
)
429 kvm_s390_enable_css_support(cpu
);
434 static gchar
*s390_gdb_arch_name(CPUState
*cs
)
436 return g_strdup("s390:64-bit");
439 static Property s390x_cpu_properties
[] = {
440 #if !defined(CONFIG_USER_ONLY)
441 DEFINE_PROP_UINT32("core-id", S390CPU
, env
.core_id
, 0),
443 DEFINE_PROP_END_OF_LIST()
446 static void s390_cpu_class_init(ObjectClass
*oc
, void *data
)
448 S390CPUClass
*scc
= S390_CPU_CLASS(oc
);
449 CPUClass
*cc
= CPU_CLASS(scc
);
450 DeviceClass
*dc
= DEVICE_CLASS(oc
);
452 device_class_set_parent_realize(dc
, s390_cpu_realizefn
,
453 &scc
->parent_realize
);
454 dc
->props
= s390x_cpu_properties
;
455 dc
->user_creatable
= true;
457 scc
->parent_reset
= cc
->reset
;
458 #if !defined(CONFIG_USER_ONLY)
459 scc
->load_normal
= s390_cpu_load_normal
;
461 scc
->cpu_reset
= s390_cpu_reset
;
462 scc
->initial_cpu_reset
= s390_cpu_initial_reset
;
463 cc
->reset
= s390_cpu_full_reset
;
464 cc
->class_by_name
= s390_cpu_class_by_name
,
465 cc
->has_work
= s390_cpu_has_work
;
467 cc
->do_interrupt
= s390_cpu_do_interrupt
;
469 cc
->dump_state
= s390_cpu_dump_state
;
470 cc
->get_crash_info
= s390_cpu_get_crash_info
;
471 cc
->set_pc
= s390_cpu_set_pc
;
472 cc
->gdb_read_register
= s390_cpu_gdb_read_register
;
473 cc
->gdb_write_register
= s390_cpu_gdb_write_register
;
474 #ifdef CONFIG_USER_ONLY
475 cc
->handle_mmu_fault
= s390_cpu_handle_mmu_fault
;
477 cc
->get_phys_page_debug
= s390_cpu_get_phys_page_debug
;
478 cc
->vmsd
= &vmstate_s390_cpu
;
479 cc
->write_elf64_note
= s390_cpu_write_elf64_note
;
481 cc
->cpu_exec_interrupt
= s390_cpu_exec_interrupt
;
482 cc
->debug_excp_handler
= s390x_cpu_debug_excp_handler
;
483 cc
->do_unaligned_access
= s390x_cpu_do_unaligned_access
;
486 cc
->disas_set_info
= s390_cpu_disas_set_info
;
488 cc
->tcg_initialize
= s390x_translate_init
;
491 cc
->gdb_num_core_regs
= S390_NUM_CORE_REGS
;
492 cc
->gdb_core_xml_file
= "s390x-core64.xml";
493 cc
->gdb_arch_name
= s390_gdb_arch_name
;
495 s390_cpu_model_class_register_props(oc
);
498 static const TypeInfo s390_cpu_type_info
= {
499 .name
= TYPE_S390_CPU
,
501 .instance_size
= sizeof(S390CPU
),
502 .instance_init
= s390_cpu_initfn
,
503 .instance_finalize
= s390_cpu_finalize
,
505 .class_size
= sizeof(S390CPUClass
),
506 .class_init
= s390_cpu_class_init
,
509 static void s390_cpu_register_types(void)
511 type_register_static(&s390_cpu_type_info
);
514 type_init(s390_cpu_register_types
)