2016-12-15 20:26:14 +01:00
|
|
|
/*
|
|
|
|
* QEMU HPPA CPU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Richard Henderson <rth@twiddle.net>
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qapi/error.h"
|
2019-04-17 21:17:57 +02:00
|
|
|
#include "qemu/qemu-print.h"
|
2022-02-07 09:27:54 +01:00
|
|
|
#include "qemu/timer.h"
|
2016-12-15 20:26:14 +01:00
|
|
|
#include "cpu.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2016-12-15 20:26:14 +01:00
|
|
|
#include "exec/exec-all.h"
|
2018-01-19 19:24:22 +01:00
|
|
|
#include "fpu/softfloat.h"
|
2023-02-27 14:51:58 +01:00
|
|
|
#include "tcg/tcg.h"
|
2016-12-15 20:26:14 +01:00
|
|
|
|
|
|
|
static void hppa_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.iaoq_f = value;
|
|
|
|
cpu->env.iaoq_b = value + 4;
|
|
|
|
}
|
|
|
|
|
2022-09-30 19:31:21 +02:00
|
|
|
static vaddr hppa_cpu_get_pc(CPUState *cs)
|
|
|
|
{
|
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
|
|
|
|
return cpu->env.iaoq_f;
|
|
|
|
}
|
|
|
|
|
2020-10-29 20:30:01 +01:00
|
|
|
static void hppa_cpu_synchronize_from_tb(CPUState *cs,
|
|
|
|
const TranslationBlock *tb)
|
2016-12-15 20:26:14 +01:00
|
|
|
{
|
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
|
2023-02-27 14:51:58 +01:00
|
|
|
tcg_debug_assert(!(cs->tcg_cflags & CF_PCREL));
|
|
|
|
|
2017-10-22 07:53:35 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2023-02-27 14:51:58 +01:00
|
|
|
cpu->env.iaoq_f = tb->pc;
|
2016-12-15 20:26:14 +01:00
|
|
|
cpu->env.iaoq_b = tb->cs_base;
|
2017-10-22 07:53:35 +02:00
|
|
|
#else
|
|
|
|
/* Recover the IAOQ values from the GVA + PRIV. */
|
|
|
|
uint32_t priv = (tb->flags >> TB_FLAG_PRIV_SHIFT) & 3;
|
|
|
|
target_ulong cs_base = tb->cs_base;
|
|
|
|
target_ulong iasq_f = cs_base & ~0xffffffffull;
|
|
|
|
int32_t diff = cs_base;
|
|
|
|
|
|
|
|
cpu->env.iasq_f = iasq_f;
|
2023-02-27 14:51:58 +01:00
|
|
|
cpu->env.iaoq_f = (tb->pc & ~iasq_f) + priv;
|
2017-10-22 07:53:35 +02:00
|
|
|
if (diff) {
|
|
|
|
cpu->env.iaoq_b = cpu->env.iaoq_f + diff;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-10-09 19:17:24 +02:00
|
|
|
cpu->env.psw_n = (tb->flags & PSW_N) != 0;
|
2016-12-15 20:26:14 +01:00
|
|
|
}
|
|
|
|
|
2022-10-24 12:13:57 +02:00
|
|
|
static void hppa_restore_state_to_opc(CPUState *cs,
|
|
|
|
const TranslationBlock *tb,
|
|
|
|
const uint64_t *data)
|
|
|
|
{
|
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.iaoq_f = data[0];
|
2023-10-18 06:11:19 +02:00
|
|
|
if (data[1] != (target_ulong)-1) {
|
2022-10-24 12:13:57 +02:00
|
|
|
cpu->env.iaoq_b = data[1];
|
|
|
|
}
|
2023-10-27 11:46:44 +02:00
|
|
|
cpu->env.unwind_breg = data[2];
|
2022-10-24 12:13:57 +02:00
|
|
|
/*
|
|
|
|
* Since we were executing the instruction at IAOQ_F, and took some
|
|
|
|
* sort of action that provoked the cpu_restore_state, we can infer
|
|
|
|
* that the instruction was not nullified.
|
|
|
|
*/
|
|
|
|
cpu->env.psw_n = 0;
|
|
|
|
}
|
|
|
|
|
2017-12-29 02:36:45 +01:00
|
|
|
static bool hppa_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
2022-01-05 23:09:04 +01:00
|
|
|
return cs->interrupt_request & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI);
|
2017-12-29 02:36:45 +01:00
|
|
|
}
|
|
|
|
|
2024-01-29 02:37:54 +01:00
|
|
|
static int hppa_cpu_mmu_index(CPUState *cs, bool ifetch)
|
2024-01-29 00:22:51 +01:00
|
|
|
{
|
|
|
|
CPUHPPAState *env = cpu_env(cs);
|
|
|
|
|
|
|
|
if (env->psw & (ifetch ? PSW_C : PSW_D)) {
|
|
|
|
return PRIV_P_TO_MMU_IDX(env->iaoq_f & 3, env->psw & PSW_P);
|
|
|
|
}
|
|
|
|
/* mmu disabled */
|
|
|
|
return env->psw & PSW_W ? MMU_ABS_W_IDX : MMU_ABS_IDX;
|
|
|
|
}
|
|
|
|
|
2016-12-15 20:26:14 +01:00
|
|
|
static void hppa_cpu_disas_set_info(CPUState *cs, disassemble_info *info)
|
|
|
|
{
|
|
|
|
info->mach = bfd_mach_hppa20;
|
|
|
|
info->print_insn = print_insn_hppa;
|
|
|
|
}
|
|
|
|
|
2021-02-04 17:39:19 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2022-04-20 15:26:02 +02:00
|
|
|
static G_NORETURN
|
|
|
|
void hppa_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
|
|
|
|
MMUAccessType access_type, int mmu_idx,
|
|
|
|
uintptr_t retaddr)
|
2017-10-29 16:31:08 +01:00
|
|
|
{
|
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
|
|
|
CPUHPPAState *env = &cpu->env;
|
|
|
|
|
|
|
|
cs->exception_index = EXCP_UNALIGN;
|
2024-03-02 22:02:38 +01:00
|
|
|
cpu_restore_state(cs, retaddr);
|
2024-01-11 23:09:47 +01:00
|
|
|
hppa_set_ior_and_isr(env, addr, MMU_IDX_MMU_DISABLED(mmu_idx));
|
2017-10-29 16:31:08 +01:00
|
|
|
|
2024-03-02 22:02:38 +01:00
|
|
|
cpu_loop_exit(cs);
|
2017-10-29 16:31:08 +01:00
|
|
|
}
|
2021-02-04 17:39:19 +01:00
|
|
|
#endif /* CONFIG_USER_ONLY */
|
2017-10-29 16:31:08 +01:00
|
|
|
|
2016-12-15 20:26:14 +01:00
|
|
|
static void hppa_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(dev);
|
|
|
|
HPPACPUClass *acc = HPPA_CPU_GET_CLASS(dev);
|
|
|
|
Error *local_err = NULL;
|
|
|
|
|
|
|
|
cpu_exec_realizefn(cs, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_init_vcpu(cs);
|
|
|
|
acc->parent_realize(dev, errp);
|
2017-12-29 02:50:14 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
{
|
|
|
|
HPPACPU *cpu = HPPA_CPU(cs);
|
2023-10-27 09:24:30 +02:00
|
|
|
|
2017-12-29 02:50:14 +01:00
|
|
|
cpu->alarm_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
|
|
|
|
hppa_cpu_alarm_timer, cpu);
|
2023-10-27 09:24:30 +02:00
|
|
|
hppa_ptlbe(&cpu->env);
|
2017-12-29 02:50:14 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-12-15 20:26:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void hppa_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(obj);
|
|
|
|
HPPACPU *cpu = HPPA_CPU(obj);
|
|
|
|
CPUHPPAState *env = &cpu->env;
|
|
|
|
|
2017-10-11 22:19:11 +02:00
|
|
|
cs->exception_index = -1;
|
2016-12-15 20:26:14 +01:00
|
|
|
cpu_hppa_loaded_fr0(env);
|
2017-10-11 22:19:11 +02:00
|
|
|
cpu_hppa_put_psw(env, PSW_W);
|
2016-12-15 20:26:14 +01:00
|
|
|
}
|
|
|
|
|
2017-08-24 18:31:33 +02:00
|
|
|
static ObjectClass *hppa_cpu_class_by_name(const char *cpu_model)
|
2016-12-15 20:26:14 +01:00
|
|
|
{
|
2023-09-18 03:42:27 +02:00
|
|
|
g_autofree char *typename = g_strconcat(cpu_model, "-cpu", NULL);
|
|
|
|
|
2023-09-08 10:09:23 +02:00
|
|
|
return object_class_by_name(typename);
|
2016-12-15 20:26:14 +01:00
|
|
|
}
|
|
|
|
|
2021-05-17 12:51:31 +02:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
#include "hw/core/sysemu-cpu-ops.h"
|
|
|
|
|
|
|
|
static const struct SysemuCPUOps hppa_sysemu_ops = {
|
2021-05-17 12:51:37 +02:00
|
|
|
.get_phys_page_debug = hppa_cpu_get_phys_page_debug,
|
2021-05-17 12:51:31 +02:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
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 hppa_tcg_ops = {
|
2021-02-04 17:39:23 +01:00
|
|
|
.initialize = hppa_translate_init,
|
|
|
|
.synchronize_from_tb = hppa_cpu_synchronize_from_tb,
|
2022-10-24 12:13:57 +02:00
|
|
|
.restore_state_to_opc = hppa_restore_state_to_opc,
|
2021-02-04 17:39:23 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2021-09-15 01:39:34 +02:00
|
|
|
.tlb_fill = hppa_cpu_tlb_fill,
|
2021-09-11 18:54:19 +02:00
|
|
|
.cpu_exec_interrupt = hppa_cpu_exec_interrupt,
|
2021-02-04 17:39:23 +01:00
|
|
|
.do_interrupt = hppa_cpu_do_interrupt,
|
|
|
|
.do_unaligned_access = hppa_cpu_do_unaligned_access,
|
2024-02-03 00:04:30 +01:00
|
|
|
.do_transaction_failed = hppa_cpu_do_transaction_failed,
|
2021-02-04 17:39:23 +01:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
|
|
|
};
|
|
|
|
|
2016-12-15 20:26:14 +01:00
|
|
|
static void hppa_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
|
|
|
CPUClass *cc = CPU_CLASS(oc);
|
|
|
|
HPPACPUClass *acc = HPPA_CPU_CLASS(oc);
|
|
|
|
|
2018-01-14 03:04:12 +01:00
|
|
|
device_class_set_parent_realize(dc, hppa_cpu_realizefn,
|
|
|
|
&acc->parent_realize);
|
2016-12-15 20:26:14 +01:00
|
|
|
|
2017-08-24 18:31:33 +02:00
|
|
|
cc->class_by_name = hppa_cpu_class_by_name;
|
2017-12-29 02:36:45 +01:00
|
|
|
cc->has_work = hppa_cpu_has_work;
|
2024-01-29 00:22:51 +01:00
|
|
|
cc->mmu_index = hppa_cpu_mmu_index;
|
2016-12-15 20:26:14 +01:00
|
|
|
cc->dump_state = hppa_cpu_dump_state;
|
|
|
|
cc->set_pc = hppa_cpu_set_pc;
|
2022-09-30 19:31:21 +02:00
|
|
|
cc->get_pc = hppa_cpu_get_pc;
|
2016-12-15 20:26:14 +01:00
|
|
|
cc->gdb_read_register = hppa_cpu_gdb_read_register;
|
|
|
|
cc->gdb_write_register = hppa_cpu_gdb_write_register;
|
2019-04-02 10:30:10 +02:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2017-11-20 11:06:04 +01:00
|
|
|
dc->vmsd = &vmstate_hppa_cpu;
|
2021-05-17 12:51:31 +02:00
|
|
|
cc->sysemu_ops = &hppa_sysemu_ops;
|
2017-10-01 22:11:45 +02:00
|
|
|
#endif
|
2016-12-15 20:26:14 +01:00
|
|
|
cc->disas_set_info = hppa_cpu_disas_set_info;
|
|
|
|
cc->gdb_num_core_regs = 128;
|
2021-02-04 17:39:23 +01:00
|
|
|
cc->tcg_ops = &hppa_tcg_ops;
|
2016-12-15 20:26:14 +01:00
|
|
|
}
|
|
|
|
|
2023-09-18 00:31:47 +02:00
|
|
|
static const TypeInfo hppa_cpu_type_infos[] = {
|
|
|
|
{
|
|
|
|
.name = TYPE_HPPA_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(HPPACPU),
|
|
|
|
.instance_align = __alignof(HPPACPU),
|
|
|
|
.instance_init = hppa_cpu_initfn,
|
|
|
|
.abstract = false,
|
|
|
|
.class_size = sizeof(HPPACPUClass),
|
|
|
|
.class_init = hppa_cpu_class_init,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = TYPE_HPPA64_CPU,
|
|
|
|
.parent = TYPE_HPPA_CPU,
|
|
|
|
},
|
2016-12-15 20:26:14 +01:00
|
|
|
};
|
|
|
|
|
2023-09-18 00:31:47 +02:00
|
|
|
DEFINE_TYPES(hppa_cpu_type_infos)
|