| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	linux/arch/cris/kernel/irq.c | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:52 -08:00
										 |  |  |  *      Copyright (c) 2000,2007 Axis Communications AB | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  *      Authors: Bjorn Wesen (bjornw@axis.com) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file contains the code used by various IRQ handling routines: | 
					
						
							| 
									
										
										
										
											2007-10-20 01:08:50 +02:00
										 |  |  |  * asking for different IRQs should be done through these routines | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * instead of just grabbing them. Thus setups with different IRQ numbers | 
					
						
							|  |  |  |  * shouldn't result in any weird surprises, and installing new handlers | 
					
						
							|  |  |  |  * should be easier. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-10-20 01:08:50 +02:00
										 |  |  |  * IRQs are in fact implemented a bit like signal handlers for the kernel. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Naturally it's not a 1:1 relation, but there are similarities. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/ptrace.h>
 | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | #include <linux/irq.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel_stat.h>
 | 
					
						
							|  |  |  | #include <linux/signal.h>
 | 
					
						
							|  |  |  | #include <linux/sched.h>
 | 
					
						
							|  |  |  | #include <linux/ioport.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/timex.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/random.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/seq_file.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | #include <linux/spinlock.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int show_interrupts(struct seq_file *p, void *v) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 	int i = *(loff_t *) v, j; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct irqaction * action; | 
					
						
							|  |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 	if (i == 0) { | 
					
						
							|  |  |  | 		seq_printf(p, "           "); | 
					
						
							| 
									
										
										
										
											2006-03-23 03:01:05 -08:00
										 |  |  | 		for_each_online_cpu(j) | 
					
						
							|  |  |  | 			seq_printf(p, "CPU%d       ",j); | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 		seq_putc(p, '\n'); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (i < NR_IRQS) { | 
					
						
							| 
									
										
										
										
											2009-11-17 16:46:45 +01:00
										 |  |  | 		raw_spin_lock_irqsave(&irq_desc[i].lock, flags); | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 		action = irq_desc[i].action; | 
					
						
							|  |  |  | 		if (!action) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			goto skip; | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 		seq_printf(p, "%3d: ",i); | 
					
						
							|  |  |  | #ifndef CONFIG_SMP
 | 
					
						
							|  |  |  | 		seq_printf(p, "%10u ", kstat_irqs(i)); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2006-03-23 03:01:05 -08:00
										 |  |  | 		for_each_online_cpu(j) | 
					
						
							| 
									
										
										
										
											2009-01-11 13:35:56 -08:00
										 |  |  | 			seq_printf(p, "%10u ", kstat_irqs_cpu(i, j)); | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-19 13:13:41 +01:00
										 |  |  | 		seq_printf(p, " %14s", irq_desc[i].chip->name); | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 		seq_printf(p, "  %s", action->name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (action=action->next; action; action = action->next) | 
					
						
							|  |  |  | 			seq_printf(p, ", %s", action->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		seq_putc(p, '\n'); | 
					
						
							|  |  |  | skip: | 
					
						
							| 
									
										
										
										
											2009-11-17 16:46:45 +01:00
										 |  |  | 		raw_spin_unlock_irqrestore(&irq_desc[i].lock, flags); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* called by the assembler IRQ entry functions defined in irq.h
 | 
					
						
							| 
									
										
										
										
											2007-10-20 01:08:50 +02:00
										 |  |  |  * to dispatch the interrupts to registered handlers | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * interrupts are disabled upon entry - depending on if the | 
					
						
							| 
									
										
										
										
											2007-10-20 01:08:50 +02:00
										 |  |  |  * interrupt was registered with IRQF_DISABLED or not, interrupts | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * are re-enabled or not. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asmlinkage void do_IRQ(int irq, struct pt_regs * regs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 	unsigned long sp; | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:52 -08:00
										 |  |  | 	struct pt_regs *old_regs = set_irq_regs(regs); | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  | 	irq_enter(); | 
					
						
							|  |  |  | 	sp = rdsp(); | 
					
						
							|  |  |  | 	if (unlikely((sp & (PAGE_SIZE - 1)) < (PAGE_SIZE/8))) { | 
					
						
							|  |  |  | 		printk("do_IRQ: stack overflow: %lX\n", sp); | 
					
						
							|  |  |  | 		show_stack(NULL, (unsigned long *)sp); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:52 -08:00
										 |  |  | 	__do_IRQ(irq); | 
					
						
							| 
									
										
										
										
											2005-07-27 11:44:36 -07:00
										 |  |  |         irq_exit(); | 
					
						
							| 
									
										
										
										
											2007-11-14 17:00:52 -08:00
										 |  |  | 	set_irq_regs(old_regs); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void weird_irq(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	local_irq_disable(); | 
					
						
							|  |  |  | 	printk("weird irq\n"); | 
					
						
							|  |  |  | 	while(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |