| 
									
										
										
										
											2011-08-26 20:28:52 +01:00
										 |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2013-05-16 10:34:30 +01:00
										 |  |  | #include <linux/slab.h>
 | 
					
						
							| 
									
										
										
										
											2011-08-26 20:28:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-16 10:34:30 +01:00
										 |  |  | #include <asm/cacheflush.h>
 | 
					
						
							| 
									
										
										
										
											2011-11-15 11:11:19 +00:00
										 |  |  | #include <asm/idmap.h>
 | 
					
						
							| 
									
										
										
										
											2011-08-26 20:28:52 +01:00
										 |  |  | #include <asm/pgalloc.h>
 | 
					
						
							|  |  |  | #include <asm/pgtable.h>
 | 
					
						
							|  |  |  | #include <asm/memory.h>
 | 
					
						
							| 
									
										
										
										
											2013-05-16 10:34:30 +01:00
										 |  |  | #include <asm/smp_plat.h>
 | 
					
						
							| 
									
										
										
										
											2011-08-26 20:28:52 +01:00
										 |  |  | #include <asm/suspend.h>
 | 
					
						
							|  |  |  | #include <asm/tlbflush.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-18 16:50:59 -04:00
										 |  |  | extern int __cpu_suspend(unsigned long, int (*)(unsigned long), u32 cpuid); | 
					
						
							| 
									
										
										
										
											2011-08-31 23:26:18 +01:00
										 |  |  | extern void cpu_resume_mmu(void); | 
					
						
							| 
									
										
										
										
											2011-08-26 20:28:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 13:51:38 +00:00
										 |  |  | #ifdef CONFIG_MMU
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Hide the first two arguments to __cpu_suspend - these are an implementation | 
					
						
							|  |  |  |  * detail which platform code shouldn't have to know about. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int cpu_suspend(unsigned long arg, int (*fn)(unsigned long)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mm_struct *mm = current->active_mm; | 
					
						
							| 
									
										
										
										
											2013-07-18 16:50:59 -04:00
										 |  |  | 	u32 __mpidr = cpu_logical_map(smp_processor_id()); | 
					
						
							| 
									
										
										
										
											2012-02-23 13:51:38 +00:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!idmap_pgd) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Provide a temporary page table with an identity mapping for | 
					
						
							|  |  |  | 	 * the MMU-enable code, required for resuming.  On successful | 
					
						
							|  |  |  | 	 * resume (indicated by a zero return code), we need to switch | 
					
						
							|  |  |  | 	 * back to the correct page tables. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-07-18 16:50:59 -04:00
										 |  |  | 	ret = __cpu_suspend(arg, fn, __mpidr); | 
					
						
							| 
									
										
										
										
											2012-02-23 13:51:38 +00:00
										 |  |  | 	if (ret == 0) { | 
					
						
							|  |  |  | 		cpu_switch_mm(mm->pgd, mm); | 
					
						
							|  |  |  | 		local_flush_bp_all(); | 
					
						
							|  |  |  | 		local_flush_tlb_all(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | int cpu_suspend(unsigned long arg, int (*fn)(unsigned long)) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-18 16:50:59 -04:00
										 |  |  | 	u32 __mpidr = cpu_logical_map(smp_processor_id()); | 
					
						
							|  |  |  | 	return __cpu_suspend(arg, fn, __mpidr); | 
					
						
							| 
									
										
										
										
											2012-02-23 13:51:38 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #define	idmap_pgd	NULL
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 11:52:33 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This is called by __cpu_suspend() to save the state, and do whatever | 
					
						
							|  |  |  |  * flushing is required to ensure that when the CPU goes to sleep we have | 
					
						
							|  |  |  |  * the necessary data available when the caches are not searched. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void __cpu_suspend_save(u32 *ptr, u32 ptrsz, u32 sp, u32 *save_ptr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-09-07 11:06:57 +05:30
										 |  |  | 	u32 *ctx = ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 11:52:33 +01:00
										 |  |  | 	*save_ptr = virt_to_phys(ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* This must correspond to the LDM in cpu_resume() assembly */ | 
					
						
							| 
									
										
										
										
											2011-11-15 11:11:19 +00:00
										 |  |  | 	*ptr++ = virt_to_phys(idmap_pgd); | 
					
						
							| 
									
										
										
										
											2011-09-01 11:52:33 +01:00
										 |  |  | 	*ptr++ = sp; | 
					
						
							|  |  |  | 	*ptr++ = virt_to_phys(cpu_do_resume); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cpu_do_suspend(ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-07 11:06:57 +05:30
										 |  |  | 	flush_cache_louis(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * flush_cache_louis does not guarantee that | 
					
						
							|  |  |  | 	 * save_ptr and ptr are cleaned to main memory, | 
					
						
							|  |  |  | 	 * just up to the Level of Unification Inner Shareable. | 
					
						
							|  |  |  | 	 * Since the context pointer and context itself | 
					
						
							|  |  |  | 	 * are to be retrieved with the MMU off that | 
					
						
							|  |  |  | 	 * data must be cleaned from all cache levels | 
					
						
							|  |  |  | 	 * to main memory using "area" cache primitives. | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	__cpuc_flush_dcache_area(ctx, ptrsz); | 
					
						
							|  |  |  | 	__cpuc_flush_dcache_area(save_ptr, sizeof(*save_ptr)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-01 11:57:59 +01:00
										 |  |  | 	outer_clean_range(*save_ptr, *save_ptr + ptrsz); | 
					
						
							|  |  |  | 	outer_clean_range(virt_to_phys(save_ptr), | 
					
						
							|  |  |  | 			  virt_to_phys(save_ptr) + sizeof(*save_ptr)); | 
					
						
							| 
									
										
										
										
											2011-09-01 11:52:33 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2013-05-16 10:34:30 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | extern struct sleep_save_sp sleep_save_sp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int cpu_suspend_alloc_sp(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	void *ctx_ptr; | 
					
						
							|  |  |  | 	/* ctx_ptr is an array of physical addresses */ | 
					
						
							|  |  |  | 	ctx_ptr = kcalloc(mpidr_hash_size(), sizeof(u32), GFP_KERNEL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (WARN_ON(!ctx_ptr)) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	sleep_save_sp.save_ptr_stash = ctx_ptr; | 
					
						
							|  |  |  | 	sleep_save_sp.save_ptr_stash_phys = virt_to_phys(ctx_ptr); | 
					
						
							|  |  |  | 	sync_cache_w(&sleep_save_sp); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | early_initcall(cpu_suspend_alloc_sp); |