pm.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright 2011 Calxeda, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include <linux/cpu_pm.h>
  17. #include <linux/init.h>
  18. #include <linux/io.h>
  19. #include <linux/suspend.h>
  20. #include <asm/cacheflush.h>
  21. #include <asm/proc-fns.h>
  22. #include <asm/suspend.h>
  23. #include "core.h"
  24. #include "sysregs.h"
  25. static int highbank_suspend_finish(unsigned long val)
  26. {
  27. outer_flush_all();
  28. outer_disable();
  29. highbank_set_pwr_suspend();
  30. cpu_do_idle();
  31. highbank_clear_pwr_request();
  32. return 0;
  33. }
  34. static int highbank_pm_enter(suspend_state_t state)
  35. {
  36. cpu_pm_enter();
  37. cpu_cluster_pm_enter();
  38. highbank_set_cpu_jump(0, cpu_resume);
  39. cpu_suspend(0, highbank_suspend_finish);
  40. cpu_cluster_pm_exit();
  41. cpu_pm_exit();
  42. highbank_smc1(0x102, 0x1);
  43. if (scu_base_addr)
  44. scu_enable(scu_base_addr);
  45. return 0;
  46. }
  47. static const struct platform_suspend_ops highbank_pm_ops = {
  48. .enter = highbank_pm_enter,
  49. .valid = suspend_valid_only_mem,
  50. };
  51. void __init highbank_pm_init(void)
  52. {
  53. suspend_set_ops(&highbank_pm_ops);
  54. }