2014-09-01 13:59:46 +02: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 15:08:55 +01:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2014-09-01 13:59:46 +02: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 19:17:26 +01: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 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2014-09-01 13:59:46 +02:00
|
|
|
#include "cpu.h"
|
2016-03-15 13:18:37 +01:00
|
|
|
#include "exec/exec-all.h"
|
2017-07-27 16:30:40 +02:00
|
|
|
#include "qemu/error-report.h"
|
2023-03-28 03:23:15 +02:00
|
|
|
#include "tcg/debug-assert.h"
|
2017-07-27 16:30:40 +02:00
|
|
|
|
2014-09-01 13:59:46 +02:00
|
|
|
static inline void set_feature(CPUTriCoreState *env, int feature)
|
|
|
|
{
|
|
|
|
env->features |= 1ULL << feature;
|
|
|
|
}
|
|
|
|
|
2023-10-09 18:40:53 +02:00
|
|
|
static const gchar *tricore_gdb_arch_name(CPUState *cs)
|
2020-05-29 09:21:48 +02:00
|
|
|
{
|
2023-10-09 18:40:53 +02:00
|
|
|
return "tricore";
|
2020-05-29 09:21:48 +02:00
|
|
|
}
|
|
|
|
|
2014-09-01 13:59:46 +02:00
|
|
|
static void tricore_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
2024-01-29 17:45:09 +01:00
|
|
|
cpu_env(cs)->PC = value & ~(target_ulong)1;
|
2014-09-01 13:59:46 +02:00
|
|
|
}
|
|
|
|
|
2022-09-30 19:31:21 +02:00
|
|
|
static vaddr tricore_cpu_get_pc(CPUState *cs)
|
|
|
|
{
|
2024-01-29 17:45:09 +01:00
|
|
|
return cpu_env(cs)->PC;
|
2022-09-30 19:31:21 +02:00
|
|
|
}
|
|
|
|
|
2014-09-01 13:59:46 +02:00
|
|
|
static void tricore_cpu_synchronize_from_tb(CPUState *cs,
|
2020-10-29 20:30:01 +01:00
|
|
|
const TranslationBlock *tb)
|
2014-09-01 13:59:46 +02:00
|
|
|
{
|
2023-02-27 14:51:48 +01:00
|
|
|
tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL));
|
2024-01-29 17:45:09 +01:00
|
|
|
cpu_env(cs)->PC = tb->pc;
|
2014-09-01 13:59:46 +02:00
|
|
|
}
|
|
|
|
|
2022-10-24 13:06:03 +02:00
|
|
|
static void tricore_restore_state_to_opc(CPUState *cs,
|
|
|
|
const TranslationBlock *tb,
|
|
|
|
const uint64_t *data)
|
|
|
|
{
|
2024-01-29 17:45:09 +01:00
|
|
|
cpu_env(cs)->PC = data[0];
|
2022-10-24 13:06:03 +02:00
|
|
|
}
|
|
|
|
|
2022-11-24 12:50:21 +01:00
|
|
|
static void tricore_cpu_reset_hold(Object *obj)
|
2014-09-01 13:59:46 +02:00
|
|
|
{
|
2024-01-29 17:44:48 +01:00
|
|
|
CPUState *cs = CPU(obj);
|
|
|
|
TriCoreCPUClass *tcc = TRICORE_CPU_GET_CLASS(obj);
|
2014-09-01 13:59:46 +02:00
|
|
|
|
2022-11-24 12:50:21 +01:00
|
|
|
if (tcc->parent_phases.hold) {
|
|
|
|
tcc->parent_phases.hold(obj);
|
|
|
|
}
|
2014-09-01 13:59:46 +02:00
|
|
|
|
2024-01-29 17:45:09 +01:00
|
|
|
cpu_state_reset(cpu_env(cs));
|
2014-09-01 13:59:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool tricore_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-01-29 02:05:54 +01:00
|
|
|
static int tricore_cpu_mmu_index(CPUState *cs, bool ifetch)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-01 13:59:46 +02:00
|
|
|
static void tricore_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(dev);
|
2014-11-13 15:17:08 +01:00
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(dev);
|
2014-09-01 13:59:46 +02:00
|
|
|
TriCoreCPUClass *tcc = TRICORE_CPU_GET_CLASS(dev);
|
2014-11-13 15:17:08 +01:00
|
|
|
CPUTriCoreState *env = &cpu->env;
|
2016-10-20 13:26:03 +02:00
|
|
|
Error *local_err = NULL;
|
|
|
|
|
|
|
|
cpu_exec_realizefn(cs, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
2014-09-01 13:59:46 +02:00
|
|
|
|
2014-11-13 15:17:08 +01:00
|
|
|
/* Some features automatically imply others */
|
2023-07-21 08:06:05 +02:00
|
|
|
if (tricore_has_feature(env, TRICORE_FEATURE_162)) {
|
2023-06-14 12:00:32 +02:00
|
|
|
set_feature(env, TRICORE_FEATURE_161);
|
|
|
|
}
|
|
|
|
|
2023-07-21 08:06:05 +02:00
|
|
|
if (tricore_has_feature(env, TRICORE_FEATURE_161)) {
|
2015-05-06 20:18:41 +02:00
|
|
|
set_feature(env, TRICORE_FEATURE_16);
|
|
|
|
}
|
|
|
|
|
2023-07-21 08:06:05 +02:00
|
|
|
if (tricore_has_feature(env, TRICORE_FEATURE_16)) {
|
2014-11-13 15:17:08 +01:00
|
|
|
set_feature(env, TRICORE_FEATURE_131);
|
|
|
|
}
|
2023-07-21 08:06:05 +02:00
|
|
|
if (tricore_has_feature(env, TRICORE_FEATURE_131)) {
|
2014-11-13 15:17:08 +01:00
|
|
|
set_feature(env, TRICORE_FEATURE_13);
|
|
|
|
}
|
2014-09-01 13:59:46 +02:00
|
|
|
cpu_reset(cs);
|
|
|
|
qemu_init_vcpu(cs);
|
|
|
|
|
|
|
|
tcc->parent_realize(dev, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ObjectClass *tricore_cpu_class_by_name(const char *cpu_model)
|
|
|
|
{
|
|
|
|
ObjectClass *oc;
|
|
|
|
char *typename;
|
|
|
|
|
2017-10-05 15:51:03 +02:00
|
|
|
typename = g_strdup_printf(TRICORE_CPU_TYPE_NAME("%s"), cpu_model);
|
2014-09-01 13:59:46 +02:00
|
|
|
oc = object_class_by_name(typename);
|
|
|
|
g_free(typename);
|
2023-09-08 10:09:23 +02:00
|
|
|
|
2014-09-01 13:59:46 +02:00
|
|
|
return oc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tc1796_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
2015-03-22 13:49:12 +01:00
|
|
|
set_feature(&cpu->env, TRICORE_FEATURE_13);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tc1797_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
2015-01-17 23:34:27 +01:00
|
|
|
set_feature(&cpu->env, TRICORE_FEATURE_131);
|
2014-09-01 13:59:46 +02:00
|
|
|
}
|
|
|
|
|
2015-05-06 20:18:41 +02:00
|
|
|
static void tc27x_initfn(Object *obj)
|
2014-09-01 13:59:46 +02:00
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
2015-05-06 20:18:41 +02:00
|
|
|
set_feature(&cpu->env, TRICORE_FEATURE_161);
|
2014-09-01 13:59:46 +02:00
|
|
|
}
|
|
|
|
|
2023-06-14 12:00:32 +02:00
|
|
|
static void tc37x_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
TriCoreCPU *cpu = TRICORE_CPU(obj);
|
|
|
|
|
|
|
|
set_feature(&cpu->env, TRICORE_FEATURE_162);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-05-17 12:51:31 +02:00
|
|
|
#include "hw/core/sysemu-cpu-ops.h"
|
|
|
|
|
|
|
|
static const struct SysemuCPUOps tricore_sysemu_ops = {
|
2021-05-17 12:51:37 +02:00
|
|
|
.get_phys_page_debug = tricore_cpu_get_phys_page_debug,
|
2021-05-17 12:51:31 +02:00
|
|
|
};
|
|
|
|
|
2021-02-04 17:39:23 +01:00
|
|
|
#include "hw/core/tcg-cpu-ops.h"
|
|
|
|
|
2024-01-28 03:46:44 +01:00
|
|
|
static const TCGCPUOps tricore_tcg_ops = {
|
2021-02-04 17:39:23 +01:00
|
|
|
.initialize = tricore_tcg_init,
|
|
|
|
.synchronize_from_tb = tricore_cpu_synchronize_from_tb,
|
2022-10-24 13:06:03 +02:00
|
|
|
.restore_state_to_opc = tricore_restore_state_to_opc,
|
2021-02-04 17:39:23 +01:00
|
|
|
.tlb_fill = tricore_cpu_tlb_fill,
|
|
|
|
};
|
|
|
|
|
2014-09-01 13:59:46 +02: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);
|
2022-11-24 12:50:21 +01:00
|
|
|
ResettableClass *rc = RESETTABLE_CLASS(c);
|
2014-09-01 13:59:46 +02:00
|
|
|
|
2018-01-14 03:04:12 +01:00
|
|
|
device_class_set_parent_realize(dc, tricore_cpu_realizefn,
|
|
|
|
&mcc->parent_realize);
|
2014-09-01 13:59:46 +02:00
|
|
|
|
2022-11-24 12:50:21 +01:00
|
|
|
resettable_class_set_parent_phases(rc, NULL, tricore_cpu_reset_hold, NULL,
|
|
|
|
&mcc->parent_phases);
|
2014-09-01 13:59:46 +02:00
|
|
|
cc->class_by_name = tricore_cpu_class_by_name;
|
|
|
|
cc->has_work = tricore_cpu_has_work;
|
2024-01-29 02:05:54 +01:00
|
|
|
cc->mmu_index = tricore_cpu_mmu_index;
|
2014-09-01 13:59:46 +02:00
|
|
|
|
2020-05-29 09:21:48 +02:00
|
|
|
cc->gdb_read_register = tricore_cpu_gdb_read_register;
|
|
|
|
cc->gdb_write_register = tricore_cpu_gdb_write_register;
|
|
|
|
cc->gdb_num_core_regs = 44;
|
|
|
|
cc->gdb_arch_name = tricore_gdb_arch_name;
|
|
|
|
|
2014-09-01 13:59:46 +02:00
|
|
|
cc->dump_state = tricore_cpu_dump_state;
|
|
|
|
cc->set_pc = tricore_cpu_set_pc;
|
2022-09-30 19:31:21 +02:00
|
|
|
cc->get_pc = tricore_cpu_get_pc;
|
2021-05-17 12:51:31 +02:00
|
|
|
cc->sysemu_ops = &tricore_sysemu_ops;
|
2021-02-04 17:39:23 +01:00
|
|
|
cc->tcg_ops = &tricore_tcg_ops;
|
2014-09-01 13:59:46 +02:00
|
|
|
}
|
|
|
|
|
2017-10-05 15:51:03 +02: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 13:59:46 +02:00
|
|
|
.instance_size = sizeof(TriCoreCPU),
|
2023-09-14 00:06:21 +02:00
|
|
|
.instance_align = __alignof(TriCoreCPU),
|
2017-10-05 15:51:03 +02:00
|
|
|
.abstract = true,
|
2014-09-01 13:59:46 +02:00
|
|
|
.class_size = sizeof(TriCoreCPUClass),
|
2017-10-05 15:51:03 +02: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),
|
2023-06-14 12:00:32 +02:00
|
|
|
DEFINE_TRICORE_CPU_TYPE("tc37x", tc37x_initfn),
|
2014-09-01 13:59:46 +02:00
|
|
|
};
|
|
|
|
|
2017-10-05 15:51:03 +02:00
|
|
|
DEFINE_TYPES(tricore_cpu_type_infos)
|