2007-09-16 21:08:06 +00:00
|
|
|
/*
|
2006-04-09 01:32:52 +00:00
|
|
|
* Generic ARM Programmable Interrupt Controller support.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 CodeSourcery.
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
2011-06-26 02:21:35 +00:00
|
|
|
* This code is licensed under the LGPL
|
2006-04-09 01:32:52 +00:00
|
|
|
*/
|
|
|
|
|
2007-11-17 17:14:51 +00:00
|
|
|
#include "hw.h"
|
|
|
|
#include "arm-misc.h"
|
2006-04-09 01:32:52 +00:00
|
|
|
|
2007-04-07 18:14:41 +00:00
|
|
|
/* Input 0 is IRQ and input 1 is FIQ. */
|
2006-04-09 01:32:52 +00:00
|
|
|
static void arm_pic_cpu_handler(void *opaque, int irq, int level)
|
|
|
|
{
|
2007-04-07 18:14:41 +00:00
|
|
|
CPUState *env = (CPUState *)opaque;
|
2006-04-09 01:32:52 +00:00
|
|
|
switch (irq) {
|
|
|
|
case ARM_PIC_CPU_IRQ:
|
|
|
|
if (level)
|
2007-04-07 18:14:41 +00:00
|
|
|
cpu_interrupt(env, CPU_INTERRUPT_HARD);
|
2006-04-09 01:32:52 +00:00
|
|
|
else
|
2007-04-07 18:14:41 +00:00
|
|
|
cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
|
2006-04-09 01:32:52 +00:00
|
|
|
break;
|
|
|
|
case ARM_PIC_CPU_FIQ:
|
|
|
|
if (level)
|
2007-04-07 18:14:41 +00:00
|
|
|
cpu_interrupt(env, CPU_INTERRUPT_FIQ);
|
2006-04-09 01:32:52 +00:00
|
|
|
else
|
2007-04-07 18:14:41 +00:00
|
|
|
cpu_reset_interrupt(env, CPU_INTERRUPT_FIQ);
|
2006-04-09 01:32:52 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-10-09 23:27:01 +00:00
|
|
|
hw_error("arm_pic_cpu_handler: Bad interrupt line %d\n", irq);
|
2006-04-09 01:32:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-07 18:14:41 +00:00
|
|
|
qemu_irq *arm_pic_init_cpu(CPUState *env)
|
2006-04-09 01:32:52 +00:00
|
|
|
{
|
2007-04-07 18:14:41 +00:00
|
|
|
return qemu_allocate_irqs(arm_pic_cpu_handler, env, 2);
|
2006-04-09 01:32:52 +00:00
|
|
|
}
|