Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / arm / mach-shmobile / suspend.c
blob74b30bade2c15c380c0d3fd721d5aa80a957ef79
1 /*
2 * Suspend-to-RAM support code for SH-Mobile ARM
4 * Copyright (C) 2011 Magnus Damm
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
11 #include <linux/pm.h>
12 #include <linux/suspend.h>
13 #include <linux/module.h>
14 #include <linux/err.h>
15 #include <linux/cpu.h>
17 #include <asm/io.h>
18 #include <asm/system_misc.h>
20 #include "common.h"
22 static int shmobile_suspend_default_enter(suspend_state_t suspend_state)
24 cpu_do_idle();
25 return 0;
28 static int shmobile_suspend_begin(suspend_state_t state)
30 cpu_idle_poll_ctrl(true);
31 return 0;
34 static void shmobile_suspend_end(void)
36 cpu_idle_poll_ctrl(false);
39 struct platform_suspend_ops shmobile_suspend_ops = {
40 .begin = shmobile_suspend_begin,
41 .end = shmobile_suspend_end,
42 .enter = shmobile_suspend_default_enter,
43 .valid = suspend_valid_only_mem,
46 int __init shmobile_suspend_init(void)
48 suspend_set_ops(&shmobile_suspend_ops);
49 return 0;