| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SH5-101/SH5-103 CPU Setup | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 2009  Paul Mundt | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/serial.h>
 | 
					
						
							|  |  |  | #include <linux/serial_sci.h>
 | 
					
						
							|  |  |  | #include <linux/io.h>
 | 
					
						
							|  |  |  | #include <linux/mm.h>
 | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | #include <linux/sh_timer.h>
 | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | #include <asm/addrspace.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:41 +00:00
										 |  |  | static struct plat_sci_port scif0_platform_data = { | 
					
						
							|  |  |  | 	.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP, | 
					
						
							| 
									
										
										
										
											2011-01-13 15:06:28 +09:00
										 |  |  | 	.scscr		= SCSCR_RE | SCSCR_TE | SCSCR_REIE, | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:41 +00:00
										 |  |  | 	.type		= PORT_SCIF, | 
					
						
							| 
									
										
										
										
											2013-12-06 10:59:48 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource scif0_resources[] = { | 
					
						
							|  |  |  | 	DEFINE_RES_MEM(PHYS_PERIPHERAL_BLOCK + 0x01030000, 0x100), | 
					
						
							|  |  |  | 	DEFINE_RES_IRQ(39), | 
					
						
							|  |  |  | 	DEFINE_RES_IRQ(40), | 
					
						
							|  |  |  | 	DEFINE_RES_IRQ(42), | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:41 +00:00
										 |  |  | static struct platform_device scif0_device = { | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | 	.name		= "sh-sci", | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:41 +00:00
										 |  |  | 	.id		= 0, | 
					
						
							| 
									
										
										
										
											2013-12-06 10:59:48 +01:00
										 |  |  | 	.resource	= scif0_resources, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(scif0_resources), | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | 	.dev		= { | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:41 +00:00
										 |  |  | 		.platform_data	= &scif0_platform_data, | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 15:39:25 +09:00
										 |  |  | static struct resource rtc_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= PHYS_PERIPHERAL_BLOCK + 0x01040000, | 
					
						
							|  |  |  | 		.end	= PHYS_PERIPHERAL_BLOCK + 0x01040000 + 0x58 - 1, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_IO, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		/* Period IRQ */ | 
					
						
							|  |  |  | 		.start	= IRQ_PRI, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[2] = { | 
					
						
							|  |  |  | 		/* Carry IRQ */ | 
					
						
							|  |  |  | 		.start	= IRQ_CUI, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[3] = { | 
					
						
							|  |  |  | 		/* Alarm IRQ */ | 
					
						
							|  |  |  | 		.start	= IRQ_ATI, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device rtc_device = { | 
					
						
							|  |  |  | 	.name		= "sh-rtc", | 
					
						
							|  |  |  | 	.id		= -1, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(rtc_resources), | 
					
						
							|  |  |  | 	.resource	= rtc_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | #define	TMU_BLOCK_OFF	0x01020000
 | 
					
						
							|  |  |  | #define TMU_BASE	PHYS_PERIPHERAL_BLOCK + TMU_BLOCK_OFF
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct sh_timer_config tmu0_platform_data = { | 
					
						
							| 
									
										
										
										
											2014-04-23 13:15:15 +02:00
										 |  |  | 	.channels_mask = 7, | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource tmu0_resources[] = { | 
					
						
							| 
									
										
										
										
											2014-04-23 13:15:15 +02:00
										 |  |  | 	DEFINE_RES_MEM(TMU_BASE, 0x30), | 
					
						
							|  |  |  | 	DEFINE_RES_IRQ(IRQ_TUNI0), | 
					
						
							|  |  |  | 	DEFINE_RES_IRQ(IRQ_TUNI1), | 
					
						
							|  |  |  | 	DEFINE_RES_IRQ(IRQ_TUNI2), | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device tmu0_device = { | 
					
						
							| 
									
										
										
										
											2014-04-23 13:15:15 +02:00
										 |  |  | 	.name		= "sh-tmu", | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.platform_data	= &tmu0_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.resource	= tmu0_resources, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(tmu0_resources), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device *sh5_early_devices[] __initdata = { | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:41 +00:00
										 |  |  | 	&scif0_device, | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | 	&tmu0_device, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | static struct platform_device *sh5_devices[] __initdata = { | 
					
						
							| 
									
										
										
										
											2009-05-08 15:39:25 +09:00
										 |  |  | 	&rtc_device, | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init sh5_devices_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = platform_add_devices(sh5_early_devices, | 
					
						
							|  |  |  | 				   ARRAY_SIZE(sh5_early_devices)); | 
					
						
							|  |  |  | 	if (unlikely(ret != 0)) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-07 18:10:27 +09:00
										 |  |  | 	return platform_add_devices(sh5_devices, | 
					
						
							|  |  |  | 				    ARRAY_SIZE(sh5_devices)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-07-22 15:14:29 +00:00
										 |  |  | arch_initcall(sh5_devices_setup); | 
					
						
							| 
									
										
										
										
											2009-05-08 16:12:17 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | void __init plat_early_device_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	early_platform_add_devices(sh5_early_devices, | 
					
						
							|  |  |  | 				   ARRAY_SIZE(sh5_early_devices)); | 
					
						
							|  |  |  | } |