hw/arm/virt: formatting: memory map
[qemu/ar7.git] / target-mips / cpu.c
blobb3e0e6cce7b6d6a606c4ff05585e01cbe9fc7cfd
1 /*
2 * QEMU MIPS CPU
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see
18 * <http://www.gnu.org/licenses/lgpl-2.1.html>
21 #include "cpu.h"
22 #include "kvm_mips.h"
23 #include "qemu-common.h"
24 #include "sysemu/kvm.h"
27 static void mips_cpu_set_pc(CPUState *cs, vaddr value)
29 MIPSCPU *cpu = MIPS_CPU(cs);
30 CPUMIPSState *env = &cpu->env;
32 env->active_tc.PC = value & ~(target_ulong)1;
33 if (value & 1) {
34 env->hflags |= MIPS_HFLAG_M16;
35 } else {
36 env->hflags &= ~(MIPS_HFLAG_M16);
40 static void mips_cpu_synchronize_from_tb(CPUState *cs, TranslationBlock *tb)
42 MIPSCPU *cpu = MIPS_CPU(cs);
43 CPUMIPSState *env = &cpu->env;
45 env->active_tc.PC = tb->pc;
46 env->hflags &= ~MIPS_HFLAG_BMASK;
47 env->hflags |= tb->flags & MIPS_HFLAG_BMASK;
50 static bool mips_cpu_has_work(CPUState *cs)
52 MIPSCPU *cpu = MIPS_CPU(cs);
53 CPUMIPSState *env = &cpu->env;
54 bool has_work = false;
56 /* It is implementation dependent if non-enabled interrupts
57 wake-up the CPU, however most of the implementations only
58 check for interrupts that can be taken. */
59 if ((cs->interrupt_request & CPU_INTERRUPT_HARD) &&
60 cpu_mips_hw_interrupts_pending(env)) {
61 has_work = true;
64 /* MIPS-MT has the ability to halt the CPU. */
65 if (env->CP0_Config3 & (1 << CP0C3_MT)) {
66 /* The QEMU model will issue an _WAKE request whenever the CPUs
67 should be woken up. */
68 if (cs->interrupt_request & CPU_INTERRUPT_WAKE) {
69 has_work = true;
72 if (!mips_vpe_active(env)) {
73 has_work = false;
76 return has_work;
79 /* CPUClass::reset() */
80 static void mips_cpu_reset(CPUState *s)
82 MIPSCPU *cpu = MIPS_CPU(s);
83 MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(cpu);
84 CPUMIPSState *env = &cpu->env;
86 mcc->parent_reset(s);
88 memset(env, 0, offsetof(CPUMIPSState, mvp));
89 tlb_flush(s, 1);
91 cpu_state_reset(env);
93 #ifndef CONFIG_USER_ONLY
94 if (kvm_enabled()) {
95 kvm_mips_reset_vcpu(cpu);
97 #endif
100 static void mips_cpu_realizefn(DeviceState *dev, Error **errp)
102 CPUState *cs = CPU(dev);
103 MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(dev);
105 cpu_reset(cs);
106 qemu_init_vcpu(cs);
108 mcc->parent_realize(dev, errp);
111 static void mips_cpu_initfn(Object *obj)
113 CPUState *cs = CPU(obj);
114 MIPSCPU *cpu = MIPS_CPU(obj);
115 CPUMIPSState *env = &cpu->env;
117 cs->env_ptr = env;
118 cpu_exec_init(env);
120 if (tcg_enabled()) {
121 mips_tcg_init();
125 static void mips_cpu_class_init(ObjectClass *c, void *data)
127 MIPSCPUClass *mcc = MIPS_CPU_CLASS(c);
128 CPUClass *cc = CPU_CLASS(c);
129 DeviceClass *dc = DEVICE_CLASS(c);
131 mcc->parent_realize = dc->realize;
132 dc->realize = mips_cpu_realizefn;
134 mcc->parent_reset = cc->reset;
135 cc->reset = mips_cpu_reset;
137 cc->has_work = mips_cpu_has_work;
138 cc->do_interrupt = mips_cpu_do_interrupt;
139 cc->dump_state = mips_cpu_dump_state;
140 cc->set_pc = mips_cpu_set_pc;
141 cc->synchronize_from_tb = mips_cpu_synchronize_from_tb;
142 cc->gdb_read_register = mips_cpu_gdb_read_register;
143 cc->gdb_write_register = mips_cpu_gdb_write_register;
144 #ifdef CONFIG_USER_ONLY
145 cc->handle_mmu_fault = mips_cpu_handle_mmu_fault;
146 #else
147 cc->do_unassigned_access = mips_cpu_unassigned_access;
148 cc->do_unaligned_access = mips_cpu_do_unaligned_access;
149 cc->get_phys_page_debug = mips_cpu_get_phys_page_debug;
150 #endif
152 cc->gdb_num_core_regs = 73;
155 static const TypeInfo mips_cpu_type_info = {
156 .name = TYPE_MIPS_CPU,
157 .parent = TYPE_CPU,
158 .instance_size = sizeof(MIPSCPU),
159 .instance_init = mips_cpu_initfn,
160 .abstract = false,
161 .class_size = sizeof(MIPSCPUClass),
162 .class_init = mips_cpu_class_init,
165 static void mips_cpu_register_types(void)
167 type_register_static(&mips_cpu_type_info);
170 type_init(mips_cpu_register_types)