suspend.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. #include <linux/ftrace.h>
  2. #include <linux/percpu.h>
  3. #include <linux/slab.h>
  4. #include <asm/alternative.h>
  5. #include <asm/cacheflush.h>
  6. #include <asm/cpufeature.h>
  7. #include <asm/debug-monitors.h>
  8. #include <asm/exec.h>
  9. #include <asm/pgtable.h>
  10. #include <asm/memory.h>
  11. #include <asm/mmu_context.h>
  12. #include <asm/smp_plat.h>
  13. #include <asm/suspend.h>
  14. #include <asm/tlbflush.h>
  15. /*
  16. * This is allocated by cpu_suspend_init(), and used to store a pointer to
  17. * the 'struct sleep_stack_data' the contains a particular CPUs state.
  18. */
  19. unsigned long *sleep_save_stash;
  20. /*
  21. * This hook is provided so that cpu_suspend code can restore HW
  22. * breakpoints as early as possible in the resume path, before reenabling
  23. * debug exceptions. Code cannot be run from a CPU PM notifier since by the
  24. * time the notifier runs debug exceptions might have been enabled already,
  25. * with HW breakpoints registers content still in an unknown state.
  26. */
  27. static int (*hw_breakpoint_restore)(unsigned int);
  28. void __init cpu_suspend_set_dbg_restorer(int (*hw_bp_restore)(unsigned int))
  29. {
  30. /* Prevent multiple restore hook initializations */
  31. if (WARN_ON(hw_breakpoint_restore))
  32. return;
  33. hw_breakpoint_restore = hw_bp_restore;
  34. }
  35. void notrace __cpu_suspend_exit(void)
  36. {
  37. unsigned int cpu = smp_processor_id();
  38. /*
  39. * We are resuming from reset with the idmap active in TTBR0_EL1.
  40. * We must uninstall the idmap and restore the expected MMU
  41. * state before we can possibly return to userspace.
  42. */
  43. cpu_uninstall_idmap();
  44. /*
  45. * PSTATE was not saved over suspend/resume, re-enable any detected
  46. * features that might not have been set correctly.
  47. */
  48. asm(ALTERNATIVE("nop", SET_PSTATE_PAN(1), ARM64_HAS_PAN,
  49. CONFIG_ARM64_PAN));
  50. uao_thread_switch(current);
  51. /*
  52. * Restore HW breakpoint registers to sane values
  53. * before debug exceptions are possibly reenabled
  54. * through local_dbg_restore.
  55. */
  56. if (hw_breakpoint_restore)
  57. hw_breakpoint_restore(cpu);
  58. }
  59. /*
  60. * cpu_suspend
  61. *
  62. * arg: argument to pass to the finisher function
  63. * fn: finisher function pointer
  64. *
  65. */
  66. int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
  67. {
  68. int ret = 0;
  69. unsigned long flags;
  70. struct sleep_stack_data state;
  71. /*
  72. * From this point debug exceptions are disabled to prevent
  73. * updates to mdscr register (saved and restored along with
  74. * general purpose registers) from kernel debuggers.
  75. */
  76. local_dbg_save(flags);
  77. /*
  78. * Function graph tracer state gets incosistent when the kernel
  79. * calls functions that never return (aka suspend finishers) hence
  80. * disable graph tracing during their execution.
  81. */
  82. pause_graph_tracing();
  83. if (__cpu_suspend_enter(&state)) {
  84. /* Call the suspend finisher */
  85. ret = fn(arg);
  86. /*
  87. * Never gets here, unless the suspend finisher fails.
  88. * Successful cpu_suspend() should return from cpu_resume(),
  89. * returning through this code path is considered an error
  90. * If the return value is set to 0 force ret = -EOPNOTSUPP
  91. * to make sure a proper error condition is propagated
  92. */
  93. if (!ret)
  94. ret = -EOPNOTSUPP;
  95. } else {
  96. __cpu_suspend_exit();
  97. }
  98. unpause_graph_tracing();
  99. /*
  100. * Restore pstate flags. OS lock and mdscr have been already
  101. * restored, so from this point onwards, debugging is fully
  102. * renabled if it was enabled when core started shutdown.
  103. */
  104. local_dbg_restore(flags);
  105. return ret;
  106. }
  107. static int __init cpu_suspend_init(void)
  108. {
  109. /* ctx_ptr is an array of physical addresses */
  110. sleep_save_stash = kcalloc(mpidr_hash_size(), sizeof(*sleep_save_stash),
  111. GFP_KERNEL);
  112. if (WARN_ON(!sleep_save_stash))
  113. return -ENOMEM;
  114. return 0;
  115. }
  116. early_initcall(cpu_suspend_init);