| 
									
										
										
										
											2006-12-01 15:15:55 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * arch/arm/mach-ep93xx/adssphere.c | 
					
						
							|  |  |  |  * ADS Sphere support. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or (at | 
					
						
							|  |  |  |  * your option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							| 
									
										
										
										
											2012-09-03 20:29:28 +08:00
										 |  |  | #include <linux/sizes.h>
 | 
					
						
							| 
									
										
										
										
											2009-07-06 17:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:14:15 +01:00
										 |  |  | #include <mach/hardware.h>
 | 
					
						
							| 
									
										
										
										
											2009-07-06 17:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-01 15:15:55 +01:00
										 |  |  | #include <asm/mach-types.h>
 | 
					
						
							|  |  |  | #include <asm/mach/arch.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-11 09:06:08 +11:00
										 |  |  | #include "soc.h"
 | 
					
						
							| 
									
										
										
										
											2009-07-06 17:39:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-18 18:04:06 +01:00
										 |  |  | static struct ep93xx_eth_data __initdata adssphere_eth_data = { | 
					
						
							| 
									
										
										
										
											2006-12-01 15:15:55 +01:00
										 |  |  | 	.phy_id		= 1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init adssphere_init_machine(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ep93xx_init_devices(); | 
					
						
							| 
									
										
										
										
											2010-06-10 16:19:08 +01:00
										 |  |  | 	ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_32M); | 
					
						
							| 
									
										
										
										
											2008-10-04 20:01:49 +01:00
										 |  |  | 	ep93xx_register_eth(&adssphere_eth_data, 1); | 
					
						
							| 
									
										
										
										
											2006-12-01 15:15:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MACHINE_START(ADSSPHERE, "ADS Sphere board") | 
					
						
							|  |  |  | 	/* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */ | 
					
						
							| 
									
										
										
										
											2011-07-05 22:38:11 -04:00
										 |  |  | 	.atag_offset	= 0x100, | 
					
						
							| 
									
										
										
										
											2006-12-01 15:15:55 +01:00
										 |  |  | 	.map_io		= ep93xx_map_io, | 
					
						
							|  |  |  | 	.init_irq	= ep93xx_init_irq, | 
					
						
							| 
									
										
										
										
											2012-11-08 12:40:59 -07:00
										 |  |  | 	.init_time	= ep93xx_timer_init, | 
					
						
							| 
									
										
										
										
											2006-12-01 15:15:55 +01:00
										 |  |  | 	.init_machine	= adssphere_init_machine, | 
					
						
							| 
									
										
										
										
											2012-04-26 10:05:15 +08:00
										 |  |  | 	.init_late	= ep93xx_init_late, | 
					
						
							| 
									
										
										
										
											2011-11-05 09:54:14 +00:00
										 |  |  | 	.restart	= ep93xx_restart, | 
					
						
							| 
									
										
										
										
											2006-12-01 15:15:55 +01:00
										 |  |  | MACHINE_END |