blob: 21b09b6455e4b7788057df17d624f3778a7cad21 [file] [log] [blame]
Magnus Damm0af48172011-04-29 02:36:07 +09001/*
2 * CPUIdle support code for SH-Mobile ARM
3 *
4 * Copyright (C) 2011 Magnus Damm
5 *
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 */
10
11#include <linux/pm.h>
12#include <linux/cpuidle.h>
13#include <linux/suspend.h>
14#include <linux/module.h>
15#include <linux/err.h>
Magnus Damm0af48172011-04-29 02:36:07 +090016#include <asm/io.h>
17
18static void shmobile_enter_wfi(void)
19{
20 cpu_do_idle();
21}
22
23void (*shmobile_cpuidle_modes[CPUIDLE_STATE_MAX])(void) = {
24 shmobile_enter_wfi, /* regular sleep mode */
25};
26
27static int shmobile_cpuidle_enter(struct cpuidle_device *dev,
Magnus Dammb73b5c42011-11-11 14:01:30 +090028 struct cpuidle_driver *drv,
29 int index)
Magnus Damm0af48172011-04-29 02:36:07 +090030{
31 ktime_t before, after;
Magnus Damm0af48172011-04-29 02:36:07 +090032
Magnus Damm0af48172011-04-29 02:36:07 +090033 before = ktime_get();
34
35 local_irq_disable();
36 local_fiq_disable();
37
Magnus Dammb73b5c42011-11-11 14:01:30 +090038 shmobile_cpuidle_modes[index]();
Magnus Damm0af48172011-04-29 02:36:07 +090039
40 local_irq_enable();
41 local_fiq_enable();
42
43 after = ktime_get();
Magnus Dammb73b5c42011-11-11 14:01:30 +090044 dev->last_residency = ktime_to_ns(ktime_sub(after, before)) >> 10;
45
46 return index;
Magnus Damm0af48172011-04-29 02:36:07 +090047}
48
49static struct cpuidle_device shmobile_cpuidle_dev;
50static struct cpuidle_driver shmobile_cpuidle_driver = {
51 .name = "shmobile_cpuidle",
52 .owner = THIS_MODULE,
Magnus Dammb73b5c42011-11-11 14:01:30 +090053 .states[0] = {
54 .name = "C1",
55 .desc = "WFI",
56 .exit_latency = 1,
57 .target_residency = 1 * 2,
58 .flags = CPUIDLE_FLAG_TIME_VALID,
59 },
60 .safe_state_index = 0, /* C1 */
61 .state_count = 1,
Magnus Damm0af48172011-04-29 02:36:07 +090062};
63
Magnus Dammb73b5c42011-11-11 14:01:30 +090064void (*shmobile_cpuidle_setup)(struct cpuidle_driver *drv);
Magnus Damm0af48172011-04-29 02:36:07 +090065
66static int shmobile_cpuidle_init(void)
67{
68 struct cpuidle_device *dev = &shmobile_cpuidle_dev;
Magnus Dammb73b5c42011-11-11 14:01:30 +090069 struct cpuidle_driver *drv = &shmobile_cpuidle_driver;
Magnus Damm0af48172011-04-29 02:36:07 +090070 int i;
71
Magnus Dammb73b5c42011-11-11 14:01:30 +090072 for (i = 0; i < CPUIDLE_STATE_MAX; i++)
73 drv->states[i].enter = shmobile_cpuidle_enter;
Magnus Damm0af48172011-04-29 02:36:07 +090074
75 if (shmobile_cpuidle_setup)
Magnus Dammb73b5c42011-11-11 14:01:30 +090076 shmobile_cpuidle_setup(drv);
Magnus Damm0af48172011-04-29 02:36:07 +090077
Magnus Dammb73b5c42011-11-11 14:01:30 +090078 cpuidle_register_driver(drv);
79
80 dev->state_count = drv->state_count;
Magnus Damm0af48172011-04-29 02:36:07 +090081 cpuidle_register_device(dev);
82
83 return 0;
84}
85late_initcall(shmobile_cpuidle_init);