2012-04-02 11:39:23 +02:00
|
|
|
/*
|
|
|
|
* QEMU S/390 CPU
|
|
|
|
*
|
2012-04-02 13:31:59 +02:00
|
|
|
* Copyright (c) 2009 Ulrich Hecht
|
|
|
|
* Copyright (c) 2011 Alexander Graf
|
2012-04-02 11:39:23 +02:00
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
2013-01-07 06:27:14 +01:00
|
|
|
* Copyright (c) 2012 IBM Corp.
|
2012-04-02 11:39:23 +02: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 06:27:14 +01: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 11:39:23 +02:00
|
|
|
*/
|
|
|
|
|
2012-05-03 04:13:04 +02:00
|
|
|
#include "cpu.h"
|
2012-04-02 11:39:23 +02:00
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2012-12-18 08:50:59 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2013-01-07 06:27:14 +01:00
|
|
|
#include "hw/hw.h"
|
2012-12-18 08:50:59 +01:00
|
|
|
#include "sysemu/arch_init.h"
|
|
|
|
#endif
|
|
|
|
|
2013-01-07 06:27:14 +01:00
|
|
|
#define CR0_RESET 0xE0UL
|
|
|
|
#define CR14_RESET 0xC2000000UL;
|
|
|
|
|
2012-12-18 08:50:59 +01: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 11:39:23 +02:00
|
|
|
|
2012-12-18 08:50:59 +01: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 11:39:23 +02:00
|
|
|
|
2012-04-02 13:31:59 +02:00
|
|
|
/* CPUClass::reset() */
|
2012-04-02 11:39:23 +02:00
|
|
|
static void s390_cpu_reset(CPUState *s)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(s);
|
|
|
|
S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
|
|
|
|
CPUS390XState *env = &cpu->env;
|
|
|
|
|
2012-04-02 13:31:59 +02:00
|
|
|
if (qemu_loglevel_mask(CPU_LOG_RESET)) {
|
2012-12-17 06:18:02 +01:00
|
|
|
qemu_log("CPU Reset (CPU %d)\n", s->cpu_index);
|
2012-04-02 13:31:59 +02:00
|
|
|
log_cpu_state(env, 0);
|
|
|
|
}
|
|
|
|
|
2013-01-07 06:27:14 +01:00
|
|
|
s390_del_running_cpu(env);
|
|
|
|
|
2012-04-02 11:39:23 +02:00
|
|
|
scc->parent_reset(s);
|
|
|
|
|
2012-04-02 13:31:59 +02:00
|
|
|
memset(env, 0, offsetof(CPUS390XState, breakpoints));
|
2013-01-07 06:27:14 +01:00
|
|
|
|
|
|
|
/* architectured initial values for CR 0 and 14 */
|
|
|
|
env->cregs[0] = CR0_RESET;
|
|
|
|
env->cregs[14] = CR14_RESET;
|
|
|
|
/* set halted to 1 to make sure we can add the cpu in
|
|
|
|
* s390_ipl_cpu code, where env->halted is set back to 0
|
|
|
|
* after incrementing the cpu counter */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
env->halted = 1;
|
|
|
|
#endif
|
2012-04-02 13:31:59 +02:00
|
|
|
tlb_flush(env, 1);
|
2012-04-02 11:39:23 +02:00
|
|
|
}
|
|
|
|
|
2013-01-07 06:27:14 +01:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
static void s390_cpu_machine_reset_cb(void *opaque)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = opaque;
|
|
|
|
|
|
|
|
cpu_reset(CPU(cpu));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-04-02 13:56:29 +02:00
|
|
|
static void s390_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = S390_CPU(obj);
|
|
|
|
CPUS390XState *env = &cpu->env;
|
|
|
|
static int cpu_num = 0;
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
struct tm tm;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
cpu_exec_init(env);
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2013-01-07 06:27:14 +01:00
|
|
|
qemu_register_reset(s390_cpu_machine_reset_cb, cpu);
|
2012-04-02 13:56:29 +02:00
|
|
|
qemu_get_timedate(&tm, 0);
|
|
|
|
env->tod_offset = TOD_UNIX_EPOCH +
|
|
|
|
(time2tod(mktimegm(&tm)) * 1000000000ULL);
|
|
|
|
env->tod_basetime = 0;
|
2012-04-02 14:00:43 +02:00
|
|
|
env->tod_timer = qemu_new_timer_ns(vm_clock, s390x_tod_timer, cpu);
|
|
|
|
env->cpu_timer = qemu_new_timer_ns(vm_clock, s390x_cpu_timer, cpu);
|
2013-01-07 06:27:14 +01:00
|
|
|
/* set env->halted state to 1 to avoid decrementing the running
|
|
|
|
* cpu counter in s390_cpu_reset to a negative number at
|
|
|
|
* initial ipl */
|
|
|
|
env->halted = 1;
|
2012-04-02 13:56:29 +02:00
|
|
|
#endif
|
|
|
|
env->cpu_num = cpu_num++;
|
|
|
|
env->ext_index = -1;
|
|
|
|
|
|
|
|
cpu_reset(CPU(cpu));
|
|
|
|
}
|
|
|
|
|
2013-01-07 07:14:16 +01: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
|
|
|
|
}
|
|
|
|
|
2012-04-02 11:39:23 +02:00
|
|
|
static void s390_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
S390CPUClass *scc = S390_CPU_CLASS(oc);
|
|
|
|
CPUClass *cc = CPU_CLASS(scc);
|
|
|
|
|
|
|
|
scc->parent_reset = cc->reset;
|
|
|
|
cc->reset = s390_cpu_reset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo s390_cpu_type_info = {
|
|
|
|
.name = TYPE_S390_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(S390CPU),
|
2012-04-02 13:56:29 +02:00
|
|
|
.instance_init = s390_cpu_initfn,
|
2013-01-07 07:14:16 +01:00
|
|
|
.instance_finalize = s390_cpu_finalize,
|
2012-04-02 11:39:23 +02: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)
|