2 * linux/arch/xtensa/kernel/irq.c
4 * Xtensa built-in interrupt controller and some generic functions copied
7 * Copyright (C) 2002 - 2006 Tensilica, Inc.
8 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
11 * Chris Zankel <chris@zankel.net>
16 #include <linux/module.h>
17 #include <linux/seq_file.h>
18 #include <linux/interrupt.h>
19 #include <linux/irq.h>
20 #include <linux/kernel_stat.h>
22 #include <asm/uaccess.h>
23 #include <asm/platform.h>
25 static unsigned int cached_irq_mask;
27 atomic_t irq_err_count;
30 * 'what should we do if we get a hw irq event on an illegal vector'.
31 * each architecture has to answer this themselves.
33 void ack_bad_irq(unsigned int irq)
35 printk("unexpected IRQ trap at vector %02x\n", irq);
39 * do_IRQ handles all normal device IRQ's (the special
40 * SMP cross-CPU interrupts have their own specific
44 asmlinkage void do_IRQ(int irq, struct pt_regs *regs)
46 struct pt_regs *old_regs = set_irq_regs(regs);
47 struct irq_desc *desc = irq_desc + irq;
50 printk(KERN_EMERG "%s: cannot handle IRQ %d\n",
56 #ifdef CONFIG_DEBUG_STACKOVERFLOW
57 /* Debugging check for stack overflow: is there less than 1KB free? */
61 __asm__ __volatile__ ("mov %0, a1\n" : "=a" (sp));
62 sp &= THREAD_SIZE - 1;
64 if (unlikely(sp < (sizeof(thread_info) + 1024)))
65 printk("Stack overflow in do_IRQ: %ld\n",
66 sp - sizeof(struct thread_info));
69 desc->handle_irq(irq, desc);
72 set_irq_regs(old_regs);
76 * Generic, controller-independent functions:
79 int show_interrupts(struct seq_file *p, void *v)
81 int i = *(loff_t *) v, j;
82 struct irqaction * action;
87 for_each_online_cpu(j)
88 seq_printf(p, "CPU%d ",j);
93 spin_lock_irqsave(&irq_desc[i].lock, flags);
94 action = irq_desc[i].action;
97 seq_printf(p, "%3d: ",i);
99 seq_printf(p, "%10u ", kstat_irqs(i));
101 for_each_online_cpu(j)
102 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
104 seq_printf(p, " %14s", irq_desc[i].chip->typename);
105 seq_printf(p, " %s", action->name);
107 for (action=action->next; action; action = action->next)
108 seq_printf(p, ", %s", action->name);
112 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
113 } else if (i == NR_IRQS) {
114 seq_printf(p, "NMI: ");
115 for_each_online_cpu(j)
116 seq_printf(p, "%10u ", nmi_count(j));
118 seq_printf(p, "ERR: %10u\n", atomic_read(&irq_err_count));
123 static void xtensa_irq_mask(unsigned int irq)
125 cached_irq_mask &= ~(1 << irq);
126 set_sr (cached_irq_mask, INTENABLE);
129 static void xtensa_irq_unmask(unsigned int irq)
131 cached_irq_mask |= 1 << irq;
132 set_sr (cached_irq_mask, INTENABLE);
135 static void xtensa_irq_ack(unsigned int irq)
137 set_sr(1 << irq, INTCLEAR);
140 static int xtensa_irq_retrigger(unsigned int irq)
142 set_sr (1 << irq, INTSET);
147 static struct irq_chip xtensa_irq_chip = {
149 .mask = xtensa_irq_mask,
150 .unmask = xtensa_irq_unmask,
151 .ack = xtensa_irq_ack,
152 .retrigger = xtensa_irq_retrigger,
155 void __init init_IRQ(void)
159 for (index = 0; index < XTENSA_NR_IRQS; index++) {
160 int mask = 1 << index;
162 if (mask & XCHAL_INTTYPE_MASK_SOFTWARE)
163 set_irq_chip_and_handler(index, &xtensa_irq_chip,
166 else if (mask & XCHAL_INTTYPE_MASK_EXTERN_EDGE)
167 set_irq_chip_and_handler(index, &xtensa_irq_chip,
170 else if (mask & XCHAL_INTTYPE_MASK_EXTERN_LEVEL)
171 set_irq_chip_and_handler(index, &xtensa_irq_chip,
174 else if (mask & XCHAL_INTTYPE_MASK_TIMER)
175 set_irq_chip_and_handler(index, &xtensa_irq_chip,
178 else /* XCHAL_INTTYPE_MASK_WRITE_ERROR */
179 /* XCHAL_INTTYPE_MASK_NMI */
181 set_irq_chip_and_handler(index, &xtensa_irq_chip,