2012-02-14 04:16:17 +04:00
|
|
|
/*
|
|
|
|
* QEMU UniCore32 CPU
|
|
|
|
*
|
2012-08-10 10:42:23 +04:00
|
|
|
* Copyright (c) 2010-2012 Guan Xuetao
|
2012-02-14 04:16:17 +04:00
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Contributions from 2012-04-01 on are considered under GPL version 2,
|
|
|
|
* or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:01 +03:00
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 11:01:28 +03:00
|
|
|
#include "qapi/error.h"
|
2012-05-03 08:43:49 +04:00
|
|
|
#include "cpu.h"
|
2013-01-20 14:43:30 +04:00
|
|
|
#include "migration/vmstate.h"
|
2016-03-15 15:18:37 +03:00
|
|
|
#include "exec/exec-all.h"
|
2012-02-14 04:16:17 +04:00
|
|
|
|
2013-06-28 21:41:07 +04:00
|
|
|
static void uc32_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
|
|
|
UniCore32CPU *cpu = UNICORE32_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.regs[31] = value;
|
|
|
|
}
|
|
|
|
|
2013-08-25 20:53:55 +04:00
|
|
|
static bool uc32_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
|
|
|
return cs->interrupt_request &
|
|
|
|
(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB);
|
|
|
|
}
|
|
|
|
|
2012-03-29 20:03:18 +04:00
|
|
|
static inline void set_feature(CPUUniCore32State *env, int feature)
|
|
|
|
{
|
|
|
|
env->features |= feature;
|
|
|
|
}
|
|
|
|
|
2012-02-14 04:16:17 +04:00
|
|
|
/* CPU models */
|
|
|
|
|
2013-01-23 15:07:17 +04:00
|
|
|
static ObjectClass *uc32_cpu_class_by_name(const char *cpu_model)
|
|
|
|
{
|
|
|
|
ObjectClass *oc;
|
2013-01-28 02:25:25 +04:00
|
|
|
char *typename;
|
2013-01-23 15:07:17 +04:00
|
|
|
|
2017-10-05 16:51:01 +03:00
|
|
|
typename = g_strdup_printf(UNICORE32_CPU_TYPE_NAME("%s"), cpu_model);
|
2013-01-28 02:25:25 +04:00
|
|
|
oc = object_class_by_name(typename);
|
|
|
|
g_free(typename);
|
2013-01-23 15:41:38 +04:00
|
|
|
if (oc != NULL && (!object_class_dynamic_cast(oc, TYPE_UNICORE32_CPU) ||
|
|
|
|
object_class_is_abstract(oc))) {
|
2013-01-23 15:07:17 +04:00
|
|
|
oc = NULL;
|
|
|
|
}
|
|
|
|
return oc;
|
|
|
|
}
|
|
|
|
|
2012-02-14 04:16:17 +04:00
|
|
|
static void unicore_ii_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
UniCore32CPU *cpu = UNICORE32_CPU(obj);
|
|
|
|
CPUUniCore32State *env = &cpu->env;
|
|
|
|
|
2012-08-10 10:42:23 +04:00
|
|
|
env->cp0.c0_cpuid = 0x4d000863;
|
|
|
|
env->cp0.c0_cachetype = 0x0d152152;
|
|
|
|
env->cp0.c1_sys = 0x2000;
|
|
|
|
env->cp0.c2_base = 0x0;
|
|
|
|
env->cp0.c3_faultstatus = 0x0;
|
|
|
|
env->cp0.c4_faultaddr = 0x0;
|
|
|
|
env->ucf64.xregs[UC32_UCF64_FPSCR] = 0;
|
2012-03-29 20:03:18 +04:00
|
|
|
|
|
|
|
set_feature(env, UC32_HWCAP_CMOV);
|
|
|
|
set_feature(env, UC32_HWCAP_UCF64);
|
2012-02-14 04:16:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void uc32_any_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
UniCore32CPU *cpu = UNICORE32_CPU(obj);
|
|
|
|
CPUUniCore32State *env = &cpu->env;
|
|
|
|
|
|
|
|
env->cp0.c0_cpuid = 0xffffffff;
|
2012-08-10 10:42:23 +04:00
|
|
|
env->ucf64.xregs[UC32_UCF64_FPSCR] = 0;
|
2012-03-29 20:03:18 +04:00
|
|
|
|
|
|
|
set_feature(env, UC32_HWCAP_CMOV);
|
|
|
|
set_feature(env, UC32_HWCAP_UCF64);
|
2012-02-14 04:16:17 +04:00
|
|
|
}
|
|
|
|
|
2013-01-05 17:38:30 +04:00
|
|
|
static void uc32_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
|
{
|
2016-10-20 14:26:03 +03:00
|
|
|
CPUState *cs = CPU(dev);
|
2013-01-05 17:38:30 +04:00
|
|
|
UniCore32CPUClass *ucc = UNICORE32_CPU_GET_CLASS(dev);
|
2016-10-20 14:26:03 +03:00
|
|
|
Error *local_err = NULL;
|
2013-01-05 17:38:30 +04:00
|
|
|
|
2016-10-20 14:26:03 +03:00
|
|
|
cpu_exec_realizefn(cs, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_init_vcpu(cs);
|
2013-07-27 04:53:25 +04:00
|
|
|
|
2013-01-05 17:38:30 +04:00
|
|
|
ucc->parent_realize(dev, errp);
|
|
|
|
}
|
|
|
|
|
2012-02-14 04:16:17 +04:00
|
|
|
static void uc32_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
UniCore32CPU *cpu = UNICORE32_CPU(obj);
|
|
|
|
CPUUniCore32State *env = &cpu->env;
|
|
|
|
|
2019-03-29 00:26:22 +03:00
|
|
|
cpu_set_cpustate_pointers(cpu);
|
2012-02-14 04:16:17 +04:00
|
|
|
|
2012-08-10 10:42:23 +04:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2012-02-14 04:16:17 +04:00
|
|
|
env->uncached_asr = ASR_MODE_USER;
|
|
|
|
env->regs[31] = 0;
|
2012-08-10 10:42:23 +04:00
|
|
|
#else
|
|
|
|
env->uncached_asr = ASR_MODE_PRIV;
|
|
|
|
env->regs[31] = 0x03000000;
|
|
|
|
#endif
|
2012-02-14 04:16:17 +04:00
|
|
|
}
|
|
|
|
|
2013-01-20 14:43:30 +04:00
|
|
|
static const VMStateDescription vmstate_uc32_cpu = {
|
|
|
|
.name = "cpu",
|
|
|
|
.unmigratable = 1,
|
|
|
|
};
|
|
|
|
|
2013-01-23 15:07:17 +04:00
|
|
|
static void uc32_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-01-20 14:43:30 +04:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2013-01-23 15:07:17 +04:00
|
|
|
CPUClass *cc = CPU_CLASS(oc);
|
2013-01-05 17:38:30 +04:00
|
|
|
UniCore32CPUClass *ucc = UNICORE32_CPU_CLASS(oc);
|
|
|
|
|
2018-01-14 05:04:12 +03:00
|
|
|
device_class_set_parent_realize(dc, uc32_cpu_realizefn,
|
|
|
|
&ucc->parent_realize);
|
2013-01-23 15:07:17 +04:00
|
|
|
|
|
|
|
cc->class_by_name = uc32_cpu_class_by_name;
|
2013-08-25 20:53:55 +04:00
|
|
|
cc->has_work = uc32_cpu_has_work;
|
2013-02-02 13:57:51 +04:00
|
|
|
cc->do_interrupt = uc32_cpu_do_interrupt;
|
2014-09-13 20:45:24 +04:00
|
|
|
cc->cpu_exec_interrupt = uc32_cpu_exec_interrupt;
|
2013-05-27 03:33:50 +04:00
|
|
|
cc->dump_state = uc32_cpu_dump_state;
|
2013-06-28 21:41:07 +04:00
|
|
|
cc->set_pc = uc32_cpu_set_pc;
|
2019-04-03 03:34:20 +03:00
|
|
|
cc->tlb_fill = uc32_cpu_tlb_fill;
|
2013-06-29 20:55:54 +04:00
|
|
|
cc->get_phys_page_debug = uc32_cpu_get_phys_page_debug;
|
2017-10-16 05:02:42 +03:00
|
|
|
cc->tcg_initialize = uc32_translate_init;
|
2013-01-20 14:43:30 +04:00
|
|
|
dc->vmsd = &vmstate_uc32_cpu;
|
2013-01-23 15:07:17 +04:00
|
|
|
}
|
|
|
|
|
2017-10-05 16:51:01 +03:00
|
|
|
#define DEFINE_UNICORE32_CPU_TYPE(cpu_model, initfn) \
|
|
|
|
{ \
|
|
|
|
.parent = TYPE_UNICORE32_CPU, \
|
|
|
|
.instance_init = initfn, \
|
|
|
|
.name = UNICORE32_CPU_TYPE_NAME(cpu_model), \
|
|
|
|
}
|
2012-02-14 04:16:17 +04:00
|
|
|
|
2017-10-05 16:51:01 +03:00
|
|
|
static const TypeInfo uc32_cpu_type_infos[] = {
|
|
|
|
{
|
|
|
|
.name = TYPE_UNICORE32_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(UniCore32CPU),
|
|
|
|
.instance_init = uc32_cpu_initfn,
|
|
|
|
.abstract = true,
|
|
|
|
.class_size = sizeof(UniCore32CPUClass),
|
|
|
|
.class_init = uc32_cpu_class_init,
|
|
|
|
},
|
|
|
|
DEFINE_UNICORE32_CPU_TYPE("UniCore-II", unicore_ii_cpu_initfn),
|
|
|
|
DEFINE_UNICORE32_CPU_TYPE("any", uc32_any_cpu_initfn),
|
2012-02-14 04:16:17 +04:00
|
|
|
};
|
|
|
|
|
2017-10-05 16:51:01 +03:00
|
|
|
DEFINE_TYPES(uc32_cpu_type_infos)
|