2012-07-20 07:50:39 +00:00
|
|
|
/*
|
|
|
|
* QEMU OpenRISC CPU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Jia Liu <proljc@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 14:08:54 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2012-07-20 07:50:39 +00: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 18:17:22 +00: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 08:01:28 +00:00
|
|
|
#include "qapi/error.h"
|
2019-04-17 19:17:57 +00:00
|
|
|
#include "qemu/qemu-print.h"
|
2012-07-20 07:50:39 +00:00
|
|
|
#include "cpu.h"
|
2022-05-11 11:47:50 +00:00
|
|
|
#include "exec/exec-all.h"
|
2023-03-16 19:18:36 +00:00
|
|
|
#include "fpu/softfloat-helpers.h"
|
2023-02-27 13:51:53 +00:00
|
|
|
#include "tcg/tcg.h"
|
2012-07-20 07:50:39 +00:00
|
|
|
|
2013-06-21 17:09:18 +00:00
|
|
|
static void openrisc_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = OPENRISC_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.pc = value;
|
2018-05-27 19:02:17 +00:00
|
|
|
cpu->env.dflag = 0;
|
2013-06-21 17:09:18 +00:00
|
|
|
}
|
|
|
|
|
2022-09-30 17:31:21 +00:00
|
|
|
static vaddr openrisc_cpu_get_pc(CPUState *cs)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = OPENRISC_CPU(cs);
|
|
|
|
|
|
|
|
return cpu->env.pc;
|
|
|
|
}
|
|
|
|
|
2022-05-11 11:47:50 +00:00
|
|
|
static void openrisc_cpu_synchronize_from_tb(CPUState *cs,
|
|
|
|
const TranslationBlock *tb)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = OPENRISC_CPU(cs);
|
|
|
|
|
2024-01-10 17:09:56 +00:00
|
|
|
tcg_debug_assert(!tcg_cflags_has(cs, CF_PCREL));
|
2023-02-27 13:51:53 +00:00
|
|
|
cpu->env.pc = tb->pc;
|
2022-05-11 11:47:50 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 10:40:30 +00:00
|
|
|
static void openrisc_restore_state_to_opc(CPUState *cs,
|
|
|
|
const TranslationBlock *tb,
|
|
|
|
const uint64_t *data)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = OPENRISC_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.pc = data[0];
|
|
|
|
cpu->env.dflag = data[1] & 1;
|
|
|
|
if (data[1] & 2) {
|
|
|
|
cpu->env.ppc = cpu->env.pc - 4;
|
|
|
|
}
|
|
|
|
}
|
2022-05-11 11:47:50 +00:00
|
|
|
|
2013-08-25 16:53:55 +00:00
|
|
|
static bool openrisc_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
|
|
|
return cs->interrupt_request & (CPU_INTERRUPT_HARD |
|
|
|
|
CPU_INTERRUPT_TIMER);
|
|
|
|
}
|
|
|
|
|
2024-01-29 01:37:54 +00:00
|
|
|
static int openrisc_cpu_mmu_index(CPUState *cs, bool ifetch)
|
2024-01-29 00:13:23 +00:00
|
|
|
{
|
|
|
|
CPUOpenRISCState *env = cpu_env(cs);
|
|
|
|
|
|
|
|
if (env->sr & (ifetch ? SR_IME : SR_DME)) {
|
|
|
|
/* The mmu is enabled; test supervisor state. */
|
|
|
|
return env->sr & SR_SM ? MMU_SUPERVISOR_IDX : MMU_USER_IDX;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MMU_NOMMU_IDX; /* mmu is disabled */
|
|
|
|
}
|
|
|
|
|
2018-05-23 15:14:46 +00:00
|
|
|
static void openrisc_disas_set_info(CPUState *cpu, disassemble_info *info)
|
|
|
|
{
|
|
|
|
info->print_insn = print_insn_or1k;
|
|
|
|
}
|
|
|
|
|
2024-04-12 16:08:07 +00:00
|
|
|
static void openrisc_cpu_reset_hold(Object *obj, ResetType type)
|
2012-07-20 07:50:39 +00:00
|
|
|
{
|
2024-01-29 16:44:48 +00:00
|
|
|
CPUState *cs = CPU(obj);
|
|
|
|
OpenRISCCPU *cpu = OPENRISC_CPU(cs);
|
|
|
|
OpenRISCCPUClass *occ = OPENRISC_CPU_GET_CLASS(obj);
|
2012-07-20 07:50:39 +00:00
|
|
|
|
2022-11-24 11:50:15 +00:00
|
|
|
if (occ->parent_phases.hold) {
|
2024-04-12 16:08:07 +00:00
|
|
|
occ->parent_phases.hold(obj, type);
|
2022-11-24 11:50:15 +00:00
|
|
|
}
|
2012-07-20 07:50:39 +00:00
|
|
|
|
2016-11-14 14:19:17 +00:00
|
|
|
memset(&cpu->env, 0, offsetof(CPUOpenRISCState, end_reset_fields));
|
2012-07-20 07:50:39 +00:00
|
|
|
|
|
|
|
cpu->env.pc = 0x100;
|
|
|
|
cpu->env.sr = SR_FO | SR_SM;
|
2015-02-19 06:19:18 +00:00
|
|
|
cpu->env.lock_addr = -1;
|
2024-01-29 16:44:48 +00:00
|
|
|
cs->exception_index = -1;
|
2019-08-26 22:10:10 +00:00
|
|
|
cpu_set_fpcsr(&cpu->env, 0);
|
2012-07-20 07:50:39 +00:00
|
|
|
|
2023-03-16 19:18:36 +00:00
|
|
|
set_float_detect_tininess(float_tininess_before_rounding,
|
|
|
|
&cpu->env.fp_status);
|
|
|
|
|
2012-07-20 07:50:39 +00:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
cpu->env.picmr = 0x00000000;
|
|
|
|
cpu->env.picsr = 0x00000000;
|
|
|
|
|
|
|
|
cpu->env.ttmr = 0x00000000;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-11-27 22:51:27 +00:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
static void openrisc_cpu_set_irq(void *opaque, int irq, int level)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = (OpenRISCCPU *)opaque;
|
|
|
|
CPUState *cs = CPU(cpu);
|
|
|
|
uint32_t irq_bit;
|
|
|
|
|
|
|
|
if (irq > 31 || irq < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
irq_bit = 1U << irq;
|
|
|
|
|
|
|
|
if (level) {
|
|
|
|
cpu->env.picsr |= irq_bit;
|
|
|
|
} else {
|
|
|
|
cpu->env.picsr &= ~irq_bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpu->env.picsr & cpu->env.picmr) {
|
|
|
|
cpu_interrupt(cs, CPU_INTERRUPT_HARD);
|
|
|
|
} else {
|
|
|
|
cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-05 13:11:07 +00:00
|
|
|
static void openrisc_cpu_realizefn(DeviceState *dev, Error **errp)
|
2012-07-20 07:50:39 +00:00
|
|
|
{
|
2013-07-27 00:53:25 +00:00
|
|
|
CPUState *cs = CPU(dev);
|
2013-01-05 13:11:07 +00:00
|
|
|
OpenRISCCPUClass *occ = OPENRISC_CPU_GET_CLASS(dev);
|
2016-10-20 11:26:03 +00:00
|
|
|
Error *local_err = NULL;
|
|
|
|
|
|
|
|
cpu_exec_realizefn(cs, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
2012-07-20 07:50:39 +00:00
|
|
|
|
2013-07-27 00:53:25 +00:00
|
|
|
qemu_init_vcpu(cs);
|
|
|
|
cpu_reset(cs);
|
2013-01-05 13:11:07 +00:00
|
|
|
|
|
|
|
occ->parent_realize(dev, errp);
|
2012-07-20 07:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void openrisc_cpu_initfn(Object *obj)
|
|
|
|
{
|
2020-11-27 22:51:27 +00:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2023-09-14 00:36:27 +00:00
|
|
|
qdev_init_gpio_in_named(DEVICE(obj), openrisc_cpu_set_irq, "IRQ", NR_IRQS);
|
2020-11-27 22:51:27 +00:00
|
|
|
#endif
|
2012-07-20 07:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* CPU models */
|
2013-01-23 10:17:14 +00:00
|
|
|
|
|
|
|
static ObjectClass *openrisc_cpu_class_by_name(const char *cpu_model)
|
|
|
|
{
|
|
|
|
ObjectClass *oc;
|
2013-07-02 09:11:55 +00:00
|
|
|
char *typename;
|
2013-01-23 10:17:14 +00:00
|
|
|
|
2017-10-05 13:50:51 +00:00
|
|
|
typename = g_strdup_printf(OPENRISC_CPU_TYPE_NAME("%s"), cpu_model);
|
2013-07-02 09:11:55 +00:00
|
|
|
oc = object_class_by_name(typename);
|
2013-07-23 10:32:30 +00:00
|
|
|
g_free(typename);
|
2023-09-08 08:09:23 +00:00
|
|
|
|
2013-01-23 10:17:14 +00:00
|
|
|
return oc;
|
|
|
|
}
|
|
|
|
|
2012-07-20 07:50:39 +00:00
|
|
|
static void or1200_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = OPENRISC_CPU(obj);
|
|
|
|
|
2019-08-25 22:02:54 +00:00
|
|
|
cpu->env.vr = 0x13000008;
|
|
|
|
cpu->env.upr = UPR_UP | UPR_DMP | UPR_IMP | UPR_PICP | UPR_TTP | UPR_PMP;
|
2017-04-21 15:28:55 +00:00
|
|
|
cpu->env.cpucfgr = CPUCFGR_NSGF | CPUCFGR_OB32S | CPUCFGR_OF32S |
|
|
|
|
CPUCFGR_EVBARP;
|
2019-08-25 22:02:54 +00:00
|
|
|
|
|
|
|
/* 1Way, TLB_SIZE entries. */
|
|
|
|
cpu->env.dmmucfgr = (DMMUCFGR_NTW & (0 << 2))
|
|
|
|
| (DMMUCFGR_NTS & (ctz32(TLB_SIZE) << 2));
|
|
|
|
cpu->env.immucfgr = (IMMUCFGR_NTW & (0 << 2))
|
|
|
|
| (IMMUCFGR_NTS & (ctz32(TLB_SIZE) << 2));
|
2012-07-20 07:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void openrisc_any_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = OPENRISC_CPU(obj);
|
|
|
|
|
2019-08-25 22:23:42 +00:00
|
|
|
cpu->env.vr = 0x13000040; /* Obsolete VER + UVRP for new SPRs */
|
|
|
|
cpu->env.vr2 = 0; /* No version specific id */
|
2019-08-26 00:33:53 +00:00
|
|
|
cpu->env.avr = 0x01030000; /* Architecture v1.3 */
|
2019-08-25 22:23:42 +00:00
|
|
|
|
2019-08-25 22:02:54 +00:00
|
|
|
cpu->env.upr = UPR_UP | UPR_DMP | UPR_IMP | UPR_PICP | UPR_TTP | UPR_PMP;
|
2019-08-25 22:44:11 +00:00
|
|
|
cpu->env.cpucfgr = CPUCFGR_NSGF | CPUCFGR_OB32S | CPUCFGR_OF32S |
|
2019-05-06 21:49:25 +00:00
|
|
|
CPUCFGR_AVRP | CPUCFGR_EVBARP | CPUCFGR_OF64A32S;
|
2019-08-25 22:02:54 +00:00
|
|
|
|
|
|
|
/* 1Way, TLB_SIZE entries. */
|
|
|
|
cpu->env.dmmucfgr = (DMMUCFGR_NTW & (0 << 2))
|
|
|
|
| (DMMUCFGR_NTS & (ctz32(TLB_SIZE) << 2));
|
|
|
|
cpu->env.immucfgr = (IMMUCFGR_NTW & (0 << 2))
|
|
|
|
| (IMMUCFGR_NTS & (ctz32(TLB_SIZE) << 2));
|
2012-07-20 07:50:39 +00:00
|
|
|
}
|
|
|
|
|
2021-05-17 10:51:31 +00:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
#include "hw/core/sysemu-cpu-ops.h"
|
|
|
|
|
|
|
|
static const struct SysemuCPUOps openrisc_sysemu_ops = {
|
2021-05-17 10:51:37 +00:00
|
|
|
.get_phys_page_debug = openrisc_cpu_get_phys_page_debug,
|
2021-05-17 10:51:31 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2021-02-04 16:39:23 +00:00
|
|
|
#include "hw/core/tcg-cpu-ops.h"
|
|
|
|
|
2024-01-28 02:46:44 +00:00
|
|
|
static const TCGCPUOps openrisc_tcg_ops = {
|
2021-02-04 16:39:23 +00:00
|
|
|
.initialize = openrisc_translate_init,
|
2022-05-11 11:47:50 +00:00
|
|
|
.synchronize_from_tb = openrisc_cpu_synchronize_from_tb,
|
2022-10-24 10:40:30 +00:00
|
|
|
.restore_state_to_opc = openrisc_restore_state_to_opc,
|
2021-02-04 16:39:23 +00:00
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2021-09-15 03:33:23 +00:00
|
|
|
.tlb_fill = openrisc_cpu_tlb_fill,
|
2021-09-11 16:54:26 +00:00
|
|
|
.cpu_exec_interrupt = openrisc_cpu_exec_interrupt,
|
2021-02-04 16:39:23 +00:00
|
|
|
.do_interrupt = openrisc_cpu_do_interrupt,
|
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
|
|
|
};
|
|
|
|
|
2012-07-20 07:50:39 +00:00
|
|
|
static void openrisc_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
OpenRISCCPUClass *occ = OPENRISC_CPU_CLASS(oc);
|
|
|
|
CPUClass *cc = CPU_CLASS(occ);
|
2013-01-05 13:11:07 +00:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
2022-11-24 11:50:15 +00:00
|
|
|
ResettableClass *rc = RESETTABLE_CLASS(oc);
|
2013-01-05 13:11:07 +00:00
|
|
|
|
2018-01-14 02:04:12 +00:00
|
|
|
device_class_set_parent_realize(dc, openrisc_cpu_realizefn,
|
|
|
|
&occ->parent_realize);
|
2022-11-24 11:50:15 +00:00
|
|
|
resettable_class_set_parent_phases(rc, NULL, openrisc_cpu_reset_hold, NULL,
|
|
|
|
&occ->parent_phases);
|
2013-01-23 10:17:14 +00:00
|
|
|
|
|
|
|
cc->class_by_name = openrisc_cpu_class_by_name;
|
2013-08-25 16:53:55 +00:00
|
|
|
cc->has_work = openrisc_cpu_has_work;
|
2024-01-29 00:13:23 +00:00
|
|
|
cc->mmu_index = openrisc_cpu_mmu_index;
|
2013-05-26 23:33:50 +00:00
|
|
|
cc->dump_state = openrisc_cpu_dump_state;
|
2013-06-21 17:09:18 +00:00
|
|
|
cc->set_pc = openrisc_cpu_set_pc;
|
2022-09-30 17:31:21 +00:00
|
|
|
cc->get_pc = openrisc_cpu_get_pc;
|
2013-06-29 02:18:45 +00:00
|
|
|
cc->gdb_read_register = openrisc_cpu_gdb_read_register;
|
|
|
|
cc->gdb_write_register = openrisc_cpu_gdb_write_register;
|
2019-04-02 09:55:37 +00:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2013-06-29 16:55:54 +00:00
|
|
|
dc->vmsd = &vmstate_openrisc_cpu;
|
2021-05-17 10:51:31 +00:00
|
|
|
cc->sysemu_ops = &openrisc_sysemu_ops;
|
2013-06-29 16:55:54 +00:00
|
|
|
#endif
|
2013-06-28 21:18:47 +00:00
|
|
|
cc->gdb_num_core_regs = 32 + 3;
|
2018-05-23 15:14:46 +00:00
|
|
|
cc->disas_set_info = openrisc_disas_set_info;
|
2021-02-04 16:39:23 +00:00
|
|
|
cc->tcg_ops = &openrisc_tcg_ops;
|
2012-07-20 07:50:39 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 13:50:51 +00:00
|
|
|
#define DEFINE_OPENRISC_CPU_TYPE(cpu_model, initfn) \
|
|
|
|
{ \
|
|
|
|
.parent = TYPE_OPENRISC_CPU, \
|
|
|
|
.instance_init = initfn, \
|
|
|
|
.name = OPENRISC_CPU_TYPE_NAME(cpu_model), \
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo openrisc_cpus_type_infos[] = {
|
|
|
|
{ /* base class should be registered first */
|
|
|
|
.name = TYPE_OPENRISC_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(OpenRISCCPU),
|
2023-09-13 22:06:21 +00:00
|
|
|
.instance_align = __alignof(OpenRISCCPU),
|
2017-10-05 13:50:51 +00:00
|
|
|
.instance_init = openrisc_cpu_initfn,
|
|
|
|
.abstract = true,
|
|
|
|
.class_size = sizeof(OpenRISCCPUClass),
|
|
|
|
.class_init = openrisc_cpu_class_init,
|
|
|
|
},
|
|
|
|
DEFINE_OPENRISC_CPU_TYPE("or1200", or1200_initfn),
|
|
|
|
DEFINE_OPENRISC_CPU_TYPE("any", openrisc_any_initfn),
|
|
|
|
};
|
|
|
|
|
|
|
|
DEFINE_TYPES(openrisc_cpus_type_infos)
|