pm-common.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // SPDX-License-Identifier: GPL-2.0
  2. //
  3. // Copyright (C) 2013 Samsung Electronics Co., Ltd.
  4. // Tomasz Figa <t.figa@samsung.com>
  5. // Copyright (C) 2008 Openmoko, Inc.
  6. // Copyright (C) 2004-2008 Simtec Electronics
  7. // Ben Dooks <ben@simtec.co.uk>
  8. // http://armlinux.simtec.co.uk/
  9. //
  10. // Samsung common power management helper functions.
  11. #include <linux/io.h>
  12. #include <linux/kernel.h>
  13. #include <plat/pm-common.h>
  14. /* helper functions to save and restore register state */
  15. /**
  16. * s3c_pm_do_save() - save a set of registers for restoration on resume.
  17. * @ptr: Pointer to an array of registers.
  18. * @count: Size of the ptr array.
  19. *
  20. * Run through the list of registers given, saving their contents in the
  21. * array for later restoration when we wakeup.
  22. */
  23. void s3c_pm_do_save(struct sleep_save *ptr, int count)
  24. {
  25. for (; count > 0; count--, ptr++) {
  26. ptr->val = readl_relaxed(ptr->reg);
  27. S3C_PMDBG("saved %p value %08lx\n", ptr->reg, ptr->val);
  28. }
  29. }
  30. /**
  31. * s3c_pm_do_restore() - restore register values from the save list.
  32. * @ptr: Pointer to an array of registers.
  33. * @count: Size of the ptr array.
  34. *
  35. * Restore the register values saved from s3c_pm_do_save().
  36. *
  37. * Note, we do not use S3C_PMDBG() in here, as the system may not have
  38. * restore the UARTs state yet
  39. */
  40. void s3c_pm_do_restore(const struct sleep_save *ptr, int count)
  41. {
  42. for (; count > 0; count--, ptr++) {
  43. pr_debug("restore %p (restore %08lx, was %08x)\n",
  44. ptr->reg, ptr->val, readl_relaxed(ptr->reg));
  45. writel_relaxed(ptr->val, ptr->reg);
  46. }
  47. }
  48. /**
  49. * s3c_pm_do_restore_core() - early restore register values from save list.
  50. *
  51. * This is similar to s3c_pm_do_restore() except we try and minimise the
  52. * side effects of the function in case registers that hardware might need
  53. * to work has been restored.
  54. *
  55. * WARNING: Do not put any debug in here that may effect memory or use
  56. * peripherals, as things may be changing!
  57. */
  58. void s3c_pm_do_restore_core(const struct sleep_save *ptr, int count)
  59. {
  60. for (; count > 0; count--, ptr++)
  61. writel_relaxed(ptr->val, ptr->reg);
  62. }