blob: 358bca3a995ed37ec66da93ec40841abd99fa804 [file] [log] [blame]
Russell Kinge8ce0eb2011-08-26 20:28:52 +01001#include <linux/init.h>
2
Will Deacone6eadc62011-11-15 11:11:19 +00003#include <asm/idmap.h>
Russell Kinge8ce0eb2011-08-26 20:28:52 +01004#include <asm/pgalloc.h>
5#include <asm/pgtable.h>
6#include <asm/memory.h>
7#include <asm/suspend.h>
8#include <asm/tlbflush.h>
9
Russell Kingabda1bd2011-09-01 11:52:33 +010010extern int __cpu_suspend(unsigned long, int (*)(unsigned long));
Russell King62b2d072011-08-31 23:26:18 +010011extern void cpu_resume_mmu(void);
Russell Kinge8ce0eb2011-08-26 20:28:52 +010012
13/*
Russell Kingabda1bd2011-09-01 11:52:33 +010014 * This is called by __cpu_suspend() to save the state, and do whatever
15 * flushing is required to ensure that when the CPU goes to sleep we have
16 * the necessary data available when the caches are not searched.
17 */
18void __cpu_suspend_save(u32 *ptr, u32 ptrsz, u32 sp, u32 *save_ptr)
19{
Lorenzo Pieralisidbee0c62012-09-07 11:06:57 +053020 u32 *ctx = ptr;
21
Russell Kingabda1bd2011-09-01 11:52:33 +010022 *save_ptr = virt_to_phys(ptr);
23
24 /* This must correspond to the LDM in cpu_resume() assembly */
Will Deacone6eadc62011-11-15 11:11:19 +000025 *ptr++ = virt_to_phys(idmap_pgd);
Russell Kingabda1bd2011-09-01 11:52:33 +010026 *ptr++ = sp;
27 *ptr++ = virt_to_phys(cpu_do_resume);
28
29 cpu_do_suspend(ptr);
30
Lorenzo Pieralisidbee0c62012-09-07 11:06:57 +053031 flush_cache_louis();
32
33 /*
34 * flush_cache_louis does not guarantee that
35 * save_ptr and ptr are cleaned to main memory,
36 * just up to the Level of Unification Inner Shareable.
37 * Since the context pointer and context itself
38 * are to be retrieved with the MMU off that
39 * data must be cleaned from all cache levels
40 * to main memory using "area" cache primitives.
41 */
42 __cpuc_flush_dcache_area(ctx, ptrsz);
43 __cpuc_flush_dcache_area(save_ptr, sizeof(*save_ptr));
44
Russell King8e6f83b2011-09-01 11:57:59 +010045 outer_clean_range(*save_ptr, *save_ptr + ptrsz);
46 outer_clean_range(virt_to_phys(save_ptr),
47 virt_to_phys(save_ptr) + sizeof(*save_ptr));
Russell Kingabda1bd2011-09-01 11:52:33 +010048}
49
50/*
Russell Kinge8ce0eb2011-08-26 20:28:52 +010051 * Hide the first two arguments to __cpu_suspend - these are an implementation
52 * detail which platform code shouldn't have to know about.
53 */
54int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
55{
56 struct mm_struct *mm = current->active_mm;
57 int ret;
58
Will Deacone6eadc62011-11-15 11:11:19 +000059 if (!idmap_pgd)
Russell Kinge8ce0eb2011-08-26 20:28:52 +010060 return -EINVAL;
61
62 /*
Russell Kingde8e71c2011-08-27 22:39:09 +010063 * Provide a temporary page table with an identity mapping for
64 * the MMU-enable code, required for resuming. On successful
65 * resume (indicated by a zero return code), we need to switch
66 * back to the correct page tables.
Russell Kinge8ce0eb2011-08-26 20:28:52 +010067 */
Russell Kingabda1bd2011-09-01 11:52:33 +010068 ret = __cpu_suspend(arg, fn);
Russell Kingde8e71c2011-08-27 22:39:09 +010069 if (ret == 0) {
70 cpu_switch_mm(mm->pgd, mm);
71 local_flush_tlb_all();
72 }
Russell Kinge8ce0eb2011-08-26 20:28:52 +010073
74 return ret;
75}