| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  |  * linux/arch/sh/boards/se/7343/irq.c | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  |  * Copyright (C) 2008  Yoshihiro Shimoda | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Based on linux/arch/sh/boards/se/7722/irq.c | 
					
						
							|  |  |  |  * Copyright (C) 2007  Nobuhiro Iwamatsu | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/irq.h>
 | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2008-07-29 21:41:37 +09:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							|  |  |  | #include <mach-se/mach/se7343.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | unsigned int se7343_fpga_irq[SE7343_FPGA_IRQ_NR] = { 0, }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | static void disable_se7343_irq(unsigned int irq) | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | 	unsigned int bit = (unsigned int)get_irq_chip_data(irq); | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writew(__raw_readw(PA_CPLD_IMSK) | 1 << bit, PA_CPLD_IMSK); | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | static void enable_se7343_irq(unsigned int irq) | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | 	unsigned int bit = (unsigned int)get_irq_chip_data(irq); | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writew(__raw_readw(PA_CPLD_IMSK) & ~(1 << bit), PA_CPLD_IMSK); | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | static struct irq_chip se7343_irq_chip __read_mostly = { | 
					
						
							|  |  |  | 	.name           = "SE7343-FPGA", | 
					
						
							|  |  |  | 	.mask           = disable_se7343_irq, | 
					
						
							|  |  |  | 	.unmask         = enable_se7343_irq, | 
					
						
							|  |  |  | 	.mask_ack       = disable_se7343_irq, | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | static void se7343_irq_demux(unsigned int irq, struct irq_desc *desc) | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	unsigned short intv = __raw_readw(PA_CPLD_ST); | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | 	unsigned int ext_irq = 0; | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	intv &= (1 << SE7343_FPGA_IRQ_NR) - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | 	for (; intv; intv >>= 1, ext_irq++) { | 
					
						
							|  |  |  | 		if (!(intv & 1)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		generic_handle_irq(se7343_fpga_irq[ext_irq]); | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialize IRQ setting | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | void __init init_7343se_IRQ(void) | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | 	int i, irq; | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writew(0, PA_CPLD_IMSK);	/* disable all irqs */ | 
					
						
							|  |  |  | 	__raw_writew(0x2000, 0xb03fffec);	/* mrshpc irq enable */ | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | 	for (i = 0; i < SE7343_FPGA_IRQ_NR; i++) { | 
					
						
							|  |  |  | 		irq = create_irq(); | 
					
						
							|  |  |  | 		if (irq < 0) | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		se7343_fpga_irq[i] = irq; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		set_irq_chip_and_handler_name(se7343_fpga_irq[i], | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | 					      &se7343_irq_chip, | 
					
						
							|  |  |  | 					      handle_level_irq, "level"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 13:37:04 +09:00
										 |  |  | 		set_irq_chip_data(se7343_fpga_irq[i], (void *)i); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-07 21:11:54 +09:00
										 |  |  | 	set_irq_chained_handler(IRQ0_IRQ, se7343_irq_demux); | 
					
						
							|  |  |  | 	set_irq_type(IRQ0_IRQ, IRQ_TYPE_LEVEL_LOW); | 
					
						
							|  |  |  | 	set_irq_chained_handler(IRQ1_IRQ, se7343_irq_demux); | 
					
						
							|  |  |  | 	set_irq_type(IRQ1_IRQ, IRQ_TYPE_LEVEL_LOW); | 
					
						
							|  |  |  | 	set_irq_chained_handler(IRQ4_IRQ, se7343_irq_demux); | 
					
						
							|  |  |  | 	set_irq_type(IRQ4_IRQ, IRQ_TYPE_LEVEL_LOW); | 
					
						
							|  |  |  | 	set_irq_chained_handler(IRQ5_IRQ, se7343_irq_demux); | 
					
						
							|  |  |  | 	set_irq_type(IRQ5_IRQ, IRQ_TYPE_LEVEL_LOW); | 
					
						
							| 
									
										
										
										
											2006-09-27 18:09:34 +09:00
										 |  |  | } |