Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / arch / arm / mach-kirkwood / cpuidle.c
blob0f1710941878fdb0847bd97b53bee7bf9e0a519d
1 /*
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>
20 #include <linux/io.h>
21 #include <linux/export.h>
22 #include <asm/proc-fns.h>
23 #include <asm/cpuidle.h>
24 #include <mach/kirkwood.h>
26 #define KIRKWOOD_MAX_STATES 2
28 /* Actual code that puts the SoC in different idle states */
29 static int kirkwood_enter_idle(struct cpuidle_device *dev,
30 struct cpuidle_driver *drv,
31 int index)
33 writel(0x7, DDR_OPERATION_BASE);
34 cpu_do_idle();
36 return index;
39 static struct cpuidle_driver kirkwood_idle_driver = {
40 .name = "kirkwood_idle",
41 .owner = THIS_MODULE,
42 .en_core_tk_irqen = 1,
43 .states[0] = ARM_CPUIDLE_WFI_STATE,
44 .states[1] = {
45 .enter = kirkwood_enter_idle,
46 .exit_latency = 10,
47 .target_residency = 100000,
48 .flags = CPUIDLE_FLAG_TIME_VALID,
49 .name = "DDR SR",
50 .desc = "WFI and DDR Self Refresh",
52 .state_count = KIRKWOOD_MAX_STATES,
55 static DEFINE_PER_CPU(struct cpuidle_device, kirkwood_cpuidle_device);
57 /* Initialize CPU idle by registering the idle states */
58 static int kirkwood_init_cpuidle(void)
60 struct cpuidle_device *device;
62 device = &per_cpu(kirkwood_cpuidle_device, smp_processor_id());
63 device->state_count = KIRKWOOD_MAX_STATES;
65 cpuidle_register_driver(&kirkwood_idle_driver);
66 if (cpuidle_register_device(device)) {
67 printk(KERN_ERR "kirkwood_init_cpuidle: Failed registering\n");
68 return -EIO;
70 return 0;
73 device_initcall(kirkwood_init_cpuidle);