]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/arm/mach-kirkwood/cpuidle.c
cpuidle: Single/Global registration of idle states
[karo-tx-linux.git] / arch / arm / mach-kirkwood / cpuidle.c
1 /*
2  * arch/arm/mach-kirkwood/cpuidle.c
3  *
4  * CPU idle Marvell Kirkwood SoCs
5  *
6  * This file is licensed under the terms of the GNU General Public
7  * License version 2.  This program is licensed "as is" without any
8  * warranty of any kind, whether express or implied.
9  *
10  * The cpu idle uses wait-for-interrupt and DDR self refresh in order
11  * to implement two idle states -
12  * #1 wait-for-interrupt
13  * #2 wait-for-interrupt and DDR self refresh
14  */
15
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/cpuidle.h>
20 #include <linux/io.h>
21 #include <asm/proc-fns.h>
22 #include <mach/kirkwood.h>
23
24 #define KIRKWOOD_MAX_STATES     2
25
26 static struct cpuidle_driver kirkwood_idle_driver = {
27         .name =         "kirkwood_idle",
28         .owner =        THIS_MODULE,
29 };
30
31 static DEFINE_PER_CPU(struct cpuidle_device, kirkwood_cpuidle_device);
32
33 /* Actual code that puts the SoC in different idle states */
34 static int kirkwood_enter_idle(struct cpuidle_device *dev,
35                                 struct cpuidle_driver *drv,
36                                int index)
37 {
38         struct timeval before, after;
39         int idle_time;
40
41         local_irq_disable();
42         do_gettimeofday(&before);
43         if (index == 0)
44                 /* Wait for interrupt state */
45                 cpu_do_idle();
46         else if (index == 1) {
47                 /*
48                  * Following write will put DDR in self refresh.
49                  * Note that we have 256 cycles before DDR puts it
50                  * self in self-refresh, so the wait-for-interrupt
51                  * call afterwards won't get the DDR from self refresh
52                  * mode.
53                  */
54                 writel(0x7, DDR_OPERATION_BASE);
55                 cpu_do_idle();
56         }
57         do_gettimeofday(&after);
58         local_irq_enable();
59         idle_time = (after.tv_sec - before.tv_sec) * USEC_PER_SEC +
60                         (after.tv_usec - before.tv_usec);
61
62         /* Update last residency */
63         dev->last_residency = idle_time;
64
65         return index;
66 }
67
68 /* Initialize CPU idle by registering the idle states */
69 static int kirkwood_init_cpuidle(void)
70 {
71         struct cpuidle_device *device;
72         struct cpuidle_driver *driver = &kirkwood_idle_driver;
73
74         device = &per_cpu(kirkwood_cpuidle_device, smp_processor_id());
75         device->state_count = KIRKWOOD_MAX_STATES;
76         driver->state_count = KIRKWOOD_MAX_STATES;
77
78         /* Wait for interrupt state */
79         driver->states[0].enter = kirkwood_enter_idle;
80         driver->states[0].exit_latency = 1;
81         driver->states[0].target_residency = 10000;
82         driver->states[0].flags = CPUIDLE_FLAG_TIME_VALID;
83         strcpy(driver->states[0].name, "WFI");
84         strcpy(driver->states[0].desc, "Wait for interrupt");
85
86         /* Wait for interrupt and DDR self refresh state */
87         driver->states[1].enter = kirkwood_enter_idle;
88         driver->states[1].exit_latency = 10;
89         driver->states[1].target_residency = 10000;
90         driver->states[1].flags = CPUIDLE_FLAG_TIME_VALID;
91         strcpy(driver->states[1].name, "DDR SR");
92         strcpy(driver->states[1].desc, "WFI and DDR Self Refresh");
93
94         cpuidle_register_driver(&kirkwood_idle_driver);
95         if (cpuidle_register_device(device)) {
96                 printk(KERN_ERR "kirkwood_init_cpuidle: Failed registering\n");
97                 return -EIO;
98         }
99         return 0;
100 }
101
102 device_initcall(kirkwood_init_cpuidle);