2 * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 * Derived (i.e. mostly copied) from arch/i386/kernel/irq.c:
5 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
8 #include "linux/config.h"
9 #include "linux/kernel.h"
10 #include "linux/module.h"
11 #include "linux/smp.h"
12 #include "linux/irq.h"
13 #include "linux/kernel_stat.h"
14 #include "linux/interrupt.h"
15 #include "linux/random.h"
16 #include "linux/slab.h"
17 #include "linux/file.h"
18 #include "linux/proc_fs.h"
19 #include "linux/init.h"
20 #include "linux/seq_file.h"
21 #include "linux/profile.h"
22 #include "linux/hardirq.h"
24 #include "asm/hw_irq.h"
25 #include "asm/atomic.h"
26 #include "asm/signal.h"
27 #include "asm/system.h"
28 #include "asm/errno.h"
29 #include "asm/uaccess.h"
30 #include "user_util.h"
31 #include "kern_util.h"
37 * Generic, controller-independent functions:
40 int show_interrupts(struct seq_file
*p
, void *v
)
42 int i
= *(loff_t
*) v
, j
;
43 struct irqaction
* action
;
48 for_each_online_cpu(j
)
49 seq_printf(p
, "CPU%d ",j
);
54 spin_lock_irqsave(&irq_desc
[i
].lock
, flags
);
55 action
= irq_desc
[i
].action
;
58 seq_printf(p
, "%3d: ",i
);
60 seq_printf(p
, "%10u ", kstat_irqs(i
));
62 for_each_online_cpu(j
)
63 seq_printf(p
, "%10u ", kstat_cpu(j
).irqs
[i
]);
65 seq_printf(p
, " %14s", irq_desc
[i
].handler
->typename
);
66 seq_printf(p
, " %s", action
->name
);
68 for (action
=action
->next
; action
; action
= action
->next
)
69 seq_printf(p
, ", %s", action
->name
);
73 spin_unlock_irqrestore(&irq_desc
[i
].lock
, flags
);
74 } else if (i
== NR_IRQS
) {
82 * do_IRQ handles all normal device IRQ's (the special
83 * SMP cross-CPU interrupts have their own specific
86 unsigned int do_IRQ(int irq
, union uml_pt_regs
*regs
)
89 __do_IRQ(irq
, (struct pt_regs
*) regs
);
94 int um_request_irq(unsigned int irq
, int fd
, int type
,
95 irqreturn_t (*handler
)(int, void *, struct pt_regs
*),
96 unsigned long irqflags
, const char * devname
,
101 err
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
106 err
= activate_fd(irq
, fd
, type
, dev_id
);
109 EXPORT_SYMBOL(um_request_irq
);
110 EXPORT_SYMBOL(reactivate_fd
);
112 static DEFINE_SPINLOCK(irq_spinlock
);
114 unsigned long irq_lock(void)
118 spin_lock_irqsave(&irq_spinlock
, flags
);
122 void irq_unlock(unsigned long flags
)
124 spin_unlock_irqrestore(&irq_spinlock
, flags
);
127 /* presently hw_interrupt_type must define (startup || enable) &&
129 static void dummy(unsigned int irq
)
133 static struct hw_interrupt_type SIGIO_irq_type
= {
141 static struct hw_interrupt_type SIGVTALRM_irq_type
= {
142 .typename
= "SIGVTALRM",
143 .shutdown
= dummy
, /* never called */
150 void __init
init_IRQ(void)
154 irq_desc
[TIMER_IRQ
].status
= IRQ_DISABLED
;
155 irq_desc
[TIMER_IRQ
].action
= NULL
;
156 irq_desc
[TIMER_IRQ
].depth
= 1;
157 irq_desc
[TIMER_IRQ
].handler
= &SIGVTALRM_irq_type
;
158 enable_irq(TIMER_IRQ
);
159 for(i
=1;i
<NR_IRQS
;i
++){
160 irq_desc
[i
].status
= IRQ_DISABLED
;
161 irq_desc
[i
].action
= NULL
;
162 irq_desc
[i
].depth
= 1;
163 irq_desc
[i
].handler
= &SIGIO_irq_type
;
170 * Overrides for Emacs so that we follow Linus's tabbing style.
171 * Emacs will notice this stuff at the end of the file and automatically
172 * adjust the settings for this buffer only. This must remain at the end
174 * ---------------------------------------------------------------------------
176 * c-file-style: "linux"