| 
									
										
										
										
											2005-07-25 22:45:45 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2006-10-03 23:01:26 +02:00
										 |  |  |  * linux/arch/mips/tx4938/common/irq.c | 
					
						
							| 
									
										
										
										
											2005-07-25 22:45:45 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Common tx4938 irq handler | 
					
						
							|  |  |  |  * Copyright (C) 2000-2001 Toshiba Corporation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 2003-2005 (c) MontaVista Software, Inc. This file is licensed under the | 
					
						
							|  |  |  |  * terms of the GNU General Public License version 2. This program is | 
					
						
							|  |  |  |  * licensed "as is" without any warranty of any kind, whether express | 
					
						
							|  |  |  |  * or implied. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Support for TX4938 in 2.6 - Manish Lachwani (mlachwani@mvista.com) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2010-10-07 14:08:54 +01:00
										 |  |  | #include <linux/irq.h>
 | 
					
						
							| 
									
										
										
										
											2007-08-02 23:36:02 +09:00
										 |  |  | #include <asm/irq_cpu.h>
 | 
					
						
							| 
									
										
										
										
											2008-07-11 23:27:54 +09:00
										 |  |  | #include <asm/txx9/tx4938.h>
 | 
					
						
							| 
									
										
										
										
											2005-07-25 22:45:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-11 23:27:54 +09:00
										 |  |  | void __init tx4938_irq_init(void) | 
					
						
							| 
									
										
										
										
											2005-07-25 22:45:45 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-08-19 22:55:12 +09:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-02 23:36:02 +09:00
										 |  |  | 	mips_cpu_irq_init(); | 
					
						
							| 
									
										
										
										
											2008-07-19 01:51:47 +09:00
										 |  |  | 	txx9_irq_init(TX4938_IRC_REG & 0xfffffffffULL); | 
					
						
							| 
									
										
										
										
											2011-03-27 15:19:28 +02:00
										 |  |  | 	irq_set_chained_handler(MIPS_CPU_IRQ_BASE + TX4938_IRC_INT, | 
					
						
							| 
									
										
										
										
											2008-07-11 23:27:54 +09:00
										 |  |  | 				handle_simple_irq); | 
					
						
							| 
									
										
										
										
											2008-08-19 22:55:12 +09:00
										 |  |  | 	/* raise priority for errors, timers, SIO */ | 
					
						
							|  |  |  | 	txx9_irq_set_pri(TX4938_IR_ECCERR, 7); | 
					
						
							|  |  |  | 	txx9_irq_set_pri(TX4938_IR_WTOERR, 7); | 
					
						
							|  |  |  | 	txx9_irq_set_pri(TX4938_IR_PCIERR, 7); | 
					
						
							|  |  |  | 	txx9_irq_set_pri(TX4938_IR_PCIPME, 7); | 
					
						
							|  |  |  | 	for (i = 0; i < TX4938_NUM_IR_TMR; i++) | 
					
						
							|  |  |  | 		txx9_irq_set_pri(TX4938_IR_TMR(i), 6); | 
					
						
							|  |  |  | 	for (i = 0; i < TX4938_NUM_IR_SIO; i++) | 
					
						
							|  |  |  | 		txx9_irq_set_pri(TX4938_IR_SIO(i), 5); | 
					
						
							| 
									
										
										
										
											2006-04-03 17:56:36 +01:00
										 |  |  | } |