]> git.proxmox.com Git - mirror_qemu.git/blame - target/xtensa/cpu.c
target/tricore: Convert to 3-phase reset
[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"
9e377be1 37#include "hw/qdev-clock.h"
a4633e16
AF
38
39
f45748f1
AF
40static void xtensa_cpu_set_pc(CPUState *cs, vaddr value)
41{
42 XtensaCPU *cpu = XTENSA_CPU(cs);
43
44 cpu->env.pc = value;
45}
46
e4fdf9df
RH
47static vaddr xtensa_cpu_get_pc(CPUState *cs)
48{
49 XtensaCPU *cpu = XTENSA_CPU(cs);
50
51 return cpu->env.pc;
52}
53
044dcfc5
RH
54static void xtensa_restore_state_to_opc(CPUState *cs,
55 const TranslationBlock *tb,
56 const uint64_t *data)
57{
58 XtensaCPU *cpu = XTENSA_CPU(cs);
59
60 cpu->env.pc = data[0];
61}
62
8c2e1b00
AF
63static bool xtensa_cpu_has_work(CPUState *cs)
64{
ba7651fb 65#ifndef CONFIG_USER_ONLY
8c2e1b00
AF
66 XtensaCPU *cpu = XTENSA_CPU(cs);
67
bd527a83 68 return !cpu->env.runstall && cpu->env.pending_irq_level;
ba7651fb
MF
69#else
70 return true;
71#endif
8c2e1b00
AF
72}
73
130ea832
MF
74#ifdef CONFIG_USER_ONLY
75static bool abi_call0;
76
77void xtensa_set_abi_call0(void)
78{
79 abi_call0 = true;
80}
81
82bool xtensa_abi_call0(void)
83{
84 return abi_call0;
85}
86#endif
87
781c67ca 88static void xtensa_cpu_reset(DeviceState *dev)
a4633e16 89{
781c67ca 90 CPUState *s = CPU(dev);
a4633e16
AF
91 XtensaCPU *cpu = XTENSA_CPU(s);
92 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(cpu);
93 CPUXtensaState *env = &cpu->env;
cfa9f051
MF
94 bool dfpu = xtensa_option_enabled(env->config,
95 XTENSA_OPTION_DFP_COPROCESSOR);
a4633e16 96
781c67ca 97 xcc->parent_reset(dev);
a4633e16 98
17ab14ac 99 env->pc = env->config->exception_vector[EXC_RESET0 + env->static_vectors];
5087a72c 100 env->sregs[LITBASE] &= ~1;
ba7651fb 101#ifndef CONFIG_USER_ONLY
5087a72c
AF
102 env->sregs[PS] = xtensa_option_enabled(env->config,
103 XTENSA_OPTION_INTERRUPT) ? 0x1f : 0x10;
ba7651fb
MF
104 env->pending_irq_level = 0;
105#else
130ea832
MF
106 env->sregs[PS] = PS_UM | (3 << PS_RING_SHIFT);
107 if (xtensa_option_enabled(env->config,
108 XTENSA_OPTION_WINDOWED_REGISTER) &&
109 !xtensa_abi_call0()) {
110 env->sregs[PS] |= PS_WOE;
111 }
ab97f050 112 env->sregs[CPENABLE] = 0xff;
ba7651fb 113#endif
5087a72c
AF
114 env->sregs[VECBASE] = env->config->vecbase;
115 env->sregs[IBREAKENABLE] = 0;
9e03ade4 116 env->sregs[MEMCTL] = MEMCTL_IL0EN & env->config->memctl_mask;
fcc803d1
MF
117 env->sregs[ATOMCTL] = xtensa_option_enabled(env->config,
118 XTENSA_OPTION_ATOMCTL) ? 0x28 : 0x15;
604e1f9c
MF
119 env->sregs[CONFIGID0] = env->config->configid[0];
120 env->sregs[CONFIGID1] = env->config->configid[1];
b345e140 121 env->exclusive_addr = -1;
5087a72c 122
ba7651fb 123#ifndef CONFIG_USER_ONLY
5087a72c 124 reset_mmu(env);
bd527a83 125 s->halted = env->runstall;
ba7651fb 126#endif
cfa9f051
MF
127 set_no_signaling_nans(!dfpu, &env->fp_status);
128 set_use_first_nan(!dfpu, &env->fp_status);
a4633e16
AF
129}
130
67cce561
AF
131static ObjectClass *xtensa_cpu_class_by_name(const char *cpu_model)
132{
133 ObjectClass *oc;
134 char *typename;
135
a5247d76 136 typename = g_strdup_printf(XTENSA_CPU_TYPE_NAME("%s"), cpu_model);
67cce561
AF
137 oc = object_class_by_name(typename);
138 g_free(typename);
139 if (oc == NULL || !object_class_dynamic_cast(oc, TYPE_XTENSA_CPU) ||
140 object_class_is_abstract(oc)) {
141 return NULL;
142 }
143 return oc;
144}
145
5a6539e6
MF
146static void xtensa_cpu_disas_set_info(CPUState *cs, disassemble_info *info)
147{
148 XtensaCPU *cpu = XTENSA_CPU(cs);
149
150 info->private_data = cpu->env.config->isa;
151 info->print_insn = print_insn_xtensa;
152}
153
5f6c9643
AF
154static void xtensa_cpu_realizefn(DeviceState *dev, Error **errp)
155{
a0e372f0 156 CPUState *cs = CPU(dev);
5f6c9643 157 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(dev);
ce5b1bbf
LV
158 Error *local_err = NULL;
159
ba7651fb
MF
160#ifndef CONFIG_USER_ONLY
161 xtensa_irq_init(&XTENSA_CPU(dev)->env);
162#endif
8e36271b 163
ce5b1bbf
LV
164 cpu_exec_realizefn(cs, &local_err);
165 if (local_err != NULL) {
166 error_propagate(errp, local_err);
167 return;
168 }
5f6c9643 169
a0e372f0
AF
170 cs->gdb_num_regs = xcc->config->gdb_regmap.num_regs;
171
14a10fc3
AF
172 qemu_init_vcpu(cs);
173
5f6c9643
AF
174 xcc->parent_realize(dev, errp);
175}
176
e554bbc6
AF
177static void xtensa_cpu_initfn(Object *obj)
178{
179 XtensaCPU *cpu = XTENSA_CPU(obj);
67cce561 180 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(obj);
e554bbc6
AF
181 CPUXtensaState *env = &cpu->env;
182
7506ed90 183 cpu_set_cpustate_pointers(cpu);
67cce561 184 env->config = xcc->config;
25733ead 185
ba7651fb 186#ifndef CONFIG_USER_ONLY
3a3c9dc4
MF
187 env->address_space_er = g_malloc(sizeof(*env->address_space_er));
188 env->system_er = g_malloc(sizeof(*env->system_er));
09d98b69 189 memory_region_init_io(env->system_er, obj, NULL, env, "er",
3a3c9dc4
MF
190 UINT64_C(0x100000000));
191 address_space_init(env->address_space_er, env->system_er, "ER");
9e377be1
MF
192
193 cpu->clock = qdev_init_clock_in(DEVICE(obj), "clk-in", NULL, cpu, 0);
194 clock_set_hz(cpu->clock, env->config->clock_freq_khz * 1000);
ba7651fb 195#endif
e554bbc6
AF
196}
197
9e377be1
MF
198XtensaCPU *xtensa_cpu_create_with_clock(const char *cpu_type, Clock *cpu_refclk)
199{
200 DeviceState *cpu;
201
202 cpu = DEVICE(object_new(cpu_type));
203 qdev_connect_clock_in(cpu, "clk-in", cpu_refclk);
204 qdev_realize(cpu, NULL, &error_abort);
205
206 return XTENSA_CPU(cpu);
207}
208
4336073b 209#ifndef CONFIG_USER_ONLY
004a5690
AF
210static const VMStateDescription vmstate_xtensa_cpu = {
211 .name = "cpu",
212 .unmigratable = 1,
213};
8b80bd28
PMD
214
215#include "hw/core/sysemu-cpu-ops.h"
216
217static const struct SysemuCPUOps xtensa_sysemu_ops = {
08928c6d 218 .get_phys_page_debug = xtensa_cpu_get_phys_page_debug,
8b80bd28 219};
4336073b 220#endif
004a5690 221
78271684
CF
222#include "hw/core/tcg-cpu-ops.h"
223
11906557 224static const struct TCGCPUOps xtensa_tcg_ops = {
78271684 225 .initialize = xtensa_translate_init,
78271684 226 .debug_excp_handler = xtensa_breakpoint_handler,
044dcfc5 227 .restore_state_to_opc = xtensa_restore_state_to_opc,
78271684
CF
228
229#ifndef CONFIG_USER_ONLY
6407f64f 230 .tlb_fill = xtensa_cpu_tlb_fill,
f364a7f9 231 .cpu_exec_interrupt = xtensa_cpu_exec_interrupt,
78271684
CF
232 .do_interrupt = xtensa_cpu_do_interrupt,
233 .do_transaction_failed = xtensa_cpu_do_transaction_failed,
234 .do_unaligned_access = xtensa_cpu_do_unaligned_access,
235#endif /* !CONFIG_USER_ONLY */
236};
237
a4633e16
AF
238static void xtensa_cpu_class_init(ObjectClass *oc, void *data)
239{
004a5690 240 DeviceClass *dc = DEVICE_CLASS(oc);
a4633e16
AF
241 CPUClass *cc = CPU_CLASS(oc);
242 XtensaCPUClass *xcc = XTENSA_CPU_CLASS(cc);
243
bf853881
PMD
244 device_class_set_parent_realize(dc, xtensa_cpu_realizefn,
245 &xcc->parent_realize);
5f6c9643 246
781c67ca 247 device_class_set_parent_reset(dc, xtensa_cpu_reset, &xcc->parent_reset);
004a5690 248
67cce561 249 cc->class_by_name = xtensa_cpu_class_by_name;
8c2e1b00 250 cc->has_work = xtensa_cpu_has_work;
878096ee 251 cc->dump_state = xtensa_cpu_dump_state;
f45748f1 252 cc->set_pc = xtensa_cpu_set_pc;
e4fdf9df 253 cc->get_pc = xtensa_cpu_get_pc;
5b50e790
AF
254 cc->gdb_read_register = xtensa_cpu_gdb_read_register;
255 cc->gdb_write_register = xtensa_cpu_gdb_write_register;
2472b6c0 256 cc->gdb_stop_before_watchpoint = true;
b008c456 257#ifndef CONFIG_USER_ONLY
8b80bd28 258 cc->sysemu_ops = &xtensa_sysemu_ops;
4336073b 259 dc->vmsd = &vmstate_xtensa_cpu;
00b941e5 260#endif
5a6539e6 261 cc->disas_set_info = xtensa_cpu_disas_set_info;
78271684 262 cc->tcg_ops = &xtensa_tcg_ops;
a4633e16
AF
263}
264
265static const TypeInfo xtensa_cpu_type_info = {
266 .name = TYPE_XTENSA_CPU,
267 .parent = TYPE_CPU,
268 .instance_size = sizeof(XtensaCPU),
e554bbc6 269 .instance_init = xtensa_cpu_initfn,
67cce561 270 .abstract = true,
a4633e16
AF
271 .class_size = sizeof(XtensaCPUClass),
272 .class_init = xtensa_cpu_class_init,
273};
274
275static void xtensa_cpu_register_types(void)
276{
277 type_register_static(&xtensa_cpu_type_info);
278}
279
280type_init(xtensa_cpu_register_types)