| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-08-01 21:09:31 +09:00
										 |  |  |  *  linux/arch/m32r/platforms/m32104ut/setup.c | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  *  Setup routines for M32104UT Board | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (c) 2002-2005  Hiroyuki Kondo, Hirokazu Takata, | 
					
						
							|  |  |  |  *                           Hitoshi Yamamoto, Mamoru Sakugawa, | 
					
						
							|  |  |  |  *                           Naoto Sugai, Hayato Fujiwara | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/irq.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/device.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/m32r.h>
 | 
					
						
							|  |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define irq2port(x) (M32R_ICU_CR1_PORTL + ((x - 1) * sizeof(unsigned long)))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | icu_data_t icu_data[NR_IRQS]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void disable_m32104ut_irq(unsigned int irq) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long port, data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	port = irq2port(irq); | 
					
						
							|  |  |  | 	data = icu_data[irq].icucr|M32R_ICUCR_ILEVEL7; | 
					
						
							|  |  |  | 	outl(data, port); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void enable_m32104ut_irq(unsigned int irq) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long port, data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	port = irq2port(irq); | 
					
						
							|  |  |  | 	data = icu_data[irq].icucr|M32R_ICUCR_IEN|M32R_ICUCR_ILEVEL6; | 
					
						
							|  |  |  | 	outl(data, port); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | static void mask_m32104ut_irq(struct irq_data *data) | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 	disable_m32104ut_irq(data->irq); | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | static void unmask_m32104ut_irq(struct irq_data *data) | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 	enable_m32104ut_irq(data->irq); | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | static void shutdown_m32104ut_irq(struct irq_data *data) | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 	unsigned int irq = data->irq; | 
					
						
							|  |  |  | 	unsigned long port = irq2port(irq); | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	outl(M32R_ICUCR_ILEVEL7, port); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 15:33:26 -07:00
										 |  |  | static struct irq_chip m32104ut_irq_type = | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 	.name		= "M32104UT-IRQ", | 
					
						
							|  |  |  | 	.irq_shutdown	= shutdown_m32104ut_irq, | 
					
						
							|  |  |  | 	.irq_unmask	= unmask_m32104ut_irq, | 
					
						
							|  |  |  | 	.irq_mask	= mask_m32104ut_irq, | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void __init init_IRQ(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static int once = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (once) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		once++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(CONFIG_SMC91X)
 | 
					
						
							|  |  |  | 	/* INT#0: LAN controller on M32104UT-LAN (SMC91C111)*/ | 
					
						
							| 
									
										
										
										
											2011-03-24 17:32:45 +01:00
										 |  |  | 	irq_set_chip_and_handler(M32R_IRQ_INT0, &m32104ut_irq_type, | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 				 handle_level_irq); | 
					
						
							|  |  |  | 	/* "H" level sense */ | 
					
						
							|  |  |  | 	cu_data[M32R_IRQ_INT0].icucr = M32R_ICUCR_IEN | M32R_ICUCR_ISMOD11; | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | 	disable_m32104ut_irq(M32R_IRQ_INT0); | 
					
						
							|  |  |  | #endif  /* CONFIG_SMC91X */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* MFT2 : system timer */ | 
					
						
							| 
									
										
										
										
											2011-03-24 17:32:45 +01:00
										 |  |  | 	irq_set_chip_and_handler(M32R_IRQ_MFT2, &m32104ut_irq_type, | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 				 handle_level_irq); | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | 	icu_data[M32R_IRQ_MFT2].icucr = M32R_ICUCR_IEN; | 
					
						
							|  |  |  | 	disable_m32104ut_irq(M32R_IRQ_MFT2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SERIAL_M32R_SIO
 | 
					
						
							|  |  |  | 	/* SIO0_R : uart receive data */ | 
					
						
							| 
									
										
										
										
											2011-03-24 17:32:45 +01:00
										 |  |  | 	irq_set_chip_and_handler(M32R_IRQ_SIO0_R, &m32104ut_irq_type, | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 				 handle_level_irq); | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | 	icu_data[M32R_IRQ_SIO0_R].icucr = M32R_ICUCR_IEN; | 
					
						
							|  |  |  | 	disable_m32104ut_irq(M32R_IRQ_SIO0_R); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* SIO0_S : uart send data */ | 
					
						
							| 
									
										
										
										
											2011-03-24 17:32:45 +01:00
										 |  |  | 	irq_set_chip_and_handler(M32R_IRQ_SIO0_S, &m32104ut_irq_type, | 
					
						
							| 
									
										
										
										
											2011-01-19 17:02:29 +01:00
										 |  |  | 				 handle_level_irq); | 
					
						
							| 
									
										
										
										
											2006-01-06 00:18:41 -08:00
										 |  |  | 	icu_data[M32R_IRQ_SIO0_S].icucr = M32R_ICUCR_IEN; | 
					
						
							|  |  |  | 	disable_m32104ut_irq(M32R_IRQ_SIO0_S); | 
					
						
							|  |  |  | #endif /* CONFIG_SERIAL_M32R_SIO */
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(CONFIG_SMC91X)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LAN_IOSTART     0x300
 | 
					
						
							|  |  |  | #define LAN_IOEND       0x320
 | 
					
						
							|  |  |  | static struct resource smc91x_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start  = (LAN_IOSTART), | 
					
						
							|  |  |  | 		.end    = (LAN_IOEND), | 
					
						
							|  |  |  | 		.flags  = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start  = M32R_IRQ_INT0, | 
					
						
							|  |  |  | 		.end    = M32R_IRQ_INT0, | 
					
						
							|  |  |  | 		.flags  = IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device smc91x_device = { | 
					
						
							|  |  |  | 	.name		= "smc91x", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.num_resources  = ARRAY_SIZE(smc91x_resources), | 
					
						
							|  |  |  | 	.resource       = smc91x_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init platform_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #if defined(CONFIG_SMC91X)
 | 
					
						
							|  |  |  | 	platform_device_register(&smc91x_device); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | arch_initcall(platform_init); |