blob: d2c9338d74e8157d7c4d191d45efd47d59873546 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Russell Kinge8ce0eb2011-08-26 20:28:52 +01002#include <linux/init.h>
Lorenzo Pieralisi76045372013-05-16 10:34:30 +01003#include <linux/slab.h>
Ingo Molnar589ee622017-02-04 00:16:44 +01004#include <linux/mm_types.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -07005#include <linux/pgtable.h>
Russell Kinge8ce0eb2011-08-26 20:28:52 +01006
Russell King26602162018-05-10 13:00:43 +01007#include <asm/bugs.h>
Lorenzo Pieralisi76045372013-05-16 10:34:30 +01008#include <asm/cacheflush.h>
Will Deacone6eadc62011-11-15 11:11:19 +00009#include <asm/idmap.h>
Russell Kinge8ce0eb2011-08-26 20:28:52 +010010#include <asm/pgalloc.h>
Russell Kinge8ce0eb2011-08-26 20:28:52 +010011#include <asm/memory.h>
Lorenzo Pieralisi76045372013-05-16 10:34:30 +010012#include <asm/smp_plat.h>
Russell Kinge8ce0eb2011-08-26 20:28:52 +010013#include <asm/suspend.h>
14#include <asm/tlbflush.h>
15
Nicolas Pitre71a89862013-07-18 16:50:59 -040016extern int __cpu_suspend(unsigned long, int (*)(unsigned long), u32 cpuid);
Russell King62b2d072011-08-31 23:26:18 +010017extern void cpu_resume_mmu(void);
Russell Kinge8ce0eb2011-08-26 20:28:52 +010018
Will Deaconaa1aadc2012-02-23 13:51:38 +000019#ifdef CONFIG_MMU
Will Deaconaa1aadc2012-02-23 13:51:38 +000020int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
21{
22 struct mm_struct *mm = current->active_mm;
Nicolas Pitre71a89862013-07-18 16:50:59 -040023 u32 __mpidr = cpu_logical_map(smp_processor_id());
Will Deaconaa1aadc2012-02-23 13:51:38 +000024 int ret;
25
26 if (!idmap_pgd)
27 return -EINVAL;
28
29 /*
30 * Provide a temporary page table with an identity mapping for
31 * the MMU-enable code, required for resuming. On successful
32 * resume (indicated by a zero return code), we need to switch
33 * back to the correct page tables.
34 */
Nicolas Pitre71a89862013-07-18 16:50:59 -040035 ret = __cpu_suspend(arg, fn, __mpidr);
Will Deaconaa1aadc2012-02-23 13:51:38 +000036 if (ret == 0) {
37 cpu_switch_mm(mm->pgd, mm);
38 local_flush_bp_all();
39 local_flush_tlb_all();
Russell King26602162018-05-10 13:00:43 +010040 check_other_bugs();
Will Deaconaa1aadc2012-02-23 13:51:38 +000041 }
42
43 return ret;
44}
45#else
46int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
47{
Nicolas Pitre71a89862013-07-18 16:50:59 -040048 u32 __mpidr = cpu_logical_map(smp_processor_id());
49 return __cpu_suspend(arg, fn, __mpidr);
Will Deaconaa1aadc2012-02-23 13:51:38 +000050}
51#define idmap_pgd NULL
52#endif
53
Russell Kinge8ce0eb2011-08-26 20:28:52 +010054/*
Russell Kingabda1bd2011-09-01 11:52:33 +010055 * This is called by __cpu_suspend() to save the state, and do whatever
56 * flushing is required to ensure that when the CPU goes to sleep we have
57 * the necessary data available when the caches are not searched.
58 */
59void __cpu_suspend_save(u32 *ptr, u32 ptrsz, u32 sp, u32 *save_ptr)
60{
Lorenzo Pieralisidbee0c62012-09-07 11:06:57 +053061 u32 *ctx = ptr;
62
Russell Kingabda1bd2011-09-01 11:52:33 +010063 *save_ptr = virt_to_phys(ptr);
64
65 /* This must correspond to the LDM in cpu_resume() assembly */
Will Deacone6eadc62011-11-15 11:11:19 +000066 *ptr++ = virt_to_phys(idmap_pgd);
Russell Kingabda1bd2011-09-01 11:52:33 +010067 *ptr++ = sp;
68 *ptr++ = virt_to_phys(cpu_do_resume);
69
70 cpu_do_suspend(ptr);
71
Lorenzo Pieralisidbee0c62012-09-07 11:06:57 +053072 flush_cache_louis();
73
74 /*
75 * flush_cache_louis does not guarantee that
76 * save_ptr and ptr are cleaned to main memory,
77 * just up to the Level of Unification Inner Shareable.
78 * Since the context pointer and context itself
79 * are to be retrieved with the MMU off that
80 * data must be cleaned from all cache levels
81 * to main memory using "area" cache primitives.
82 */
83 __cpuc_flush_dcache_area(ctx, ptrsz);
84 __cpuc_flush_dcache_area(save_ptr, sizeof(*save_ptr));
85
Russell King8e6f83b2011-09-01 11:57:59 +010086 outer_clean_range(*save_ptr, *save_ptr + ptrsz);
87 outer_clean_range(virt_to_phys(save_ptr),
88 virt_to_phys(save_ptr) + sizeof(*save_ptr));
Russell Kingabda1bd2011-09-01 11:52:33 +010089}
Lorenzo Pieralisi76045372013-05-16 10:34:30 +010090
91extern struct sleep_save_sp sleep_save_sp;
92
93static int cpu_suspend_alloc_sp(void)
94{
95 void *ctx_ptr;
96 /* ctx_ptr is an array of physical addresses */
97 ctx_ptr = kcalloc(mpidr_hash_size(), sizeof(u32), GFP_KERNEL);
98
99 if (WARN_ON(!ctx_ptr))
100 return -ENOMEM;
101 sleep_save_sp.save_ptr_stash = ctx_ptr;
102 sleep_save_sp.save_ptr_stash_phys = virt_to_phys(ctx_ptr);
103 sync_cache_w(&sleep_save_sp);
104 return 0;
105}
106early_initcall(cpu_suspend_alloc_sp);