2 * linux/arch/sh/kernel/irq.c
4 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
7 * SuperH version: Copyright (C) 1999 Niibe Yutaka
10 #include <linux/interrupt.h>
11 #include <linux/module.h>
12 #include <linux/kernel_stat.h>
13 #include <linux/seq_file.h>
16 #include <asm/processor.h>
17 #include <asm/uaccess.h>
18 #include <asm/thread_info.h>
19 #include <asm/cpu/mmu_context.h>
21 atomic_t irq_err_count
;
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.
28 void ack_bad_irq(unsigned int irq
)
30 atomic_inc(&irq_err_count
);
31 printk("unexpected IRQ trap at vector %02x\n", irq
);
34 #if defined(CONFIG_PROC_FS)
35 int show_interrupts(struct seq_file
*p
, void *v
)
37 int i
= *(loff_t
*) v
, j
;
38 struct irqaction
* action
;
43 for_each_online_cpu(j
)
44 seq_printf(p
, "CPU%d ",j
);
49 spin_lock_irqsave(&irq_desc
[i
].lock
, flags
);
50 action
= irq_desc
[i
].action
;
53 seq_printf(p
, "%3d: ",i
);
54 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
);
57 seq_printf(p
, "-%-8s", irq_desc
[i
].name
);
58 seq_printf(p
, " %s", action
->name
);
60 for (action
=action
->next
; action
; action
= action
->next
)
61 seq_printf(p
, ", %s", action
->name
);
64 spin_unlock_irqrestore(&irq_desc
[i
].lock
, flags
);
65 } else if (i
== NR_IRQS
)
66 seq_printf(p
, "Err: %10u\n", atomic_read(&irq_err_count
));
72 #ifdef CONFIG_4KSTACKS
74 * per-CPU IRQ handling contexts (thread information and stack)
77 struct thread_info tinfo
;
78 u32 stack
[THREAD_SIZE
/sizeof(u32
)];
81 static union irq_ctx
*hardirq_ctx
[NR_CPUS
];
82 static union irq_ctx
*softirq_ctx
[NR_CPUS
];
85 asmlinkage
int do_IRQ(unsigned long r4
, unsigned long r5
,
86 unsigned long r6
, unsigned long r7
,
89 struct pt_regs
*old_regs
= set_irq_regs(®s
);
91 #ifdef CONFIG_4KSTACKS
92 union irq_ctx
*curctx
, *irqctx
;
97 #ifdef CONFIG_DEBUG_STACKOVERFLOW
98 /* Debugging check for stack overflow: is there less than 1KB free? */
102 __asm__
__volatile__ ("and r15, %0" :
103 "=r" (sp
) : "0" (THREAD_SIZE
- 1));
105 if (unlikely(sp
< (sizeof(struct thread_info
) + STACK_WARN
))) {
106 printk("do_IRQ: stack overflow: %ld\n",
107 sp
- sizeof(struct thread_info
));
113 #ifdef CONFIG_CPU_HAS_INTEVT
114 irq
= (ctrl_inl(INTEVT
) >> 5) - 16;
119 irq
= irq_demux(irq
);
121 #ifdef CONFIG_4KSTACKS
122 curctx
= (union irq_ctx
*)current_thread_info();
123 irqctx
= hardirq_ctx
[smp_processor_id()];
126 * this is where we switch to the IRQ stack. However, if we are
127 * already using the IRQ stack (because we interrupted a hardirq
128 * handler) we can't do that and just have to keep using the
129 * current stack (which is the irq stack already after all)
131 if (curctx
!= irqctx
) {
134 isp
= (u32
*)((char *)irqctx
+ sizeof(*irqctx
));
135 irqctx
->tinfo
.task
= curctx
->tinfo
.task
;
136 irqctx
->tinfo
.previous_sp
= current_stack_pointer
;
138 __asm__
__volatile__ (
142 /* swith to the irq stack */
144 /* restore the stack (ring zero) */
147 : "r" (irq
), "r" (generic_handle_irq
), "r" (isp
)
148 /* XXX: A somewhat excessive clobber list? -PFM */
149 : "memory", "r0", "r1", "r2", "r3", "r4",
150 "r5", "r6", "r7", "r8", "t", "pr"
154 generic_handle_irq(irq
);
158 set_irq_regs(old_regs
);
162 #ifdef CONFIG_4KSTACKS
164 * These should really be __section__(".bss.page_aligned") as well, but
165 * gcc's 3.0 and earlier don't handle that correctly.
167 static char softirq_stack
[NR_CPUS
* THREAD_SIZE
]
168 __attribute__((__aligned__(THREAD_SIZE
)));
170 static char hardirq_stack
[NR_CPUS
* THREAD_SIZE
]
171 __attribute__((__aligned__(THREAD_SIZE
)));
174 * allocate per-cpu stacks for hardirq and for softirq processing
176 void irq_ctx_init(int cpu
)
178 union irq_ctx
*irqctx
;
180 if (hardirq_ctx
[cpu
])
183 irqctx
= (union irq_ctx
*)&hardirq_stack
[cpu
* THREAD_SIZE
];
184 irqctx
->tinfo
.task
= NULL
;
185 irqctx
->tinfo
.exec_domain
= NULL
;
186 irqctx
->tinfo
.cpu
= cpu
;
187 irqctx
->tinfo
.preempt_count
= HARDIRQ_OFFSET
;
188 irqctx
->tinfo
.addr_limit
= MAKE_MM_SEG(0);
190 hardirq_ctx
[cpu
] = irqctx
;
192 irqctx
= (union irq_ctx
*)&softirq_stack
[cpu
* THREAD_SIZE
];
193 irqctx
->tinfo
.task
= NULL
;
194 irqctx
->tinfo
.exec_domain
= NULL
;
195 irqctx
->tinfo
.cpu
= cpu
;
196 irqctx
->tinfo
.preempt_count
= SOFTIRQ_OFFSET
;
197 irqctx
->tinfo
.addr_limit
= MAKE_MM_SEG(0);
199 softirq_ctx
[cpu
] = irqctx
;
201 printk("CPU %u irqstacks, hard=%p soft=%p\n",
202 cpu
, hardirq_ctx
[cpu
], softirq_ctx
[cpu
]);
205 void irq_ctx_exit(int cpu
)
207 hardirq_ctx
[cpu
] = NULL
;
210 extern asmlinkage
void __do_softirq(void);
212 asmlinkage
void do_softirq(void)
215 struct thread_info
*curctx
;
216 union irq_ctx
*irqctx
;
222 local_irq_save(flags
);
224 if (local_softirq_pending()) {
225 curctx
= current_thread_info();
226 irqctx
= softirq_ctx
[smp_processor_id()];
227 irqctx
->tinfo
.task
= curctx
->task
;
228 irqctx
->tinfo
.previous_sp
= current_stack_pointer
;
230 /* build the stack frame on the softirq stack */
231 isp
= (u32
*)((char *)irqctx
+ sizeof(*irqctx
));
233 __asm__
__volatile__ (
236 /* switch to the softirq stack */
238 /* restore the thread stack */
241 : "r" (__do_softirq
), "r" (isp
)
242 /* XXX: A somewhat excessive clobber list? -PFM */
243 : "memory", "r0", "r1", "r2", "r3", "r4",
244 "r5", "r6", "r7", "r8", "r9", "r15", "t", "pr"
248 local_irq_restore(flags
);
250 EXPORT_SYMBOL(do_softirq
);