Make it safe to use 64 bits GPR and/or 64 bits host registers.
[qemu/mini2440.git] / hw / mips_int.c
blob93d599fc6022602cbb34f5e2f044eccf02ce0d73
1 #include "vl.h"
2 #include "cpu.h"
4 /* Raise IRQ to CPU if necessary. It must be called every time the active
5 IRQ may change */
6 void cpu_mips_update_irq(CPUState *env)
8 if ((env->CP0_Status & env->CP0_Cause & CP0Ca_IP_mask) &&
9 (env->CP0_Status & (1 << CP0St_IE)) &&
10 !(env->hflags & MIPS_HFLAG_EXL) &&
11 !(env->hflags & MIPS_HFLAG_ERL) &&
12 !(env->hflags & MIPS_HFLAG_DM)) {
13 if (! (env->interrupt_request & CPU_INTERRUPT_HARD)) {
14 cpu_interrupt(env, CPU_INTERRUPT_HARD);
16 } else {
17 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
21 void cpu_mips_irq_request(void *opaque, int irq, int level)
23 CPUState *env = first_cpu;
25 uint32_t mask;
27 if (irq >= 16)
28 return;
30 mask = 1 << (irq + CP0Ca_IP);
32 if (level) {
33 env->CP0_Cause |= mask;
34 } else {
35 env->CP0_Cause &= ~mask;
37 cpu_mips_update_irq(env);