| 
									
										
										
										
											2011-04-23 15:28:34 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Under GPLv2 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | struct at91_init_soc { | 
					
						
							| 
									
										
										
										
											2012-08-16 17:36:55 +08:00
										 |  |  | 	int builtin; | 
					
						
							| 
									
										
										
										
											2013-06-01 16:40:11 +02:00
										 |  |  | 	u32 extern_irq; | 
					
						
							| 
									
										
										
										
											2011-04-23 15:28:34 +08:00
										 |  |  | 	unsigned int *default_irq_priority; | 
					
						
							| 
									
										
										
										
											2011-04-23 15:28:34 +08:00
										 |  |  | 	void (*map_io)(void); | 
					
						
							| 
									
										
										
										
											2011-10-14 01:17:18 +08:00
										 |  |  | 	void (*ioremap_registers)(void); | 
					
						
							| 
									
										
										
										
											2011-04-24 18:15:34 +08:00
										 |  |  | 	void (*register_clocks)(void); | 
					
						
							| 
									
										
										
										
											2014-07-02 17:49:28 +02:00
										 |  |  | 	void (*register_devices)(void); | 
					
						
							| 
									
										
										
										
											2011-04-24 18:20:28 +08:00
										 |  |  | 	void (*init)(void); | 
					
						
							| 
									
										
										
										
											2014-09-02 18:05:04 +02:00
										 |  |  | 	void (*init_time)(void); | 
					
						
							| 
									
										
										
										
											2011-04-23 15:28:34 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | extern struct at91_init_soc at91_boot_soc; | 
					
						
							|  |  |  | extern struct at91_init_soc at91rm9200_soc; | 
					
						
							|  |  |  | extern struct at91_init_soc at91sam9260_soc; | 
					
						
							|  |  |  | extern struct at91_init_soc at91sam9261_soc; | 
					
						
							|  |  |  | extern struct at91_init_soc at91sam9263_soc; | 
					
						
							|  |  |  | extern struct at91_init_soc at91sam9g45_soc; | 
					
						
							|  |  |  | extern struct at91_init_soc at91sam9rl_soc; | 
					
						
							|  |  |  | extern struct at91_init_soc at91sam9x5_soc; | 
					
						
							| 
									
										
										
										
											2012-04-17 14:26:30 +08:00
										 |  |  | extern struct at91_init_soc at91sam9n12_soc; | 
					
						
							| 
									
										
										
										
											2013-03-22 13:24:12 +00:00
										 |  |  | extern struct at91_init_soc sama5d3_soc; | 
					
						
							| 
									
										
										
										
											2014-09-15 18:15:54 +02:00
										 |  |  | extern struct at91_init_soc sama5d4_soc; | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-16 17:36:55 +08:00
										 |  |  | #define AT91_SOC_START(_name)				\
 | 
					
						
							| 
									
										
										
										
											2013-03-22 13:24:09 +00:00
										 |  |  | struct at91_init_soc __initdata _name##_soc		\ | 
					
						
							| 
									
										
										
										
											2012-08-16 17:36:55 +08:00
										 |  |  |  __used							\ | 
					
						
							|  |  |  | 						= {	\ | 
					
						
							|  |  |  | 	.builtin	= 1,				\ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define AT91_SOC_END					\
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | static inline int at91_soc_is_enabled(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-16 17:36:55 +08:00
										 |  |  | 	return at91_boot_soc.builtin; | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 11:51:50 +08:00
										 |  |  | #if !defined(CONFIG_SOC_AT91RM9200)
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | #define at91rm9200_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 11:51:50 +08:00
										 |  |  | #if !defined(CONFIG_SOC_AT91SAM9260)
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | #define at91sam9260_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 11:51:50 +08:00
										 |  |  | #if !defined(CONFIG_SOC_AT91SAM9261)
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | #define at91sam9261_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 11:51:50 +08:00
										 |  |  | #if !defined(CONFIG_SOC_AT91SAM9263)
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | #define at91sam9263_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 11:51:50 +08:00
										 |  |  | #if !defined(CONFIG_SOC_AT91SAM9G45)
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | #define at91sam9g45_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 11:51:50 +08:00
										 |  |  | #if !defined(CONFIG_SOC_AT91SAM9RL)
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | #define at91sam9rl_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 11:51:50 +08:00
										 |  |  | #if !defined(CONFIG_SOC_AT91SAM9X5)
 | 
					
						
							| 
									
										
										
										
											2011-04-23 22:12:57 +08:00
										 |  |  | #define at91sam9x5_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-04-17 14:26:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(CONFIG_SOC_AT91SAM9N12)
 | 
					
						
							|  |  |  | #define at91sam9n12_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-03-22 13:24:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(CONFIG_SOC_SAMA5D3)
 | 
					
						
							|  |  |  | #define sama5d3_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-09-15 18:15:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(CONFIG_SOC_SAMA5D4)
 | 
					
						
							|  |  |  | #define sama5d4_soc	at91_boot_soc
 | 
					
						
							|  |  |  | #endif
 |