| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-11-21 23:16:33 +09:00
										 |  |  |  * arch/sh/mach-cayman/irq.c - SH-5 Cayman Interrupt Support | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This file handles the board specific parts of the Cayman interrupt system | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2002 Stuart Menefy | 
					
						
							| 
									
										
										
										
											2007-11-21 23:16:33 +09:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-11-21 23:16:33 +09:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/irq.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/signal.h>
 | 
					
						
							| 
									
										
										
										
											2008-07-29 08:09:44 +09:00
										 |  |  | #include <cpu/irq.h>
 | 
					
						
							| 
									
										
										
										
											2007-11-21 23:16:33 +09:00
										 |  |  | #include <asm/page.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Setup for the SMSC FDC37C935 / LAN91C100FD */ | 
					
						
							|  |  |  | #define SMSC_IRQ         IRQ_IRL1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Setup for PCI Bus 2, which transmits interrupts via the EPLD */ | 
					
						
							|  |  |  | #define PCI2_IRQ         IRQ_IRL3
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | unsigned long epld_virt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define EPLD_BASE        0x04002000
 | 
					
						
							|  |  |  | #define EPLD_STATUS_BASE (epld_virt + 0x10)
 | 
					
						
							|  |  |  | #define EPLD_MASK_BASE   (epld_virt + 0x20)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Note the SMSC SuperIO chip and SMSC LAN chip interrupts are all muxed onto
 | 
					
						
							|  |  |  |    the same SH-5 interrupt */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-14 09:10:01 +09:00
										 |  |  | static irqreturn_t cayman_interrupt_smsc(int irq, void *dev_id) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  |         printk(KERN_INFO "CAYMAN: spurious SMSC interrupt\n"); | 
					
						
							|  |  |  | 	return IRQ_NONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-14 09:10:01 +09:00
										 |  |  | static irqreturn_t cayman_interrupt_pci2(int irq, void *dev_id) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  |         printk(KERN_INFO "CAYMAN: spurious PCI interrupt, IRQ %d\n", irq); | 
					
						
							|  |  |  | 	return IRQ_NONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct irqaction cayman_action_smsc = { | 
					
						
							|  |  |  | 	.name		= "Cayman SMSC Mux", | 
					
						
							|  |  |  | 	.handler	= cayman_interrupt_smsc, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct irqaction cayman_action_pci2 = { | 
					
						
							|  |  |  | 	.name		= "Cayman PCI2 Mux", | 
					
						
							|  |  |  | 	.handler	= cayman_interrupt_pci2, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-27 15:38:59 +09:00
										 |  |  | static void enable_cayman_irq(struct irq_data *data) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-10-27 15:38:59 +09:00
										 |  |  | 	unsigned int irq = data->irq; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	unsigned long mask; | 
					
						
							|  |  |  | 	unsigned int reg; | 
					
						
							|  |  |  | 	unsigned char bit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	irq -= START_EXT_IRQS; | 
					
						
							|  |  |  | 	reg = EPLD_MASK_BASE + ((irq / 8) << 2); | 
					
						
							|  |  |  | 	bit = 1<<(irq % 8); | 
					
						
							|  |  |  | 	local_irq_save(flags); | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	mask = __raw_readl(reg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mask |= bit; | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writel(mask, reg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	local_irq_restore(flags); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-27 15:38:59 +09:00
										 |  |  | static void disable_cayman_irq(struct irq_data *data) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-10-27 15:38:59 +09:00
										 |  |  | 	unsigned int irq = data->irq; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 	unsigned long mask; | 
					
						
							|  |  |  | 	unsigned int reg; | 
					
						
							|  |  |  | 	unsigned char bit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	irq -= START_EXT_IRQS; | 
					
						
							|  |  |  | 	reg = EPLD_MASK_BASE + ((irq / 8) << 2); | 
					
						
							|  |  |  | 	bit = 1<<(irq % 8); | 
					
						
							|  |  |  | 	local_irq_save(flags); | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	mask = __raw_readl(reg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mask &= ~bit; | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 	__raw_writel(mask, reg); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	local_irq_restore(flags); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-14 12:02:27 +00:00
										 |  |  | struct irq_chip cayman_irq_type = { | 
					
						
							|  |  |  | 	.name		= "Cayman-IRQ", | 
					
						
							| 
									
										
										
										
											2010-10-27 15:38:59 +09:00
										 |  |  | 	.irq_unmask	= enable_cayman_irq, | 
					
						
							|  |  |  | 	.irq_mask	= disable_cayman_irq, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int cayman_irq_demux(int evt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int irq = intc_evt_to_irq[evt]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (irq == SMSC_IRQ) { | 
					
						
							|  |  |  | 		unsigned long status; | 
					
						
							|  |  |  | 		int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 		status = __raw_readl(EPLD_STATUS_BASE) & | 
					
						
							|  |  |  | 			 __raw_readl(EPLD_MASK_BASE) & 0xff; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (status == 0) { | 
					
						
							|  |  |  | 			irq = -1; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			for (i=0; i<8; i++) { | 
					
						
							|  |  |  | 				if (status & (1<<i)) | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			irq = START_EXT_IRQS + i; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (irq == PCI2_IRQ) { | 
					
						
							|  |  |  | 		unsigned long status; | 
					
						
							|  |  |  | 		int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 		status = __raw_readl(EPLD_STATUS_BASE + 3 * sizeof(u32)) & | 
					
						
							|  |  |  | 			 __raw_readl(EPLD_MASK_BASE + 3 * sizeof(u32)) & 0xff; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (status == 0) { | 
					
						
							|  |  |  | 			irq = -1; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			for (i=0; i<8; i++) { | 
					
						
							|  |  |  | 				if (status & (1<<i)) | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			irq = START_EXT_IRQS + (3 * 8) + i; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return irq; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void init_cayman_irq(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | 	epld_virt = (unsigned long)ioremap_nocache(EPLD_BASE, 1024); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (!epld_virt) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "Cayman IRQ: Unable to remap EPLD\n"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-14 12:02:27 +00:00
										 |  |  | 	for (i = 0; i < NR_EXT_IRQS; i++) { | 
					
						
							| 
									
										
										
										
											2011-03-24 16:31:17 +01:00
										 |  |  | 		irq_set_chip_and_handler(START_EXT_IRQS + i, | 
					
						
							|  |  |  | 					 &cayman_irq_type, handle_level_irq); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Setup the SMSC interrupt */ | 
					
						
							|  |  |  | 	setup_irq(SMSC_IRQ, &cayman_action_smsc); | 
					
						
							|  |  |  | 	setup_irq(PCI2_IRQ, &cayman_action_pci2); | 
					
						
							|  |  |  | } |