target-arm: Handle UNDEF and UNPREDICTABLE cases for VLDM, VSTM
[qemu.git] / hw / mips_int.c
blob477f6abf950e8e3b2927257076e5b3541d0d3c2f
1 /*
2 * QEMU MIPS interrupt support
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 * THE SOFTWARE.
23 #include "hw.h"
24 #include "mips_cpudevs.h"
25 #include "cpu.h"
27 static void cpu_mips_irq_request(void *opaque, int irq, int level)
29 CPUState *env = (CPUState *)opaque;
31 if (irq < 0 || irq > 7)
32 return;
34 if (level) {
35 env->CP0_Cause |= 1 << (irq + CP0Ca_IP);
36 } else {
37 env->CP0_Cause &= ~(1 << (irq + CP0Ca_IP));
40 if (env->CP0_Cause & CP0Ca_IP_mask) {
41 cpu_interrupt(env, CPU_INTERRUPT_HARD);
42 } else {
43 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
47 void cpu_mips_irq_init_cpu(CPUState *env)
49 qemu_irq *qi;
50 int i;
52 qi = qemu_allocate_irqs(cpu_mips_irq_request, env, 8);
53 for (i = 0; i < 8; i++) {
54 env->irq[i] = qi[i];
58 void cpu_mips_soft_irq(CPUState *env, int irq, int level)
60 if (irq < 0 || irq > 2) {
61 return;
64 qemu_set_irq(env->irq[irq], level);