blob: 89ad1805e5797625a2d5df0912253bcd9e2a9f5f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_HARDIRQ_H
2#define __ASM_HARDIRQ_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/cache.h>
5#include <linux/threads.h>
6#include <asm/irq.h>
7
Russell King4a88abd2010-11-15 14:40:29 +00008#define NR_IPI 5
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010typedef struct {
11 unsigned int __softirq_pending;
Russell Kingec405ea2010-11-15 13:38:06 +000012#ifdef CONFIG_LOCAL_TIMERS
Russell King37ee16a2005-11-08 19:08:05 +000013 unsigned int local_timer_irqs;
Russell Kingec405ea2010-11-15 13:38:06 +000014#endif
Russell Kingcab8c6f2010-11-15 14:20:41 +000015#ifdef CONFIG_SMP
Russell King4a88abd2010-11-15 14:40:29 +000016 unsigned int ipi_irqs[NR_IPI];
Russell Kingcab8c6f2010-11-15 14:20:41 +000017#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070018} ____cacheline_aligned irq_cpustat_t;
19
20#include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
21
Russell King46c48f22010-11-15 14:15:03 +000022#define __inc_irq_stat(cpu, member) __IRQ_STAT(cpu, member)++
23#define __get_irq_stat(cpu, member) __IRQ_STAT(cpu, member)
24
Russell Kingb54992f2010-11-15 14:46:46 +000025#ifdef CONFIG_SMP
26u64 smp_irq_stat_cpu(unsigned int cpu);
27#else
28#define smp_irq_stat_cpu(cpu) 0
29#endif
30
31#define arch_irq_stat_cpu smp_irq_stat_cpu
32
Magnus Damm27ada412010-05-19 09:58:27 +010033#if NR_IRQS > 512
34#define HARDIRQ_BITS 10
35#elif NR_IRQS > 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define HARDIRQ_BITS 9
37#else
38#define HARDIRQ_BITS 8
39#endif
40
41/*
42 * The hardirq mask has to be large enough to have space
43 * for potentially all IRQ sources in the system nesting
44 * on a single CPU:
45 */
46#if (1 << HARDIRQ_BITS) < NR_IRQS
47# error HARDIRQ_BITS is too low!
48#endif
49
50#define __ARCH_IRQ_EXIT_IRQS_DISABLED 1
51
52#endif /* __ASM_HARDIRQ_H */