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"
30 #ifndef CONFIG_USER_ONLY
31 #include "sysemu/arch_init.h"
34 #define CR0_RESET 0xE0UL
35 #define CR14_RESET 0xC2000000UL;
37 /* generate CPU information for cpu -? */
38 void s390_cpu_list(FILE *f
, fprintf_function cpu_fprintf
)
41 (*cpu_fprintf
)(f
, "s390 %16s\n", "host");
45 #ifndef CONFIG_USER_ONLY
46 CpuDefinitionInfoList
*arch_query_cpu_definitions(Error
**errp
)
48 CpuDefinitionInfoList
*entry
;
49 CpuDefinitionInfo
*info
;
51 info
= g_malloc0(sizeof(*info
));
52 info
->name
= g_strdup("host");
54 entry
= g_malloc0(sizeof(*entry
));
61 /* CPUClass::reset() */
62 static void s390_cpu_reset(CPUState
*s
)
64 S390CPU
*cpu
= S390_CPU(s
);
65 S390CPUClass
*scc
= S390_CPU_GET_CLASS(cpu
);
66 CPUS390XState
*env
= &cpu
->env
;
68 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
69 qemu_log("CPU Reset (CPU %d)\n", s
->cpu_index
);
70 log_cpu_state(env
, 0);
73 s390_del_running_cpu(cpu
);
77 memset(env
, 0, offsetof(CPUS390XState
, breakpoints
));
79 /* architectured initial values for CR 0 and 14 */
80 env
->cregs
[0] = CR0_RESET
;
81 env
->cregs
[14] = CR14_RESET
;
82 /* set halted to 1 to make sure we can add the cpu in
83 * s390_ipl_cpu code, where env->halted is set back to 0
84 * after incrementing the cpu counter */
85 #if !defined(CONFIG_USER_ONLY)
91 #if !defined(CONFIG_USER_ONLY)
92 static void s390_cpu_machine_reset_cb(void *opaque
)
94 S390CPU
*cpu
= opaque
;
100 static void s390_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
102 S390CPU
*cpu
= S390_CPU(dev
);
103 S390CPUClass
*scc
= S390_CPU_GET_CLASS(dev
);
105 qemu_init_vcpu(&cpu
->env
);
108 scc
->parent_realize(dev
, errp
);
111 static void s390_cpu_initfn(Object
*obj
)
113 CPUState
*cs
= CPU(obj
);
114 S390CPU
*cpu
= S390_CPU(obj
);
115 CPUS390XState
*env
= &cpu
->env
;
117 static int cpu_num
= 0;
118 #if !defined(CONFIG_USER_ONLY)
124 #if !defined(CONFIG_USER_ONLY)
125 qemu_register_reset(s390_cpu_machine_reset_cb
, cpu
);
126 qemu_get_timedate(&tm
, 0);
127 env
->tod_offset
= TOD_UNIX_EPOCH
+
128 (time2tod(mktimegm(&tm
)) * 1000000000ULL);
129 env
->tod_basetime
= 0;
130 env
->tod_timer
= qemu_new_timer_ns(vm_clock
, s390x_tod_timer
, cpu
);
131 env
->cpu_timer
= qemu_new_timer_ns(vm_clock
, s390x_cpu_timer
, cpu
);
132 /* set env->halted state to 1 to avoid decrementing the running
133 * cpu counter in s390_cpu_reset to a negative number at
137 env
->cpu_num
= cpu_num
++;
140 if (tcg_enabled() && !inited
) {
142 s390x_translate_init();
146 static void s390_cpu_finalize(Object
*obj
)
148 #if !defined(CONFIG_USER_ONLY)
149 S390CPU
*cpu
= S390_CPU(obj
);
151 qemu_unregister_reset(s390_cpu_machine_reset_cb
, cpu
);
155 static const VMStateDescription vmstate_s390_cpu
= {
160 static void s390_cpu_class_init(ObjectClass
*oc
, void *data
)
162 S390CPUClass
*scc
= S390_CPU_CLASS(oc
);
163 CPUClass
*cc
= CPU_CLASS(scc
);
164 DeviceClass
*dc
= DEVICE_CLASS(oc
);
166 scc
->parent_realize
= dc
->realize
;
167 dc
->realize
= s390_cpu_realizefn
;
169 scc
->parent_reset
= cc
->reset
;
170 cc
->reset
= s390_cpu_reset
;
172 dc
->vmsd
= &vmstate_s390_cpu
;
175 static const TypeInfo s390_cpu_type_info
= {
176 .name
= TYPE_S390_CPU
,
178 .instance_size
= sizeof(S390CPU
),
179 .instance_init
= s390_cpu_initfn
,
180 .instance_finalize
= s390_cpu_finalize
,
182 .class_size
= sizeof(S390CPUClass
),
183 .class_init
= s390_cpu_class_init
,
186 static void s390_cpu_register_types(void)
188 type_register_static(&s390_cpu_type_info
);
191 type_init(s390_cpu_register_types
)