2 * CPU idle for DaVinci SoCs
4 * Copyright (C) 2009 Texas Instruments Incorporated. http://www.ti.com/
6 * Derived from Marvell Kirkwood CPU idle code
7 * (arch/arm/mach-kirkwood/cpuidle.c)
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/cpuidle.h>
19 #include <linux/export.h>
20 #include <asm/proc-fns.h>
22 #include <mach/cpuidle.h>
23 #include <mach/ddr2.h>
25 #define DAVINCI_CPUIDLE_MAX_STATES 2
28 void (*enter
) (u32 flags
);
29 void (*exit
) (u32 flags
);
33 /* fields in davinci_ops.flags */
34 #define DAVINCI_CPUIDLE_FLAGS_DDR2_PWDN BIT(0)
36 static struct cpuidle_driver davinci_idle_driver
= {
37 .name
= "cpuidle-davinci",
41 static DEFINE_PER_CPU(struct cpuidle_device
, davinci_cpuidle_device
);
42 static void __iomem
*ddr2_reg_base
;
44 static void davinci_save_ddr_power(int enter
, bool pdown
)
48 val
= __raw_readl(ddr2_reg_base
+ DDR2_SDRCR_OFFSET
);
54 val
&= ~DDR2_SRPD_BIT
;
55 val
|= DDR2_LPMODEN_BIT
;
57 val
&= ~(DDR2_SRPD_BIT
| DDR2_LPMODEN_BIT
);
60 __raw_writel(val
, ddr2_reg_base
+ DDR2_SDRCR_OFFSET
);
63 static void davinci_c2state_enter(u32 flags
)
65 davinci_save_ddr_power(1, !!(flags
& DAVINCI_CPUIDLE_FLAGS_DDR2_PWDN
));
68 static void davinci_c2state_exit(u32 flags
)
70 davinci_save_ddr_power(0, !!(flags
& DAVINCI_CPUIDLE_FLAGS_DDR2_PWDN
));
73 static struct davinci_ops davinci_states
[DAVINCI_CPUIDLE_MAX_STATES
] = {
75 .enter
= davinci_c2state_enter
,
76 .exit
= davinci_c2state_exit
,
80 /* Actual code that puts the SoC in different idle states */
81 static int davinci_enter_idle(struct cpuidle_device
*dev
,
82 struct cpuidle_driver
*drv
,
85 struct cpuidle_state_usage
*state_usage
= &dev
->states_usage
[index
];
86 struct davinci_ops
*ops
= cpuidle_get_statedata(state_usage
);
87 struct timeval before
, after
;
91 do_gettimeofday(&before
);
93 if (ops
&& ops
->enter
)
94 ops
->enter(ops
->flags
);
95 /* Wait for interrupt state */
98 ops
->exit(ops
->flags
);
100 do_gettimeofday(&after
);
102 idle_time
= (after
.tv_sec
- before
.tv_sec
) * USEC_PER_SEC
+
103 (after
.tv_usec
- before
.tv_usec
);
105 dev
->last_residency
= idle_time
;
110 static int __init
davinci_cpuidle_probe(struct platform_device
*pdev
)
113 struct cpuidle_device
*device
;
114 struct cpuidle_driver
*driver
= &davinci_idle_driver
;
115 struct davinci_cpuidle_config
*pdata
= pdev
->dev
.platform_data
;
117 device
= &per_cpu(davinci_cpuidle_device
, smp_processor_id());
120 dev_err(&pdev
->dev
, "cannot get platform data\n");
124 ddr2_reg_base
= pdata
->ddr2_ctlr_base
;
126 /* Wait for interrupt state */
127 driver
->states
[0].enter
= davinci_enter_idle
;
128 driver
->states
[0].exit_latency
= 1;
129 driver
->states
[0].target_residency
= 10000;
130 driver
->states
[0].flags
= CPUIDLE_FLAG_TIME_VALID
;
131 strcpy(driver
->states
[0].name
, "WFI");
132 strcpy(driver
->states
[0].desc
, "Wait for interrupt");
134 /* Wait for interrupt and DDR self refresh state */
135 driver
->states
[1].enter
= davinci_enter_idle
;
136 driver
->states
[1].exit_latency
= 10;
137 driver
->states
[1].target_residency
= 10000;
138 driver
->states
[1].flags
= CPUIDLE_FLAG_TIME_VALID
;
139 strcpy(driver
->states
[1].name
, "DDR SR");
140 strcpy(driver
->states
[1].desc
, "WFI and DDR Self Refresh");
141 if (pdata
->ddr2_pdown
)
142 davinci_states
[1].flags
|= DAVINCI_CPUIDLE_FLAGS_DDR2_PWDN
;
143 cpuidle_set_statedata(&device
->states_usage
[1], &davinci_states
[1]);
145 device
->state_count
= DAVINCI_CPUIDLE_MAX_STATES
;
146 driver
->state_count
= DAVINCI_CPUIDLE_MAX_STATES
;
148 ret
= cpuidle_register_driver(&davinci_idle_driver
);
150 dev_err(&pdev
->dev
, "failed to register driver\n");
154 ret
= cpuidle_register_device(device
);
156 dev_err(&pdev
->dev
, "failed to register device\n");
157 cpuidle_unregister_driver(&davinci_idle_driver
);
164 static struct platform_driver davinci_cpuidle_driver
= {
166 .name
= "cpuidle-davinci",
167 .owner
= THIS_MODULE
,
171 static int __init
davinci_cpuidle_init(void)
173 return platform_driver_probe(&davinci_cpuidle_driver
,
174 davinci_cpuidle_probe
);
176 device_initcall(davinci_cpuidle_init
);