]> git.proxmox.com Git - mirror_qemu.git/blame - target/s390x/cpu.c
qom: Introduce CPUClass.tcg_initialize
[mirror_qemu.git] / target / s390x / cpu.c
CommitLineData
29e4bcb2
AF
1/*
2 * QEMU S/390 CPU
3 *
1ac1a749
AF
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2011 Alexander Graf
29e4bcb2 6 * Copyright (c) 2012 SUSE LINUX Products GmbH
70bada03 7 * Copyright (c) 2012 IBM Corp.
29e4bcb2
AF
8 *
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.
13 *
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.
18 *
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>
70bada03
JF
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.
29e4bcb2
AF
24 */
25
9615495a 26#include "qemu/osdep.h"
da34e65c 27#include "qapi/error.h"
564b863d 28#include "cpu.h"
4e58b838 29#include "internal.h"
f16bbb9b
DH
30#include "kvm_s390x.h"
31#include "sysemu/kvm.h"
29e4bcb2 32#include "qemu-common.h"
f348b6d1 33#include "qemu/cutils.h"
1de7afc9 34#include "qemu/timer.h"
eb24f7c6 35#include "qemu/error-report.h"
eb24f7c6 36#include "trace.h"
96b1a8bb 37#include "qapi/visitor.h"
63c91552 38#include "exec/exec-all.h"
ca5c1457 39#include "hw/qdev-properties.h"
c7396bbb 40#ifndef CONFIG_USER_ONLY
741da0d3 41#include "hw/hw.h"
904e5fd5 42#include "sysemu/arch_init.h"
96b1a8bb 43#include "sysemu/sysemu.h"
904e5fd5
VM
44#endif
45
70bada03
JF
46#define CR0_RESET 0xE0UL
47#define CR14_RESET 0xC2000000UL;
48
f45748f1
AF
49static void s390_cpu_set_pc(CPUState *cs, vaddr value)
50{
51 S390CPU *cpu = S390_CPU(cs);
52
53 cpu->env.psw.addr = value;
54}
55
8c2e1b00
AF
56static bool s390_cpu_has_work(CPUState *cs)
57{
58 S390CPU *cpu = S390_CPU(cs);
8c2e1b00 59
4beab671
DH
60 /* STOPPED cpus can never wake up */
61 if (s390_cpu_get_state(cpu) != CPU_STATE_LOAD &&
62 s390_cpu_get_state(cpu) != CPU_STATE_OPERATING) {
63 return false;
64 }
65
8417f904
DH
66 if (!(cs->interrupt_request & CPU_INTERRUPT_HARD)) {
67 return false;
68 }
69
70 return s390_cpu_has_int(cpu);
8c2e1b00
AF
71}
72
29c6157c
CB
73#if !defined(CONFIG_USER_ONLY)
74/* S390CPUClass::load_normal() */
75static void s390_cpu_load_normal(CPUState *s)
76{
77 S390CPU *cpu = S390_CPU(s);
fdfba1a2 78 cpu->env.psw.addr = ldl_phys(s->as, 4) & PSW_MASK_ESA_ADDR;
29c6157c 79 cpu->env.psw.mask = PSW_MASK_32 | PSW_MASK_64;
eb24f7c6 80 s390_cpu_set_state(CPU_STATE_OPERATING, cpu);
29c6157c
CB
81}
82#endif
83
f5ae2a4f 84/* S390CPUClass::cpu_reset() */
29e4bcb2
AF
85static void s390_cpu_reset(CPUState *s)
86{
87 S390CPU *cpu = S390_CPU(s);
88 S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
89 CPUS390XState *env = &cpu->env;
90
819bd309 91 env->pfault_token = -1UL;
f5ae2a4f 92 scc->parent_reset(s);
18ff9494 93 cpu->env.sigp_order = 0;
eb24f7c6 94 s390_cpu_set_state(CPU_STATE_STOPPED, cpu);
f5ae2a4f
CB
95}
96
97/* S390CPUClass::initial_reset() */
98static void s390_cpu_initial_reset(CPUState *s)
99{
100 S390CPU *cpu = S390_CPU(s);
101 CPUS390XState *env = &cpu->env;
cc0d079d 102 int i;
f5ae2a4f
CB
103
104 s390_cpu_reset(s);
cb4f4bc3
CB
105 /* initial reset does not clear everything! */
106 memset(&env->start_initial_reset_fields, 0,
107 offsetof(CPUS390XState, end_reset_fields) -
108 offsetof(CPUS390XState, start_initial_reset_fields));
f5ae2a4f
CB
109
110 /* architectured initial values for CR 0 and 14 */
111 env->cregs[0] = CR0_RESET;
112 env->cregs[14] = CR14_RESET;
819bd309 113
3da0ab35
AJ
114 /* architectured initial value for Breaking-Event-Address register */
115 env->gbea = 1;
116
819bd309 117 env->pfault_token = -1UL;
cc0d079d
AJ
118 for (i = 0; i < ARRAY_SIZE(env->io_index); i++) {
119 env->io_index[i] = -1;
120 }
8986db49 121 env->mchk_index = -1;
49f5c9e9 122
4a33565f
AJ
123 /* tininess for underflow is detected before rounding */
124 set_float_detect_tininess(float_tininess_before_rounding,
125 &env->fpu_status);
126
49f5c9e9
TH
127 /* Reset state inside the kernel that we cannot access yet from QEMU. */
128 if (kvm_enabled()) {
99607144 129 kvm_s390_reset_vcpu(cpu);
49f5c9e9 130 }
f5ae2a4f
CB
131}
132
133/* CPUClass:reset() */
134static void s390_cpu_full_reset(CPUState *s)
135{
136 S390CPU *cpu = S390_CPU(s);
137 S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
138 CPUS390XState *env = &cpu->env;
cc0d079d 139 int i;
f5ae2a4f 140
29e4bcb2 141 scc->parent_reset(s);
18ff9494 142 cpu->env.sigp_order = 0;
eb24f7c6 143 s390_cpu_set_state(CPU_STATE_STOPPED, cpu);
29e4bcb2 144
1f5c00cf 145 memset(env, 0, offsetof(CPUS390XState, end_reset_fields));
70bada03
JF
146
147 /* architectured initial values for CR 0 and 14 */
148 env->cregs[0] = CR0_RESET;
149 env->cregs[14] = CR14_RESET;
819bd309 150
3da0ab35
AJ
151 /* architectured initial value for Breaking-Event-Address register */
152 env->gbea = 1;
153
819bd309 154 env->pfault_token = -1UL;
cc0d079d
AJ
155 for (i = 0; i < ARRAY_SIZE(env->io_index); i++) {
156 env->io_index[i] = -1;
157 }
8986db49 158 env->mchk_index = -1;
819bd309 159
4a33565f
AJ
160 /* tininess for underflow is detected before rounding */
161 set_float_detect_tininess(float_tininess_before_rounding,
162 &env->fpu_status);
163
99607144 164 /* Reset state inside the kernel that we cannot access yet from QEMU. */
50a2c6e5
PB
165 if (kvm_enabled()) {
166 kvm_s390_reset_vcpu(cpu);
167 }
29e4bcb2
AF
168}
169
70bada03
JF
170#if !defined(CONFIG_USER_ONLY)
171static void s390_cpu_machine_reset_cb(void *opaque)
172{
173 S390CPU *cpu = opaque;
174
14e6fe12 175 run_on_cpu(CPU(cpu), s390_do_cpu_full_reset, RUN_ON_CPU_NULL);
70bada03
JF
176}
177#endif
178
dbad6b74
PC
179static void s390_cpu_disas_set_info(CPUState *cpu, disassemble_info *info)
180{
181 info->mach = bfd_mach_s390_64;
182 info->print_insn = print_insn_s390;
183}
184
1f136632
AF
185static void s390_cpu_realizefn(DeviceState *dev, Error **errp)
186{
14a10fc3 187 CPUState *cs = CPU(dev);
1f136632 188 S390CPUClass *scc = S390_CPU_GET_CLASS(dev);
1e70ba24 189#if !defined(CONFIG_USER_ONLY)
c6644fc8 190 S390CPU *cpu = S390_CPU(dev);
1e70ba24 191#endif
c6644fc8
MR
192 Error *err = NULL;
193
41868f84
DH
194 /* the model has to be realized before qemu_init_vcpu() due to kvm */
195 s390_realize_cpu_model(cs, &err);
196 if (err) {
197 goto out;
198 }
199
96b1a8bb 200#if !defined(CONFIG_USER_ONLY)
ca5c1457
DH
201 if (cpu->env.core_id >= max_cpus) {
202 error_setg(&err, "Unable to add CPU with core-id: %" PRIu32
203 ", maximum core-id: %d", cpu->env.core_id,
204 max_cpus - 1);
96b1a8bb
MR
205 goto out;
206 }
88556edd 207
ca5c1457
DH
208 if (cpu_exists(cpu->env.core_id)) {
209 error_setg(&err, "Unable to add CPU with core-id: %" PRIu32
210 ", it already exists", cpu->env.core_id);
96b1a8bb
MR
211 goto out;
212 }
96b1a8bb 213
ca5c1457 214 /* sync cs->cpu_index and env->core_id. The latter is needed for TCG. */
1e70ba24
DH
215 cs->cpu_index = cpu->env.core_id;
216#endif
217
ce5b1bbf 218 cpu_exec_realizefn(cs, &err);
c6644fc8 219 if (err != NULL) {
96b1a8bb 220 goto out;
c6644fc8 221 }
1f136632 222
c6644fc8
MR
223#if !defined(CONFIG_USER_ONLY)
224 qemu_register_reset(s390_cpu_machine_reset_cb, cpu);
225#endif
73d510c9 226 s390_cpu_gdb_init(cs);
14a10fc3 227 qemu_init_vcpu(cs);
159855f0 228#if !defined(CONFIG_USER_ONLY)
14e6fe12 229 run_on_cpu(cs, s390_do_cpu_full_reset, RUN_ON_CPU_NULL);
159855f0 230#else
14a10fc3 231 cpu_reset(cs);
159855f0 232#endif
1f136632 233
96b1a8bb 234 scc->parent_realize(dev, &err);
96b1a8bb
MR
235out:
236 error_propagate(errp, err);
237}
238
8f22e0df
AF
239static void s390_cpu_initfn(Object *obj)
240{
c05efcb1 241 CPUState *cs = CPU(obj);
8f22e0df
AF
242 S390CPU *cpu = S390_CPU(obj);
243 CPUS390XState *env = &cpu->env;
8f22e0df
AF
244#if !defined(CONFIG_USER_ONLY)
245 struct tm tm;
246#endif
247
c05efcb1 248 cs->env_ptr = env;
ef3027af
MR
249 cs->halted = 1;
250 cs->exception_index = EXCP_HLT;
0754f604 251 s390_cpu_model_register_props(obj);
8f22e0df
AF
252#if !defined(CONFIG_USER_ONLY)
253 qemu_get_timedate(&tm, 0);
254 env->tod_offset = TOD_UNIX_EPOCH +
255 (time2tod(mktimegm(&tm)) * 1000000000ULL);
256 env->tod_basetime = 0;
bc72ad67
AB
257 env->tod_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, s390x_tod_timer, cpu);
258 env->cpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, s390x_cpu_timer, cpu);
eb24f7c6 259 s390_cpu_set_state(CPU_STATE_STOPPED, cpu);
8f22e0df 260#endif
8f22e0df
AF
261}
262
d5627ce8
AF
263static void s390_cpu_finalize(Object *obj)
264{
265#if !defined(CONFIG_USER_ONLY)
266 S390CPU *cpu = S390_CPU(obj);
267
268 qemu_unregister_reset(s390_cpu_machine_reset_cb, cpu);
3cda44f7 269 g_free(cpu->irqstate);
d5627ce8
AF
270#endif
271}
272
75973bfe 273#if !defined(CONFIG_USER_ONLY)
eb24f7c6
DH
274static bool disabled_wait(CPUState *cpu)
275{
276 return cpu->halted && !(S390_CPU(cpu)->env.psw.mask &
277 (PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK));
278}
279
75973bfe
DH
280static unsigned s390_count_running_cpus(void)
281{
282 CPUState *cpu;
283 int nr_running = 0;
284
285 CPU_FOREACH(cpu) {
286 uint8_t state = S390_CPU(cpu)->env.cpu_state;
287 if (state == CPU_STATE_OPERATING ||
288 state == CPU_STATE_LOAD) {
eb24f7c6
DH
289 if (!disabled_wait(cpu)) {
290 nr_running++;
291 }
75973bfe
DH
292 }
293 }
294
295 return nr_running;
296}
297
eb24f7c6 298unsigned int s390_cpu_halt(S390CPU *cpu)
75973bfe
DH
299{
300 CPUState *cs = CPU(cpu);
eb24f7c6 301 trace_cpu_halt(cs->cpu_index);
75973bfe 302
eb24f7c6
DH
303 if (!cs->halted) {
304 cs->halted = 1;
305 cs->exception_index = EXCP_HLT;
75973bfe 306 }
eb24f7c6
DH
307
308 return s390_count_running_cpus();
75973bfe
DH
309}
310
eb24f7c6 311void s390_cpu_unhalt(S390CPU *cpu)
75973bfe
DH
312{
313 CPUState *cs = CPU(cpu);
eb24f7c6 314 trace_cpu_unhalt(cs->cpu_index);
75973bfe 315
eb24f7c6
DH
316 if (cs->halted) {
317 cs->halted = 0;
318 cs->exception_index = -1;
319 }
320}
321
322unsigned int s390_cpu_set_state(uint8_t cpu_state, S390CPU *cpu)
323 {
324 trace_cpu_set_state(CPU(cpu)->cpu_index, cpu_state);
325
326 switch (cpu_state) {
327 case CPU_STATE_STOPPED:
328 case CPU_STATE_CHECK_STOP:
329 /* halt the cpu for common infrastructure */
330 s390_cpu_halt(cpu);
331 break;
332 case CPU_STATE_OPERATING:
333 case CPU_STATE_LOAD:
741a4ec1
DH
334 /*
335 * Starting a CPU with a PSW WAIT bit set:
336 * KVM: handles this internally and triggers another WAIT exit.
337 * TCG: will actually try to continue to run. Don't unhalt, will
338 * be done when the CPU actually has work (an interrupt).
339 */
340 if (!tcg_enabled() || !(cpu->env.psw.mask & PSW_MASK_WAIT)) {
341 s390_cpu_unhalt(cpu);
342 }
eb24f7c6
DH
343 break;
344 default:
345 error_report("Requested CPU state is not a valid S390 CPU state: %u",
346 cpu_state);
347 exit(1);
75973bfe 348 }
c9e659c9
DH
349 if (kvm_enabled() && cpu->env.cpu_state != cpu_state) {
350 kvm_s390_set_cpu_state(cpu, cpu_state);
351 }
eb24f7c6 352 cpu->env.cpu_state = cpu_state;
75973bfe
DH
353
354 return s390_count_running_cpus();
355}
b6089b05
DH
356
357int s390_get_clock(uint8_t *tod_high, uint64_t *tod_low)
358{
7edd4a49
CW
359 int r = 0;
360
b6089b05 361 if (kvm_enabled()) {
7edd4a49
CW
362 r = kvm_s390_get_clock_ext(tod_high, tod_low);
363 if (r == -ENXIO) {
364 return kvm_s390_get_clock(tod_high, tod_low);
365 }
366 } else {
367 /* Fixme TCG */
368 *tod_high = 0;
369 *tod_low = 0;
b6089b05 370 }
7edd4a49
CW
371
372 return r;
b6089b05
DH
373}
374
375int s390_set_clock(uint8_t *tod_high, uint64_t *tod_low)
376{
7edd4a49
CW
377 int r = 0;
378
b6089b05 379 if (kvm_enabled()) {
7edd4a49
CW
380 r = kvm_s390_set_clock_ext(tod_high, tod_low);
381 if (r == -ENXIO) {
382 return kvm_s390_set_clock(tod_high, tod_low);
383 }
b6089b05
DH
384 }
385 /* Fixme TCG */
7edd4a49 386 return r;
b6089b05
DH
387}
388
389int s390_set_memory_limit(uint64_t new_limit, uint64_t *hw_limit)
390{
391 if (kvm_enabled()) {
392 return kvm_s390_set_mem_limit(new_limit, hw_limit);
393 }
394 return 0;
395}
396
397void s390_cmma_reset(void)
398{
399 if (kvm_enabled()) {
400 kvm_s390_cmma_reset();
401 }
402}
403
b6089b05
DH
404int s390_get_memslot_count(void)
405{
406 if (kvm_enabled()) {
407 return kvm_s390_get_memslot_count();
408 } else {
409 return MAX_AVAIL_SLOTS;
410 }
411}
412
413int s390_assign_subch_ioeventfd(EventNotifier *notifier, uint32_t sch_id,
414 int vq, bool assign)
415{
416 if (kvm_enabled()) {
417 return kvm_s390_assign_subch_ioeventfd(notifier, sch_id, vq, assign);
418 } else {
419 return 0;
420 }
421}
422
423void s390_crypto_reset(void)
424{
425 if (kvm_enabled()) {
426 kvm_s390_crypto_reset();
427 }
428}
429
430bool s390_get_squash_mcss(void)
431{
432 if (object_property_get_bool(OBJECT(qdev_get_machine()), "s390-squash-mcss",
433 NULL)) {
434 return true;
435 }
436
437 return false;
438}
5e7164c5
DH
439
440void s390_enable_css_support(S390CPU *cpu)
441{
442 if (kvm_enabled()) {
443 kvm_s390_enable_css_support(cpu);
444 }
445}
75973bfe
DH
446#endif
447
b3820e6c
DH
448static gchar *s390_gdb_arch_name(CPUState *cs)
449{
450 return g_strdup("s390:64-bit");
451}
452
ca5c1457 453static Property s390x_cpu_properties[] = {
1e70ba24 454#if !defined(CONFIG_USER_ONLY)
ca5c1457 455 DEFINE_PROP_UINT32("core-id", S390CPU, env.core_id, 0),
1e70ba24 456#endif
ca5c1457
DH
457 DEFINE_PROP_END_OF_LIST()
458};
459
29e4bcb2
AF
460static void s390_cpu_class_init(ObjectClass *oc, void *data)
461{
462 S390CPUClass *scc = S390_CPU_CLASS(oc);
463 CPUClass *cc = CPU_CLASS(scc);
c7396bbb 464 DeviceClass *dc = DEVICE_CLASS(oc);
29e4bcb2 465
1f136632
AF
466 scc->parent_realize = dc->realize;
467 dc->realize = s390_cpu_realizefn;
ca5c1457 468 dc->props = s390x_cpu_properties;
0347ab84 469 dc->user_creatable = true;
1f136632 470
29e4bcb2 471 scc->parent_reset = cc->reset;
29c6157c
CB
472#if !defined(CONFIG_USER_ONLY)
473 scc->load_normal = s390_cpu_load_normal;
474#endif
f5ae2a4f
CB
475 scc->cpu_reset = s390_cpu_reset;
476 scc->initial_cpu_reset = s390_cpu_initial_reset;
477 cc->reset = s390_cpu_full_reset;
41868f84 478 cc->class_by_name = s390_cpu_class_by_name,
8c2e1b00 479 cc->has_work = s390_cpu_has_work;
b114588c 480#ifdef CONFIG_TCG
97a8ea5a 481 cc->do_interrupt = s390_cpu_do_interrupt;
b114588c 482#endif
878096ee 483 cc->dump_state = s390_cpu_dump_state;
f45748f1 484 cc->set_pc = s390_cpu_set_pc;
5b50e790
AF
485 cc->gdb_read_register = s390_cpu_gdb_read_register;
486 cc->gdb_write_register = s390_cpu_gdb_write_register;
7510454e
AF
487#ifdef CONFIG_USER_ONLY
488 cc->handle_mmu_fault = s390_cpu_handle_mmu_fault;
489#else
00b941e5 490 cc->get_phys_page_debug = s390_cpu_get_phys_page_debug;
ef1df130 491 cc->vmsd = &vmstate_s390_cpu;
9b4f38e1 492 cc->write_elf64_note = s390_cpu_write_elf64_note;
b114588c 493#ifdef CONFIG_TCG
02bb9bbf 494 cc->cpu_exec_interrupt = s390_cpu_exec_interrupt;
311918b9 495 cc->debug_excp_handler = s390x_cpu_debug_excp_handler;
44977a8f 496 cc->do_unaligned_access = s390x_cpu_do_unaligned_access;
b114588c 497#endif
00b941e5 498#endif
dbad6b74 499 cc->disas_set_info = s390_cpu_disas_set_info;
55c3ceef 500 cc->tcg_initialize = s390x_translate_init;
dbad6b74 501
73d510c9
DH
502 cc->gdb_num_core_regs = S390_NUM_CORE_REGS;
503 cc->gdb_core_xml_file = "s390x-core64.xml";
b3820e6c 504 cc->gdb_arch_name = s390_gdb_arch_name;
4c315c27 505
6efadc90 506 s390_cpu_model_class_register_props(oc);
29e4bcb2
AF
507}
508
509static const TypeInfo s390_cpu_type_info = {
510 .name = TYPE_S390_CPU,
511 .parent = TYPE_CPU,
512 .instance_size = sizeof(S390CPU),
8f22e0df 513 .instance_init = s390_cpu_initfn,
d5627ce8 514 .instance_finalize = s390_cpu_finalize,
41868f84 515 .abstract = true,
29e4bcb2
AF
516 .class_size = sizeof(S390CPUClass),
517 .class_init = s390_cpu_class_init,
518};
519
520static void s390_cpu_register_types(void)
521{
522 type_register_static(&s390_cpu_type_info);
523}
524
525type_init(s390_cpu_register_types)