1 /* SPDX-License-Identifier: GPL-2.0 */
6 * linux/include/alpha/irq.h
8 * (C) 1994 Linus Torvalds
11 #include <linux/linkage.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 /* When LEGACY_START_ADDRESS is selected, we leave out:
24 This helps keep the kernel object size reasonable for the majority
28 # if defined(CONFIG_ALPHA_LEGACY_START_ADDRESS)
29 # define NR_IRQS (128) /* max is RAWHIDE/TAKARA */
31 # define NR_IRQS (32768 + 16) /* marvel - 32 pids */
34 #elif defined(CONFIG_ALPHA_CABRIOLET) || \
35 defined(CONFIG_ALPHA_EB66P) || \
36 defined(CONFIG_ALPHA_EB164) || \
37 defined(CONFIG_ALPHA_PC164) || \
38 defined(CONFIG_ALPHA_LX164)
41 #elif defined(CONFIG_ALPHA_EB66) || \
42 defined(CONFIG_ALPHA_EB64P) || \
43 defined(CONFIG_ALPHA_MIKASA)
46 #elif defined(CONFIG_ALPHA_ALCOR) || \
47 defined(CONFIG_ALPHA_MIATA) || \
48 defined(CONFIG_ALPHA_RUFFIAN) || \
49 defined(CONFIG_ALPHA_RX164) || \
50 defined(CONFIG_ALPHA_NORITAKE)
53 #elif defined(CONFIG_ALPHA_SABLE) || \
54 defined(CONFIG_ALPHA_SX164)
57 #elif defined(CONFIG_ALPHA_DP264) || \
58 defined(CONFIG_ALPHA_LYNX) || \
59 defined(CONFIG_ALPHA_SHARK)
62 #elif defined(CONFIG_ALPHA_TITAN)
65 #elif defined(CONFIG_ALPHA_RAWHIDE) || \
66 defined(CONFIG_ALPHA_TAKARA) || \
67 defined(CONFIG_ALPHA_EIGER)
70 #elif defined(CONFIG_ALPHA_WILDFIRE)
71 # define NR_IRQS 2048 /* enuff for 8 QBBs */
73 #elif defined(CONFIG_ALPHA_MARVEL)
74 # define NR_IRQS (32768 + 16) /* marvel - 32 pids*/
76 #else /* everyone else */
80 static __inline__
int irq_canonicalize(int irq
)
83 * XXX is this true for all Alpha's? The old serial driver
84 * did it this way for years without any complaints, so....
86 return ((irq
== 2) ? 9 : irq
);
90 extern void (*perf_irq
)(unsigned long, struct pt_regs
*);
92 #endif /* _ALPHA_IRQ_H */