2014-09-01 15:59:46 +04:00
|
|
|
/*
|
|
|
|
* TriCore emulation for qemu: main translation routines.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012-2014 Bastian Koppelmann C-Lab/University Paderborn
|
|
|
|
*
|
|
|
|
* 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
|
2019-01-23 17:08:55 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2014-09-01 15:59:46 +04:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:26 +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"
|
2014-09-01 15:59:46 +04:00
|
|
|
#include "cpu.h"
|
2016-03-15 15:18:37 +03:00
|
|
|
#include "exec/exec-all.h"
|
2017-07-27 17:30:40 +03:00
|
|
|
#include "qemu/error-report.h"
|
|
|
|
|
|
|
|
static hwaddr tricore_cpu_get_phys_page_attrs_debug(CPUState *cpu, vaddr addr,
|
|
|
|
MemTxAttrs *attrs)
|
|
|
|
{
|
|
|
|
error_report("function cpu_get_phys_page_attrs_debug not "
|
|
|
|
"implemented, aborting");
|
|
|
|
return -1;
|
|
|
|
}
|
2014-09-01 15:59:46 +04:00
|
|
|
|
|
|
|
static inline void set_feature(CPUTriCoreState *env, int feature)
|
|
|
|
{
|
|
|
|
env->features |= 1ULL << feature;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tricore_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(cs);
|
|
|
|
CPUTriCoreState *env = &cpu->env;
|
|
|
|
|
|
|
|
env->PC = value & ~(target_ulong)1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tricore_cpu_synchronize_from_tb(CPUState *cs,
|
|
|
|
TranslationBlock *tb)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(cs);
|
|
|
|
CPUTriCoreState *env = &cpu->env;
|
|
|
|
|
|
|
|
env->PC = tb->pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tricore_cpu_reset(CPUState *s)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(s);
|
|
|
|
TriCoreCPUClass *tcc = TRICORE_CPU_GET_CLASS(cpu);
|
|
|
|
CPUTriCoreState *env = &cpu->env;
|
|
|
|
|
|
|
|
tcc->parent_reset(s);
|
|
|
|
|
|
|
|
cpu_state_reset(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool tricore_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tricore_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(dev);
|
2014-11-13 17:17:08 +03:00
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(dev);
|
2014-09-01 15:59:46 +04:00
|
|
|
TriCoreCPUClass *tcc = TRICORE_CPU_GET_CLASS(dev);
|
2014-11-13 17:17:08 +03:00
|
|
|
CPUTriCoreState *env = &cpu->env;
|
2016-10-20 14:26:03 +03:00
|
|
|
Error *local_err = NULL;
|
|
|
|
|
|
|
|
cpu_exec_realizefn(cs, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
2014-09-01 15:59:46 +04:00
|
|
|
|
2014-11-13 17:17:08 +03:00
|
|
|
/* Some features automatically imply others */
|
2015-05-06 21:18:41 +03:00
|
|
|
if (tricore_feature(env, TRICORE_FEATURE_161)) {
|
|
|
|
set_feature(env, TRICORE_FEATURE_16);
|
|
|
|
}
|
|
|
|
|
2014-11-13 17:17:08 +03:00
|
|
|
if (tricore_feature(env, TRICORE_FEATURE_16)) {
|
|
|
|
set_feature(env, TRICORE_FEATURE_131);
|
|
|
|
}
|
|
|
|
if (tricore_feature(env, TRICORE_FEATURE_131)) {
|
|
|
|
set_feature(env, TRICORE_FEATURE_13);
|
|
|
|
}
|
2014-09-01 15:59:46 +04:00
|
|
|
cpu_reset(cs);
|
|
|
|
qemu_init_vcpu(cs);
|
|
|
|
|
|
|
|
tcc->parent_realize(dev, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void tricore_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
2019-03-29 00:26:22 +03:00
|
|
|
cpu_set_cpustate_pointers(cpu);
|
2014-09-01 15:59:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static ObjectClass *tricore_cpu_class_by_name(const char *cpu_model)
|
|
|
|
{
|
|
|
|
ObjectClass *oc;
|
|
|
|
char *typename;
|
|
|
|
|
2017-10-05 16:51:03 +03:00
|
|
|
typename = g_strdup_printf(TRICORE_CPU_TYPE_NAME("%s"), cpu_model);
|
2014-09-01 15:59:46 +04:00
|
|
|
oc = object_class_by_name(typename);
|
|
|
|
g_free(typename);
|
|
|
|
if (!oc || !object_class_dynamic_cast(oc, TYPE_TRICORE_CPU) ||
|
|
|
|
object_class_is_abstract(oc)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return oc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tc1796_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
2015-03-22 15:49:12 +03:00
|
|
|
set_feature(&cpu->env, TRICORE_FEATURE_13);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tc1797_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
2015-01-18 01:34:27 +03:00
|
|
|
set_feature(&cpu->env, TRICORE_FEATURE_131);
|
2014-09-01 15:59:46 +04:00
|
|
|
}
|
|
|
|
|
2015-05-06 21:18:41 +03:00
|
|
|
static void tc27x_initfn(Object *obj)
|
2014-09-01 15:59:46 +04:00
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
2015-05-06 21:18:41 +03:00
|
|
|
set_feature(&cpu->env, TRICORE_FEATURE_161);
|
2014-09-01 15:59:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tricore_cpu_class_init(ObjectClass *c, void *data)
|
|
|
|
{
|
|
|
|
TriCoreCPUClass *mcc = TRICORE_CPU_CLASS(c);
|
|
|
|
CPUClass *cc = CPU_CLASS(c);
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(c);
|
|
|
|
|
2018-01-14 05:04:12 +03:00
|
|
|
device_class_set_parent_realize(dc, tricore_cpu_realizefn,
|
|
|
|
&mcc->parent_realize);
|
2014-09-01 15:59:46 +04:00
|
|
|
|
|
|
|
mcc->parent_reset = cc->reset;
|
|
|
|
cc->reset = tricore_cpu_reset;
|
|
|
|
cc->class_by_name = tricore_cpu_class_by_name;
|
|
|
|
cc->has_work = tricore_cpu_has_work;
|
|
|
|
|
|
|
|
cc->dump_state = tricore_cpu_dump_state;
|
|
|
|
cc->set_pc = tricore_cpu_set_pc;
|
|
|
|
cc->synchronize_from_tb = tricore_cpu_synchronize_from_tb;
|
2017-07-27 17:30:40 +03:00
|
|
|
cc->get_phys_page_attrs_debug = tricore_cpu_get_phys_page_attrs_debug;
|
2017-10-16 05:02:42 +03:00
|
|
|
cc->tcg_initialize = tricore_tcg_init;
|
2019-04-03 03:27:29 +03:00
|
|
|
cc->tlb_fill = tricore_cpu_tlb_fill;
|
2014-09-01 15:59:46 +04:00
|
|
|
}
|
|
|
|
|
2017-10-05 16:51:03 +03:00
|
|
|
#define DEFINE_TRICORE_CPU_TYPE(cpu_model, initfn) \
|
|
|
|
{ \
|
|
|
|
.parent = TYPE_TRICORE_CPU, \
|
|
|
|
.instance_init = initfn, \
|
|
|
|
.name = TRICORE_CPU_TYPE_NAME(cpu_model), \
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo tricore_cpu_type_infos[] = {
|
|
|
|
{
|
|
|
|
.name = TYPE_TRICORE_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
2014-09-01 15:59:46 +04:00
|
|
|
.instance_size = sizeof(TriCoreCPU),
|
2017-10-05 16:51:03 +03:00
|
|
|
.instance_init = tricore_cpu_initfn,
|
|
|
|
.abstract = true,
|
2014-09-01 15:59:46 +04:00
|
|
|
.class_size = sizeof(TriCoreCPUClass),
|
2017-10-05 16:51:03 +03:00
|
|
|
.class_init = tricore_cpu_class_init,
|
|
|
|
},
|
|
|
|
DEFINE_TRICORE_CPU_TYPE("tc1796", tc1796_initfn),
|
|
|
|
DEFINE_TRICORE_CPU_TYPE("tc1797", tc1797_initfn),
|
|
|
|
DEFINE_TRICORE_CPU_TYPE("tc27x", tc27x_initfn),
|
2014-09-01 15:59:46 +04:00
|
|
|
};
|
|
|
|
|
2017-10-05 16:51:03 +03:00
|
|
|
DEFINE_TYPES(tricore_cpu_type_infos)
|