diff options
author | Abhilash Kesavan <a.kesavan@samsung.com> | 2013-01-25 19:40:19 +0100 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-01-31 07:28:05 +0100 |
commit | d3fcacf52d24ff1b12d994d9ddb7496f651294a2 (patch) | |
tree | 551b22ecd840f7ad76d0f057de2db1d1c8be1437 /arch/arm/mach-s3c24xx/pm-s3c2416.c | |
parent | ARM: SAMSUNG: using vsnprintf instead of vsprintf for the limit buffer length... (diff) | |
download | linux-d3fcacf52d24ff1b12d994d9ddb7496f651294a2.tar.xz linux-d3fcacf52d24ff1b12d994d9ddb7496f651294a2.zip |
ARM: SAMSUNG: Gracefully exit on suspend failure
As per the Exynos5250 User Manual:
When there are pending interrupt events, WFI/WFE instruction are
ignored. To cancel the power-down sequence follow these steps:
1) Disable system power-down using CENTRAL_SEQ_CONFIGURATION register
2) Clear WAKEUP_STAT register
3) Enable interrupt service routine for CPU
Code for early wakeup for exynos already exists. Remove the panic
on suspend failure, clear the wakeup state register and return 1
from cpu_suspend to indicate a failed suspend (to a user daemon).
Older Samsung SoCs have similar panics and I have removed them all.
Haven't touched the S3C2410 sleep code.
Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c24xx/pm-s3c2416.c')
-rw-r--r-- | arch/arm/mach-s3c24xx/pm-s3c2416.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c24xx/pm-s3c2416.c b/arch/arm/mach-s3c24xx/pm-s3c2416.c index 1bd4817b8eb8..1a9e8dd194ff 100644 --- a/arch/arm/mach-s3c24xx/pm-s3c2416.c +++ b/arch/arm/mach-s3c24xx/pm-s3c2416.c @@ -34,7 +34,8 @@ static int s3c2416_cpu_suspend(unsigned long arg) s3c2412_sleep_enter(); - panic("sleep resumed to originator?"); + pr_info("Failed to suspend the system\n"); + return 1; /* Aborting suspend */ } static void s3c2416_pm_prepare(void) |