target-ppc: dump DAR and DSISR
[qemu/ar7.git] / target-xtensa / cpu.c
blob749e20580fd519f2ee8868367577dcad0b77e23c
1 /*
2 * QEMU Xtensa CPU
4 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
5 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * All rights reserved.
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.
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.
31 #include "cpu.h"
32 #include "qemu-common.h"
33 #include "migration/vmstate.h"
36 static void xtensa_cpu_set_pc(CPUState *cs, vaddr value)
38 XtensaCPU *cpu = XTENSA_CPU(cs);
40 cpu->env.pc = value;
43 /* CPUClass::reset() */
44 static void xtensa_cpu_reset(CPUState *s)
46 XtensaCPU *cpu = XTENSA_CPU(s);
47 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(cpu);
48 CPUXtensaState *env = &cpu->env;
50 xcc->parent_reset(s);
52 env->exception_taken = 0;
53 env->pc = env->config->exception_vector[EXC_RESET];
54 env->sregs[LITBASE] &= ~1;
55 env->sregs[PS] = xtensa_option_enabled(env->config,
56 XTENSA_OPTION_INTERRUPT) ? 0x1f : 0x10;
57 env->sregs[VECBASE] = env->config->vecbase;
58 env->sregs[IBREAKENABLE] = 0;
59 env->sregs[CACHEATTR] = 0x22222222;
60 env->sregs[ATOMCTL] = xtensa_option_enabled(env->config,
61 XTENSA_OPTION_ATOMCTL) ? 0x28 : 0x15;
62 env->sregs[CONFIGID0] = env->config->configid[0];
63 env->sregs[CONFIGID1] = env->config->configid[1];
65 env->pending_irq_level = 0;
66 reset_mmu(env);
69 static ObjectClass *xtensa_cpu_class_by_name(const char *cpu_model)
71 ObjectClass *oc;
72 char *typename;
74 if (cpu_model == NULL) {
75 return NULL;
78 typename = g_strdup_printf("%s-" TYPE_XTENSA_CPU, cpu_model);
79 oc = object_class_by_name(typename);
80 g_free(typename);
81 if (oc == NULL || !object_class_dynamic_cast(oc, TYPE_XTENSA_CPU) ||
82 object_class_is_abstract(oc)) {
83 return NULL;
85 return oc;
88 static void xtensa_cpu_realizefn(DeviceState *dev, Error **errp)
90 CPUState *cs = CPU(dev);
91 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(dev);
93 cs->gdb_num_regs = xcc->config->gdb_regmap.num_regs;
95 qemu_init_vcpu(cs);
97 xcc->parent_realize(dev, errp);
100 static void xtensa_cpu_initfn(Object *obj)
102 CPUState *cs = CPU(obj);
103 XtensaCPU *cpu = XTENSA_CPU(obj);
104 XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(obj);
105 CPUXtensaState *env = &cpu->env;
106 static bool tcg_inited;
108 cs->env_ptr = env;
109 env->config = xcc->config;
110 cpu_exec_init(env);
112 if (tcg_enabled() && !tcg_inited) {
113 tcg_inited = true;
114 xtensa_translate_init();
115 cpu_set_debug_excp_handler(xtensa_breakpoint_handler);
119 static const VMStateDescription vmstate_xtensa_cpu = {
120 .name = "cpu",
121 .unmigratable = 1,
124 static void xtensa_cpu_class_init(ObjectClass *oc, void *data)
126 DeviceClass *dc = DEVICE_CLASS(oc);
127 CPUClass *cc = CPU_CLASS(oc);
128 XtensaCPUClass *xcc = XTENSA_CPU_CLASS(cc);
130 xcc->parent_realize = dc->realize;
131 dc->realize = xtensa_cpu_realizefn;
133 xcc->parent_reset = cc->reset;
134 cc->reset = xtensa_cpu_reset;
136 cc->class_by_name = xtensa_cpu_class_by_name;
137 cc->do_interrupt = xtensa_cpu_do_interrupt;
138 cc->dump_state = xtensa_cpu_dump_state;
139 cc->set_pc = xtensa_cpu_set_pc;
140 cc->gdb_read_register = xtensa_cpu_gdb_read_register;
141 cc->gdb_write_register = xtensa_cpu_gdb_write_register;
142 #ifndef CONFIG_USER_ONLY
143 cc->get_phys_page_debug = xtensa_cpu_get_phys_page_debug;
144 #endif
145 dc->vmsd = &vmstate_xtensa_cpu;
148 static const TypeInfo xtensa_cpu_type_info = {
149 .name = TYPE_XTENSA_CPU,
150 .parent = TYPE_CPU,
151 .instance_size = sizeof(XtensaCPU),
152 .instance_init = xtensa_cpu_initfn,
153 .abstract = true,
154 .class_size = sizeof(XtensaCPUClass),
155 .class_init = xtensa_cpu_class_init,
158 static void xtensa_cpu_register_types(void)
160 type_register_static(&xtensa_cpu_type_info);
163 type_init(xtensa_cpu_register_types)