xref: /qemu/target/alpha/cpu.c (revision eb9b25c6565d8c49a0db40f65a8a1f7932e81ff5)
1 /*
2  * QEMU Alpha CPU
3  *
4  * Copyright (c) 2007 Jocelyn Mayer
5  * Copyright (c) 2012 SUSE LINUX Products GmbH
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, see
19  * <http://www.gnu.org/licenses/lgpl-2.1.html>
20  */
21 
22 #include "qemu/osdep.h"
23 #include "qapi/error.h"
24 #include "qemu/qemu-print.h"
25 #include "cpu.h"
26 #include "exec/exec-all.h"
27 #include "exec/translation-block.h"
28 #include "fpu/softfloat.h"
29 
30 
31 static void alpha_cpu_set_pc(CPUState *cs, vaddr value)
32 {
33     CPUAlphaState *env = cpu_env(cs);
34     env->pc = value;
35 }
36 
37 static vaddr alpha_cpu_get_pc(CPUState *cs)
38 {
39     CPUAlphaState *env = cpu_env(cs);
40     return env->pc;
41 }
42 
43 static void alpha_cpu_synchronize_from_tb(CPUState *cs,
44                                           const TranslationBlock *tb)
45 {
46     /* The program counter is always up to date with CF_PCREL. */
47     if (!(tb_cflags(tb) & CF_PCREL)) {
48         CPUAlphaState *env = cpu_env(cs);
49         env->pc = tb->pc;
50     }
51 }
52 
53 static void alpha_restore_state_to_opc(CPUState *cs,
54                                        const TranslationBlock *tb,
55                                        const uint64_t *data)
56 {
57     CPUAlphaState *env = cpu_env(cs);
58 
59     if (tb_cflags(tb) & CF_PCREL) {
60         env->pc = (env->pc & TARGET_PAGE_MASK) | data[0];
61     } else {
62         env->pc = data[0];
63     }
64 }
65 
66 static bool alpha_cpu_has_work(CPUState *cs)
67 {
68     /* Here we are checking to see if the CPU should wake up from HALT.
69        We will have gotten into this state only for WTINT from PALmode.  */
70     /* ??? I'm not sure how the IPL state works with WTINT to keep a CPU
71        asleep even if (some) interrupts have been asserted.  For now,
72        assume that if a CPU really wants to stay asleep, it will mask
73        interrupts at the chipset level, which will prevent these bits
74        from being set in the first place.  */
75     return cs->interrupt_request & (CPU_INTERRUPT_HARD
76                                     | CPU_INTERRUPT_TIMER
77                                     | CPU_INTERRUPT_SMP
78                                     | CPU_INTERRUPT_MCHK);
79 }
80 
81 static int alpha_cpu_mmu_index(CPUState *cs, bool ifetch)
82 {
83     return alpha_env_mmu_index(cpu_env(cs));
84 }
85 
86 static void alpha_cpu_disas_set_info(CPUState *cpu, disassemble_info *info)
87 {
88     info->endian = BFD_ENDIAN_LITTLE;
89     info->mach = bfd_mach_alpha_ev6;
90     info->print_insn = print_insn_alpha;
91 }
92 
93 static void alpha_cpu_realizefn(DeviceState *dev, Error **errp)
94 {
95     CPUState *cs = CPU(dev);
96     AlphaCPUClass *acc = ALPHA_CPU_GET_CLASS(dev);
97     Error *local_err = NULL;
98 
99 #ifndef CONFIG_USER_ONLY
100     /* Use pc-relative instructions in system-mode */
101     cs->tcg_cflags |= CF_PCREL;
102 #endif
103 
104     cpu_exec_realizefn(cs, &local_err);
105     if (local_err != NULL) {
106         error_propagate(errp, local_err);
107         return;
108     }
109 
110     qemu_init_vcpu(cs);
111 
112     acc->parent_realize(dev, errp);
113 }
114 
115 /* Models */
116 typedef struct AlphaCPUAlias {
117     const char *alias;
118     const char *typename;
119 } AlphaCPUAlias;
120 
121 static const AlphaCPUAlias alpha_cpu_aliases[] = {
122     { "21064",   ALPHA_CPU_TYPE_NAME("ev4") },
123     { "21164",   ALPHA_CPU_TYPE_NAME("ev5") },
124     { "21164a",  ALPHA_CPU_TYPE_NAME("ev56") },
125     { "21164pc", ALPHA_CPU_TYPE_NAME("pca56") },
126     { "21264",   ALPHA_CPU_TYPE_NAME("ev6") },
127     { "21264a",  ALPHA_CPU_TYPE_NAME("ev67") },
128 };
129 
130 static ObjectClass *alpha_cpu_class_by_name(const char *cpu_model)
131 {
132     ObjectClass *oc;
133     char *typename;
134     int i;
135 
136     oc = object_class_by_name(cpu_model);
137     if (oc != NULL && object_class_dynamic_cast(oc, TYPE_ALPHA_CPU) != NULL) {
138         return oc;
139     }
140 
141     for (i = 0; i < ARRAY_SIZE(alpha_cpu_aliases); i++) {
142         if (strcmp(cpu_model, alpha_cpu_aliases[i].alias) == 0) {
143             oc = object_class_by_name(alpha_cpu_aliases[i].typename);
144             assert(oc != NULL && !object_class_is_abstract(oc));
145             return oc;
146         }
147     }
148 
149     typename = g_strdup_printf(ALPHA_CPU_TYPE_NAME("%s"), cpu_model);
150     oc = object_class_by_name(typename);
151     g_free(typename);
152 
153     return oc;
154 }
155 
156 static void ev4_cpu_initfn(Object *obj)
157 {
158     cpu_env(CPU(obj))->implver = IMPLVER_2106x;
159 }
160 
161 static void ev5_cpu_initfn(Object *obj)
162 {
163     cpu_env(CPU(obj))->implver = IMPLVER_21164;
164 }
165 
166 static void ev56_cpu_initfn(Object *obj)
167 {
168     cpu_env(CPU(obj))->amask |= AMASK_BWX;
169 }
170 
171 static void pca56_cpu_initfn(Object *obj)
172 {
173     cpu_env(CPU(obj))->amask |= AMASK_MVI;
174 }
175 
176 static void ev6_cpu_initfn(Object *obj)
177 {
178     CPUAlphaState *env = cpu_env(CPU(obj));
179 
180     env->implver = IMPLVER_21264;
181     env->amask = AMASK_BWX | AMASK_FIX | AMASK_MVI | AMASK_TRAP;
182 }
183 
184 static void ev67_cpu_initfn(Object *obj)
185 {
186     cpu_env(CPU(obj))->amask |= AMASK_CIX | AMASK_PREFETCH;
187 }
188 
189 static void alpha_cpu_initfn(Object *obj)
190 {
191     CPUAlphaState *env = cpu_env(CPU(obj));
192 
193     /* TODO all this should be done in reset, not init */
194 
195     env->lock_addr = -1;
196 
197     /*
198      * TODO: this is incorrect. The Alpha Architecture Handbook version 4
199      * describes NaN propagation in section 4.7.10.4. We should prefer
200      * the operand in Fb (whether it is a QNaN or an SNaN), then the
201      * operand in Fa. That is float_2nan_prop_ba.
202      */
203     set_float_2nan_prop_rule(float_2nan_prop_x87, &env->fp_status);
204     /* Default NaN: sign bit clear, msb frac bit set */
205     set_float_default_nan_pattern(0b01000000, &env->fp_status);
206     /*
207      * TODO: this is incorrect. The Alpha Architecture Handbook version 4
208      * section 4.7.7.11 says that we flush to zero for underflow cases, so
209      * this should be float_ftz_after_rounding to match the
210      * tininess_after_rounding (which is specified in section 4.7.5).
211      */
212     set_float_ftz_detection(float_ftz_before_rounding, &env->fp_status);
213 #if defined(CONFIG_USER_ONLY)
214     env->flags = ENV_FLAG_PS_USER | ENV_FLAG_FEN;
215     cpu_alpha_store_fpcr(env, (uint64_t)(FPCR_INVD | FPCR_DZED | FPCR_OVFD
216                                          | FPCR_UNFD | FPCR_INED | FPCR_DNOD
217                                          | FPCR_DYN_NORMAL) << 32);
218 #else
219     env->flags = ENV_FLAG_PAL_MODE | ENV_FLAG_FEN;
220 #endif
221 }
222 
223 #ifndef CONFIG_USER_ONLY
224 #include "hw/core/sysemu-cpu-ops.h"
225 
226 static const struct SysemuCPUOps alpha_sysemu_ops = {
227     .get_phys_page_debug = alpha_cpu_get_phys_page_debug,
228 };
229 #endif
230 
231 #include "accel/tcg/cpu-ops.h"
232 
233 static const TCGCPUOps alpha_tcg_ops = {
234     .initialize = alpha_translate_init,
235     .translate_code = alpha_translate_code,
236     .synchronize_from_tb = alpha_cpu_synchronize_from_tb,
237     .restore_state_to_opc = alpha_restore_state_to_opc,
238 
239 #ifdef CONFIG_USER_ONLY
240     .record_sigsegv = alpha_cpu_record_sigsegv,
241     .record_sigbus = alpha_cpu_record_sigbus,
242 #else
243     .tlb_fill = alpha_cpu_tlb_fill,
244     .cpu_exec_interrupt = alpha_cpu_exec_interrupt,
245     .cpu_exec_halt = alpha_cpu_has_work,
246     .do_interrupt = alpha_cpu_do_interrupt,
247     .do_transaction_failed = alpha_cpu_do_transaction_failed,
248     .do_unaligned_access = alpha_cpu_do_unaligned_access,
249 #endif /* !CONFIG_USER_ONLY */
250 };
251 
252 static void alpha_cpu_class_init(ObjectClass *oc, void *data)
253 {
254     DeviceClass *dc = DEVICE_CLASS(oc);
255     CPUClass *cc = CPU_CLASS(oc);
256     AlphaCPUClass *acc = ALPHA_CPU_CLASS(oc);
257 
258     device_class_set_parent_realize(dc, alpha_cpu_realizefn,
259                                     &acc->parent_realize);
260 
261     cc->class_by_name = alpha_cpu_class_by_name;
262     cc->has_work = alpha_cpu_has_work;
263     cc->mmu_index = alpha_cpu_mmu_index;
264     cc->dump_state = alpha_cpu_dump_state;
265     cc->set_pc = alpha_cpu_set_pc;
266     cc->get_pc = alpha_cpu_get_pc;
267     cc->gdb_read_register = alpha_cpu_gdb_read_register;
268     cc->gdb_write_register = alpha_cpu_gdb_write_register;
269 #ifndef CONFIG_USER_ONLY
270     dc->vmsd = &vmstate_alpha_cpu;
271     cc->sysemu_ops = &alpha_sysemu_ops;
272 #endif
273     cc->disas_set_info = alpha_cpu_disas_set_info;
274 
275     cc->tcg_ops = &alpha_tcg_ops;
276     cc->gdb_num_core_regs = 67;
277 }
278 
279 #define DEFINE_ALPHA_CPU_TYPE(base_type, cpu_model, initfn) \
280      {                                                      \
281          .parent = base_type,                               \
282          .instance_init = initfn,                           \
283          .name = ALPHA_CPU_TYPE_NAME(cpu_model),            \
284      }
285 
286 static const TypeInfo alpha_cpu_type_infos[] = {
287     {
288         .name = TYPE_ALPHA_CPU,
289         .parent = TYPE_CPU,
290         .instance_size = sizeof(AlphaCPU),
291         .instance_align = __alignof(AlphaCPU),
292         .instance_init = alpha_cpu_initfn,
293         .abstract = true,
294         .class_size = sizeof(AlphaCPUClass),
295         .class_init = alpha_cpu_class_init,
296     },
297     DEFINE_ALPHA_CPU_TYPE(TYPE_ALPHA_CPU, "ev4", ev4_cpu_initfn),
298     DEFINE_ALPHA_CPU_TYPE(TYPE_ALPHA_CPU, "ev5", ev5_cpu_initfn),
299     DEFINE_ALPHA_CPU_TYPE(ALPHA_CPU_TYPE_NAME("ev5"), "ev56", ev56_cpu_initfn),
300     DEFINE_ALPHA_CPU_TYPE(ALPHA_CPU_TYPE_NAME("ev56"), "pca56",
301                           pca56_cpu_initfn),
302     DEFINE_ALPHA_CPU_TYPE(TYPE_ALPHA_CPU, "ev6", ev6_cpu_initfn),
303     DEFINE_ALPHA_CPU_TYPE(ALPHA_CPU_TYPE_NAME("ev6"), "ev67", ev67_cpu_initfn),
304     DEFINE_ALPHA_CPU_TYPE(ALPHA_CPU_TYPE_NAME("ev67"), "ev68", NULL),
305 };
306 
307 DEFINE_TYPES(alpha_cpu_type_infos)
308