]> Git Repo - qemu.git/blob - target-xtensa/cpu.c
chardev: Shorten references into ChardevBackend
[qemu.git] / target-xtensa / cpu.c
1 /*
2  * QEMU Xtensa CPU
3  *
4  * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
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
31 #include "qemu/osdep.h"
32 #include "cpu.h"
33 #include "qemu-common.h"
34 #include "migration/vmstate.h"
35
36
37 static void xtensa_cpu_set_pc(CPUState *cs, vaddr value)
38 {
39     XtensaCPU *cpu = XTENSA_CPU(cs);
40
41     cpu->env.pc = value;
42 }
43
44 static bool xtensa_cpu_has_work(CPUState *cs)
45 {
46     XtensaCPU *cpu = XTENSA_CPU(cs);
47
48     return cpu->env.pending_irq_level;
49 }
50
51 /* CPUClass::reset() */
52 static void xtensa_cpu_reset(CPUState *s)
53 {
54     XtensaCPU *cpu = XTENSA_CPU(s);
55     XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(cpu);
56     CPUXtensaState *env = &cpu->env;
57
58     xcc->parent_reset(s);
59
60     env->exception_taken = 0;
61     env->pc = env->config->exception_vector[EXC_RESET];
62     env->sregs[LITBASE] &= ~1;
63     env->sregs[PS] = xtensa_option_enabled(env->config,
64             XTENSA_OPTION_INTERRUPT) ? 0x1f : 0x10;
65     env->sregs[VECBASE] = env->config->vecbase;
66     env->sregs[IBREAKENABLE] = 0;
67     env->sregs[CACHEATTR] = 0x22222222;
68     env->sregs[ATOMCTL] = xtensa_option_enabled(env->config,
69             XTENSA_OPTION_ATOMCTL) ? 0x28 : 0x15;
70     env->sregs[CONFIGID0] = env->config->configid[0];
71     env->sregs[CONFIGID1] = env->config->configid[1];
72
73     env->pending_irq_level = 0;
74     reset_mmu(env);
75 }
76
77 static ObjectClass *xtensa_cpu_class_by_name(const char *cpu_model)
78 {
79     ObjectClass *oc;
80     char *typename;
81
82     if (cpu_model == NULL) {
83         return NULL;
84     }
85
86     typename = g_strdup_printf("%s-" TYPE_XTENSA_CPU, cpu_model);
87     oc = object_class_by_name(typename);
88     g_free(typename);
89     if (oc == NULL || !object_class_dynamic_cast(oc, TYPE_XTENSA_CPU) ||
90         object_class_is_abstract(oc)) {
91         return NULL;
92     }
93     return oc;
94 }
95
96 static void xtensa_cpu_realizefn(DeviceState *dev, Error **errp)
97 {
98     CPUState *cs = CPU(dev);
99     XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(dev);
100
101     cs->gdb_num_regs = xcc->config->gdb_regmap.num_regs;
102
103     qemu_init_vcpu(cs);
104
105     xcc->parent_realize(dev, errp);
106 }
107
108 static void xtensa_cpu_initfn(Object *obj)
109 {
110     CPUState *cs = CPU(obj);
111     XtensaCPU *cpu = XTENSA_CPU(obj);
112     XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(obj);
113     CPUXtensaState *env = &cpu->env;
114     static bool tcg_inited;
115
116     cs->env_ptr = env;
117     env->config = xcc->config;
118     cpu_exec_init(cs, &error_abort);
119
120     if (tcg_enabled() && !tcg_inited) {
121         tcg_inited = true;
122         xtensa_translate_init();
123     }
124 }
125
126 static const VMStateDescription vmstate_xtensa_cpu = {
127     .name = "cpu",
128     .unmigratable = 1,
129 };
130
131 static void xtensa_cpu_class_init(ObjectClass *oc, void *data)
132 {
133     DeviceClass *dc = DEVICE_CLASS(oc);
134     CPUClass *cc = CPU_CLASS(oc);
135     XtensaCPUClass *xcc = XTENSA_CPU_CLASS(cc);
136
137     xcc->parent_realize = dc->realize;
138     dc->realize = xtensa_cpu_realizefn;
139
140     xcc->parent_reset = cc->reset;
141     cc->reset = xtensa_cpu_reset;
142
143     cc->class_by_name = xtensa_cpu_class_by_name;
144     cc->has_work = xtensa_cpu_has_work;
145     cc->do_interrupt = xtensa_cpu_do_interrupt;
146     cc->cpu_exec_interrupt = xtensa_cpu_exec_interrupt;
147     cc->dump_state = xtensa_cpu_dump_state;
148     cc->set_pc = xtensa_cpu_set_pc;
149     cc->gdb_read_register = xtensa_cpu_gdb_read_register;
150     cc->gdb_write_register = xtensa_cpu_gdb_write_register;
151     cc->gdb_stop_before_watchpoint = true;
152 #ifndef CONFIG_USER_ONLY
153     cc->do_unaligned_access = xtensa_cpu_do_unaligned_access;
154     cc->get_phys_page_debug = xtensa_cpu_get_phys_page_debug;
155     cc->do_unassigned_access = xtensa_cpu_do_unassigned_access;
156 #endif
157     cc->debug_excp_handler = xtensa_breakpoint_handler;
158     dc->vmsd = &vmstate_xtensa_cpu;
159
160     /*
161      * Reason: xtensa_cpu_initfn() calls cpu_exec_init(), which saves
162      * the object in cpus -> dangling pointer after final
163      * object_unref().
164      */
165     dc->cannot_destroy_with_object_finalize_yet = true;
166 }
167
168 static const TypeInfo xtensa_cpu_type_info = {
169     .name = TYPE_XTENSA_CPU,
170     .parent = TYPE_CPU,
171     .instance_size = sizeof(XtensaCPU),
172     .instance_init = xtensa_cpu_initfn,
173     .abstract = true,
174     .class_size = sizeof(XtensaCPUClass),
175     .class_init = xtensa_cpu_class_init,
176 };
177
178 static void xtensa_cpu_register_types(void)
179 {
180     type_register_static(&xtensa_cpu_type_info);
181 }
182
183 type_init(xtensa_cpu_register_types)
This page took 0.034793 seconds and 4 git commands to generate.