2012-04-02 09:39:23 +00:00
|
|
|
/*
|
|
|
|
* QEMU S/390 CPU
|
|
|
|
*
|
2012-04-02 11:31:59 +00:00
|
|
|
* Copyright (c) 2009 Ulrich Hecht
|
|
|
|
* Copyright (c) 2011 Alexander Graf
|
2012-04-02 09:39:23 +00:00
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
2013-01-07 05:27:14 +00:00
|
|
|
* Copyright (c) 2012 IBM Corp.
|
2012-04-02 09:39:23 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see
|
|
|
|
* <http://www.gnu.org/licenses/lgpl-2.1.html>
|
2013-01-07 05:27:14 +00:00
|
|
|
* Contributions after 2012-12-11 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2012-04-02 09:39:23 +00:00
|
|
|
*/
|
|
|
|
|
2012-05-03 02:13:04 +00:00
|
|
|
#include "cpu.h"
|
2012-04-02 09:39:23 +00:00
|
|
|
#include "qemu-common.h"
|
2012-12-17 17:20:00 +00:00
|
|
|
#include "qemu/timer.h"
|
2014-09-30 08:57:29 +00:00
|
|
|
#include "qemu/error-report.h"
|
2013-01-07 05:27:14 +00:00
|
|
|
#include "hw/hw.h"
|
2014-09-30 08:57:29 +00:00
|
|
|
#include "trace.h"
|
2013-01-20 18:41:06 +00:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2012-12-18 07:50:59 +00:00
|
|
|
#include "sysemu/arch_init.h"
|
|
|
|
#endif
|
|
|
|
|
2013-01-07 05:27:14 +00:00
|
|
|
#define CR0_RESET 0xE0UL
|
|
|
|
#define CR14_RESET 0xC2000000UL;
|
|
|
|
|
2012-12-18 07:50:59 +00:00
|
|
|
/* generate CPU information for cpu -? */
|
|
|
|
void s390_cpu_list(FILE *f, fprintf_function cpu_fprintf)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_KVM
|
|
|
|
(*cpu_fprintf)(f, "s390 %16s\n", "host");
|
|
|
|
#endif
|
|
|
|
}
|
2012-04-02 09:39:23 +00:00
|
|
|
|
2012-12-18 07:50:59 +00:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
|
|
|
|
{
|
|
|
|
CpuDefinitionInfoList *entry;
|
|
|
|
CpuDefinitionInfo *info;
|
|
|
|
|
|
|
|
info = g_malloc0(sizeof(*info));
|
|
|
|
info->name = g_strdup("host");
|
|
|
|
|
|
|
|
entry = g_malloc0(sizeof(*entry));
|
|
|
|
entry->value = info;
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
#endif
|
2012-04-02 09:39:23 +00:00
|
|
|
|
2013-06-21 17:09:18 +00:00
|
|
|
static void s390_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.psw.addr = value;
|
|
|
|
}
|
|
|
|
|
2013-08-25 16:53:55 +00:00
|
|
|
static bool s390_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(cs);
|
|
|
|
CPUS390XState *env = &cpu->env;
|
|
|
|
|
|
|
|
return (cs->interrupt_request & CPU_INTERRUPT_HARD) &&
|
|
|
|
(env->psw.mask & PSW_MASK_EXT);
|
|
|
|
}
|
|
|
|
|
2013-07-25 14:45:51 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
/* S390CPUClass::load_normal() */
|
|
|
|
static void s390_cpu_load_normal(CPUState *s)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(s);
|
2013-11-15 13:46:38 +00:00
|
|
|
cpu->env.psw.addr = ldl_phys(s->as, 4) & PSW_MASK_ESA_ADDR;
|
2013-07-25 14:45:51 +00:00
|
|
|
cpu->env.psw.mask = PSW_MASK_32 | PSW_MASK_64;
|
2014-09-30 08:57:29 +00:00
|
|
|
s390_cpu_set_state(CPU_STATE_OPERATING, cpu);
|
2013-07-25 14:45:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
s390/cpu: split CPU reset into architectured functions
s390 provides several CPU resets:
- CPU reset, clears interrupts, stop processing, clears TLB, but does
not touch registers
- initial CPU reset, like CPU reset, but also clears PSW, prefix, FPC,
timer and control registers. It does not touch gprs, fprs and acrs (!)
- Power on reset: the full monty
wire up CPUClass reset to the full monty, but provide the lesser resets
as part of S390CPUClass.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
2013-06-28 08:51:09 +00:00
|
|
|
/* S390CPUClass::cpu_reset() */
|
2012-04-02 09:39:23 +00:00
|
|
|
static void s390_cpu_reset(CPUState *s)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(s);
|
|
|
|
S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
|
|
|
|
CPUS390XState *env = &cpu->env;
|
|
|
|
|
2013-09-05 11:54:39 +00:00
|
|
|
env->pfault_token = -1UL;
|
s390/cpu: split CPU reset into architectured functions
s390 provides several CPU resets:
- CPU reset, clears interrupts, stop processing, clears TLB, but does
not touch registers
- initial CPU reset, like CPU reset, but also clears PSW, prefix, FPC,
timer and control registers. It does not touch gprs, fprs and acrs (!)
- Power on reset: the full monty
wire up CPUClass reset to the full monty, but provide the lesser resets
as part of S390CPUClass.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
2013-06-28 08:51:09 +00:00
|
|
|
scc->parent_reset(s);
|
2014-09-30 08:57:29 +00:00
|
|
|
s390_cpu_set_state(CPU_STATE_STOPPED, cpu);
|
2013-09-04 00:19:44 +00:00
|
|
|
tlb_flush(s, 1);
|
s390/cpu: split CPU reset into architectured functions
s390 provides several CPU resets:
- CPU reset, clears interrupts, stop processing, clears TLB, but does
not touch registers
- initial CPU reset, like CPU reset, but also clears PSW, prefix, FPC,
timer and control registers. It does not touch gprs, fprs and acrs (!)
- Power on reset: the full monty
wire up CPUClass reset to the full monty, but provide the lesser resets
as part of S390CPUClass.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
2013-06-28 08:51:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* S390CPUClass::initial_reset() */
|
|
|
|
static void s390_cpu_initial_reset(CPUState *s)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(s);
|
|
|
|
CPUS390XState *env = &cpu->env;
|
|
|
|
|
|
|
|
s390_cpu_reset(s);
|
|
|
|
/* initial reset does not touch regs,fregs and aregs */
|
2013-08-26 19:22:53 +00:00
|
|
|
memset(&env->fpc, 0, offsetof(CPUS390XState, cpu_num) -
|
s390/cpu: split CPU reset into architectured functions
s390 provides several CPU resets:
- CPU reset, clears interrupts, stop processing, clears TLB, but does
not touch registers
- initial CPU reset, like CPU reset, but also clears PSW, prefix, FPC,
timer and control registers. It does not touch gprs, fprs and acrs (!)
- Power on reset: the full monty
wire up CPUClass reset to the full monty, but provide the lesser resets
as part of S390CPUClass.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
2013-06-28 08:51:09 +00:00
|
|
|
offsetof(CPUS390XState, fpc));
|
|
|
|
|
|
|
|
/* architectured initial values for CR 0 and 14 */
|
|
|
|
env->cregs[0] = CR0_RESET;
|
|
|
|
env->cregs[14] = CR14_RESET;
|
2013-09-05 11:54:39 +00:00
|
|
|
|
|
|
|
env->pfault_token = -1UL;
|
2014-02-12 08:56:35 +00:00
|
|
|
|
|
|
|
/* Reset state inside the kernel that we cannot access yet from QEMU. */
|
|
|
|
if (kvm_enabled()) {
|
2014-09-30 08:57:31 +00:00
|
|
|
kvm_s390_reset_vcpu(cpu);
|
2014-02-12 08:56:35 +00:00
|
|
|
}
|
s390/cpu: split CPU reset into architectured functions
s390 provides several CPU resets:
- CPU reset, clears interrupts, stop processing, clears TLB, but does
not touch registers
- initial CPU reset, like CPU reset, but also clears PSW, prefix, FPC,
timer and control registers. It does not touch gprs, fprs and acrs (!)
- Power on reset: the full monty
wire up CPUClass reset to the full monty, but provide the lesser resets
as part of S390CPUClass.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
2013-06-28 08:51:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* CPUClass:reset() */
|
|
|
|
static void s390_cpu_full_reset(CPUState *s)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(s);
|
|
|
|
S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
|
|
|
|
CPUS390XState *env = &cpu->env;
|
|
|
|
|
2012-04-02 09:39:23 +00:00
|
|
|
scc->parent_reset(s);
|
2014-09-30 08:57:29 +00:00
|
|
|
s390_cpu_set_state(CPU_STATE_STOPPED, cpu);
|
2012-04-02 09:39:23 +00:00
|
|
|
|
2013-08-26 19:22:53 +00:00
|
|
|
memset(env, 0, offsetof(CPUS390XState, cpu_num));
|
2013-01-07 05:27:14 +00:00
|
|
|
|
|
|
|
/* architectured initial values for CR 0 and 14 */
|
|
|
|
env->cregs[0] = CR0_RESET;
|
|
|
|
env->cregs[14] = CR14_RESET;
|
2013-09-05 11:54:39 +00:00
|
|
|
|
|
|
|
env->pfault_token = -1UL;
|
|
|
|
|
2014-09-30 08:57:31 +00:00
|
|
|
/* Reset state inside the kernel that we cannot access yet from QEMU. */
|
2013-03-20 12:11:56 +00:00
|
|
|
if (kvm_enabled()) {
|
|
|
|
kvm_s390_reset_vcpu(cpu);
|
|
|
|
}
|
2013-09-04 00:19:44 +00:00
|
|
|
tlb_flush(s, 1);
|
2012-04-02 09:39:23 +00:00
|
|
|
}
|
|
|
|
|
2013-01-07 05:27:14 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
static void s390_cpu_machine_reset_cb(void *opaque)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = opaque;
|
|
|
|
|
2014-08-28 11:58:51 +00:00
|
|
|
run_on_cpu(CPU(cpu), s390_do_cpu_full_reset, CPU(cpu));
|
2013-01-07 05:27:14 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-16 03:00:41 +00:00
|
|
|
static void s390_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
|
{
|
2013-07-27 00:53:25 +00:00
|
|
|
CPUState *cs = CPU(dev);
|
2013-01-16 03:00:41 +00:00
|
|
|
S390CPUClass *scc = S390_CPU_GET_CLASS(dev);
|
|
|
|
|
2014-08-29 13:52:16 +00:00
|
|
|
s390_cpu_gdb_init(cs);
|
2013-07-27 00:53:25 +00:00
|
|
|
qemu_init_vcpu(cs);
|
2014-08-28 11:58:52 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
run_on_cpu(cs, s390_do_cpu_full_reset, cs);
|
|
|
|
#else
|
2013-07-27 00:53:25 +00:00
|
|
|
cpu_reset(cs);
|
2014-08-28 11:58:52 +00:00
|
|
|
#endif
|
2013-01-16 03:00:41 +00:00
|
|
|
|
|
|
|
scc->parent_realize(dev, errp);
|
|
|
|
}
|
|
|
|
|
2012-04-02 11:56:29 +00:00
|
|
|
static void s390_cpu_initfn(Object *obj)
|
|
|
|
{
|
2013-01-17 11:13:41 +00:00
|
|
|
CPUState *cs = CPU(obj);
|
2012-04-02 11:56:29 +00:00
|
|
|
S390CPU *cpu = S390_CPU(obj);
|
|
|
|
CPUS390XState *env = &cpu->env;
|
2013-01-19 21:43:32 +00:00
|
|
|
static bool inited;
|
2012-04-02 11:56:29 +00:00
|
|
|
static int cpu_num = 0;
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
struct tm tm;
|
|
|
|
#endif
|
|
|
|
|
2013-01-17 11:13:41 +00:00
|
|
|
cs->env_ptr = env;
|
2012-04-02 11:56:29 +00:00
|
|
|
cpu_exec_init(env);
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2013-01-07 05:27:14 +00:00
|
|
|
qemu_register_reset(s390_cpu_machine_reset_cb, cpu);
|
2012-04-02 11:56:29 +00:00
|
|
|
qemu_get_timedate(&tm, 0);
|
|
|
|
env->tod_offset = TOD_UNIX_EPOCH +
|
|
|
|
(time2tod(mktimegm(&tm)) * 1000000000ULL);
|
|
|
|
env->tod_basetime = 0;
|
2013-08-21 15:03:08 +00:00
|
|
|
env->tod_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, s390x_tod_timer, cpu);
|
|
|
|
env->cpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, s390x_cpu_timer, cpu);
|
2014-09-30 08:57:29 +00:00
|
|
|
s390_cpu_set_state(CPU_STATE_STOPPED, cpu);
|
2012-04-02 11:56:29 +00:00
|
|
|
#endif
|
|
|
|
env->cpu_num = cpu_num++;
|
|
|
|
env->ext_index = -1;
|
2013-01-19 21:43:32 +00:00
|
|
|
|
|
|
|
if (tcg_enabled() && !inited) {
|
|
|
|
inited = true;
|
|
|
|
s390x_translate_init();
|
|
|
|
}
|
2012-04-02 11:56:29 +00:00
|
|
|
}
|
|
|
|
|
2013-01-07 06:14:16 +00:00
|
|
|
static void s390_cpu_finalize(Object *obj)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
S390CPU *cpu = S390_CPU(obj);
|
|
|
|
|
|
|
|
qemu_unregister_reset(s390_cpu_machine_reset_cb, cpu);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-09-30 08:57:28 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2014-09-30 08:57:29 +00:00
|
|
|
static bool disabled_wait(CPUState *cpu)
|
|
|
|
{
|
|
|
|
return cpu->halted && !(S390_CPU(cpu)->env.psw.mask &
|
|
|
|
(PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK));
|
|
|
|
}
|
|
|
|
|
2014-09-30 08:57:28 +00:00
|
|
|
static unsigned s390_count_running_cpus(void)
|
|
|
|
{
|
|
|
|
CPUState *cpu;
|
|
|
|
int nr_running = 0;
|
|
|
|
|
|
|
|
CPU_FOREACH(cpu) {
|
|
|
|
uint8_t state = S390_CPU(cpu)->env.cpu_state;
|
|
|
|
if (state == CPU_STATE_OPERATING ||
|
|
|
|
state == CPU_STATE_LOAD) {
|
2014-09-30 08:57:29 +00:00
|
|
|
if (!disabled_wait(cpu)) {
|
|
|
|
nr_running++;
|
|
|
|
}
|
2014-09-30 08:57:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nr_running;
|
|
|
|
}
|
|
|
|
|
2014-09-30 08:57:29 +00:00
|
|
|
unsigned int s390_cpu_halt(S390CPU *cpu)
|
2014-09-30 08:57:28 +00:00
|
|
|
{
|
|
|
|
CPUState *cs = CPU(cpu);
|
2014-09-30 08:57:29 +00:00
|
|
|
trace_cpu_halt(cs->cpu_index);
|
2014-09-30 08:57:28 +00:00
|
|
|
|
2014-09-30 08:57:29 +00:00
|
|
|
if (!cs->halted) {
|
|
|
|
cs->halted = 1;
|
|
|
|
cs->exception_index = EXCP_HLT;
|
2014-09-30 08:57:28 +00:00
|
|
|
}
|
2014-09-30 08:57:29 +00:00
|
|
|
|
|
|
|
return s390_count_running_cpus();
|
2014-09-30 08:57:28 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 08:57:29 +00:00
|
|
|
void s390_cpu_unhalt(S390CPU *cpu)
|
2014-09-30 08:57:28 +00:00
|
|
|
{
|
|
|
|
CPUState *cs = CPU(cpu);
|
2014-09-30 08:57:29 +00:00
|
|
|
trace_cpu_unhalt(cs->cpu_index);
|
2014-09-30 08:57:28 +00:00
|
|
|
|
2014-09-30 08:57:29 +00:00
|
|
|
if (cs->halted) {
|
|
|
|
cs->halted = 0;
|
|
|
|
cs->exception_index = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int s390_cpu_set_state(uint8_t cpu_state, S390CPU *cpu)
|
|
|
|
{
|
|
|
|
trace_cpu_set_state(CPU(cpu)->cpu_index, cpu_state);
|
|
|
|
|
|
|
|
switch (cpu_state) {
|
|
|
|
case CPU_STATE_STOPPED:
|
|
|
|
case CPU_STATE_CHECK_STOP:
|
|
|
|
/* halt the cpu for common infrastructure */
|
|
|
|
s390_cpu_halt(cpu);
|
|
|
|
break;
|
|
|
|
case CPU_STATE_OPERATING:
|
|
|
|
case CPU_STATE_LOAD:
|
|
|
|
/* unhalt the cpu for common infrastructure */
|
|
|
|
s390_cpu_unhalt(cpu);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error_report("Requested CPU state is not a valid S390 CPU state: %u",
|
|
|
|
cpu_state);
|
|
|
|
exit(1);
|
2014-09-30 08:57:28 +00:00
|
|
|
}
|
2014-09-30 08:57:30 +00:00
|
|
|
if (kvm_enabled() && cpu->env.cpu_state != cpu_state) {
|
|
|
|
kvm_s390_set_cpu_state(cpu, cpu_state);
|
|
|
|
}
|
2014-09-30 08:57:29 +00:00
|
|
|
cpu->env.cpu_state = cpu_state;
|
2014-09-30 08:57:28 +00:00
|
|
|
|
|
|
|
return s390_count_running_cpus();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-20 18:41:06 +00:00
|
|
|
static const VMStateDescription vmstate_s390_cpu = {
|
|
|
|
.name = "cpu",
|
|
|
|
.unmigratable = 1,
|
|
|
|
};
|
|
|
|
|
2012-04-02 09:39:23 +00:00
|
|
|
static void s390_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
S390CPUClass *scc = S390_CPU_CLASS(oc);
|
|
|
|
CPUClass *cc = CPU_CLASS(scc);
|
2013-01-20 18:41:06 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2012-04-02 09:39:23 +00:00
|
|
|
|
2013-01-16 03:00:41 +00:00
|
|
|
scc->parent_realize = dc->realize;
|
|
|
|
dc->realize = s390_cpu_realizefn;
|
|
|
|
|
2012-04-02 09:39:23 +00:00
|
|
|
scc->parent_reset = cc->reset;
|
2013-07-25 14:45:51 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
scc->load_normal = s390_cpu_load_normal;
|
|
|
|
#endif
|
s390/cpu: split CPU reset into architectured functions
s390 provides several CPU resets:
- CPU reset, clears interrupts, stop processing, clears TLB, but does
not touch registers
- initial CPU reset, like CPU reset, but also clears PSW, prefix, FPC,
timer and control registers. It does not touch gprs, fprs and acrs (!)
- Power on reset: the full monty
wire up CPUClass reset to the full monty, but provide the lesser resets
as part of S390CPUClass.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
2013-06-28 08:51:09 +00:00
|
|
|
scc->cpu_reset = s390_cpu_reset;
|
|
|
|
scc->initial_cpu_reset = s390_cpu_initial_reset;
|
|
|
|
cc->reset = s390_cpu_full_reset;
|
2013-08-25 16:53:55 +00:00
|
|
|
cc->has_work = s390_cpu_has_work;
|
2013-02-02 09:57:51 +00:00
|
|
|
cc->do_interrupt = s390_cpu_do_interrupt;
|
2013-05-26 23:33:50 +00:00
|
|
|
cc->dump_state = s390_cpu_dump_state;
|
2013-06-21 17:09:18 +00:00
|
|
|
cc->set_pc = s390_cpu_set_pc;
|
2013-06-29 02:18:45 +00:00
|
|
|
cc->gdb_read_register = s390_cpu_gdb_read_register;
|
|
|
|
cc->gdb_write_register = s390_cpu_gdb_write_register;
|
2013-08-26 01:01:33 +00:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
cc->handle_mmu_fault = s390_cpu_handle_mmu_fault;
|
|
|
|
#else
|
2013-06-29 16:55:54 +00:00
|
|
|
cc->get_phys_page_debug = s390_cpu_get_phys_page_debug;
|
2013-07-10 13:26:46 +00:00
|
|
|
cc->write_elf64_note = s390_cpu_write_elf64_note;
|
|
|
|
cc->write_elf64_qemunote = s390_cpu_write_elf64_qemunote;
|
2014-09-13 16:45:19 +00:00
|
|
|
cc->cpu_exec_interrupt = s390_cpu_exec_interrupt;
|
2013-06-29 16:55:54 +00:00
|
|
|
#endif
|
2013-01-20 18:41:06 +00:00
|
|
|
dc->vmsd = &vmstate_s390_cpu;
|
2014-08-29 13:52:16 +00:00
|
|
|
cc->gdb_num_core_regs = S390_NUM_CORE_REGS;
|
|
|
|
cc->gdb_core_xml_file = "s390x-core64.xml";
|
2012-04-02 09:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo s390_cpu_type_info = {
|
|
|
|
.name = TYPE_S390_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(S390CPU),
|
2012-04-02 11:56:29 +00:00
|
|
|
.instance_init = s390_cpu_initfn,
|
2013-01-07 06:14:16 +00:00
|
|
|
.instance_finalize = s390_cpu_finalize,
|
2012-04-02 09:39:23 +00:00
|
|
|
.abstract = false,
|
|
|
|
.class_size = sizeof(S390CPUClass),
|
|
|
|
.class_init = s390_cpu_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void s390_cpu_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&s390_cpu_type_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(s390_cpu_register_types)
|