summaryrefslogtreecommitdiff
path: root/xen/include/asm-x86/hardirq.h
blob: 276e3419d7783234095db4f7d717764c3866befa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef __ASM_HARDIRQ_H
#define __ASM_HARDIRQ_H

#include <xen/cache.h>
#include <xen/types.h>

typedef struct {
	unsigned int __softirq_pending;
	unsigned int __local_irq_count;
	unsigned int nmi_count;
	unsigned int mce_count;
	bool_t __mwait_wakeup;
} __cacheline_aligned irq_cpustat_t;

#include <xen/irq_cpustat.h>	/* Standard mappings for irq_cpustat_t above */

#define in_irq() (local_irq_count(smp_processor_id()) != 0)

#define irq_enter()	(local_irq_count(smp_processor_id())++)
#define irq_exit()	(local_irq_count(smp_processor_id())--)

#define nmi_count(cpu)		__IRQ_STAT(cpu, nmi_count)
#define in_nmi_handler()	(nmi_count(smp_processor_id()) != 0)
#define nmi_enter()		(nmi_count(smp_processor_id())++)
#define nmi_exit()		(nmi_count(smp_processor_id())--)

#define mce_count(cpu)		__IRQ_STAT(cpu, mce_count)
#define in_mce_handler()	(mce_count(smp_processor_id()) != 0)
#define mce_enter()		(mce_count(smp_processor_id())++)
#define mce_exit()		(mce_count(smp_processor_id())--)

void ack_bad_irq(unsigned int irq);

extern void apic_intr_init(void);
extern void smp_intr_init(void);

#endif /* __ASM_HARDIRQ_H */