blob: 15e0fecbc300fd9752023931984fe277a73da876 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/linkage.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010013#include <linux/smp.h>
Grant Likelyabd23632012-02-24 08:07:06 -070014#include <linux/irqdomain.h>
Ralf Baechle41c594a2006-04-05 09:45:45 +010015
16#include <asm/mipsmtregs.h>
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <irq.h>
19
20#ifdef CONFIG_I8259
21static inline int irq_canonicalize(int irq)
22{
Atsushi Nemoto2fa79372007-01-14 23:41:42 +090023 return ((irq == I8259A_IRQ_BASE + 2) ? I8259A_IRQ_BASE + 9 : irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024}
25#else
26#define irq_canonicalize(irq) (irq) /* Sane hardware, sane code ... */
27#endif
28
Sergey Ryazanov950e97c2014-08-14 02:09:36 +040029asmlinkage void plat_irq_dispatch(void);
30
Wu Zhangjin8f99a162009-11-20 20:34:33 +080031extern void do_IRQ(unsigned int irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033extern void arch_init_irq(void);
Ralf Baechle937a8012006-10-07 19:44:33 +010034extern void spurious_interrupt(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Ralf Baechle4a4cf772006-11-06 17:41:06 +000036extern int allocate_irqno(void);
37extern void alloc_legacy_irqno(void);
38extern void free_irqno(unsigned int irq);
39
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +010040/*
41 * Before R2 the timer and performance counter interrupts were both fixed to
Ralf Baechle70342282013-01-22 12:59:30 +010042 * IE7. Since R2 their number has to be read from the c0_intctl register.
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +010043 */
44#define CP0_LEGACY_COMPARE_IRQ 7
Ralf Baechlec6a4ebb2012-07-06 23:56:00 +020045#define CP0_LEGACY_PERFCNT_IRQ 7
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +010046
47extern int cp0_compare_irq;
David VomLehn010c1082009-12-21 17:49:22 -080048extern int cp0_compare_irq_shift;
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +010049extern int cp0_perfcount_irq;
James Hogan8f7ff022015-01-29 11:14:07 +000050extern int cp0_fdc_irq;
51
Bjorn Helgaas770847b2015-07-12 18:11:46 -050052extern int get_c0_fdc_int(void);
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +010053
Eunbong Song856839b2014-10-22 06:39:56 +000054void arch_trigger_all_cpu_backtrace(bool);
55#define arch_trigger_all_cpu_backtrace arch_trigger_all_cpu_backtrace
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#endif /* _ASM_IRQ_H */