@@ -10,11 +10,60 @@
*/
#include <linux/suspend.h>
+#include <linux/pm_domain.h>
+#include <linux/mfd/dbx500-prcmu.h>
+
+static u32 suspend_wakeups;
+static u32 running_wakeups;
+static struct generic_pm_domain *ape_domain;
static int ux500_suspend_enter(suspend_state_t state)
{
+ int ret = 0;
+
+ /* Configure the PRCMU for a sleep wakeup */
+ prcmu_enable_wakeups(suspend_wakeups);
+
+ pm_genpd_notify_power_on_off(ape_domain, false);
+
+ prcmu_gic_decouple();
+
+ /* Copy GIC interrupt settings to PRCMU interrupt settings */
+ prcmu_copy_gic_settings();
+
+ if (prcmu_gic_pending_irq()) {
+ pr_info("suspend/resume: pending interrupt\n");
+
+ /* Recouple GIC with the interrupt bus */
+ prcmu_gic_recouple();
+ ret = -EBUSY;
+ goto exit;
+ }
+
+ if (prcmu_pending_irq()) {
+ pr_info("suspend/resume: pending interrupt prcmu\n");
+
+ /* Recouple GIC with the interrupt bus */
+ prcmu_gic_recouple();
+ ret = -EBUSY;
+ goto exit;
+ }
+
+ prcmu_set_ioforce(true);
+
+ prcmu_set_power_state(PRCMU_AP_SLEEP, false, false);
+
cpu_do_idle();
- return 0;
+
+ pm_genpd_notify_power_on_off(ape_domain, true);
+
+ prcmu_set_ioforce(false);
+
+ exit:
+ /* Configure the prcmu with the wake-ups that cpuidle needs */
+ prcmu_enable_wakeups(running_wakeups);
+
+ return ret;
}
static int ux500_suspend_valid(suspend_state_t state)
@@ -29,6 +78,12 @@ static const struct platform_suspend_ops ux500_suspend_ops = {
static __init int ux500_suspend_init(void)
{
+ suspend_wakeups = PRCMU_WAKEUP(ABB) | PRCMU_WAKEUP(RTC);
+ running_wakeups = (PRCMU_WAKEUP(ARM) | PRCMU_WAKEUP(RTC) |
+ PRCMU_WAKEUP(ABB));
+
+ ape_domain = pm_genpd_lookup_name("APE");
+
suspend_set_ops(&ux500_suspend_ops);
return 0;
}
Support for power save state ApSleep is added to the platform suspend operation hook. Signed-off-by: Rickard Andersson <rickard.andersson@stericsson.com> --- arch/arm/mach-ux500/suspend.c | 57 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-)