2 * Copyright 2012 Calxeda, Inc.
4 * Based on arch/arm/plat-mxc/cpuidle.c: #v3.7
5 * Copyright 2012 Freescale Semiconductor, Inc.
6 * Copyright 2012 Linaro Ltd.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
20 * Maintainer: Rob Herring <rob.herring@calxeda.com>
23 #include <linux/cpuidle.h>
24 #include <linux/cpu_pm.h>
25 #include <linux/init.h>
27 #include <linux/platform_device.h>
28 #include <asm/cpuidle.h>
29 #include <asm/suspend.h>
32 static int calxeda_idle_finish(unsigned long val
)
34 const struct psci_power_state ps
= {
35 .type
= PSCI_POWER_STATE_TYPE_POWER_DOWN
,
37 return psci_ops
.cpu_suspend(ps
, __pa(cpu_resume
));
40 static int calxeda_pwrdown_idle(struct cpuidle_device
*dev
,
41 struct cpuidle_driver
*drv
,
45 cpu_suspend(0, calxeda_idle_finish
);
51 static struct cpuidle_driver calxeda_idle_driver
= {
52 .name
= "calxeda_idle",
54 ARM_CPUIDLE_WFI_STATE
,
58 .flags
= CPUIDLE_FLAG_TIME_VALID
,
61 .target_residency
= 200,
62 .enter
= calxeda_pwrdown_idle
,
68 static int calxeda_cpuidle_probe(struct platform_device
*pdev
)
70 return cpuidle_register(&calxeda_idle_driver
, NULL
);
73 static struct platform_driver calxeda_cpuidle_plat_driver
= {
75 .name
= "cpuidle-calxeda",
78 .probe
= calxeda_cpuidle_probe
,
81 module_platform_driver(calxeda_cpuidle_plat_driver
);