ARM: s3c64xx: cpuidle: use init/exit common routine
[deliverable/linux.git] / drivers / cpuidle / cpuidle-kirkwood.c
CommitLineData
e50b6bef
RK
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>
9cfc94eb 17#include <linux/module.h>
e50b6bef
RK
18#include <linux/init.h>
19#include <linux/platform_device.h>
20#include <linux/cpuidle.h>
21#include <linux/io.h>
dc28094b 22#include <linux/export.h>
e50b6bef 23#include <asm/proc-fns.h>
b334648d 24#include <asm/cpuidle.h>
e50b6bef
RK
25
26#define KIRKWOOD_MAX_STATES 2
27
9cfc94eb
AL
28static void __iomem *ddr_operation_base;
29
e50b6bef
RK
30/* Actual code that puts the SoC in different idle states */
31static int kirkwood_enter_idle(struct cpuidle_device *dev,
9cfc94eb 32 struct cpuidle_driver *drv,
e978aa7d 33 int index)
e50b6bef 34{
9cfc94eb 35 writel(0x7, ddr_operation_base);
b334648d 36 cpu_do_idle();
e978aa7d
DD
37
38 return index;
e50b6bef
RK
39}
40
b334648d
RL
41static struct cpuidle_driver kirkwood_idle_driver = {
42 .name = "kirkwood_idle",
43 .owner = THIS_MODULE,
b334648d
RL
44 .states[0] = ARM_CPUIDLE_WFI_STATE,
45 .states[1] = {
46 .enter = kirkwood_enter_idle,
47 .exit_latency = 10,
48 .target_residency = 100000,
49 .flags = CPUIDLE_FLAG_TIME_VALID,
50 .name = "DDR SR",
51 .desc = "WFI and DDR Self Refresh",
52 },
53 .state_count = KIRKWOOD_MAX_STATES,
54};
b334648d 55
e50b6bef 56/* Initialize CPU idle by registering the idle states */
9cfc94eb 57static int kirkwood_cpuidle_probe(struct platform_device *pdev)
e50b6bef 58{
9cfc94eb
AL
59 struct resource *res;
60
61 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
62 if (res == NULL)
63 return -EINVAL;
64
488540bf
SMP
65 ddr_operation_base = devm_ioremap_resource(&pdev->dev, res);
66 if (IS_ERR(ddr_operation_base))
67 return PTR_ERR(ddr_operation_base);
e50b6bef 68
30dc72c6 69 return cpuidle_register(&kirkwood_idle_driver, NULL);
e50b6bef
RK
70}
71
9cfc94eb
AL
72int kirkwood_cpuidle_remove(struct platform_device *pdev)
73{
30dc72c6 74 cpuidle_unregister(&kirkwood_idle_driver);
9cfc94eb
AL
75 return 0;
76}
77
78static struct platform_driver kirkwood_cpuidle_driver = {
79 .probe = kirkwood_cpuidle_probe,
80 .remove = kirkwood_cpuidle_remove,
81 .driver = {
82 .name = "kirkwood_cpuidle",
83 .owner = THIS_MODULE,
84 },
85};
86
87module_platform_driver(kirkwood_cpuidle_driver);
88
89MODULE_AUTHOR("Andrew Lunn <andrew@lunn.ch>");
90MODULE_DESCRIPTION("Kirkwood cpu idle driver");
91MODULE_LICENSE("GPL v2");
92MODULE_ALIAS("platform:kirkwood-cpuidle");
This page took 0.253523 seconds and 5 git commands to generate.