Merge with Linux 2.5.59.
[linux-2.6/linux-mips.git] / include / asm-alpha / irq.h
blob455f5458975261d1f51608c56354399f1d48ab16
1 #ifndef _ALPHA_IRQ_H
2 #define _ALPHA_IRQ_H
4 /*
5 * linux/include/alpha/irq.h
7 * (C) 1994 Linus Torvalds
8 */
10 #include <linux/linkage.h>
11 #include <linux/config.h>
13 #if defined(CONFIG_ALPHA_GENERIC)
15 /* Here NR_IRQS is not exact, but rather an upper bound. This is used
16 many places throughout the kernel to size static arrays. That's ok,
17 we'll use alpha_mv.nr_irqs when we want the real thing. */
19 # define NR_IRQS (32768 + 16) /* marvel - 32 pids*/
21 #elif defined(CONFIG_ALPHA_CABRIOLET) || \
22 defined(CONFIG_ALPHA_EB66P) || \
23 defined(CONFIG_ALPHA_EB164) || \
24 defined(CONFIG_ALPHA_PC164) || \
25 defined(CONFIG_ALPHA_LX164)
26 # define NR_IRQS 35
28 #elif defined(CONFIG_ALPHA_EB66) || \
29 defined(CONFIG_ALPHA_EB64P) || \
30 defined(CONFIG_ALPHA_MIKASA)
31 # define NR_IRQS 32
33 #elif defined(CONFIG_ALPHA_ALCOR) || \
34 defined(CONFIG_ALPHA_MIATA) || \
35 defined(CONFIG_ALPHA_RUFFIAN) || \
36 defined(CONFIG_ALPHA_RX164) || \
37 defined(CONFIG_ALPHA_NORITAKE)
38 # define NR_IRQS 48
40 #elif defined(CONFIG_ALPHA_SABLE) || \
41 defined(CONFIG_ALPHA_SX164)
42 # define NR_IRQS 40
44 #elif defined(CONFIG_ALPHA_DP264) || \
45 defined(CONFIG_ALPHA_SHARK) || \
46 defined(CONFIG_ALPHA_EIGER)
47 # define NR_IRQS 64
49 #elif defined(CONFIG_ALPHA_TITAN)
50 #define NR_IRQS 80
52 #elif defined(CONFIG_ALPHA_RAWHIDE) || \
53 defined(CONFIG_ALPHA_TAKARA)
54 # define NR_IRQS 128
56 #elif defined(CONFIG_ALPHA_WILDFIRE)
57 # define NR_IRQS 2048 /* enuff for 8 QBBs */
59 #elif defined(CONFIG_ALPHA_MARVEL)
60 # define NR_IRQS (32768 + 16) /* marvel - 32 pids*/
62 #else /* everyone else */
63 # define NR_IRQS 16
64 #endif
66 static __inline__ int irq_cannonicalize(int irq)
69 * XXX is this true for all Alpha's? The old serial driver
70 * did it this way for years without any complaints, so....
72 return ((irq == 2) ? 9 : irq);
75 extern void disable_irq(unsigned int);
76 extern void disable_irq_nosync(unsigned int);
77 extern void enable_irq(unsigned int);
79 struct pt_regs;
80 extern void (*perf_irq)(unsigned long, struct pt_regs *);
83 #endif /* _ALPHA_IRQ_H */