2 * arch/arm/mach-kirkwood/cpuidle.c
4 * CPU idle Marvell Kirkwood SoCs
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.
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
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/cpuidle.h>
21 #include <linux/export.h>
22 #include <asm/proc-fns.h>
23 #include <mach/kirkwood.h>
25 #define KIRKWOOD_MAX_STATES 2
27 static struct cpuidle_driver kirkwood_idle_driver
= {
28 .name
= "kirkwood_idle",
32 static DEFINE_PER_CPU(struct cpuidle_device
, kirkwood_cpuidle_device
);
34 /* Actual code that puts the SoC in different idle states */
35 static int kirkwood_enter_idle(struct cpuidle_device
*dev
,
36 struct cpuidle_state
*state
)
38 struct timeval before
, after
;
42 do_gettimeofday(&before
);
43 if (state
== &dev
->states
[0])
44 /* Wait for interrupt state */
46 else if (state
== &dev
->states
[1]) {
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
54 writel(0x7, DDR_OPERATION_BASE
);
57 do_gettimeofday(&after
);
59 idle_time
= (after
.tv_sec
- before
.tv_sec
) * USEC_PER_SEC
+
60 (after
.tv_usec
- before
.tv_usec
);
64 /* Initialize CPU idle by registering the idle states */
65 static int kirkwood_init_cpuidle(void)
67 struct cpuidle_device
*device
;
69 cpuidle_register_driver(&kirkwood_idle_driver
);
71 device
= &per_cpu(kirkwood_cpuidle_device
, smp_processor_id());
72 device
->state_count
= KIRKWOOD_MAX_STATES
;
74 /* Wait for interrupt state */
75 device
->states
[0].enter
= kirkwood_enter_idle
;
76 device
->states
[0].exit_latency
= 1;
77 device
->states
[0].target_residency
= 10000;
78 device
->states
[0].flags
= CPUIDLE_FLAG_TIME_VALID
;
79 strcpy(device
->states
[0].name
, "WFI");
80 strcpy(device
->states
[0].desc
, "Wait for interrupt");
82 /* Wait for interrupt and DDR self refresh state */
83 device
->states
[1].enter
= kirkwood_enter_idle
;
84 device
->states
[1].exit_latency
= 10;
85 device
->states
[1].target_residency
= 10000;
86 device
->states
[1].flags
= CPUIDLE_FLAG_TIME_VALID
;
87 strcpy(device
->states
[1].name
, "DDR SR");
88 strcpy(device
->states
[1].desc
, "WFI and DDR Self Refresh");
90 if (cpuidle_register_device(device
)) {
91 printk(KERN_ERR
"kirkwood_init_cpuidle: Failed registering\n");
97 device_initcall(kirkwood_init_cpuidle
);