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/kernel.h"
9 #include "linux/module.h"
10 #include "linux/smp.h"
11 #include "linux/kernel_stat.h"
12 #include "linux/interrupt.h"
13 #include "linux/random.h"
14 #include "linux/slab.h"
15 #include "linux/file.h"
16 #include "linux/proc_fs.h"
17 #include "linux/init.h"
18 #include "linux/seq_file.h"
19 #include "linux/profile.h"
20 #include "linux/hardirq.h"
22 #include "asm/hw_irq.h"
23 #include "asm/atomic.h"
24 #include "asm/signal.h"
25 #include "asm/system.h"
26 #include "asm/errno.h"
27 #include "asm/uaccess.h"
28 #include "kern_util.h"
33 #include "um_malloc.h"
34 #include "misc_constants.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
].chip
->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
) {
81 static struct irq_fd
*active_fds
= NULL
;
82 static struct irq_fd
**last_irq_ptr
= &active_fds
;
84 extern void free_irqs(void);
86 void sigio_handler(int sig
, union uml_pt_regs
*regs
)
88 struct irq_fd
*irq_fd
;
91 if (smp_sigio_handler())
95 n
= os_waiting_for_events(active_fds
);
97 if(n
== -EINTR
) continue;
101 for (irq_fd
= active_fds
; irq_fd
!= NULL
; irq_fd
= irq_fd
->next
) {
102 if (irq_fd
->current_events
!= 0) {
103 irq_fd
->current_events
= 0;
104 do_IRQ(irq_fd
->irq
, regs
);
112 static DEFINE_SPINLOCK(irq_lock
);
114 int activate_fd(int irq
, int fd
, int type
, void *dev_id
)
116 struct pollfd
*tmp_pfd
;
117 struct irq_fd
*new_fd
, *irq_fd
;
119 int pid
, events
, err
, n
;
122 err
= os_set_fd_async(fd
, pid
);
127 new_fd
= kmalloc(sizeof(struct irq_fd
), GFP_KERNEL
);
131 if (type
== IRQ_READ
)
132 events
= UM_POLLIN
| UM_POLLPRI
;
135 *new_fd
= ((struct irq_fd
) { .next
= NULL
,
142 .current_events
= 0 } );
145 spin_lock_irqsave(&irq_lock
, flags
);
146 for (irq_fd
= active_fds
; irq_fd
!= NULL
; irq_fd
= irq_fd
->next
) {
147 if ((irq_fd
->fd
== fd
) && (irq_fd
->type
== type
)) {
148 printk("Registering fd %d twice\n", fd
);
149 printk("Irqs : %d, %d\n", irq_fd
->irq
, irq
);
150 printk("Ids : 0x%p, 0x%p\n", irq_fd
->id
, dev_id
);
155 if (type
== IRQ_WRITE
)
162 n
= os_create_pollfd(fd
, events
, tmp_pfd
, n
);
167 * It means we couldn't put new pollfd to current pollfds
168 * and tmp_fds is NULL or too small for new pollfds array.
169 * Needed size is equal to n as minimum.
171 * Here we have to drop the lock in order to call
172 * kmalloc, which might sleep.
173 * If something else came in and changed the pollfds array
174 * so we will not be able to put new pollfd struct to pollfds
175 * then we free the buffer tmp_fds and try again.
177 spin_unlock_irqrestore(&irq_lock
, flags
);
180 tmp_pfd
= kmalloc(n
, GFP_KERNEL
);
184 spin_lock_irqsave(&irq_lock
, flags
);
187 *last_irq_ptr
= new_fd
;
188 last_irq_ptr
= &new_fd
->next
;
190 spin_unlock_irqrestore(&irq_lock
, flags
);
192 /* This calls activate_fd, so it has to be outside the critical
195 maybe_sigio_broken(fd
, (type
== IRQ_READ
));
200 spin_unlock_irqrestore(&irq_lock
, flags
);
207 static void free_irq_by_cb(int (*test
)(struct irq_fd
*, void *), void *arg
)
211 spin_lock_irqsave(&irq_lock
, flags
);
212 os_free_irq_by_cb(test
, arg
, active_fds
, &last_irq_ptr
);
213 spin_unlock_irqrestore(&irq_lock
, flags
);
221 static int same_irq_and_dev(struct irq_fd
*irq
, void *d
)
223 struct irq_and_dev
*data
= d
;
225 return ((irq
->irq
== data
->irq
) && (irq
->id
== data
->dev
));
228 void free_irq_by_irq_and_dev(unsigned int irq
, void *dev
)
230 struct irq_and_dev data
= ((struct irq_and_dev
) { .irq
= irq
,
233 free_irq_by_cb(same_irq_and_dev
, &data
);
236 static int same_fd(struct irq_fd
*irq
, void *fd
)
238 return (irq
->fd
== *((int *)fd
));
241 void free_irq_by_fd(int fd
)
243 free_irq_by_cb(same_fd
, &fd
);
246 static struct irq_fd
*find_irq_by_fd(int fd
, int irqnum
, int *index_out
)
252 for (irq
= active_fds
; irq
!= NULL
; irq
= irq
->next
) {
253 if ((irq
->fd
== fd
) && (irq
->irq
== irqnum
))
258 printk("find_irq_by_fd doesn't have descriptor %d\n", fd
);
261 fdi
= os_get_pollfd(i
);
262 if ((fdi
!= -1) && (fdi
!= fd
)) {
263 printk("find_irq_by_fd - mismatch between active_fds and "
264 "pollfds, fd %d vs %d, need %d\n", irq
->fd
,
274 void reactivate_fd(int fd
, int irqnum
)
280 spin_lock_irqsave(&irq_lock
, flags
);
281 irq
= find_irq_by_fd(fd
, irqnum
, &i
);
283 spin_unlock_irqrestore(&irq_lock
, flags
);
286 os_set_pollfd(i
, irq
->fd
);
287 spin_unlock_irqrestore(&irq_lock
, flags
);
292 void deactivate_fd(int fd
, int irqnum
)
298 spin_lock_irqsave(&irq_lock
, flags
);
299 irq
= find_irq_by_fd(fd
, irqnum
, &i
);
301 spin_unlock_irqrestore(&irq_lock
, flags
);
305 os_set_pollfd(i
, -1);
306 spin_unlock_irqrestore(&irq_lock
, flags
);
311 int deactivate_all_fds(void)
316 for (irq
= active_fds
; irq
!= NULL
; irq
= irq
->next
) {
317 err
= os_clear_fd_async(irq
->fd
);
321 /* If there is a signal already queued, after unblocking ignore it */
327 #ifdef CONFIG_MODE_TT
328 void forward_interrupts(int pid
)
334 spin_lock_irqsave(&irq_lock
, flags
);
335 for (irq
= active_fds
; irq
!= NULL
; irq
= irq
->next
) {
336 err
= os_set_owner(irq
->fd
, pid
);
338 /* XXX Just remove the irq rather than
339 * print out an infinite stream of these
341 printk("Failed to forward %d to pid %d, err = %d\n",
347 spin_unlock_irqrestore(&irq_lock
, flags
);
352 * do_IRQ handles all normal device IRQ's (the special
353 * SMP cross-CPU interrupts have their own specific
356 unsigned int do_IRQ(int irq
, union uml_pt_regs
*regs
)
358 struct pt_regs
*old_regs
= set_irq_regs((struct pt_regs
*)regs
);
362 set_irq_regs(old_regs
);
366 int um_request_irq(unsigned int irq
, int fd
, int type
,
367 irq_handler_t handler
,
368 unsigned long irqflags
, const char * devname
,
373 err
= request_irq(irq
, handler
, irqflags
, devname
, dev_id
);
378 err
= activate_fd(irq
, fd
, type
, dev_id
);
381 EXPORT_SYMBOL(um_request_irq
);
382 EXPORT_SYMBOL(reactivate_fd
);
384 /* hw_interrupt_type must define (startup || enable) &&
385 * (shutdown || disable) && end */
386 static void dummy(unsigned int irq
)
390 /* This is used for everything else than the timer. */
391 static struct hw_interrupt_type normal_irq_type
= {
393 .release
= free_irq_by_irq_and_dev
,
400 static struct hw_interrupt_type SIGVTALRM_irq_type
= {
401 .typename
= "SIGVTALRM",
402 .release
= free_irq_by_irq_and_dev
,
403 .shutdown
= dummy
, /* never called */
410 void __init
init_IRQ(void)
414 irq_desc
[TIMER_IRQ
].status
= IRQ_DISABLED
;
415 irq_desc
[TIMER_IRQ
].action
= NULL
;
416 irq_desc
[TIMER_IRQ
].depth
= 1;
417 irq_desc
[TIMER_IRQ
].chip
= &SIGVTALRM_irq_type
;
418 enable_irq(TIMER_IRQ
);
419 for (i
= 1; i
< NR_IRQS
; i
++) {
420 irq_desc
[i
].status
= IRQ_DISABLED
;
421 irq_desc
[i
].action
= NULL
;
422 irq_desc
[i
].depth
= 1;
423 irq_desc
[i
].chip
= &normal_irq_type
;
428 int init_aio_irq(int irq
, char *name
, irq_handler_t handler
)
432 err
= os_pipe(fds
, 1, 1);
434 printk("init_aio_irq - os_pipe failed, err = %d\n", -err
);
438 err
= um_request_irq(irq
, fds
[0], IRQ_READ
, handler
,
439 IRQF_DISABLED
| IRQF_SAMPLE_RANDOM
, name
,
440 (void *) (long) fds
[0]);
442 printk("init_aio_irq - : um_request_irq failed, err = %d\n",
451 os_close_file(fds
[0]);
452 os_close_file(fds
[1]);