blob: 46a19e07abd3a5269e6cd732efdb3683c9fc5f41 [file] [log] [blame]
Paul Mundta6a311392006-09-27 18:22:14 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * linux/arch/sh/kernel/irq.c
3 *
4 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
5 *
6 *
7 * SuperH version: Copyright (C) 1999 Niibe Yutaka
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/irq.h>
Paul Mundtbf3a00f2006-01-16 22:14:14 -080010#include <linux/interrupt.h>
Paul Mundta6a311392006-09-27 18:22:14 +090011#include <linux/module.h>
Paul Mundtbf3a00f2006-01-16 22:14:14 -080012#include <linux/kernel_stat.h>
13#include <linux/seq_file.h>
Paul Mundtbaf43262006-10-12 12:03:04 +090014#include <linux/io.h>
Paul Mundtbf3a00f2006-01-16 22:14:14 -080015#include <asm/irq.h>
16#include <asm/processor.h>
Paul Mundta6a311392006-09-27 18:22:14 +090017#include <asm/uaccess.h>
18#include <asm/thread_info.h>
Paul Mundtbf3a00f2006-01-16 22:14:14 -080019#include <asm/cpu/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Paul Mundt35f3c512006-10-06 15:31:16 +090021atomic_t irq_err_count;
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * 'what should we do if we get a hw irq event on an illegal vector'.
25 * each architecture has to answer this themselves, it doesn't deserve
26 * a generic callback i think.
27 */
28void ack_bad_irq(unsigned int irq)
29{
Paul Mundtbaf43262006-10-12 12:03:04 +090030 atomic_inc(&irq_err_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 printk("unexpected IRQ trap at vector %02x\n", irq);
32}
33
34#if defined(CONFIG_PROC_FS)
35int show_interrupts(struct seq_file *p, void *v)
36{
37 int i = *(loff_t *) v, j;
38 struct irqaction * action;
39 unsigned long flags;
40
41 if (i == 0) {
42 seq_puts(p, " ");
Andrew Morton394e3902006-03-23 03:01:05 -080043 for_each_online_cpu(j)
44 seq_printf(p, "CPU%d ",j);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 seq_putc(p, '\n');
46 }
47
Paul Mundtbf3a00f2006-01-16 22:14:14 -080048 if (i < NR_IRQS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 spin_lock_irqsave(&irq_desc[i].lock, flags);
50 action = irq_desc[i].action;
51 if (!action)
52 goto unlock;
53 seq_printf(p, "%3d: ",i);
Paul Mundt35f3c512006-10-06 15:31:16 +090054 for_each_online_cpu(j)
55 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
56 seq_printf(p, " %14s", irq_desc[i].chip->name);
Paul Mundt709bc442006-10-19 17:32:56 +090057 seq_printf(p, "-%-8s", irq_desc[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 seq_printf(p, " %s", action->name);
59
60 for (action=action->next; action; action = action->next)
61 seq_printf(p, ", %s", action->name);
62 seq_putc(p, '\n');
63unlock:
64 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
Paul Mundt35f3c512006-10-06 15:31:16 +090065 } else if (i == NR_IRQS)
66 seq_printf(p, "Err: %10u\n", atomic_read(&irq_err_count));
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return 0;
69}
70#endif
71
Paul Mundta6a311392006-09-27 18:22:14 +090072#ifdef CONFIG_4KSTACKS
73/*
74 * per-CPU IRQ handling contexts (thread information and stack)
75 */
76union irq_ctx {
77 struct thread_info tinfo;
78 u32 stack[THREAD_SIZE/sizeof(u32)];
79};
80
Paul Mundt1dc41e52006-11-24 19:46:18 +090081static union irq_ctx *hardirq_ctx[NR_CPUS] __read_mostly;
82static union irq_ctx *softirq_ctx[NR_CPUS] __read_mostly;
Paul Mundta6a311392006-09-27 18:22:14 +090083#endif
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085asmlinkage int do_IRQ(unsigned long r4, unsigned long r5,
86 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +090087 struct pt_regs __regs)
Paul Mundtbf3a00f2006-01-16 22:14:14 -080088{
Stuart Menefyf0bc8142006-11-21 11:16:57 +090089 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
90 struct pt_regs *old_regs = set_irq_regs(regs);
Paul Mundtbaf43262006-10-12 12:03:04 +090091 int irq;
Paul Mundta6a311392006-09-27 18:22:14 +090092#ifdef CONFIG_4KSTACKS
93 union irq_ctx *curctx, *irqctx;
94#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 irq_enter();
Paul Mundtbf3a00f2006-01-16 22:14:14 -080097
Paul Mundtd153ea82006-09-27 18:20:16 +090098#ifdef CONFIG_DEBUG_STACKOVERFLOW
99 /* Debugging check for stack overflow: is there less than 1KB free? */
100 {
101 long sp;
102
103 __asm__ __volatile__ ("and r15, %0" :
104 "=r" (sp) : "0" (THREAD_SIZE - 1));
105
106 if (unlikely(sp < (sizeof(struct thread_info) + STACK_WARN))) {
107 printk("do_IRQ: stack overflow: %ld\n",
108 sp - sizeof(struct thread_info));
109 dump_stack();
110 }
111 }
112#endif
113
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800114#ifdef CONFIG_CPU_HAS_INTEVT
Paul Mundtbaf43262006-10-12 12:03:04 +0900115 irq = (ctrl_inl(INTEVT) >> 5) - 16;
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800116#else
Paul Mundtbaf43262006-10-12 12:03:04 +0900117 irq = r4;
Paul Mundtbf3a00f2006-01-16 22:14:14 -0800118#endif
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 irq = irq_demux(irq);
Paul Mundta6a311392006-09-27 18:22:14 +0900121
122#ifdef CONFIG_4KSTACKS
123 curctx = (union irq_ctx *)current_thread_info();
124 irqctx = hardirq_ctx[smp_processor_id()];
125
126 /*
127 * this is where we switch to the IRQ stack. However, if we are
128 * already using the IRQ stack (because we interrupted a hardirq
129 * handler) we can't do that and just have to keep using the
130 * current stack (which is the irq stack already after all)
131 */
132 if (curctx != irqctx) {
133 u32 *isp;
134
135 isp = (u32 *)((char *)irqctx + sizeof(*irqctx));
136 irqctx->tinfo.task = curctx->tinfo.task;
137 irqctx->tinfo.previous_sp = current_stack_pointer;
138
Paul Mundt1dc41e52006-11-24 19:46:18 +0900139 /*
140 * Copy the softirq bits in preempt_count so that the
141 * softirq checks work in the hardirq context.
142 */
143 irqctx->tinfo.preempt_count =
144 (irqctx->tinfo.preempt_count & ~SOFTIRQ_MASK) |
145 (curctx->tinfo.preempt_count & SOFTIRQ_MASK);
146
Paul Mundta6a311392006-09-27 18:22:14 +0900147 __asm__ __volatile__ (
148 "mov %0, r4 \n"
Paul Mundt1dc41e52006-11-24 19:46:18 +0900149 "mov r15, r8 \n"
Paul Mundtbaf43262006-10-12 12:03:04 +0900150 "jsr @%1 \n"
Paul Mundta6a311392006-09-27 18:22:14 +0900151 /* swith to the irq stack */
Paul Mundtbaf43262006-10-12 12:03:04 +0900152 " mov %2, r15 \n"
Paul Mundta6a311392006-09-27 18:22:14 +0900153 /* restore the stack (ring zero) */
Paul Mundt1dc41e52006-11-24 19:46:18 +0900154 "mov r8, r15 \n"
Paul Mundta6a311392006-09-27 18:22:14 +0900155 : /* no outputs */
Paul Mundt35f3c512006-10-06 15:31:16 +0900156 : "r" (irq), "r" (generic_handle_irq), "r" (isp)
Paul Mundta6a311392006-09-27 18:22:14 +0900157 : "memory", "r0", "r1", "r2", "r3", "r4",
158 "r5", "r6", "r7", "r8", "t", "pr"
159 );
160 } else
161#endif
Paul Mundt35f3c512006-10-06 15:31:16 +0900162 generic_handle_irq(irq);
Paul Mundta6a311392006-09-27 18:22:14 +0900163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 irq_exit();
Paul Mundta6a311392006-09-27 18:22:14 +0900165
Paul Mundt35f3c512006-10-06 15:31:16 +0900166 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return 1;
168}
Paul Mundta6a311392006-09-27 18:22:14 +0900169
170#ifdef CONFIG_4KSTACKS
171/*
172 * These should really be __section__(".bss.page_aligned") as well, but
173 * gcc's 3.0 and earlier don't handle that correctly.
174 */
175static char softirq_stack[NR_CPUS * THREAD_SIZE]
176 __attribute__((__aligned__(THREAD_SIZE)));
177
178static char hardirq_stack[NR_CPUS * THREAD_SIZE]
179 __attribute__((__aligned__(THREAD_SIZE)));
180
181/*
182 * allocate per-cpu stacks for hardirq and for softirq processing
183 */
184void irq_ctx_init(int cpu)
185{
186 union irq_ctx *irqctx;
187
188 if (hardirq_ctx[cpu])
189 return;
190
191 irqctx = (union irq_ctx *)&hardirq_stack[cpu * THREAD_SIZE];
192 irqctx->tinfo.task = NULL;
193 irqctx->tinfo.exec_domain = NULL;
194 irqctx->tinfo.cpu = cpu;
195 irqctx->tinfo.preempt_count = HARDIRQ_OFFSET;
196 irqctx->tinfo.addr_limit = MAKE_MM_SEG(0);
197
198 hardirq_ctx[cpu] = irqctx;
199
200 irqctx = (union irq_ctx *)&softirq_stack[cpu * THREAD_SIZE];
201 irqctx->tinfo.task = NULL;
202 irqctx->tinfo.exec_domain = NULL;
203 irqctx->tinfo.cpu = cpu;
Paul Mundt1dc41e52006-11-24 19:46:18 +0900204 irqctx->tinfo.preempt_count = 0;
Paul Mundta6a311392006-09-27 18:22:14 +0900205 irqctx->tinfo.addr_limit = MAKE_MM_SEG(0);
206
207 softirq_ctx[cpu] = irqctx;
208
209 printk("CPU %u irqstacks, hard=%p soft=%p\n",
210 cpu, hardirq_ctx[cpu], softirq_ctx[cpu]);
211}
212
213void irq_ctx_exit(int cpu)
214{
215 hardirq_ctx[cpu] = NULL;
216}
217
218extern asmlinkage void __do_softirq(void);
219
220asmlinkage void do_softirq(void)
221{
222 unsigned long flags;
223 struct thread_info *curctx;
224 union irq_ctx *irqctx;
225 u32 *isp;
226
227 if (in_interrupt())
228 return;
229
230 local_irq_save(flags);
231
232 if (local_softirq_pending()) {
233 curctx = current_thread_info();
234 irqctx = softirq_ctx[smp_processor_id()];
235 irqctx->tinfo.task = curctx->task;
236 irqctx->tinfo.previous_sp = current_stack_pointer;
237
238 /* build the stack frame on the softirq stack */
239 isp = (u32 *)((char *)irqctx + sizeof(*irqctx));
240
241 __asm__ __volatile__ (
242 "mov r15, r9 \n"
243 "jsr @%0 \n"
244 /* switch to the softirq stack */
245 " mov %1, r15 \n"
246 /* restore the thread stack */
247 "mov r9, r15 \n"
248 : /* no outputs */
249 : "r" (__do_softirq), "r" (isp)
Paul Mundta6a311392006-09-27 18:22:14 +0900250 : "memory", "r0", "r1", "r2", "r3", "r4",
251 "r5", "r6", "r7", "r8", "r9", "r15", "t", "pr"
252 );
Paul Mundt1dc41e52006-11-24 19:46:18 +0900253
254 /*
255 * Shouldnt happen, we returned above if in_interrupt():
256 */
257 WARN_ON_ONCE(softirq_count());
Paul Mundta6a311392006-09-27 18:22:14 +0900258 }
259
260 local_irq_restore(flags);
261}
262EXPORT_SYMBOL(do_softirq);
263#endif