suspend.c 3.4 KB
Newer Older
1
#include <linux/ftrace.h>
2
#include <linux/percpu.h>
3 4 5 6 7
#include <linux/slab.h>
#include <asm/cacheflush.h>
#include <asm/debug-monitors.h>
#include <asm/pgtable.h>
#include <asm/memory.h>
8
#include <asm/mmu_context.h>
9 10 11 12 13
#include <asm/smp_plat.h>
#include <asm/suspend.h>
#include <asm/tlbflush.h>

/*
14 15
 * This is allocated by cpu_suspend_init(), and used to store a pointer to
 * the 'struct sleep_stack_data' the contains a particular CPUs state.
16
 */
17
unsigned long *sleep_save_stash;
18

19 20 21 22 23 24 25
/*
 * This hook is provided so that cpu_suspend code can restore HW
 * breakpoints as early as possible in the resume path, before reenabling
 * debug exceptions. Code cannot be run from a CPU PM notifier since by the
 * time the notifier runs debug exceptions might have been enabled already,
 * with HW breakpoints registers content still in an unknown state.
 */
26 27
static int (*hw_breakpoint_restore)(unsigned int);
void __init cpu_suspend_set_dbg_restorer(int (*hw_bp_restore)(unsigned int))
28 29 30 31 32 33 34
{
	/* Prevent multiple restore hook initializations */
	if (WARN_ON(hw_breakpoint_restore))
		return;
	hw_breakpoint_restore = hw_bp_restore;
}

35 36
void notrace __cpu_suspend_exit(void)
{
37 38
	unsigned int cpu = smp_processor_id();

39 40 41 42 43 44 45 46 47 48 49
	/*
	 * We are resuming from reset with the idmap active in TTBR0_EL1.
	 * We must uninstall the idmap and restore the expected MMU
	 * state before we can possibly return to userspace.
	 */
	cpu_uninstall_idmap();

	/*
	 * Restore per-cpu offset before any kernel
	 * subsystem relying on it has a chance to run.
	 */
50
	set_my_cpu_offset(per_cpu_offset(cpu));
51 52 53 54 55 56 57

	/*
	 * Restore HW breakpoint registers to sane values
	 * before debug exceptions are possibly reenabled
	 * through local_dbg_restore.
	 */
	if (hw_breakpoint_restore)
58
		hw_breakpoint_restore(cpu);
59 60
}

61
/*
62
 * cpu_suspend
63 64 65 66 67
 *
 * arg: argument to pass to the finisher function
 * fn: finisher function pointer
 *
 */
68
int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
69
{
70
	int ret = 0;
71
	unsigned long flags;
72
	struct sleep_stack_data state;
73 74 75 76 77 78 79 80

	/*
	 * From this point debug exceptions are disabled to prevent
	 * updates to mdscr register (saved and restored along with
	 * general purpose registers) from kernel debuggers.
	 */
	local_dbg_save(flags);

81 82 83 84 85 86 87
	/*
	 * Function graph tracer state gets incosistent when the kernel
	 * calls functions that never return (aka suspend finishers) hence
	 * disable graph tracing during their execution.
	 */
	pause_graph_tracing();

88 89 90
	if (__cpu_suspend_enter(&state)) {
		/* Call the suspend finisher */
		ret = fn(arg);
91

92
		/*
93 94 95 96 97
		 * Never gets here, unless the suspend finisher fails.
		 * Successful cpu_suspend() should return from cpu_resume(),
		 * returning through this code path is considered an error
		 * If the return value is set to 0 force ret = -EOPNOTSUPP
		 * to make sure a proper error condition is propagated
98
		 */
99 100 101 102
		if (!ret)
			ret = -EOPNOTSUPP;
	} else {
		__cpu_suspend_exit();
103 104
	}

105 106
	unpause_graph_tracing();

107 108 109 110 111 112 113 114 115 116
	/*
	 * Restore pstate flags. OS lock and mdscr have been already
	 * restored, so from this point onwards, debugging is fully
	 * renabled if it was enabled when core started shutdown.
	 */
	local_dbg_restore(flags);

	return ret;
}

117
static int __init cpu_suspend_init(void)
118 119
{
	/* ctx_ptr is an array of physical addresses */
120 121
	sleep_save_stash = kcalloc(mpidr_hash_size(), sizeof(*sleep_save_stash),
				   GFP_KERNEL);
122

123
	if (WARN_ON(!sleep_save_stash))
124 125 126 127 128
		return -ENOMEM;

	return 0;
}
early_initcall(cpu_suspend_init);