summaryrefslogtreecommitdiff
path: root/hw/mips_int.c
blob: 7f9f15305b4e13c662472a0b9847cfd47eeb17e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include "vl.h"
#include "cpu.h"

/* Raise IRQ to CPU if necessary. It must be called every time the active
   IRQ may change */
void cpu_mips_update_irq(CPUState *env)
{
    if ((env->CP0_Status & env->CP0_Cause & CP0Ca_IP_mask) &&
        (env->CP0_Status & (1 << CP0St_IE)) &&
        !(env->hflags & MIPS_HFLAG_EXL) &&
	!(env->hflags & MIPS_HFLAG_ERL) &&
	!(env->hflags & MIPS_HFLAG_DM)) {
        if (! (env->interrupt_request & CPU_INTERRUPT_HARD)) {
            cpu_interrupt(env, CPU_INTERRUPT_HARD);
	}
    } else {
        cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
    }
}

void cpu_mips_irq_request(void *opaque, int irq, int level)
{
    CPUState *env = (CPUState *)opaque;

    if (irq < 0 || irq > 7)
        return;

    if (level) {
        env->CP0_Cause |= 1 << (irq + CP0Ca_IP);
    } else {
        env->CP0_Cause &= ~(1 << (irq +CP0Ca_IP));
    }
    cpu_mips_update_irq(env);
}