suspend.c 3.3 KB

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