| 
									
										
										
										
											2008-01-23 12:50:51 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * linux/arch/sh/boards/renesas/sdk7780/irq.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Renesas Technology Europe SDK7780 Support. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2008  Nicholas Beck <nbeck@mpc-data.co.uk> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/irq.h>
 | 
					
						
							|  |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2008-10-20 13:02:48 +09:00
										 |  |  | #include <mach/sdk7780.h>
 | 
					
						
							| 
									
										
										
										
											2008-01-23 12:50:51 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	UNUSED = 0, | 
					
						
							|  |  |  | 	/* board specific interrupt sources */ | 
					
						
							|  |  |  | 	SMC91C111,	/* Ethernet controller */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct intc_vect fpga_vectors[] __initdata = { | 
					
						
							|  |  |  | 	INTC_IRQ(SMC91C111, IRQ_ETHERNET), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct intc_mask_reg fpga_mask_registers[] __initdata = { | 
					
						
							|  |  |  | 	{ 0, FPGA_IRQ0MR, 16, | 
					
						
							|  |  |  | 	  { 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	    0, 0, 0, SMC91C111, 0, 0, 0, 0 } }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DECLARE_INTC_DESC(fpga_intc_desc, "sdk7780-irq", fpga_vectors, | 
					
						
							|  |  |  | 			 NULL, fpga_mask_registers, NULL, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void __init init_sdk7780_IRQ(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	printk(KERN_INFO "Using SDK7780 interrupt controller.\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writew(0xFFFF, FPGA_IRQ0MR); | 
					
						
							| 
									
										
										
										
											2008-01-23 12:50:51 +09:00
										 |  |  | 	/* Setup IRL 0-3 */ | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writew(0x0003, FPGA_IMSR); | 
					
						
							| 
									
										
										
										
											2008-01-23 12:50:51 +09:00
										 |  |  | 	plat_irq_setup_pins(IRQ_MODE_IRL3210); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	register_intc_controller(&fpga_intc_desc); | 
					
						
							|  |  |  | } |