aboutsummaryrefslogtreecommitdiffstats
path: root/old/xenolinux-2.4.16-sparse/include/asm-xeno/irq.h
blob: 619353e6968a6f20377d78011219b9cb19bc51a4 (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
#ifndef _ASM_IRQ_H
#define _ASM_IRQ_H

/*
 *	linux/include/asm/irq.h
 *
 *	(C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
 *
 *	IRQ/IPI changes taken from work by Thomas Radke
 *	<tomsoft@informatik.tu-chemnitz.de>
 */

#include <linux/config.h>
#include <asm/hypervisor.h>
#include <asm/ptrace.h>

#define NET_TX_IRQ  _EVENT_NET_TX
#define NET_RX_IRQ  _EVENT_NET_RX
#define NET2_TX_IRQ  _EVENT_NET2_TX
#define NET2_RX_IRQ  _EVENT_NET2_RX
#define TIMER_IRQ   _EVENT_TIMER

#define NR_IRQS (sizeof(HYPERVISOR_shared_info->events) * 8)

#define irq_cannonicalize(_irq) (_irq)

extern void disable_irq(unsigned int);
extern void disable_irq_nosync(unsigned int);
extern void enable_irq(unsigned int);
extern unsigned int do_IRQ(int, struct pt_regs *);

#endif /* _ASM_IRQ_H */