Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/linkage.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 13 | #include <linux/smp.h> |
Grant Likely | abd2363 | 2012-02-24 08:07:06 -0700 | [diff] [blame] | 14 | #include <linux/irqdomain.h> |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 15 | |
| 16 | #include <asm/mipsmtregs.h> |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <irq.h> |
| 19 | |
| 20 | #ifdef CONFIG_I8259 |
| 21 | static inline int irq_canonicalize(int irq) |
| 22 | { |
Atsushi Nemoto | 2fa7937 | 2007-01-14 23:41:42 +0900 | [diff] [blame] | 23 | return ((irq == I8259A_IRQ_BASE + 2) ? I8259A_IRQ_BASE + 9 : irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | } |
| 25 | #else |
| 26 | #define irq_canonicalize(irq) (irq) /* Sane hardware, sane code ... */ |
| 27 | #endif |
| 28 | |
Sergey Ryazanov | 950e97c | 2014-08-14 02:09:36 +0400 | [diff] [blame] | 29 | asmlinkage void plat_irq_dispatch(void); |
| 30 | |
Wu Zhangjin | 8f99a16 | 2009-11-20 20:34:33 +0800 | [diff] [blame] | 31 | extern void do_IRQ(unsigned int irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | extern void arch_init_irq(void); |
Ralf Baechle | 937a801 | 2006-10-07 19:44:33 +0100 | [diff] [blame] | 34 | extern void spurious_interrupt(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Ralf Baechle | 4a4cf77 | 2006-11-06 17:41:06 +0000 | [diff] [blame] | 36 | extern int allocate_irqno(void); |
| 37 | extern void alloc_legacy_irqno(void); |
| 38 | extern void free_irqno(unsigned int irq); |
| 39 | |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 40 | /* |
| 41 | * Before R2 the timer and performance counter interrupts were both fixed to |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 42 | * IE7. Since R2 their number has to be read from the c0_intctl register. |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 43 | */ |
| 44 | #define CP0_LEGACY_COMPARE_IRQ 7 |
Ralf Baechle | c6a4ebb | 2012-07-06 23:56:00 +0200 | [diff] [blame] | 45 | #define CP0_LEGACY_PERFCNT_IRQ 7 |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 46 | |
| 47 | extern int cp0_compare_irq; |
David VomLehn | 010c108 | 2009-12-21 17:49:22 -0800 | [diff] [blame] | 48 | extern int cp0_compare_irq_shift; |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 49 | extern int cp0_perfcount_irq; |
James Hogan | 8f7ff02 | 2015-01-29 11:14:07 +0000 | [diff] [blame] | 50 | extern int cp0_fdc_irq; |
| 51 | |
Bjorn Helgaas | 770847b | 2015-07-12 18:11:46 -0500 | [diff] [blame] | 52 | extern int get_c0_fdc_int(void); |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 53 | |
Eunbong Song | 856839b | 2014-10-22 06:39:56 +0000 | [diff] [blame] | 54 | void arch_trigger_all_cpu_backtrace(bool); |
| 55 | #define arch_trigger_all_cpu_backtrace arch_trigger_all_cpu_backtrace |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #endif /* _ASM_IRQ_H */ |