]> git.proxmox.com Git - mirror_qemu.git/blame - target/xtensa/cpu.c
cpu: tcg_ops: move to tcg-cpu-ops.h, keep a pointer in CPUClass
[mirror_qemu.git] / target / xtensa / cpu.c
CommitLineData
a4633e16
AF
1/*
2 * QEMU Xtensa CPU
3 *
5087a72c 4 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
a4633e16
AF
5 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * * Neither the name of the Open Source and Linux Lab nor the
16 * names of its contributors may be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
09aae23d 31#include "qemu/osdep.h"
da34e65c 32#include "qapi/error.h"
15be3171 33#include "cpu.h"
cfa9f051 34#include "fpu/softfloat.h"
0b8fa32f 35#include "qemu/module.h"
004a5690 36#include "migration/vmstate.h"
a4633e16
AF
37
38
f45748f1
AF
39static void xtensa_cpu_set_pc(CPUState *cs, vaddr value)
40{
41 XtensaCPU *cpu = XTENSA_CPU(cs);
42
43 cpu->env.pc = value;
44}
45
8c2e1b00
AF
46static bool xtensa_cpu_has_work(CPUState *cs)
47{
ba7651fb 48#ifndef CONFIG_USER_ONLY
8c2e1b00
AF
49 XtensaCPU *cpu = XTENSA_CPU(cs);
50
bd527a83 51 return !cpu->env.runstall && cpu->env.pending_irq_level;
ba7651fb
MF
52#else
53 return true;
54#endif
8c2e1b00
AF
55}
56
130ea832
MF
57#ifdef CONFIG_USER_ONLY
58static bool abi_call0;
59
60void xtensa_set_abi_call0(void)
61{
62 abi_call0 = true;
63}
64
65bool xtensa_abi_call0(void)
66{
67 return abi_call0;
68}
69#endif
70
781c67ca 71static void xtensa_cpu_reset(DeviceState *dev)
a4633e16 72{
781c67ca 73 CPUState *s = CPU(dev);
a4633e16
AF
74 XtensaCPU *cpu = XTENSA_CPU(s);
75 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(cpu);
76 CPUXtensaState *env = &cpu->env;
cfa9f051
MF
77 bool dfpu = xtensa_option_enabled(env->config,
78 XTENSA_OPTION_DFP_COPROCESSOR);
a4633e16 79
781c67ca 80 xcc->parent_reset(dev);
a4633e16 81
5087a72c 82 env->exception_taken = 0;
17ab14ac 83 env->pc = env->config->exception_vector[EXC_RESET0 + env->static_vectors];
5087a72c 84 env->sregs[LITBASE] &= ~1;
ba7651fb 85#ifndef CONFIG_USER_ONLY
5087a72c
AF
86 env->sregs[PS] = xtensa_option_enabled(env->config,
87 XTENSA_OPTION_INTERRUPT) ? 0x1f : 0x10;
ba7651fb
MF
88 env->pending_irq_level = 0;
89#else
130ea832
MF
90 env->sregs[PS] = PS_UM | (3 << PS_RING_SHIFT);
91 if (xtensa_option_enabled(env->config,
92 XTENSA_OPTION_WINDOWED_REGISTER) &&
93 !xtensa_abi_call0()) {
94 env->sregs[PS] |= PS_WOE;
95 }
ab97f050 96 env->sregs[CPENABLE] = 0xff;
ba7651fb 97#endif
5087a72c
AF
98 env->sregs[VECBASE] = env->config->vecbase;
99 env->sregs[IBREAKENABLE] = 0;
9e03ade4 100 env->sregs[MEMCTL] = MEMCTL_IL0EN & env->config->memctl_mask;
fcc803d1
MF
101 env->sregs[ATOMCTL] = xtensa_option_enabled(env->config,
102 XTENSA_OPTION_ATOMCTL) ? 0x28 : 0x15;
604e1f9c
MF
103 env->sregs[CONFIGID0] = env->config->configid[0];
104 env->sregs[CONFIGID1] = env->config->configid[1];
b345e140 105 env->exclusive_addr = -1;
5087a72c 106
ba7651fb 107#ifndef CONFIG_USER_ONLY
5087a72c 108 reset_mmu(env);
bd527a83 109 s->halted = env->runstall;
ba7651fb 110#endif
cfa9f051
MF
111 set_no_signaling_nans(!dfpu, &env->fp_status);
112 set_use_first_nan(!dfpu, &env->fp_status);
a4633e16
AF
113}
114
67cce561
AF
115static ObjectClass *xtensa_cpu_class_by_name(const char *cpu_model)
116{
117 ObjectClass *oc;
118 char *typename;
119
a5247d76 120 typename = g_strdup_printf(XTENSA_CPU_TYPE_NAME("%s"), cpu_model);
67cce561
AF
121 oc = object_class_by_name(typename);
122 g_free(typename);
123 if (oc == NULL || !object_class_dynamic_cast(oc, TYPE_XTENSA_CPU) ||
124 object_class_is_abstract(oc)) {
125 return NULL;
126 }
127 return oc;
128}
129
5a6539e6
MF
130static void xtensa_cpu_disas_set_info(CPUState *cs, disassemble_info *info)
131{
132 XtensaCPU *cpu = XTENSA_CPU(cs);
133
134 info->private_data = cpu->env.config->isa;
135 info->print_insn = print_insn_xtensa;
136}
137
5f6c9643
AF
138static void xtensa_cpu_realizefn(DeviceState *dev, Error **errp)
139{
a0e372f0 140 CPUState *cs = CPU(dev);
5f6c9643 141 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(dev);
ce5b1bbf
LV
142 Error *local_err = NULL;
143
ba7651fb
MF
144#ifndef CONFIG_USER_ONLY
145 xtensa_irq_init(&XTENSA_CPU(dev)->env);
146#endif
8e36271b 147
ce5b1bbf
LV
148 cpu_exec_realizefn(cs, &local_err);
149 if (local_err != NULL) {
150 error_propagate(errp, local_err);
151 return;
152 }
5f6c9643 153
a0e372f0
AF
154 cs->gdb_num_regs = xcc->config->gdb_regmap.num_regs;
155
14a10fc3
AF
156 qemu_init_vcpu(cs);
157
5f6c9643
AF
158 xcc->parent_realize(dev, errp);
159}
160
e554bbc6
AF
161static void xtensa_cpu_initfn(Object *obj)
162{
163 XtensaCPU *cpu = XTENSA_CPU(obj);
67cce561 164 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(obj);
e554bbc6
AF
165 CPUXtensaState *env = &cpu->env;
166
7506ed90 167 cpu_set_cpustate_pointers(cpu);
67cce561 168 env->config = xcc->config;
25733ead 169
ba7651fb 170#ifndef CONFIG_USER_ONLY
3a3c9dc4
MF
171 env->address_space_er = g_malloc(sizeof(*env->address_space_er));
172 env->system_er = g_malloc(sizeof(*env->system_er));
09d98b69 173 memory_region_init_io(env->system_er, obj, NULL, env, "er",
3a3c9dc4
MF
174 UINT64_C(0x100000000));
175 address_space_init(env->address_space_er, env->system_er, "ER");
ba7651fb 176#endif
e554bbc6
AF
177}
178
004a5690
AF
179static const VMStateDescription vmstate_xtensa_cpu = {
180 .name = "cpu",
181 .unmigratable = 1,
182};
183
78271684
CF
184#include "hw/core/tcg-cpu-ops.h"
185
186static struct TCGCPUOps xtensa_tcg_ops = {
187 .initialize = xtensa_translate_init,
188 .cpu_exec_interrupt = xtensa_cpu_exec_interrupt,
189 .tlb_fill = xtensa_cpu_tlb_fill,
190 .debug_excp_handler = xtensa_breakpoint_handler,
191
192#ifndef CONFIG_USER_ONLY
193 .do_interrupt = xtensa_cpu_do_interrupt,
194 .do_transaction_failed = xtensa_cpu_do_transaction_failed,
195 .do_unaligned_access = xtensa_cpu_do_unaligned_access,
196#endif /* !CONFIG_USER_ONLY */
197};
198
a4633e16
AF
199static void xtensa_cpu_class_init(ObjectClass *oc, void *data)
200{
004a5690 201 DeviceClass *dc = DEVICE_CLASS(oc);
a4633e16
AF
202 CPUClass *cc = CPU_CLASS(oc);
203 XtensaCPUClass *xcc = XTENSA_CPU_CLASS(cc);
204
bf853881
PMD
205 device_class_set_parent_realize(dc, xtensa_cpu_realizefn,
206 &xcc->parent_realize);
5f6c9643 207
781c67ca 208 device_class_set_parent_reset(dc, xtensa_cpu_reset, &xcc->parent_reset);
004a5690 209
67cce561 210 cc->class_by_name = xtensa_cpu_class_by_name;
8c2e1b00 211 cc->has_work = xtensa_cpu_has_work;
878096ee 212 cc->dump_state = xtensa_cpu_dump_state;
f45748f1 213 cc->set_pc = xtensa_cpu_set_pc;
5b50e790
AF
214 cc->gdb_read_register = xtensa_cpu_gdb_read_register;
215 cc->gdb_write_register = xtensa_cpu_gdb_write_register;
2472b6c0 216 cc->gdb_stop_before_watchpoint = true;
b008c456 217#ifndef CONFIG_USER_ONLY
00b941e5
AF
218 cc->get_phys_page_debug = xtensa_cpu_get_phys_page_debug;
219#endif
5a6539e6 220 cc->disas_set_info = xtensa_cpu_disas_set_info;
004a5690 221 dc->vmsd = &vmstate_xtensa_cpu;
78271684 222 cc->tcg_ops = &xtensa_tcg_ops;
a4633e16
AF
223}
224
225static const TypeInfo xtensa_cpu_type_info = {
226 .name = TYPE_XTENSA_CPU,
227 .parent = TYPE_CPU,
228 .instance_size = sizeof(XtensaCPU),
e554bbc6 229 .instance_init = xtensa_cpu_initfn,
67cce561 230 .abstract = true,
a4633e16
AF
231 .class_size = sizeof(XtensaCPUClass),
232 .class_init = xtensa_cpu_class_init,
233};
234
235static void xtensa_cpu_register_types(void)
236{
237 type_register_static(&xtensa_cpu_type_info);
238}
239
240type_init(xtensa_cpu_register_types)