| 
									
										
										
										
											2010-03-30 12:38:01 +09:00
										 |  |  | #ifndef __ASM_SH_SMP_OPS_H
 | 
					
						
							|  |  |  | #define __ASM_SH_SMP_OPS_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct plat_smp_ops { | 
					
						
							|  |  |  | 	void (*smp_setup)(void); | 
					
						
							|  |  |  | 	unsigned int (*smp_processor_id)(void); | 
					
						
							|  |  |  | 	void (*prepare_cpus)(unsigned int max_cpus); | 
					
						
							|  |  |  | 	void (*start_cpu)(unsigned int cpu, unsigned long entry_point); | 
					
						
							|  |  |  | 	void (*send_ipi)(unsigned int cpu, unsigned int message); | 
					
						
							| 
									
										
										
										
											2010-04-26 19:08:55 +09:00
										 |  |  | 	int (*cpu_disable)(unsigned int cpu); | 
					
						
							|  |  |  | 	void (*cpu_die)(unsigned int cpu); | 
					
						
							|  |  |  | 	void (*play_dead)(void); | 
					
						
							| 
									
										
										
										
											2010-03-30 12:38:01 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 19:08:55 +09:00
										 |  |  | extern struct plat_smp_ops *mp_ops; | 
					
						
							| 
									
										
										
										
											2010-03-30 12:38:01 +09:00
										 |  |  | extern struct plat_smp_ops shx3_smp_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SMP
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void plat_smp_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BUG_ON(!mp_ops); | 
					
						
							|  |  |  | 	mp_ops->smp_setup(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 19:08:55 +09:00
										 |  |  | static inline void play_dead(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	mp_ops->play_dead(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-30 12:38:01 +09:00
										 |  |  | extern void register_smp_ops(struct plat_smp_ops *ops); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void plat_smp_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* UP, nothing to do ... */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void register_smp_ops(struct plat_smp_ops *ops) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-26 19:08:55 +09:00
										 |  |  | static inline void play_dead(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BUG(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-30 12:38:01 +09:00
										 |  |  | #endif /* CONFIG_SMP */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* __ASM_SH_SMP_OPS_H */
 |