2015-08-20 23:41:01 +02:00
|
|
|
/*
|
|
|
|
* QEMU TILE-Gx CPU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Chen Gang
|
|
|
|
*
|
|
|
|
* 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 19:17:27 +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"
|
2015-08-20 23:41:01 +02:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "hw/qdev-properties.h"
|
2015-09-27 23:26:04 +02:00
|
|
|
#include "linux-user/syscall_defs.h"
|
2015-08-20 23:41:01 +02:00
|
|
|
|
|
|
|
static void tilegx_cpu_dump_state(CPUState *cs, FILE *f,
|
|
|
|
fprintf_function cpu_fprintf, int flags)
|
|
|
|
{
|
|
|
|
static const char * const reg_names[TILEGX_R_COUNT] = {
|
|
|
|
"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
|
|
|
|
"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
|
|
|
|
"r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
|
|
|
|
"r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
|
|
|
|
"r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39",
|
|
|
|
"r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47",
|
|
|
|
"r48", "r49", "r50", "r51", "bp", "tp", "sp", "lr"
|
|
|
|
};
|
|
|
|
|
|
|
|
TileGXCPU *cpu = TILEGX_CPU(cs);
|
|
|
|
CPUTLGState *env = &cpu->env;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < TILEGX_R_COUNT; i++) {
|
|
|
|
cpu_fprintf(f, "%-4s" TARGET_FMT_lx "%s",
|
|
|
|
reg_names[i], env->regs[i],
|
|
|
|
(i % 4) == 3 ? "\n" : " ");
|
|
|
|
}
|
|
|
|
cpu_fprintf(f, "PC " TARGET_FMT_lx " CEX " TARGET_FMT_lx "\n\n",
|
|
|
|
env->pc, env->spregs[TILEGX_SPR_CMPEXCH]);
|
|
|
|
}
|
|
|
|
|
2017-08-24 18:31:37 +02:00
|
|
|
static ObjectClass *tilegx_cpu_class_by_name(const char *cpu_model)
|
2015-08-20 23:41:01 +02:00
|
|
|
{
|
2017-08-24 18:31:37 +02:00
|
|
|
return object_class_by_name(TYPE_TILEGX_CPU);
|
2015-08-20 23:41:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tilegx_cpu_set_pc(CPUState *cs, vaddr value)
|
|
|
|
{
|
|
|
|
TileGXCPU *cpu = TILEGX_CPU(cs);
|
|
|
|
|
|
|
|
cpu->env.pc = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool tilegx_cpu_has_work(CPUState *cs)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tilegx_cpu_reset(CPUState *s)
|
|
|
|
{
|
|
|
|
TileGXCPU *cpu = TILEGX_CPU(s);
|
|
|
|
TileGXCPUClass *tcc = TILEGX_CPU_GET_CLASS(cpu);
|
|
|
|
CPUTLGState *env = &cpu->env;
|
|
|
|
|
|
|
|
tcc->parent_reset(s);
|
|
|
|
|
2016-11-14 15:19:17 +01:00
|
|
|
memset(env, 0, offsetof(CPUTLGState, end_reset_fields));
|
2015-08-20 23:41:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tilegx_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(dev);
|
|
|
|
TileGXCPUClass *tcc = TILEGX_CPU_GET_CLASS(dev);
|
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;
|
|
|
|
}
|
2015-08-20 23:41:01 +02:00
|
|
|
|
|
|
|
cpu_reset(cs);
|
|
|
|
qemu_init_vcpu(cs);
|
|
|
|
|
|
|
|
tcc->parent_realize(dev, errp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tilegx_cpu_initfn(Object *obj)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(obj);
|
|
|
|
TileGXCPU *cpu = TILEGX_CPU(obj);
|
|
|
|
CPUTLGState *env = &cpu->env;
|
|
|
|
|
|
|
|
cs->env_ptr = env;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tilegx_cpu_do_interrupt(CPUState *cs)
|
|
|
|
{
|
|
|
|
cs->exception_index = -1;
|
|
|
|
}
|
|
|
|
|
2018-01-18 20:38:40 +01:00
|
|
|
static int tilegx_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int size,
|
|
|
|
int rw, int mmu_idx)
|
2015-08-20 23:41:01 +02:00
|
|
|
{
|
2015-08-21 20:49:38 +02:00
|
|
|
TileGXCPU *cpu = TILEGX_CPU(cs);
|
|
|
|
|
2015-09-27 23:26:04 +02:00
|
|
|
/* The sigcode field will be filled in by do_signal in main.c. */
|
|
|
|
cs->exception_index = TILEGX_EXCP_SIGNAL;
|
2015-08-21 20:49:38 +02:00
|
|
|
cpu->env.excaddr = address;
|
2015-09-27 23:26:04 +02:00
|
|
|
cpu->env.signo = TARGET_SIGSEGV;
|
|
|
|
cpu->env.sigcode = 0;
|
|
|
|
|
2015-08-20 23:41:01 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool tilegx_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
|
|
|
|
{
|
|
|
|
if (interrupt_request & CPU_INTERRUPT_HARD) {
|
|
|
|
tilegx_cpu_do_interrupt(cs);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tilegx_cpu_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
|
|
|
CPUClass *cc = CPU_CLASS(oc);
|
|
|
|
TileGXCPUClass *tcc = TILEGX_CPU_CLASS(oc);
|
|
|
|
|
2018-01-14 03:04:12 +01:00
|
|
|
device_class_set_parent_realize(dc, tilegx_cpu_realizefn,
|
|
|
|
&tcc->parent_realize);
|
2015-08-20 23:41:01 +02:00
|
|
|
|
|
|
|
tcc->parent_reset = cc->reset;
|
|
|
|
cc->reset = tilegx_cpu_reset;
|
|
|
|
|
2017-08-24 18:31:37 +02:00
|
|
|
cc->class_by_name = tilegx_cpu_class_by_name;
|
2015-08-20 23:41:01 +02:00
|
|
|
cc->has_work = tilegx_cpu_has_work;
|
|
|
|
cc->do_interrupt = tilegx_cpu_do_interrupt;
|
|
|
|
cc->cpu_exec_interrupt = tilegx_cpu_exec_interrupt;
|
|
|
|
cc->dump_state = tilegx_cpu_dump_state;
|
|
|
|
cc->set_pc = tilegx_cpu_set_pc;
|
|
|
|
cc->handle_mmu_fault = tilegx_cpu_handle_mmu_fault;
|
|
|
|
cc->gdb_num_core_regs = 0;
|
2017-10-16 04:02:42 +02:00
|
|
|
cc->tcg_initialize = tilegx_tcg_init;
|
2015-08-20 23:41:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo tilegx_cpu_type_info = {
|
|
|
|
.name = TYPE_TILEGX_CPU,
|
|
|
|
.parent = TYPE_CPU,
|
|
|
|
.instance_size = sizeof(TileGXCPU),
|
|
|
|
.instance_init = tilegx_cpu_initfn,
|
|
|
|
.class_size = sizeof(TileGXCPUClass),
|
|
|
|
.class_init = tilegx_cpu_class_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void tilegx_cpu_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&tilegx_cpu_type_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(tilegx_cpu_register_types)
|