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.
27 #include "qemu-common.h"
28 #include "qemu/timer.h"
29 #include "qemu/error-report.h"
32 #ifndef CONFIG_USER_ONLY
33 #include "sysemu/arch_init.h"
36 #define CR0_RESET 0xE0UL
37 #define CR14_RESET 0xC2000000UL;
39 /* generate CPU information for cpu -? */
40 void s390_cpu_list(FILE *f
, fprintf_function cpu_fprintf
)
43 (*cpu_fprintf
)(f
, "s390 %16s\n", "host");
47 #ifndef CONFIG_USER_ONLY
48 CpuDefinitionInfoList
*arch_query_cpu_definitions(Error
**errp
)
50 CpuDefinitionInfoList
*entry
;
51 CpuDefinitionInfo
*info
;
53 info
= g_malloc0(sizeof(*info
));
54 info
->name
= g_strdup("host");
56 entry
= g_malloc0(sizeof(*entry
));
63 static void s390_cpu_set_pc(CPUState
*cs
, vaddr value
)
65 S390CPU
*cpu
= S390_CPU(cs
);
67 cpu
->env
.psw
.addr
= value
;
70 static bool s390_cpu_has_work(CPUState
*cs
)
72 S390CPU
*cpu
= S390_CPU(cs
);
73 CPUS390XState
*env
= &cpu
->env
;
75 return (cs
->interrupt_request
& CPU_INTERRUPT_HARD
) &&
76 (env
->psw
.mask
& PSW_MASK_EXT
);
79 #if !defined(CONFIG_USER_ONLY)
80 /* S390CPUClass::load_normal() */
81 static void s390_cpu_load_normal(CPUState
*s
)
83 S390CPU
*cpu
= S390_CPU(s
);
84 cpu
->env
.psw
.addr
= ldl_phys(s
->as
, 4) & PSW_MASK_ESA_ADDR
;
85 cpu
->env
.psw
.mask
= PSW_MASK_32
| PSW_MASK_64
;
86 s390_cpu_set_state(CPU_STATE_OPERATING
, cpu
);
90 /* S390CPUClass::cpu_reset() */
91 static void s390_cpu_reset(CPUState
*s
)
93 S390CPU
*cpu
= S390_CPU(s
);
94 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
95 CPUS390XState
*env
= &cpu
->env
;
97 env
->pfault_token
= -1UL;
99 cpu
->env
.sigp_order
= 0;
100 s390_cpu_set_state(CPU_STATE_STOPPED
, cpu
);
104 /* S390CPUClass::initial_reset() */
105 static void s390_cpu_initial_reset(CPUState
*s
)
107 S390CPU
*cpu
= S390_CPU(s
);
108 CPUS390XState
*env
= &cpu
->env
;
112 /* initial reset does not touch regs,fregs and aregs */
113 memset(&env
->fpc
, 0, offsetof(CPUS390XState
, cpu_num
) -
114 offsetof(CPUS390XState
, fpc
));
116 /* architectured initial values for CR 0 and 14 */
117 env
->cregs
[0] = CR0_RESET
;
118 env
->cregs
[14] = CR14_RESET
;
120 /* architectured initial value for Breaking-Event-Address register */
123 env
->pfault_token
= -1UL;
125 for (i
= 0; i
< ARRAY_SIZE(env
->io_index
); i
++) {
126 env
->io_index
[i
] = -1;
129 /* tininess for underflow is detected before rounding */
130 set_float_detect_tininess(float_tininess_before_rounding
,
133 /* Reset state inside the kernel that we cannot access yet from QEMU. */
135 kvm_s390_reset_vcpu(cpu
);
140 /* CPUClass:reset() */
141 static void s390_cpu_full_reset(CPUState
*s
)
143 S390CPU
*cpu
= S390_CPU(s
);
144 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
145 CPUS390XState
*env
= &cpu
->env
;
148 scc
->parent_reset(s
);
149 cpu
->env
.sigp_order
= 0;
150 s390_cpu_set_state(CPU_STATE_STOPPED
, cpu
);
152 memset(env
, 0, offsetof(CPUS390XState
, cpu_num
));
154 /* architectured initial values for CR 0 and 14 */
155 env
->cregs
[0] = CR0_RESET
;
156 env
->cregs
[14] = CR14_RESET
;
158 /* architectured initial value for Breaking-Event-Address register */
161 env
->pfault_token
= -1UL;
163 for (i
= 0; i
< ARRAY_SIZE(env
->io_index
); i
++) {
164 env
->io_index
[i
] = -1;
167 /* tininess for underflow is detected before rounding */
168 set_float_detect_tininess(float_tininess_before_rounding
,
171 /* Reset state inside the kernel that we cannot access yet from QEMU. */
173 kvm_s390_reset_vcpu(cpu
);
178 #if !defined(CONFIG_USER_ONLY)
179 static void s390_cpu_machine_reset_cb(void *opaque
)
181 S390CPU
*cpu
= opaque
;
183 run_on_cpu(CPU(cpu
), s390_do_cpu_full_reset
, CPU(cpu
));
187 static void s390_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
189 CPUState
*cs
= CPU(dev
);
190 S390CPUClass
*scc
= S390_CPU_GET_CLASS(dev
);
192 s390_cpu_gdb_init(cs
);
194 #if !defined(CONFIG_USER_ONLY)
195 run_on_cpu(cs
, s390_do_cpu_full_reset
, cs
);
200 scc
->parent_realize(dev
, errp
);
203 static void s390_cpu_initfn(Object
*obj
)
205 CPUState
*cs
= CPU(obj
);
206 S390CPU
*cpu
= S390_CPU(obj
);
207 CPUS390XState
*env
= &cpu
->env
;
209 static int cpu_num
= 0;
210 #if !defined(CONFIG_USER_ONLY)
215 cpu_exec_init(cs
, &error_abort
);
216 #if !defined(CONFIG_USER_ONLY)
217 qemu_register_reset(s390_cpu_machine_reset_cb
, cpu
);
218 qemu_get_timedate(&tm
, 0);
219 env
->tod_offset
= TOD_UNIX_EPOCH
+
220 (time2tod(mktimegm(&tm
)) * 1000000000ULL);
221 env
->tod_basetime
= 0;
222 env
->tod_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, s390x_tod_timer
, cpu
);
223 env
->cpu_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, s390x_cpu_timer
, cpu
);
224 s390_cpu_set_state(CPU_STATE_STOPPED
, cpu
);
226 env
->cpu_num
= cpu_num
++;
228 if (tcg_enabled() && !inited
) {
230 s390x_translate_init();
234 static void s390_cpu_finalize(Object
*obj
)
236 #if !defined(CONFIG_USER_ONLY)
237 S390CPU
*cpu
= S390_CPU(obj
);
239 qemu_unregister_reset(s390_cpu_machine_reset_cb
, cpu
);
240 g_free(cpu
->irqstate
);
244 #if !defined(CONFIG_USER_ONLY)
245 static bool disabled_wait(CPUState
*cpu
)
247 return cpu
->halted
&& !(S390_CPU(cpu
)->env
.psw
.mask
&
248 (PSW_MASK_IO
| PSW_MASK_EXT
| PSW_MASK_MCHECK
));
251 static unsigned s390_count_running_cpus(void)
257 uint8_t state
= S390_CPU(cpu
)->env
.cpu_state
;
258 if (state
== CPU_STATE_OPERATING
||
259 state
== CPU_STATE_LOAD
) {
260 if (!disabled_wait(cpu
)) {
269 unsigned int s390_cpu_halt(S390CPU
*cpu
)
271 CPUState
*cs
= CPU(cpu
);
272 trace_cpu_halt(cs
->cpu_index
);
276 cs
->exception_index
= EXCP_HLT
;
279 return s390_count_running_cpus();
282 void s390_cpu_unhalt(S390CPU
*cpu
)
284 CPUState
*cs
= CPU(cpu
);
285 trace_cpu_unhalt(cs
->cpu_index
);
289 cs
->exception_index
= -1;
293 unsigned int s390_cpu_set_state(uint8_t cpu_state
, S390CPU
*cpu
)
295 trace_cpu_set_state(CPU(cpu
)->cpu_index
, cpu_state
);
298 case CPU_STATE_STOPPED
:
299 case CPU_STATE_CHECK_STOP
:
300 /* halt the cpu for common infrastructure */
303 case CPU_STATE_OPERATING
:
305 /* unhalt the cpu for common infrastructure */
306 s390_cpu_unhalt(cpu
);
309 error_report("Requested CPU state is not a valid S390 CPU state: %u",
313 if (kvm_enabled() && cpu
->env
.cpu_state
!= cpu_state
) {
314 kvm_s390_set_cpu_state(cpu
, cpu_state
);
316 cpu
->env
.cpu_state
= cpu_state
;
318 return s390_count_running_cpus();
322 static void s390_cpu_class_init(ObjectClass
*oc
, void *data
)
324 S390CPUClass
*scc
= S390_CPU_CLASS(oc
);
325 CPUClass
*cc
= CPU_CLASS(scc
);
326 DeviceClass
*dc
= DEVICE_CLASS(oc
);
328 scc
->parent_realize
= dc
->realize
;
329 dc
->realize
= s390_cpu_realizefn
;
331 scc
->parent_reset
= cc
->reset
;
332 #if !defined(CONFIG_USER_ONLY)
333 scc
->load_normal
= s390_cpu_load_normal
;
335 scc
->cpu_reset
= s390_cpu_reset
;
336 scc
->initial_cpu_reset
= s390_cpu_initial_reset
;
337 cc
->reset
= s390_cpu_full_reset
;
338 cc
->has_work
= s390_cpu_has_work
;
339 cc
->do_interrupt
= s390_cpu_do_interrupt
;
340 cc
->dump_state
= s390_cpu_dump_state
;
341 cc
->set_pc
= s390_cpu_set_pc
;
342 cc
->gdb_read_register
= s390_cpu_gdb_read_register
;
343 cc
->gdb_write_register
= s390_cpu_gdb_write_register
;
344 #ifdef CONFIG_USER_ONLY
345 cc
->handle_mmu_fault
= s390_cpu_handle_mmu_fault
;
347 cc
->get_phys_page_debug
= s390_cpu_get_phys_page_debug
;
348 cc
->vmsd
= &vmstate_s390_cpu
;
349 cc
->write_elf64_note
= s390_cpu_write_elf64_note
;
350 cc
->write_elf64_qemunote
= s390_cpu_write_elf64_qemunote
;
351 cc
->cpu_exec_interrupt
= s390_cpu_exec_interrupt
;
352 cc
->debug_excp_handler
= s390x_cpu_debug_excp_handler
;
354 cc
->gdb_num_core_regs
= S390_NUM_CORE_REGS
;
355 cc
->gdb_core_xml_file
= "s390x-core64.xml";
358 static const TypeInfo s390_cpu_type_info
= {
359 .name
= TYPE_S390_CPU
,
361 .instance_size
= sizeof(S390CPU
),
362 .instance_init
= s390_cpu_initfn
,
363 .instance_finalize
= s390_cpu_finalize
,
365 .class_size
= sizeof(S390CPUClass
),
366 .class_init
= s390_cpu_class_init
,
369 static void s390_cpu_register_types(void)
371 type_register_static(&s390_cpu_type_info
);
374 type_init(s390_cpu_register_types
)