| 
									
										
										
										
											2006-09-27 15:41:24 +09:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2007-05-09 07:51:49 +02:00
										 |  |  |  * linux/arch/sh/boards/se/7751/setup.c | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2000  Kazumoto Kojima | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Hitachi SolutionEngine Support. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Modified for 7751 Solution Engine by | 
					
						
							|  |  |  |  * Ian da Silva and Jeremy Siegel, 2001. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2007-02-13 15:42:28 +09:00
										 |  |  | #include <linux/platform_device.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-03 13:14:04 +09:00
										 |  |  | #include <asm/machvec.h>
 | 
					
						
							| 
									
										
										
										
											2008-07-29 21:41:37 +09:00
										 |  |  | #include <mach-se/mach/se7751.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-03 13:14:04 +09:00
										 |  |  | #include <asm/io.h>
 | 
					
						
							| 
									
										
										
										
											2007-08-20 13:03:41 +09:00
										 |  |  | #include <asm/heartbeat.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-13 15:42:28 +09:00
										 |  |  | static unsigned char heartbeat_bit_pos[] = { 8, 9, 10, 11, 12, 13, 14, 15 }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-20 13:03:41 +09:00
										 |  |  | static struct heartbeat_data heartbeat_data = { | 
					
						
							|  |  |  | 	.bit_pos	= heartbeat_bit_pos, | 
					
						
							|  |  |  | 	.nr_bits	= ARRAY_SIZE(heartbeat_bit_pos), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-13 15:42:28 +09:00
										 |  |  | static struct resource heartbeat_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= PA_LED, | 
					
						
							| 
									
										
										
										
											2007-08-23 15:11:44 +09:00
										 |  |  | 		.end	= PA_LED, | 
					
						
							| 
									
										
										
										
											2007-02-13 15:42:28 +09:00
										 |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device heartbeat_device = { | 
					
						
							|  |  |  | 	.name		= "heartbeat", | 
					
						
							|  |  |  | 	.id		= -1, | 
					
						
							|  |  |  | 	.dev	= { | 
					
						
							| 
									
										
										
										
											2007-08-23 15:11:44 +09:00
										 |  |  | 		.platform_data	= &heartbeat_data, | 
					
						
							| 
									
										
										
										
											2007-02-13 15:42:28 +09:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(heartbeat_resources), | 
					
						
							|  |  |  | 	.resource	= heartbeat_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device *se7751_devices[] __initdata = { | 
					
						
							|  |  |  | 	&heartbeat_device, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init se7751_devices_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return platform_add_devices(se7751_devices, ARRAY_SIZE(se7751_devices)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | __initcall(se7751_devices_setup); | 
					
						
							| 
									
										
										
										
											2006-09-27 18:17:31 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * The Machine Vector | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-05-15 15:19:34 +09:00
										 |  |  | static struct sh_machine_vector mv_7751se __initmv = { | 
					
						
							| 
									
										
										
										
											2006-09-27 18:17:31 +09:00
										 |  |  | 	.mv_name		= "7751 SolutionEngine", | 
					
						
							|  |  |  | 	.mv_nr_irqs		= 72, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.mv_inb			= sh7751se_inb, | 
					
						
							|  |  |  | 	.mv_inw			= sh7751se_inw, | 
					
						
							|  |  |  | 	.mv_inl			= sh7751se_inl, | 
					
						
							|  |  |  | 	.mv_outb		= sh7751se_outb, | 
					
						
							|  |  |  | 	.mv_outw		= sh7751se_outw, | 
					
						
							|  |  |  | 	.mv_outl		= sh7751se_outl, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.mv_inb_p		= sh7751se_inb_p, | 
					
						
							|  |  |  | 	.mv_inw_p		= sh7751se_inw, | 
					
						
							|  |  |  | 	.mv_inl_p		= sh7751se_inl, | 
					
						
							|  |  |  | 	.mv_outb_p		= sh7751se_outb_p, | 
					
						
							|  |  |  | 	.mv_outw_p		= sh7751se_outw, | 
					
						
							|  |  |  | 	.mv_outl_p		= sh7751se_outl, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.mv_insl		= sh7751se_insl, | 
					
						
							|  |  |  | 	.mv_outsl		= sh7751se_outsl, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.mv_init_irq		= init_7751se_IRQ, | 
					
						
							|  |  |  | }; |