blob: 0f1710941878fdb0847bd97b53bee7bf9e0a519d [file] [log] [blame]
Rabeeh Khourye50b6be2009-03-24 16:10:15 +02001/*
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>
Paul Gortmakerdc280942011-07-31 16:17:29 -040021#include <linux/export.h>
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020022#include <asm/proc-fns.h>
Robert Leeb3346482012-03-20 15:22:44 -050023#include <asm/cpuidle.h>
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020024#include <mach/kirkwood.h>
25
26#define KIRKWOOD_MAX_STATES 2
27
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020028/* Actual code that puts the SoC in different idle states */
29static int kirkwood_enter_idle(struct cpuidle_device *dev,
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053030 struct cpuidle_driver *drv,
Deepthi Dharware978aa72011-10-28 16:20:09 +053031 int index)
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020032{
Robert Leeb3346482012-03-20 15:22:44 -050033 writel(0x7, DDR_OPERATION_BASE);
34 cpu_do_idle();
Deepthi Dharware978aa72011-10-28 16:20:09 +053035
36 return index;
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020037}
38
Robert Leeb3346482012-03-20 15:22:44 -050039static 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",
51 },
52 .state_count = KIRKWOOD_MAX_STATES,
53};
54
55static DEFINE_PER_CPU(struct cpuidle_device, kirkwood_cpuidle_device);
56
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020057/* Initialize CPU idle by registering the idle states */
58static int kirkwood_init_cpuidle(void)
59{
60 struct cpuidle_device *device;
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020061
62 device = &per_cpu(kirkwood_cpuidle_device, smp_processor_id());
63 device->state_count = KIRKWOOD_MAX_STATES;
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020064
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053065 cpuidle_register_driver(&kirkwood_idle_driver);
Rabeeh Khourye50b6be2009-03-24 16:10:15 +020066 if (cpuidle_register_device(device)) {
67 printk(KERN_ERR "kirkwood_init_cpuidle: Failed registering\n");
68 return -EIO;
69 }
70 return 0;
71}
72
73device_initcall(kirkwood_init_cpuidle);