suspend.c 3.8 KB

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