2017-12-25 20:54:32 +01:00
// SPDX-License-Identifier: GPL-2.0
//
// Copyright (c) 2006 Simtec Electronics
// Ben Dooks <ben@simtec.co.uk>
//
// http://armlinux.simtec.co.uk/.
2006-09-22 15:42:18 +01:00
# include <linux/kernel.h>
# include <linux/types.h>
# include <linux/interrupt.h>
# include <linux/list.h>
# include <linux/timer.h>
# include <linux/init.h>
2011-12-21 16:01:38 -08:00
# include <linux/device.h>
2011-04-22 22:03:21 +02:00
# include <linux/syscore_ops.h>
2006-09-22 15:42:18 +01:00
# include <linux/platform_device.h>
2008-09-06 12:10:45 +01:00
# include <linux/io.h>
2006-09-22 15:42:18 +01:00
2009-04-28 10:06:00 +01:00
# include <asm/cacheflush.h>
2006-09-22 15:42:18 +01:00
# include <asm/irq.h>
2020-08-06 20:20:47 +02:00
# include <mach/irqs.h>
2019-09-02 18:37:30 +02:00
# include "regs-gpio.h"
2006-09-22 15:42:18 +01:00
2019-09-02 18:37:30 +02:00
# include "cpu.h"
# include "pm.h"
# include "wakeup-mask.h"
2006-09-22 15:42:18 +01:00
2019-09-02 17:47:55 +02:00
# include "regs-dsc-s3c24xx.h"
2013-02-01 21:49:35 -08:00
# include "s3c2412-power.h"
2013-01-02 14:01:09 -08:00
2007-12-23 03:09:34 +01:00
extern void s3c2412_sleep_enter ( void ) ;
2011-07-02 09:54:01 +01:00
static int s3c2412_cpu_suspend ( unsigned long arg )
2006-09-22 15:42:18 +01:00
{
unsigned long tmp ;
/* set our standby method to sleep */
tmp = __raw_readl ( S3C2412_PWRCFG ) ;
tmp | = S3C2412_PWRCFG_STANDBYWFI_SLEEP ;
__raw_writel ( tmp , S3C2412_PWRCFG ) ;
2007-12-23 03:09:34 +01:00
s3c2412_sleep_enter ( ) ;
2011-07-02 09:54:01 +01:00
2013-01-25 10:40:19 -08:00
pr_info ( " Failed to suspend the system \n " ) ;
return 1 ; /* Aborting suspend */
2006-09-22 15:42:18 +01:00
}
2013-02-12 10:09:10 -08:00
/* mapping of interrupts to parts of the wakeup mask */
2016-12-10 15:47:37 +02:00
static const struct samsung_wakeup_mask wake_irqs [ ] = {
2013-02-12 10:09:10 -08:00
{ . irq = IRQ_RTC , . bit = S3C2412_PWRCFG_RTC_MASKIRQ , } ,
} ;
2006-09-22 15:42:18 +01:00
static void s3c2412_pm_prepare ( void )
{
2013-02-12 10:09:10 -08:00
samsung_sync_wakemask ( S3C2412_PWRCFG ,
wake_irqs , ARRAY_SIZE ( wake_irqs ) ) ;
2006-09-22 15:42:18 +01:00
}
2012-01-27 15:35:25 +09:00
static int s3c2412_pm_add ( struct device * dev , struct subsys_interface * sif )
2006-09-22 15:42:18 +01:00
{
pm_cpu_prep = s3c2412_pm_prepare ;
pm_cpu_sleep = s3c2412_cpu_suspend ;
return 0 ;
}
static struct sleep_save s3c2412_sleep [ ] = {
SAVE_ITEM ( S3C2412_DSC0 ) ,
SAVE_ITEM ( S3C2412_DSC1 ) ,
SAVE_ITEM ( S3C2413_GPJDAT ) ,
SAVE_ITEM ( S3C2413_GPJCON ) ,
SAVE_ITEM ( S3C2413_GPJUP ) ,
/* save the PWRCFG to get back to original sleep method */
SAVE_ITEM ( S3C2412_PWRCFG ) ,
/* save the sleep configuration anyway, just in case these
* get damaged during wakeup */
SAVE_ITEM ( S3C2412_GPBSLPCON ) ,
SAVE_ITEM ( S3C2412_GPCSLPCON ) ,
SAVE_ITEM ( S3C2412_GPDSLPCON ) ,
SAVE_ITEM ( S3C2412_GPFSLPCON ) ,
SAVE_ITEM ( S3C2412_GPGSLPCON ) ,
SAVE_ITEM ( S3C2412_GPHSLPCON ) ,
SAVE_ITEM ( S3C2413_GPJSLPCON ) ,
} ;
2011-12-21 16:01:38 -08:00
static struct subsys_interface s3c2412_pm_interface = {
. name = " s3c2412_pm " ,
. subsys = & s3c2412_subsys ,
. add_dev = s3c2412_pm_add ,
2011-04-22 22:03:21 +02:00
} ;
static __init int s3c2412_pm_init ( void )
{
2012-01-06 16:08:09 +09:00
return subsys_interface_register ( & s3c2412_pm_interface ) ;
2011-04-22 22:03:21 +02:00
}
arch_initcall ( s3c2412_pm_init ) ;
static int s3c2412_pm_suspend ( void )
2006-09-22 15:42:18 +01:00
{
2008-12-12 00:24:06 +00:00
s3c_pm_do_save ( s3c2412_sleep , ARRAY_SIZE ( s3c2412_sleep ) ) ;
2006-09-22 15:42:18 +01:00
return 0 ;
}
2011-04-22 22:03:21 +02:00
static void s3c2412_pm_resume ( void )
2006-09-22 15:42:18 +01:00
{
unsigned long tmp ;
tmp = __raw_readl ( S3C2412_PWRCFG ) ;
tmp & = ~ S3C2412_PWRCFG_STANDBYWFI_MASK ;
tmp | = S3C2412_PWRCFG_STANDBYWFI_IDLE ;
__raw_writel ( tmp , S3C2412_PWRCFG ) ;
2008-12-12 00:24:06 +00:00
s3c_pm_do_restore ( s3c2412_sleep , ARRAY_SIZE ( s3c2412_sleep ) ) ;
2006-09-22 15:42:18 +01:00
}
2011-04-22 22:03:21 +02:00
struct syscore_ops s3c2412_pm_syscore_ops = {
2006-09-22 15:42:18 +01:00
. suspend = s3c2412_pm_suspend ,
. resume = s3c2412_pm_resume ,
} ;