Source
18
18
* this program. If not, see <http://www.gnu.org/licenses/>.
19
19
*
20
20
* Maintainer: Rob Herring <rob.herring@calxeda.com>
21
21
*/
22
22
23
23
#include <linux/cpuidle.h>
24
24
#include <linux/cpu_pm.h>
25
25
#include <linux/init.h>
26
26
#include <linux/mm.h>
27
27
#include <linux/platform_device.h>
28
+
#include <linux/psci.h>
29
+
28
30
#include <asm/cpuidle.h>
29
31
#include <asm/suspend.h>
30
-
#include <asm/psci.h>
32
+
33
+
#include <uapi/linux/psci.h>
34
+
35
+
#define CALXEDA_IDLE_PARAM \
36
+
((0 << PSCI_0_2_POWER_STATE_ID_SHIFT) | \
37
+
(0 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) | \
38
+
(PSCI_POWER_STATE_TYPE_POWER_DOWN << PSCI_0_2_POWER_STATE_TYPE_SHIFT))
31
39
32
40
static int calxeda_idle_finish(unsigned long val)
33
41
{
34
-
const struct psci_power_state ps = {
35
-
.type = PSCI_POWER_STATE_TYPE_POWER_DOWN,
36
-
};
37
-
return psci_ops.cpu_suspend(ps, __pa(cpu_resume));
42
+
return psci_ops.cpu_suspend(CALXEDA_IDLE_PARAM, __pa(cpu_resume));
38
43
}
39
44
40
45
static int calxeda_pwrdown_idle(struct cpuidle_device *dev,
41
46
struct cpuidle_driver *drv,
42
47
int index)
43
48
{
44
49
cpu_pm_enter();
45
50
cpu_suspend(0, calxeda_idle_finish);
46
51
cpu_pm_exit();
47
52