2 * linux/include/asm-mips/tx3927/irq.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2001 Toshiba Corporation
10 #ifndef __ASM_TX3927_IRQ_H
11 #define __ASM_TX3927_IRQ_H
15 #include <linux/config.h>
19 struct tb_irq_space
* next
;
22 void (*mask_func
)(int irq_nr
, int space_id
);
23 void (*unmask_func
)(int irq_no
, int space_id
);
28 extern struct tb_irq_space
* tb_irq_spaces
;
30 static __inline__
void add_tb_irq_space(struct tb_irq_space
* sp
)
32 sp
->next
= tb_irq_spaces
;
39 toshibaboards_spurious(struct pt_regs
*regs
, int irq
);
41 toshibaboards_irqdispatch(struct pt_regs
*regs
, int irq
);
43 extern struct irqaction
*
44 toshibaboards_get_irq_action(int irq
);
46 toshibaboards_setup_irq(int irq
, struct irqaction
* new);
49 #ifdef CONFIG_TX_BRANCH_LIKELY_BUG_WORKAROUND
50 extern void tx_branch_likely_bug_fixup(struct pt_regs
*regs
);
53 extern int (*toshibaboards_gen_iack
)(void);
55 #endif /* !__ASSEMBLY__ */
57 #define NR_ISA_IRQS 16
58 #define TB_IRQ_IS_ISA(irq) \
59 (0 <= (irq) && (irq) < NR_ISA_IRQS)
60 #define TB_IRQ_TO_ISA_IRQ(irq) (irq)
62 #endif /* __ASM_TX3927_IRQ_H */