Replace tabs by 8 spaces. No code change, by Herve Poussineau.
[qemu/dscho.git] / hw / arm_pic.h
blob6c5ed1758bc4661b726eba116388b09e9128b36e
1 /*
2 * Generic ARM Programmable Interrupt Controller support.
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licenced under the LGPL.
9 * Arm hardware uses a wide variety of interrupt handling hardware.
10 * This provides a generic framework for connecting interrupt sources and
11 * inputs.
14 #ifndef ARM_INTERRUPT_H
15 #define ARM_INTERRUPT_H 1
17 /* The CPU is also modeled as an interrupt controller. */
18 #define ARM_PIC_CPU_IRQ 0
19 #define ARM_PIC_CPU_FIQ 1
20 qemu_irq *arm_pic_init_cpu(CPUState *env);
22 #endif /* !ARM_INTERRUPT_H */