Merge remote-tracking branch 'qemu/master'
[qemu/ar7.git] / target / moxie / cpu.c
blobf1389e5097d33668574a629037d0b3f8da7a4e87
1 /*
2 * QEMU Moxie CPU
4 * Copyright (c) 2013 Anthony Green
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "qapi/error.h"
22 #include "cpu.h"
23 #include "qemu-common.h"
24 #include "migration/vmstate.h"
25 #include "machine.h"
26 #include "exec/exec-all.h"
28 static void moxie_cpu_set_pc(CPUState *cs, vaddr value)
30 MoxieCPU *cpu = MOXIE_CPU(cs);
32 cpu->env.pc = value;
35 static bool moxie_cpu_has_work(CPUState *cs)
37 return cs->interrupt_request & CPU_INTERRUPT_HARD;
40 static void moxie_cpu_reset(CPUState *s)
42 MoxieCPU *cpu = MOXIE_CPU(s);
43 MoxieCPUClass *mcc = MOXIE_CPU_GET_CLASS(cpu);
44 CPUMoxieState *env = &cpu->env;
46 mcc->parent_reset(s);
48 memset(env, 0, offsetof(CPUMoxieState, end_reset_fields));
49 env->pc = 0x1000;
52 static void moxie_cpu_disas_set_info(CPUState *cpu, disassemble_info *info)
54 info->mach = bfd_arch_moxie;
55 info->print_insn = print_insn_moxie;
58 static void moxie_cpu_realizefn(DeviceState *dev, Error **errp)
60 CPUState *cs = CPU(dev);
61 MoxieCPUClass *mcc = MOXIE_CPU_GET_CLASS(dev);
62 Error *local_err = NULL;
64 cpu_exec_realizefn(cs, &local_err);
65 if (local_err != NULL) {
66 error_propagate(errp, local_err);
67 return;
70 qemu_init_vcpu(cs);
71 cpu_reset(cs);
73 mcc->parent_realize(dev, errp);
76 static void moxie_cpu_initfn(Object *obj)
78 CPUState *cs = CPU(obj);
79 MoxieCPU *cpu = MOXIE_CPU(obj);
81 cs->env_ptr = &cpu->env;
84 static ObjectClass *moxie_cpu_class_by_name(const char *cpu_model)
86 ObjectClass *oc;
87 char *typename;
89 typename = g_strdup_printf(MOXIE_CPU_TYPE_NAME("%s"), cpu_model);
90 oc = object_class_by_name(typename);
91 g_free(typename);
92 if (oc != NULL && (!object_class_dynamic_cast(oc, TYPE_MOXIE_CPU) ||
93 object_class_is_abstract(oc))) {
94 return NULL;
96 return oc;
99 static void moxie_cpu_class_init(ObjectClass *oc, void *data)
101 DeviceClass *dc = DEVICE_CLASS(oc);
102 CPUClass *cc = CPU_CLASS(oc);
103 MoxieCPUClass *mcc = MOXIE_CPU_CLASS(oc);
105 mcc->parent_realize = dc->realize;
106 dc->realize = moxie_cpu_realizefn;
108 mcc->parent_reset = cc->reset;
109 cc->reset = moxie_cpu_reset;
111 cc->class_by_name = moxie_cpu_class_by_name;
113 cc->has_work = moxie_cpu_has_work;
114 cc->do_interrupt = moxie_cpu_do_interrupt;
115 cc->dump_state = moxie_cpu_dump_state;
116 cc->set_pc = moxie_cpu_set_pc;
117 #ifdef CONFIG_USER_ONLY
118 cc->handle_mmu_fault = moxie_cpu_handle_mmu_fault;
119 #else
120 cc->get_phys_page_debug = moxie_cpu_get_phys_page_debug;
121 cc->vmsd = &vmstate_moxie_cpu;
122 #endif
123 cc->disas_set_info = moxie_cpu_disas_set_info;
124 cc->tcg_initialize = moxie_translate_init;
127 static void moxielite_initfn(Object *obj)
129 /* Set cpu feature flags */
132 static void moxie_any_initfn(Object *obj)
134 /* Set cpu feature flags */
137 #define DEFINE_MOXIE_CPU_TYPE(cpu_model, initfn) \
139 .parent = TYPE_MOXIE_CPU, \
140 .instance_init = initfn, \
141 .name = MOXIE_CPU_TYPE_NAME(cpu_model), \
144 static const TypeInfo moxie_cpus_type_infos[] = {
145 { /* base class should be registered first */
146 .name = TYPE_MOXIE_CPU,
147 .parent = TYPE_CPU,
148 .instance_size = sizeof(MoxieCPU),
149 .instance_init = moxie_cpu_initfn,
150 .class_size = sizeof(MoxieCPUClass),
151 .class_init = moxie_cpu_class_init,
153 DEFINE_MOXIE_CPU_TYPE("MoxieLite", moxielite_initfn),
154 DEFINE_MOXIE_CPU_TYPE("any", moxie_any_initfn),
157 DEFINE_TYPES(moxie_cpus_type_infos)