[PATCH] I2C: Add support for the LPC47M15x and LPC47M192 chips to smsc47m1
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-parisc / irq.h
blob75654ba9335359b71c61bd2f0369b757e188c196
1 /*
2 * include/asm-parisc/irq.h
4 * Copyright 2005 Matthew Wilcox <matthew@wil.cx>
5 */
7 #ifndef _ASM_PARISC_IRQ_H
8 #define _ASM_PARISC_IRQ_H
10 #include <linux/config.h>
11 #include <asm/types.h>
13 #define NO_IRQ (-1)
15 #ifdef CONFIG_GSC
16 #define GSC_IRQ_BASE 16
17 #define GSC_IRQ_MAX 63
18 #define CPU_IRQ_BASE 64
19 #else
20 #define CPU_IRQ_BASE 16
21 #endif
23 #define TIMER_IRQ (CPU_IRQ_BASE + 0)
24 #define IPI_IRQ (CPU_IRQ_BASE + 1)
25 #define CPU_IRQ_MAX (CPU_IRQ_BASE + (BITS_PER_LONG - 1))
27 #define NR_IRQS (CPU_IRQ_MAX + 1)
29 static __inline__ int irq_canonicalize(int irq)
31 return (irq == 2) ? 9 : irq;
34 struct hw_interrupt_type;
37 * Some useful "we don't have to do anything here" handlers. Should
38 * probably be provided by the generic code.
40 void no_ack_irq(unsigned int irq);
41 void no_end_irq(unsigned int irq);
43 extern int txn_alloc_irq(unsigned int nbits);
44 extern int txn_claim_irq(int);
45 extern unsigned int txn_alloc_data(unsigned int);
46 extern unsigned long txn_alloc_addr(unsigned int);
48 extern int cpu_claim_irq(unsigned int irq, struct hw_interrupt_type *, void *);
50 extern int cpu_claim_irq(unsigned int irq, struct hw_interrupt_type *, void *);
52 /* soft power switch support (power.c) */
53 extern struct tasklet_struct power_tasklet;
55 #endif /* _ASM_PARISC_IRQ_H */