suspend.c 2.0 KB
Newer Older
1 2
#include <linux/init.h>

3
#include <asm/idmap.h>
4 5 6 7 8 9
#include <asm/pgalloc.h>
#include <asm/pgtable.h>
#include <asm/memory.h>
#include <asm/suspend.h>
#include <asm/tlbflush.h>

10
extern int __cpu_suspend(unsigned long, int (*)(unsigned long));
11
extern void cpu_resume_mmu(void);
12

13 14 15 16 17 18 19
/*
 * 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)
{
20 21
	u32 *ctx = ptr;

22 23 24
	*save_ptr = virt_to_phys(ptr);

	/* This must correspond to the LDM in cpu_resume() assembly */
25
	*ptr++ = virt_to_phys(idmap_pgd);
26 27 28 29 30
	*ptr++ = sp;
	*ptr++ = virt_to_phys(cpu_do_resume);

	cpu_do_suspend(ptr);

31 32 33 34 35 36 37 38 39 40 41 42 43 44
	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));

45 46 47
	outer_clean_range(*save_ptr, *save_ptr + ptrsz);
	outer_clean_range(virt_to_phys(save_ptr),
			  virt_to_phys(save_ptr) + sizeof(*save_ptr));
48 49
}

50 51 52 53 54 55 56 57 58
/*
 * 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;
	int ret;

59
	if (!idmap_pgd)
60 61 62
		return -EINVAL;

	/*
63 64 65 66
	 * 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.
67
	 */
68
	ret = __cpu_suspend(arg, fn);
69 70
	if (ret == 0) {
		cpu_switch_mm(mm->pgd, mm);
71
		local_flush_bp_all();
72 73
		local_flush_tlb_all();
	}
74 75 76

	return ret;
}