Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Anton Blanchard | 8c007bf | 2010-01-31 20:30:23 +0000 | [diff] [blame] | 2 | #ifndef _ASM_POWERPC_HARDIRQ_H |
| 3 | #define _ASM_POWERPC_HARDIRQ_H |
| 4 | |
| 5 | #include <linux/threads.h> |
| 6 | #include <linux/irq.h> |
| 7 | |
| 8 | typedef struct { |
| 9 | unsigned int __softirq_pending; |
fan.du | c041cfa | 2013-01-23 16:06:11 +0800 | [diff] [blame] | 10 | unsigned int timer_irqs_event; |
Nicholas Piggin | e360cd3 | 2018-05-05 03:19:35 +1000 | [diff] [blame] | 11 | unsigned int broadcast_irqs_event; |
fan.du | c041cfa | 2013-01-23 16:06:11 +0800 | [diff] [blame] | 12 | unsigned int timer_irqs_others; |
Anton Blanchard | 89713ed | 2010-01-31 20:34:06 +0000 | [diff] [blame] | 13 | unsigned int pmu_irqs; |
| 14 | unsigned int mce_exceptions; |
Anton Blanchard | 17081102 | 2010-01-31 20:34:36 +0000 | [diff] [blame] | 15 | unsigned int spurious_irqs; |
Mahesh Salgaonkar | 0869b6f | 2014-07-29 18:40:01 +0530 | [diff] [blame] | 16 | unsigned int hmi_exceptions; |
Nicholas Piggin | ca41ad4 | 2017-08-01 22:00:53 +1000 | [diff] [blame] | 17 | unsigned int sreset_irqs; |
Nicholas Piggin | 04019bf | 2017-08-01 22:00:54 +1000 | [diff] [blame] | 18 | #ifdef CONFIG_PPC_WATCHDOG |
| 19 | unsigned int soft_nmi_irqs; |
| 20 | #endif |
Ian Munsie | a6a058e | 2013-03-21 19:22:52 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_PPC_DOORBELL |
| 22 | unsigned int doorbell_irqs; |
| 23 | #endif |
Anton Blanchard | 8c007bf | 2010-01-31 20:30:23 +0000 | [diff] [blame] | 24 | } ____cacheline_aligned irq_cpustat_t; |
| 25 | |
| 26 | DECLARE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat); |
| 27 | |
| 28 | #define __ARCH_IRQ_STAT |
Nicholas Piggin | c16bee4 | 2017-11-17 02:00:49 +1000 | [diff] [blame] | 29 | #define __ARCH_IRQ_EXIT_IRQS_DISABLED |
Christoph Lameter | 69111ba | 2014-10-21 15:23:25 -0500 | [diff] [blame] | 30 | |
Anton Blanchard | 8c007bf | 2010-01-31 20:30:23 +0000 | [diff] [blame] | 31 | static inline void ack_bad_irq(unsigned int irq) |
| 32 | { |
| 33 | printk(KERN_CRIT "unexpected IRQ trap at vector %02x\n", irq); |
| 34 | } |
| 35 | |
Anton Blanchard | 89713ed | 2010-01-31 20:34:06 +0000 | [diff] [blame] | 36 | extern u64 arch_irq_stat_cpu(unsigned int cpu); |
| 37 | #define arch_irq_stat_cpu arch_irq_stat_cpu |
| 38 | |
Anton Blanchard | 8c007bf | 2010-01-31 20:30:23 +0000 | [diff] [blame] | 39 | #endif /* _ASM_POWERPC_HARDIRQ_H */ |