]>
Commit | Line | Data |
---|---|---|
e739a48e AF |
1 | /* |
2 | * QEMU CRIS CPU | |
3 | * | |
1c3b52fb AF |
4 | * Copyright (c) 2008 AXIS Communications AB |
5 | * Written by Edgar E. Iglesias. | |
6 | * | |
e739a48e AF |
7 | * Copyright (c) 2012 SUSE LINUX Products GmbH |
8 | * | |
9 | * This library is free software; you can redistribute it and/or | |
10 | * modify it under the terms of the GNU Lesser General Public | |
11 | * License as published by the Free Software Foundation; either | |
12 | * version 2.1 of the License, or (at your option) any later version. | |
13 | * | |
14 | * This library is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 | * Lesser General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU Lesser General Public | |
20 | * License along with this library; if not, see | |
21 | * <http://www.gnu.org/licenses/lgpl-2.1.html> | |
22 | */ | |
23 | ||
24 | #include "cpu.h" | |
25 | #include "qemu-common.h" | |
1c3b52fb | 26 | #include "mmu.h" |
e739a48e AF |
27 | |
28 | ||
f45748f1 AF |
29 | static void cris_cpu_set_pc(CPUState *cs, vaddr value) |
30 | { | |
31 | CRISCPU *cpu = CRIS_CPU(cs); | |
32 | ||
33 | cpu->env.pc = value; | |
34 | } | |
35 | ||
e739a48e AF |
36 | /* CPUClass::reset() */ |
37 | static void cris_cpu_reset(CPUState *s) | |
38 | { | |
39 | CRISCPU *cpu = CRIS_CPU(s); | |
40 | CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(cpu); | |
41 | CPUCRISState *env = &cpu->env; | |
1c3b52fb AF |
42 | uint32_t vr; |
43 | ||
e739a48e AF |
44 | ccc->parent_reset(s); |
45 | ||
1c3b52fb AF |
46 | vr = env->pregs[PR_VR]; |
47 | memset(env, 0, offsetof(CPUCRISState, breakpoints)); | |
48 | env->pregs[PR_VR] = vr; | |
49 | tlb_flush(env, 1); | |
50 | ||
51 | #if defined(CONFIG_USER_ONLY) | |
52 | /* start in user mode with interrupts enabled. */ | |
53 | env->pregs[PR_CCS] |= U_FLAG | I_FLAG | P_FLAG; | |
54 | #else | |
55 | cris_mmu_init(env); | |
56 | env->pregs[PR_CCS] = 0; | |
57 | #endif | |
e739a48e AF |
58 | } |
59 | ||
6ae064fc AF |
60 | static ObjectClass *cris_cpu_class_by_name(const char *cpu_model) |
61 | { | |
62 | ObjectClass *oc; | |
63 | char *typename; | |
64 | ||
65 | if (cpu_model == NULL) { | |
66 | return NULL; | |
67 | } | |
68 | ||
69 | typename = g_strdup_printf("%s-" TYPE_CRIS_CPU, cpu_model); | |
70 | oc = object_class_by_name(typename); | |
71 | g_free(typename); | |
72 | if (oc != NULL && (!object_class_dynamic_cast(oc, TYPE_CRIS_CPU) || | |
73 | object_class_is_abstract(oc))) { | |
74 | oc = NULL; | |
75 | } | |
76 | return oc; | |
77 | } | |
78 | ||
79 | CRISCPU *cpu_cris_init(const char *cpu_model) | |
80 | { | |
81 | CRISCPU *cpu; | |
82 | ObjectClass *oc; | |
83 | ||
84 | oc = cris_cpu_class_by_name(cpu_model); | |
85 | if (oc == NULL) { | |
86 | return NULL; | |
87 | } | |
88 | cpu = CRIS_CPU(object_new(object_class_get_name(oc))); | |
89 | ||
90 | object_property_set_bool(OBJECT(cpu), true, "realized", NULL); | |
91 | ||
92 | return cpu; | |
93 | } | |
94 | ||
95 | /* Sort alphabetically by VR. */ | |
96 | static gint cris_cpu_list_compare(gconstpointer a, gconstpointer b) | |
97 | { | |
98 | CRISCPUClass *ccc_a = CRIS_CPU_CLASS(a); | |
99 | CRISCPUClass *ccc_b = CRIS_CPU_CLASS(b); | |
100 | ||
101 | /* */ | |
102 | if (ccc_a->vr > ccc_b->vr) { | |
103 | return 1; | |
104 | } else if (ccc_a->vr < ccc_b->vr) { | |
105 | return -1; | |
106 | } else { | |
107 | return 0; | |
108 | } | |
109 | } | |
110 | ||
111 | static void cris_cpu_list_entry(gpointer data, gpointer user_data) | |
112 | { | |
113 | ObjectClass *oc = data; | |
114 | CPUListState *s = user_data; | |
115 | const char *typename = object_class_get_name(oc); | |
116 | char *name; | |
117 | ||
118 | name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_CRIS_CPU)); | |
119 | (*s->cpu_fprintf)(s->file, " %s\n", name); | |
120 | g_free(name); | |
121 | } | |
122 | ||
123 | void cris_cpu_list(FILE *f, fprintf_function cpu_fprintf) | |
124 | { | |
125 | CPUListState s = { | |
126 | .file = f, | |
127 | .cpu_fprintf = cpu_fprintf, | |
128 | }; | |
129 | GSList *list; | |
130 | ||
131 | list = object_class_get_list(TYPE_CRIS_CPU, false); | |
132 | list = g_slist_sort(list, cris_cpu_list_compare); | |
133 | (*cpu_fprintf)(f, "Available CPUs:\n"); | |
134 | g_slist_foreach(list, cris_cpu_list_entry, &s); | |
135 | g_slist_free(list); | |
136 | } | |
137 | ||
ca45f8b0 AF |
138 | static void cris_cpu_realizefn(DeviceState *dev, Error **errp) |
139 | { | |
14a10fc3 | 140 | CPUState *cs = CPU(dev); |
ca45f8b0 AF |
141 | CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(dev); |
142 | ||
14a10fc3 AF |
143 | cpu_reset(cs); |
144 | qemu_init_vcpu(cs); | |
ca45f8b0 AF |
145 | |
146 | ccc->parent_realize(dev, errp); | |
147 | } | |
148 | ||
aa0d1267 AF |
149 | static void cris_cpu_initfn(Object *obj) |
150 | { | |
c05efcb1 | 151 | CPUState *cs = CPU(obj); |
aa0d1267 | 152 | CRISCPU *cpu = CRIS_CPU(obj); |
6ae064fc | 153 | CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(obj); |
aa0d1267 | 154 | CPUCRISState *env = &cpu->env; |
d1a94fec | 155 | static bool tcg_initialized; |
aa0d1267 | 156 | |
c05efcb1 | 157 | cs->env_ptr = env; |
aa0d1267 | 158 | cpu_exec_init(env); |
d1a94fec | 159 | |
6ae064fc AF |
160 | env->pregs[PR_VR] = ccc->vr; |
161 | ||
d1a94fec AF |
162 | if (tcg_enabled() && !tcg_initialized) { |
163 | tcg_initialized = true; | |
164 | if (env->pregs[PR_VR] < 32) { | |
165 | cris_initialize_crisv10_tcg(); | |
166 | } else { | |
167 | cris_initialize_tcg(); | |
168 | } | |
169 | } | |
aa0d1267 AF |
170 | } |
171 | ||
6ae064fc AF |
172 | static void crisv8_cpu_class_init(ObjectClass *oc, void *data) |
173 | { | |
b21bfeea | 174 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
175 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
176 | ||
177 | ccc->vr = 8; | |
b21bfeea | 178 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 179 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
180 | } |
181 | ||
182 | static void crisv9_cpu_class_init(ObjectClass *oc, void *data) | |
183 | { | |
b21bfeea | 184 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
185 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
186 | ||
187 | ccc->vr = 9; | |
b21bfeea | 188 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 189 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
190 | } |
191 | ||
192 | static void crisv10_cpu_class_init(ObjectClass *oc, void *data) | |
193 | { | |
b21bfeea | 194 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
195 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
196 | ||
197 | ccc->vr = 10; | |
b21bfeea | 198 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 199 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
200 | } |
201 | ||
202 | static void crisv11_cpu_class_init(ObjectClass *oc, void *data) | |
203 | { | |
b21bfeea | 204 | CPUClass *cc = CPU_CLASS(oc); |
6ae064fc AF |
205 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); |
206 | ||
207 | ccc->vr = 11; | |
b21bfeea | 208 | cc->do_interrupt = crisv10_cpu_do_interrupt; |
90431220 | 209 | cc->gdb_read_register = crisv10_cpu_gdb_read_register; |
6ae064fc AF |
210 | } |
211 | ||
212 | static void crisv32_cpu_class_init(ObjectClass *oc, void *data) | |
213 | { | |
214 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); | |
215 | ||
216 | ccc->vr = 32; | |
217 | } | |
218 | ||
219 | #define TYPE(model) model "-" TYPE_CRIS_CPU | |
220 | ||
221 | static const TypeInfo cris_cpu_model_type_infos[] = { | |
222 | { | |
223 | .name = TYPE("crisv8"), | |
224 | .parent = TYPE_CRIS_CPU, | |
225 | .class_init = crisv8_cpu_class_init, | |
226 | }, { | |
227 | .name = TYPE("crisv9"), | |
228 | .parent = TYPE_CRIS_CPU, | |
229 | .class_init = crisv9_cpu_class_init, | |
230 | }, { | |
231 | .name = TYPE("crisv10"), | |
232 | .parent = TYPE_CRIS_CPU, | |
233 | .class_init = crisv10_cpu_class_init, | |
234 | }, { | |
235 | .name = TYPE("crisv11"), | |
236 | .parent = TYPE_CRIS_CPU, | |
237 | .class_init = crisv11_cpu_class_init, | |
238 | }, { | |
239 | .name = TYPE("crisv32"), | |
240 | .parent = TYPE_CRIS_CPU, | |
241 | .class_init = crisv32_cpu_class_init, | |
242 | } | |
243 | }; | |
244 | ||
245 | #undef TYPE | |
246 | ||
e739a48e AF |
247 | static void cris_cpu_class_init(ObjectClass *oc, void *data) |
248 | { | |
ca45f8b0 | 249 | DeviceClass *dc = DEVICE_CLASS(oc); |
e739a48e AF |
250 | CPUClass *cc = CPU_CLASS(oc); |
251 | CRISCPUClass *ccc = CRIS_CPU_CLASS(oc); | |
252 | ||
ca45f8b0 AF |
253 | ccc->parent_realize = dc->realize; |
254 | dc->realize = cris_cpu_realizefn; | |
255 | ||
e739a48e AF |
256 | ccc->parent_reset = cc->reset; |
257 | cc->reset = cris_cpu_reset; | |
6ae064fc AF |
258 | |
259 | cc->class_by_name = cris_cpu_class_by_name; | |
97a8ea5a | 260 | cc->do_interrupt = cris_cpu_do_interrupt; |
878096ee | 261 | cc->dump_state = cris_cpu_dump_state; |
f45748f1 | 262 | cc->set_pc = cris_cpu_set_pc; |
5b50e790 AF |
263 | cc->gdb_read_register = cris_cpu_gdb_read_register; |
264 | cc->gdb_write_register = cris_cpu_gdb_write_register; | |
00b941e5 AF |
265 | #ifndef CONFIG_USER_ONLY |
266 | cc->get_phys_page_debug = cris_cpu_get_phys_page_debug; | |
267 | #endif | |
a0e372f0 AF |
268 | |
269 | cc->gdb_num_core_regs = 49; | |
e739a48e AF |
270 | } |
271 | ||
272 | static const TypeInfo cris_cpu_type_info = { | |
273 | .name = TYPE_CRIS_CPU, | |
274 | .parent = TYPE_CPU, | |
275 | .instance_size = sizeof(CRISCPU), | |
aa0d1267 | 276 | .instance_init = cris_cpu_initfn, |
6ae064fc | 277 | .abstract = true, |
e739a48e AF |
278 | .class_size = sizeof(CRISCPUClass), |
279 | .class_init = cris_cpu_class_init, | |
280 | }; | |
281 | ||
282 | static void cris_cpu_register_types(void) | |
283 | { | |
6ae064fc AF |
284 | int i; |
285 | ||
e739a48e | 286 | type_register_static(&cris_cpu_type_info); |
6ae064fc AF |
287 | for (i = 0; i < ARRAY_SIZE(cris_cpu_model_type_infos); i++) { |
288 | type_register_static(&cris_cpu_model_type_infos[i]); | |
289 | } | |
e739a48e AF |
290 | } |
291 | ||
292 | type_init(cris_cpu_register_types) |