ui: convert common input code to keycodemapdb
[qemu/ar7.git] / target / nios2 / cpu.c
blob5b02fb67ea04e967ce3c917cb8be10aaf8a7b947
1 /*
2 * QEMU Nios II CPU
4 * Copyright (c) 2012 Chris Wulff <crwulff@gmail.com>
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 "qemu/osdep.h"
22 #include "qemu-common.h"
23 #include "qapi/error.h"
24 #include "cpu.h"
25 #include "exec/log.h"
26 #include "exec/gdbstub.h"
27 #include "hw/qdev-properties.h"
29 static void nios2_cpu_set_pc(CPUState *cs, vaddr value)
31 Nios2CPU *cpu = NIOS2_CPU(cs);
32 CPUNios2State *env = &cpu->env;
34 env->regs[R_PC] = value;
37 static bool nios2_cpu_has_work(CPUState *cs)
39 return cs->interrupt_request & (CPU_INTERRUPT_HARD | CPU_INTERRUPT_NMI);
42 /* CPUClass::reset() */
43 static void nios2_cpu_reset(CPUState *cs)
45 Nios2CPU *cpu = NIOS2_CPU(cs);
46 Nios2CPUClass *ncc = NIOS2_CPU_GET_CLASS(cpu);
47 CPUNios2State *env = &cpu->env;
49 if (qemu_loglevel_mask(CPU_LOG_RESET)) {
50 qemu_log("CPU Reset (CPU %d)\n", cs->cpu_index);
51 log_cpu_state(cs, 0);
54 ncc->parent_reset(cs);
56 memset(env->regs, 0, sizeof(uint32_t) * NUM_CORE_REGS);
57 env->regs[R_PC] = cpu->reset_addr;
59 #if defined(CONFIG_USER_ONLY)
60 /* Start in user mode with interrupts enabled. */
61 env->regs[CR_STATUS] = CR_STATUS_U | CR_STATUS_PIE;
62 #else
63 env->regs[CR_STATUS] = 0;
64 #endif
67 static void nios2_cpu_initfn(Object *obj)
69 CPUState *cs = CPU(obj);
70 Nios2CPU *cpu = NIOS2_CPU(obj);
71 CPUNios2State *env = &cpu->env;
72 static bool tcg_initialized;
74 cs->env_ptr = env;
76 #if !defined(CONFIG_USER_ONLY)
77 mmu_init(env);
78 #endif
80 if (tcg_enabled() && !tcg_initialized) {
81 tcg_initialized = true;
82 nios2_tcg_init();
86 static ObjectClass *nios2_cpu_class_by_name(const char *cpu_model)
88 return object_class_by_name(TYPE_NIOS2_CPU);
91 static void nios2_cpu_realizefn(DeviceState *dev, Error **errp)
93 CPUState *cs = CPU(dev);
94 Nios2CPUClass *ncc = NIOS2_CPU_GET_CLASS(dev);
95 Error *local_err = NULL;
97 cpu_exec_realizefn(cs, &local_err);
98 if (local_err != NULL) {
99 error_propagate(errp, local_err);
100 return;
103 qemu_init_vcpu(cs);
104 cpu_reset(cs);
106 ncc->parent_realize(dev, errp);
109 static bool nios2_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
111 Nios2CPU *cpu = NIOS2_CPU(cs);
112 CPUNios2State *env = &cpu->env;
114 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
115 (env->regs[CR_STATUS] & CR_STATUS_PIE)) {
116 cs->exception_index = EXCP_IRQ;
117 nios2_cpu_do_interrupt(cs);
118 return true;
120 return false;
124 static void nios2_cpu_disas_set_info(CPUState *cpu, disassemble_info *info)
126 /* NOTE: NiosII R2 is not supported yet. */
127 info->mach = bfd_arch_nios2;
128 #ifdef TARGET_WORDS_BIGENDIAN
129 info->print_insn = print_insn_big_nios2;
130 #else
131 info->print_insn = print_insn_little_nios2;
132 #endif
135 static int nios2_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n)
137 Nios2CPU *cpu = NIOS2_CPU(cs);
138 CPUClass *cc = CPU_GET_CLASS(cs);
139 CPUNios2State *env = &cpu->env;
141 if (n > cc->gdb_num_core_regs) {
142 return 0;
145 if (n < 32) { /* GP regs */
146 return gdb_get_reg32(mem_buf, env->regs[n]);
147 } else if (n == 32) { /* PC */
148 return gdb_get_reg32(mem_buf, env->regs[R_PC]);
149 } else if (n < 49) { /* Status regs */
150 return gdb_get_reg32(mem_buf, env->regs[n - 1]);
153 /* Invalid regs */
154 return 0;
157 static int nios2_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
159 Nios2CPU *cpu = NIOS2_CPU(cs);
160 CPUClass *cc = CPU_GET_CLASS(cs);
161 CPUNios2State *env = &cpu->env;
163 if (n > cc->gdb_num_core_regs) {
164 return 0;
167 if (n < 32) { /* GP regs */
168 env->regs[n] = ldl_p(mem_buf);
169 } else if (n == 32) { /* PC */
170 env->regs[R_PC] = ldl_p(mem_buf);
171 } else if (n < 49) { /* Status regs */
172 env->regs[n - 1] = ldl_p(mem_buf);
175 return 4;
178 static Property nios2_properties[] = {
179 DEFINE_PROP_BOOL("mmu_present", Nios2CPU, mmu_present, true),
180 /* ALTR,pid-num-bits */
181 DEFINE_PROP_UINT32("mmu_pid_num_bits", Nios2CPU, pid_num_bits, 8),
182 /* ALTR,tlb-num-ways */
183 DEFINE_PROP_UINT32("mmu_tlb_num_ways", Nios2CPU, tlb_num_ways, 16),
184 /* ALTR,tlb-num-entries */
185 DEFINE_PROP_UINT32("mmu_pid_num_entries", Nios2CPU, tlb_num_entries, 256),
186 DEFINE_PROP_END_OF_LIST(),
190 static void nios2_cpu_class_init(ObjectClass *oc, void *data)
192 DeviceClass *dc = DEVICE_CLASS(oc);
193 CPUClass *cc = CPU_CLASS(oc);
194 Nios2CPUClass *ncc = NIOS2_CPU_CLASS(oc);
196 ncc->parent_realize = dc->realize;
197 dc->realize = nios2_cpu_realizefn;
198 dc->props = nios2_properties;
199 ncc->parent_reset = cc->reset;
200 cc->reset = nios2_cpu_reset;
202 cc->class_by_name = nios2_cpu_class_by_name;
203 cc->has_work = nios2_cpu_has_work;
204 cc->do_interrupt = nios2_cpu_do_interrupt;
205 cc->cpu_exec_interrupt = nios2_cpu_exec_interrupt;
206 cc->dump_state = nios2_cpu_dump_state;
207 cc->set_pc = nios2_cpu_set_pc;
208 cc->disas_set_info = nios2_cpu_disas_set_info;
209 #ifdef CONFIG_USER_ONLY
210 cc->handle_mmu_fault = nios2_cpu_handle_mmu_fault;
211 #else
212 cc->do_unaligned_access = nios2_cpu_do_unaligned_access;
213 cc->get_phys_page_debug = nios2_cpu_get_phys_page_debug;
214 #endif
215 cc->gdb_read_register = nios2_cpu_gdb_read_register;
216 cc->gdb_write_register = nios2_cpu_gdb_write_register;
217 cc->gdb_num_core_regs = 49;
220 static const TypeInfo nios2_cpu_type_info = {
221 .name = TYPE_NIOS2_CPU,
222 .parent = TYPE_CPU,
223 .instance_size = sizeof(Nios2CPU),
224 .instance_init = nios2_cpu_initfn,
225 .class_size = sizeof(Nios2CPUClass),
226 .class_init = nios2_cpu_class_init,
229 static void nios2_cpu_register_types(void)
231 type_register_static(&nios2_cpu_type_info);
234 type_init(nios2_cpu_register_types)