aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/kernel/irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um/kernel/irq.c')
-rw-r--r--arch/um/kernel/irq.c87
1 files changed, 16 insertions, 71 deletions
diff --git a/arch/um/kernel/irq.c b/arch/um/kernel/irq.c
index a3f0b04d7101..9e485c770308 100644
--- a/arch/um/kernel/irq.c
+++ b/arch/um/kernel/irq.c
@@ -18,50 +18,6 @@
18#include "os.h" 18#include "os.h"
19 19
20/* 20/*
21 * Generic, controller-independent functions:
22 */
23
24int show_interrupts(struct seq_file *p, void *v)
25{
26 int i = *(loff_t *) v, j;
27 struct irqaction * action;
28 unsigned long flags;
29
30 if (i == 0) {
31 seq_printf(p, " ");
32 for_each_online_cpu(j)
33 seq_printf(p, "CPU%d ",j);
34 seq_putc(p, '\n');
35 }
36
37 if (i < NR_IRQS) {
38 raw_spin_lock_irqsave(&irq_desc[i].lock, flags);
39 action = irq_desc[i].action;
40 if (!action)
41 goto skip;
42 seq_printf(p, "%3d: ",i);
43#ifndef CONFIG_SMP
44 seq_printf(p, "%10u ", kstat_irqs(i));
45#else
46 for_each_online_cpu(j)
47 seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
48#endif
49 seq_printf(p, " %14s", irq_desc[i].chip->typename);
50 seq_printf(p, " %s", action->name);
51
52 for (action=action->next; action; action = action->next)
53 seq_printf(p, ", %s", action->name);
54
55 seq_putc(p, '\n');
56skip:
57 raw_spin_unlock_irqrestore(&irq_desc[i].lock, flags);
58 } else if (i == NR_IRQS)
59 seq_putc(p, '\n');
60
61 return 0;
62}
63
64/*
65 * This list is accessed under irq_lock, except in sigio_handler, 21 * This list is accessed under irq_lock, except in sigio_handler,
66 * where it is safe from being modified. IRQ handlers won't change it - 22 * where it is safe from being modified. IRQ handlers won't change it -
67 * if an IRQ source has vanished, it will be freed by free_irqs just 23 * if an IRQ source has vanished, it will be freed by free_irqs just
@@ -334,7 +290,7 @@ unsigned int do_IRQ(int irq, struct uml_pt_regs *regs)
334{ 290{
335 struct pt_regs *old_regs = set_irq_regs((struct pt_regs *)regs); 291 struct pt_regs *old_regs = set_irq_regs((struct pt_regs *)regs);
336 irq_enter(); 292 irq_enter();
337 __do_IRQ(irq); 293 generic_handle_irq(irq);
338 irq_exit(); 294 irq_exit();
339 set_irq_regs(old_regs); 295 set_irq_regs(old_regs);
340 return 1; 296 return 1;
@@ -360,49 +316,38 @@ EXPORT_SYMBOL(um_request_irq);
360EXPORT_SYMBOL(reactivate_fd); 316EXPORT_SYMBOL(reactivate_fd);
361 317
362/* 318/*
363 * irq_chip must define (startup || enable) && 319 * irq_chip must define at least enable/disable and ack when
364 * (shutdown || disable) && end 320 * the edge handler is used.
365 */ 321 */
366static void dummy(unsigned int irq) 322static void dummy(struct irq_data *d)
367{ 323{
368} 324}
369 325
370/* This is used for everything else than the timer. */ 326/* This is used for everything else than the timer. */
371static struct irq_chip normal_irq_type = { 327static struct irq_chip normal_irq_type = {
372 .typename = "SIGIO", 328 .name = "SIGIO",
373 .release = free_irq_by_irq_and_dev, 329 .release = free_irq_by_irq_and_dev,
374 .disable = dummy, 330 .irq_disable = dummy,
375 .enable = dummy, 331 .irq_enable = dummy,
376 .ack = dummy, 332 .irq_ack = dummy,
377 .end = dummy
378}; 333};
379 334
380static struct irq_chip SIGVTALRM_irq_type = { 335static struct irq_chip SIGVTALRM_irq_type = {
381 .typename = "SIGVTALRM", 336 .name = "SIGVTALRM",
382 .release = free_irq_by_irq_and_dev, 337 .release = free_irq_by_irq_and_dev,
383 .shutdown = dummy, /* never called */ 338 .irq_disable = dummy,
384 .disable = dummy, 339 .irq_enable = dummy,
385 .enable = dummy, 340 .irq_ack = dummy,
386 .ack = dummy,
387 .end = dummy
388}; 341};
389 342
390void __init init_IRQ(void) 343void __init init_IRQ(void)
391{ 344{
392 int i; 345 int i;
393 346
394 irq_desc[TIMER_IRQ].status = IRQ_DISABLED; 347 irq_set_chip_and_handler(TIMER_IRQ, &SIGVTALRM_irq_type, handle_edge_irq);
395 irq_desc[TIMER_IRQ].action = NULL; 348
396 irq_desc[TIMER_IRQ].depth = 1; 349 for (i = 1; i < NR_IRQS; i++)
397 irq_desc[TIMER_IRQ].chip = &SIGVTALRM_irq_type; 350 irq_set_chip_and_handler(i, &normal_irq_type, handle_edge_irq);
398 enable_irq(TIMER_IRQ);
399 for (i = 1; i < NR_IRQS; i++) {
400 irq_desc[i].status = IRQ_DISABLED;
401 irq_desc[i].action = NULL;
402 irq_desc[i].depth = 1;
403 irq_desc[i].chip = &normal_irq_type;
404 enable_irq(i);
405 }
406} 351}
407 352
408/* 353/*