2012-02-11 20:26:17 +04:00
|
|
|
/*
|
|
|
|
* QEMU SuperH CPU
|
|
|
|
*
|
2012-04-13 04:16:02 +04:00
|
|
|
* Copyright (c) 2005 Samuel Tardieu
|
2012-02-11 20:26:17 +04:00
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:20 +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"
|
2019-04-17 22:17:57 +03:00
|
|
|
#include "qemu/qemu-print.h"
|
2012-02-11 20:26:17 +04:00
|
|
|
#include "cpu.h"
|
2013-01-20 22:32:33 +04:00
|
|
|
#include "migration/vmstate.h"
|
2016-03-15 15:18:37 +03:00
|
|
|
#include "exec/exec-all.h"
|
2019-08-08 19:30:35 +03:00
|
|
|
#include "fpu/softfloat-helpers.h"
|
2023-02-27 16:51:50 +03:00
|
|
|
#include "tcg/tcg.h"
|
2012-02-11 20:26:17 +04:00
|
|
|
|
2013-06-21 21:09:18 +04:00
|
|
|
static void superh_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.pc = value;
|
|
|
|
}
|
|
|
|
|
2022-09-30 20:31:21 +03:00
|
|
|
static vaddr superh_cpu_get_pc(CPUState *cs)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(cs);
|
|
|
|
|
|
|
|
return cpu->env.pc;
|
|
|
|
}
|
|
|
|
|
2020-10-29 22:30:01 +03:00
|
|
|
static void superh_cpu_synchronize_from_tb(CPUState *cs,
|
|
|
|
const TranslationBlock *tb)
|
2013-06-28 21:31:32 +04:00
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(cs);
|
|
|
|
|
2023-02-27 16:51:50 +03:00
|
|
|
tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL));
|
|
|
|
cpu->env.pc = tb->pc;
|
2022-12-12 18:03:17 +03:00
|
|
|
cpu->env.flags = tb->flags & TB_FLAG_ENVFLAGS_MASK;
|
2013-06-28 21:31:32 +04:00
|
|
|
}
|
|
|
|
|
2022-10-24 13:58:40 +03:00
|
|
|
static void superh_restore_state_to_opc(CPUState *cs,
|
|
|
|
const TranslationBlock *tb,
|
|
|
|
const uint64_t *data)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.pc = data[0];
|
|
|
|
cpu->env.flags = data[1];
|
|
|
|
/*
|
|
|
|
* Theoretically delayed_pc should also be restored. In practice the
|
|
|
|
* branch instruction is re-executed after exception, so the delayed
|
|
|
|
* branch target will be recomputed.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2021-02-13 16:03:15 +03:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
static bool superh_io_recompile_replay_branch(CPUState *cs,
|
|
|
|
const TranslationBlock *tb)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(cs);
|
|
|
|
CPUSH4State *env = &cpu->env;
|
|
|
|
|
2022-08-29 04:58:20 +03:00
|
|
|
if ((env->flags & (TB_FLAG_DELAY_SLOT | TB_FLAG_DELAY_SLOT_COND))
|
2023-02-27 16:51:50 +03:00
|
|
|
&& !(cs->tcg_cflags & CF_PCREL) && env->pc != tb->pc) {
|
2021-02-13 16:03:15 +03:00
|
|
|
env->pc -= 2;
|
2022-08-29 04:58:20 +03:00
|
|
|
env->flags &= ~(TB_FLAG_DELAY_SLOT | TB_FLAG_DELAY_SLOT_COND);
|
2021-02-13 16:03:15 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-08-25 20:53:55 +04:00
|
|
|
static bool superh_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
|
|
|
return cs->interrupt_request & CPU_INTERRUPT_HARD;
|
|
|
|
}
|
|
|
|
|
2022-11-24 14:50:19 +03:00
|
|
|
static void superh_cpu_reset_hold(Object *obj)
|
2012-02-11 20:26:17 +04:00
|
|
|
{
|
2022-11-24 14:50:19 +03:00
|
|
|
CPUState *s = CPU(obj);
|
2012-02-11 20:26:17 +04:00
|
|
|
SuperHCPU *cpu = SUPERH_CPU(s);
|
|
|
|
SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(cpu);
|
|
|
|
CPUSH4State *env = &cpu->env;
|
|
|
|
|
2022-11-24 14:50:19 +03:00
|
|
|
if (scc->parent_phases.hold) {
|
|
|
|
scc->parent_phases.hold(obj);
|
|
|
|
}
|
2012-02-11 20:26:17 +04:00
|
|
|
|
2016-11-14 17:19:17 +03:00
|
|
|
memset(env, 0, offsetof(CPUSH4State, end_reset_fields));
|
2012-04-13 04:16:02 +04:00
|
|
|
|
|
|
|
env->pc = 0xA0000000;
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
env->fpscr = FPSCR_PR; /* value for userspace according to the kernel */
|
|
|
|
set_float_rounding_mode(float_round_nearest_even, &env->fp_status); /* ?! */
|
|
|
|
#else
|
2015-05-25 02:28:56 +03:00
|
|
|
env->sr = (1u << SR_MD) | (1u << SR_RB) | (1u << SR_BL) |
|
|
|
|
(1u << SR_I3) | (1u << SR_I2) | (1u << SR_I1) | (1u << SR_I0);
|
2012-04-13 04:16:02 +04:00
|
|
|
env->fpscr = FPSCR_DN | FPSCR_RM_ZERO; /* CPU reset value according to SH4 manual */
|
|
|
|
set_float_rounding_mode(float_round_to_zero, &env->fp_status);
|
|
|
|
set_flush_to_zero(1, &env->fp_status);
|
|
|
|
#endif
|
|
|
|
set_default_nan_mode(1, &env->fp_status);
|
2012-02-11 20:26:17 +04:00
|
|
|
}
|
|
|
|
|
2015-07-12 05:00:03 +03:00
|
|
|
static void superh_cpu_disas_set_info(CPUState *cpu, disassemble_info *info)
|
|
|
|
{
|
|
|
|
info->mach = bfd_mach_sh4;
|
|
|
|
info->print_insn = print_insn_sh;
|
|
|
|
}
|
|
|
|
|
2012-11-19 05:42:18 +04:00
|
|
|
static void superh_cpu_list_entry(gpointer data, gpointer user_data)
|
|
|
|
{
|
2017-10-05 16:50:57 +03:00
|
|
|
const char *typename = object_class_get_name(OBJECT_CLASS(data));
|
|
|
|
int len = strlen(typename) - strlen(SUPERH_CPU_TYPE_SUFFIX);
|
2012-11-19 05:42:18 +04:00
|
|
|
|
2019-04-17 22:17:57 +03:00
|
|
|
qemu_printf("%.*s\n", len, typename);
|
2012-11-19 05:42:18 +04:00
|
|
|
}
|
|
|
|
|
2019-04-17 22:17:57 +03:00
|
|
|
void sh4_cpu_list(void)
|
2012-11-19 05:42:18 +04:00
|
|
|
{
|
|
|
|
GSList *list;
|
|
|
|
|
2018-03-03 10:33:10 +03:00
|
|
|
list = object_class_get_list_sorted(TYPE_SUPERH_CPU, false);
|
2019-04-17 22:17:57 +03:00
|
|
|
g_slist_foreach(list, superh_cpu_list_entry, NULL);
|
2012-11-19 05:42:18 +04:00
|
|
|
g_slist_free(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ObjectClass *superh_cpu_class_by_name(const char *cpu_model)
|
|
|
|
{
|
|
|
|
ObjectClass *oc;
|
2017-10-05 16:50:56 +03:00
|
|
|
char *s, *typename = NULL;
|
2012-11-19 05:42:18 +04:00
|
|
|
|
2017-10-05 16:50:56 +03:00
|
|
|
s = g_ascii_strdown(cpu_model, -1);
|
|
|
|
if (strcmp(s, "any") == 0) {
|
|
|
|
oc = object_class_by_name(TYPE_SH7750R_CPU);
|
|
|
|
goto out;
|
2012-11-19 05:42:18 +04:00
|
|
|
}
|
|
|
|
|
2017-10-05 16:50:56 +03:00
|
|
|
typename = g_strdup_printf(SUPERH_CPU_TYPE_NAME("%s"), s);
|
|
|
|
oc = object_class_by_name(typename);
|
|
|
|
if (oc != NULL && object_class_is_abstract(oc)) {
|
|
|
|
oc = NULL;
|
2012-11-19 05:42:18 +04:00
|
|
|
}
|
|
|
|
|
2017-10-05 16:50:56 +03:00
|
|
|
out:
|
|
|
|
g_free(s);
|
|
|
|
g_free(typename);
|
2012-11-19 05:42:18 +04:00
|
|
|
return oc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sh7750r_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(obj);
|
|
|
|
CPUSH4State *env = &cpu->env;
|
|
|
|
|
|
|
|
env->id = SH_CPU_SH7750R;
|
|
|
|
env->features = SH_FEATURE_BCR3_AND_BCR4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sh7750r_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
|
|
|
|
|
2012-11-20 19:15:47 +04:00
|
|
|
scc->pvr = 0x00050000;
|
|
|
|
scc->prr = 0x00000100;
|
|
|
|
scc->cvr = 0x00110000;
|
2012-11-19 05:42:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sh7751r_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(obj);
|
|
|
|
CPUSH4State *env = &cpu->env;
|
|
|
|
|
|
|
|
env->id = SH_CPU_SH7751R;
|
|
|
|
env->features = SH_FEATURE_BCR3_AND_BCR4;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sh7751r_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
|
|
|
|
|
2012-11-20 19:15:47 +04:00
|
|
|
scc->pvr = 0x04050005;
|
|
|
|
scc->prr = 0x00000113;
|
|
|
|
scc->cvr = 0x00110000; /* Neutered caches, should be 0x20480000 */
|
2012-11-19 05:42:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sh7785_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(obj);
|
|
|
|
CPUSH4State *env = &cpu->env;
|
|
|
|
|
|
|
|
env->id = SH_CPU_SH7785;
|
|
|
|
env->features = SH_FEATURE_SH4A;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sh7785_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
|
|
|
|
|
2012-11-20 19:15:47 +04:00
|
|
|
scc->pvr = 0x10300700;
|
|
|
|
scc->prr = 0x00000200;
|
|
|
|
scc->cvr = 0x71440211;
|
2012-11-19 05:42:18 +04:00
|
|
|
}
|
|
|
|
|
2012-04-23 20:16:02 +04:00
|
|
|
static void superh_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
|
{
|
2013-07-27 04:53:25 +04:00
|
|
|
CPUState *cs = CPU(dev);
|
2012-04-23 20:16:02 +04:00
|
|
|
SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(dev);
|
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;
|
|
|
|
}
|
2012-04-23 20:16:02 +04:00
|
|
|
|
2013-07-27 04:53:25 +04:00
|
|
|
cpu_reset(cs);
|
|
|
|
qemu_init_vcpu(cs);
|
2012-04-23 20:16:02 +04:00
|
|
|
|
|
|
|
scc->parent_realize(dev, errp);
|
|
|
|
}
|
|
|
|
|
2012-04-13 04:32:12 +04:00
|
|
|
static void superh_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
SuperHCPU *cpu = SUPERH_CPU(obj);
|
|
|
|
CPUSH4State *env = &cpu->env;
|
|
|
|
|
2019-03-29 00:26:22 +03:00
|
|
|
cpu_set_cpustate_pointers(cpu);
|
2012-04-13 04:32:12 +04:00
|
|
|
|
|
|
|
env->movcal_backup_tail = &(env->movcal_backup);
|
|
|
|
}
|
|
|
|
|
2021-05-17 13:51:28 +03:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2013-01-20 22:32:33 +04:00
|
|
|
static const VMStateDescription vmstate_sh_cpu = {
|
|
|
|
.name = "cpu",
|
|
|
|
.unmigratable = 1,
|
|
|
|
};
|
2021-05-17 13:51:31 +03:00
|
|
|
|
|
|
|
#include "hw/core/sysemu-cpu-ops.h"
|
|
|
|
|
|
|
|
static const struct SysemuCPUOps sh4_sysemu_ops = {
|
2021-05-17 13:51:37 +03:00
|
|
|
.get_phys_page_debug = superh_cpu_get_phys_page_debug,
|
2021-05-17 13:51:31 +03:00
|
|
|
};
|
2021-05-17 13:51:28 +03:00
|
|
|
#endif
|
2013-01-20 22:32:33 +04:00
|
|
|
|
2021-02-04 19:39:23 +03:00
|
|
|
#include "hw/core/tcg-cpu-ops.h"
|
|
|
|
|
2021-02-28 02:21:17 +03:00
|
|
|
static const struct TCGCPUOps superh_tcg_ops = {
|
2021-02-04 19:39:23 +03:00
|
|
|
.initialize = sh4_translate_init,
|
|
|
|
.synchronize_from_tb = superh_cpu_synchronize_from_tb,
|
2022-10-24 13:58:40 +03:00
|
|
|
.restore_state_to_opc = superh_restore_state_to_opc,
|
2021-02-04 19:39:23 +03:00
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2021-09-15 17:59:07 +03:00
|
|
|
.tlb_fill = superh_cpu_tlb_fill,
|
2021-09-11 19:54:29 +03:00
|
|
|
.cpu_exec_interrupt = superh_cpu_exec_interrupt,
|
2021-02-04 19:39:23 +03:00
|
|
|
.do_interrupt = superh_cpu_do_interrupt,
|
|
|
|
.do_unaligned_access = superh_cpu_do_unaligned_access,
|
2021-02-13 16:03:15 +03:00
|
|
|
.io_recompile_replay_branch = superh_io_recompile_replay_branch,
|
2021-02-04 19:39:23 +03:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
|
|
|
};
|
|
|
|
|
2012-02-11 20:26:17 +04:00
|
|
|
static void superh_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
2013-01-20 22:32:33 +04:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2012-02-11 20:26:17 +04:00
|
|
|
CPUClass *cc = CPU_CLASS(oc);
|
|
|
|
SuperHCPUClass *scc = SUPERH_CPU_CLASS(oc);
|
2022-11-24 14:50:19 +03:00
|
|
|
ResettableClass *rc = RESETTABLE_CLASS(oc);
|
2012-02-11 20:26:17 +04:00
|
|
|
|
2018-01-14 05:04:12 +03:00
|
|
|
device_class_set_parent_realize(dc, superh_cpu_realizefn,
|
|
|
|
&scc->parent_realize);
|
2012-04-23 20:16:02 +04:00
|
|
|
|
2022-11-24 14:50:19 +03:00
|
|
|
resettable_class_set_parent_phases(rc, NULL, superh_cpu_reset_hold, NULL,
|
|
|
|
&scc->parent_phases);
|
2013-01-20 22:32:33 +04:00
|
|
|
|
2012-11-19 05:42:18 +04:00
|
|
|
cc->class_by_name = superh_cpu_class_by_name;
|
2013-08-25 20:53:55 +04:00
|
|
|
cc->has_work = superh_cpu_has_work;
|
2013-05-27 03:33:50 +04:00
|
|
|
cc->dump_state = superh_cpu_dump_state;
|
2013-06-21 21:09:18 +04:00
|
|
|
cc->set_pc = superh_cpu_set_pc;
|
2022-09-30 20:31:21 +03:00
|
|
|
cc->get_pc = superh_cpu_get_pc;
|
2013-06-29 06:18:45 +04:00
|
|
|
cc->gdb_read_register = superh_cpu_gdb_read_register;
|
|
|
|
cc->gdb_write_register = superh_cpu_gdb_write_register;
|
2019-04-02 18:18:39 +03:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2021-05-17 13:51:31 +03:00
|
|
|
cc->sysemu_ops = &sh4_sysemu_ops;
|
2021-05-17 13:51:28 +03:00
|
|
|
dc->vmsd = &vmstate_sh_cpu;
|
2013-06-29 20:55:54 +04:00
|
|
|
#endif
|
2015-07-12 05:00:03 +03:00
|
|
|
cc->disas_set_info = superh_cpu_disas_set_info;
|
|
|
|
|
2013-06-29 01:18:47 +04:00
|
|
|
cc->gdb_num_core_regs = 59;
|
2021-02-04 19:39:23 +03:00
|
|
|
cc->tcg_ops = &superh_tcg_ops;
|
2012-02-11 20:26:17 +04:00
|
|
|
}
|
|
|
|
|
2017-10-05 16:50:55 +03:00
|
|
|
#define DEFINE_SUPERH_CPU_TYPE(type_name, cinit, initfn) \
|
|
|
|
{ \
|
|
|
|
.name = type_name, \
|
|
|
|
.parent = TYPE_SUPERH_CPU, \
|
|
|
|
.class_init = cinit, \
|
|
|
|
.instance_init = initfn, \
|
|
|
|
}
|
|
|
|
static const TypeInfo superh_cpu_type_infos[] = {
|
|
|
|
{
|
|
|
|
.name = TYPE_SUPERH_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(SuperHCPU),
|
2023-09-14 01:06:21 +03:00
|
|
|
.instance_align = __alignof(SuperHCPU),
|
2017-10-05 16:50:55 +03:00
|
|
|
.instance_init = superh_cpu_initfn,
|
|
|
|
.abstract = true,
|
|
|
|
.class_size = sizeof(SuperHCPUClass),
|
|
|
|
.class_init = superh_cpu_class_init,
|
|
|
|
},
|
|
|
|
DEFINE_SUPERH_CPU_TYPE(TYPE_SH7750R_CPU, sh7750r_class_init,
|
|
|
|
sh7750r_cpu_initfn),
|
|
|
|
DEFINE_SUPERH_CPU_TYPE(TYPE_SH7751R_CPU, sh7751r_class_init,
|
|
|
|
sh7751r_cpu_initfn),
|
|
|
|
DEFINE_SUPERH_CPU_TYPE(TYPE_SH7785_CPU, sh7785_class_init,
|
|
|
|
sh7785_cpu_initfn),
|
2012-02-11 20:26:17 +04:00
|
|
|
|
2017-10-05 16:50:55 +03:00
|
|
|
};
|
2012-02-11 20:26:17 +04:00
|
|
|
|
2017-10-05 16:50:55 +03:00
|
|
|
DEFINE_TYPES(superh_cpu_type_infos)
|