Merge branch 'tracing/core' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic...
[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>
631330f5 13#include <linux/smp.h>
41c594ab
RB
14
15#include <asm/mipsmtregs.h>
16
1da177e4
LT
17#include <irq.h>
18
19#ifdef CONFIG_I8259
20static inline int irq_canonicalize(int irq)
21{
2fa7937b 22 return ((irq == I8259A_IRQ_BASE + 2) ? I8259A_IRQ_BASE + 9 : irq);
1da177e4
LT
23}
24#else
25#define irq_canonicalize(irq) (irq) /* Sane hardware, sane code ... */
26#endif
27
1146fe30
RB
28#ifdef CONFIG_MIPS_MT_SMTC
29
30struct irqaction;
31
32extern unsigned long irq_hwmask[];
33extern int setup_irq_smtc(unsigned int irq, struct irqaction * new,
34 unsigned long hwmask);
35
36static inline void smtc_im_ack_irq(unsigned int irq)
37{
38 if (irq_hwmask[irq] & ST0_IM)
39 set_c0_status(irq_hwmask[irq] & ST0_IM);
40}
41
42#else
43
44static inline void smtc_im_ack_irq(unsigned int irq)
45{
46}
47
48#endif /* CONFIG_MIPS_MT_SMTC */
49
f571eff0
KK
50#ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
51#include <linux/cpumask.h>
52
d5dedd45 53extern int plat_set_irq_affinity(unsigned int irq,
0de26520 54 const struct cpumask *affinity);
f571eff0
KK
55extern void smtc_forward_irq(unsigned int irq);
56
57/*
58 * IRQ affinity hook invoked at the beginning of interrupt dispatch
59 * if option is enabled.
60 *
61 * Up through Linux 2.6.22 (at least) cpumask operations are very
62 * inefficient on MIPS. Initial prototypes of SMTC IRQ affinity
63 * used a "fast path" per-IRQ-descriptor cache of affinity information
64 * to reduce latency. As there is a project afoot to optimize the
65 * cpumask implementations, this version is optimistically assuming
66 * that cpumask.h macro overhead is reasonable during interrupt dispatch.
67 */
68#define IRQ_AFFINITY_HOOK(irq) \
69do { \
e65e49d0 70 if (!cpumask_test_cpu(smp_processor_id(), irq_desc[irq].affinity)) {\
f571eff0
KK
71 smtc_forward_irq(irq); \
72 irq_exit(); \
73 return; \
74 } \
75} while (0)
76
77#else /* Not doing SMTC affinity */
78
79#define IRQ_AFFINITY_HOOK(irq) do { } while (0)
80
81#endif /* CONFIG_MIPS_MT_SMTC_IRQAFF */
82
0db34215 83#ifdef CONFIG_MIPS_MT_SMTC_IM_BACKSTOP
1146fe30 84
41c594ab
RB
85/*
86 * Clear interrupt mask handling "backstop" if irq_hwmask
87 * entry so indicates. This implies that the ack() or end()
88 * functions will take over re-enabling the low-level mask.
89 * Otherwise it will be done on return from exception.
90 */
f9bba75e 91#define __DO_IRQ_SMTC_HOOK(irq) \
41c594ab 92do { \
f571eff0 93 IRQ_AFFINITY_HOOK(irq); \
41c594ab
RB
94 if (irq_hwmask[irq] & 0x0000ff00) \
95 write_c0_tccontext(read_c0_tccontext() & \
f571eff0
KK
96 ~(irq_hwmask[irq] & 0x0000ff00)); \
97} while (0)
98
99#define __NO_AFFINITY_IRQ_SMTC_HOOK(irq) \
100do { \
101 if (irq_hwmask[irq] & 0x0000ff00) \
102 write_c0_tccontext(read_c0_tccontext() & \
103 ~(irq_hwmask[irq] & 0x0000ff00)); \
41c594ab 104} while (0)
f571eff0 105
41c594ab 106#else
1146fe30 107
f571eff0
KK
108#define __DO_IRQ_SMTC_HOOK(irq) \
109do { \
110 IRQ_AFFINITY_HOOK(irq); \
111} while (0)
112#define __NO_AFFINITY_IRQ_SMTC_HOOK(irq) do { } while (0)
113
41c594ab
RB
114#endif
115
8f99a162 116extern void do_IRQ(unsigned int irq);
1da177e4 117
f571eff0 118#ifdef CONFIG_MIPS_MT_SMTC_IRQAFF
f571eff0 119
8f99a162 120extern void do_IRQ_no_affinity(unsigned int irq);
f571eff0
KK
121
122#endif /* CONFIG_MIPS_MT_SMTC_IRQAFF */
123
1da177e4 124extern void arch_init_irq(void);
937a8015 125extern void spurious_interrupt(void);
1da177e4 126
4a4cf779
RB
127extern int allocate_irqno(void);
128extern void alloc_legacy_irqno(void);
129extern void free_irqno(unsigned int irq);
130
3b1d4ed5
RB
131/*
132 * Before R2 the timer and performance counter interrupts were both fixed to
133 * IE7. Since R2 their number has to be read from the c0_intctl register.
134 */
135#define CP0_LEGACY_COMPARE_IRQ 7
136
137extern int cp0_compare_irq;
010c108d 138extern int cp0_compare_irq_shift;
3b1d4ed5
RB
139extern int cp0_perfcount_irq;
140
1da177e4 141#endif /* _ASM_IRQ_H */