Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / arch / mips / include / asm / irq.h
CommitLineData
1da177e4
LT
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994 by Waldorf GMBH, written by Ralf Baechle
7 * Copyright (C) 1995, 96, 97, 98, 99, 2000, 01, 02, 03 by Ralf Baechle
8 */
9#ifndef _ASM_IRQ_H
10#define _ASM_IRQ_H
11
1da177e4 12#include <linux/linkage.h>
41c594ab
RB
13
14#include <asm/mipsmtregs.h>
15
1da177e4
LT
16#include <irq.h>
17
18#ifdef CONFIG_I8259
19static inline int irq_canonicalize(int irq)
20{
2fa7937b 21 return ((irq == I8259A_IRQ_BASE + 2) ? I8259A_IRQ_BASE + 9 : irq);
1da177e4
LT
22}
23#else
24#define irq_canonicalize(irq) (irq) /* Sane hardware, sane code ... */
25#endif
26
1146fe30
RB
27#ifdef CONFIG_MIPS_MT_SMTC
28
29struct irqaction;
30
31extern unsigned long irq_hwmask[];
32extern int setup_irq_smtc(unsigned int irq, struct irqaction * new,
33 unsigned long hwmask);
34
35static inline void smtc_im_ack_irq(unsigned int irq)
36{
37 if (irq_hwmask[irq] & ST0_IM)
38 set_c0_status(irq_hwmask[irq] & ST0_IM);
39}
40
41#else
42
43static inline void smtc_im_ack_irq(unsigned int irq)
44{
45}
46
47#endif /* CONFIG_MIPS_MT_SMTC */
48
f571eff0
KK
49#ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
50#include <linux/cpumask.h>
51
0de26520
RR
52extern void plat_set_irq_affinity(unsigned int irq,
53 const struct cpumask *affinity);
f571eff0
KK
54extern void smtc_forward_irq(unsigned int irq);
55
56/*
57 * IRQ affinity hook invoked at the beginning of interrupt dispatch
58 * if option is enabled.
59 *
60 * Up through Linux 2.6.22 (at least) cpumask operations are very
61 * inefficient on MIPS. Initial prototypes of SMTC IRQ affinity
62 * used a "fast path" per-IRQ-descriptor cache of affinity information
63 * to reduce latency. As there is a project afoot to optimize the
64 * cpumask implementations, this version is optimistically assuming
65 * that cpumask.h macro overhead is reasonable during interrupt dispatch.
66 */
67#define IRQ_AFFINITY_HOOK(irq) \
68do { \
69 if (!cpu_isset(smp_processor_id(), irq_desc[irq].affinity)) { \
70 smtc_forward_irq(irq); \
71 irq_exit(); \
72 return; \
73 } \
74} while (0)
75
76#else /* Not doing SMTC affinity */
77
78#define IRQ_AFFINITY_HOOK(irq) do { } while (0)
79
80#endif /* CONFIG_MIPS_MT_SMTC_IRQAFF */
81
0db34215 82#ifdef CONFIG_MIPS_MT_SMTC_IM_BACKSTOP
1146fe30 83
41c594ab
RB
84/*
85 * Clear interrupt mask handling "backstop" if irq_hwmask
86 * entry so indicates. This implies that the ack() or end()
87 * functions will take over re-enabling the low-level mask.
88 * Otherwise it will be done on return from exception.
89 */
f9bba75e 90#define __DO_IRQ_SMTC_HOOK(irq) \
41c594ab 91do { \
f571eff0 92 IRQ_AFFINITY_HOOK(irq); \
41c594ab
RB
93 if (irq_hwmask[irq] & 0x0000ff00) \
94 write_c0_tccontext(read_c0_tccontext() & \
f571eff0
KK
95 ~(irq_hwmask[irq] & 0x0000ff00)); \
96} while (0)
97
98#define __NO_AFFINITY_IRQ_SMTC_HOOK(irq) \
99do { \
100 if (irq_hwmask[irq] & 0x0000ff00) \
101 write_c0_tccontext(read_c0_tccontext() & \
102 ~(irq_hwmask[irq] & 0x0000ff00)); \
41c594ab 103} while (0)
f571eff0 104
41c594ab 105#else
1146fe30 106
f571eff0
KK
107#define __DO_IRQ_SMTC_HOOK(irq) \
108do { \
109 IRQ_AFFINITY_HOOK(irq); \
110} while (0)
111#define __NO_AFFINITY_IRQ_SMTC_HOOK(irq) do { } while (0)
112
41c594ab
RB
113#endif
114
1da177e4
LT
115/*
116 * do_IRQ handles all normal device IRQ's (the special
117 * SMP cross-CPU interrupts have their own specific
118 * handlers).
119 *
120 * Ideally there should be away to get this into kernel/irq/handle.c to
121 * avoid the overhead of a call for just a tiny function ...
122 */
937a8015 123#define do_IRQ(irq) \
1da177e4
LT
124do { \
125 irq_enter(); \
f9bba75e 126 __DO_IRQ_SMTC_HOOK(irq); \
1417836e 127 generic_handle_irq(irq); \
1da177e4
LT
128 irq_exit(); \
129} while (0)
130
f571eff0
KK
131#ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
132/*
133 * To avoid inefficient and in some cases pathological re-checking of
134 * IRQ affinity, we have this variant that skips the affinity check.
135 */
136
137
138#define do_IRQ_no_affinity(irq) \
139do { \
140 irq_enter(); \
141 __NO_AFFINITY_IRQ_SMTC_HOOK(irq); \
142 generic_handle_irq(irq); \
143 irq_exit(); \
144} while (0)
145
146#endif /* CONFIG_MIPS_MT_SMTC_IRQAFF */
147
1da177e4 148extern void arch_init_irq(void);
937a8015 149extern void spurious_interrupt(void);
1da177e4 150
4a4cf779
RB
151extern int allocate_irqno(void);
152extern void alloc_legacy_irqno(void);
153extern void free_irqno(unsigned int irq);
154
3b1d4ed5
RB
155/*
156 * Before R2 the timer and performance counter interrupts were both fixed to
157 * IE7. Since R2 their number has to be read from the c0_intctl register.
158 */
159#define CP0_LEGACY_COMPARE_IRQ 7
160
161extern int cp0_compare_irq;
162extern int cp0_perfcount_irq;
163
1da177e4 164#endif /* _ASM_IRQ_H */