diff options
Diffstat (limited to 'arch/arm/mach-s3c2410/s3c2410-pm.c')
-rw-r--r-- | arch/arm/mach-s3c2410/s3c2410-pm.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2410/s3c2410-pm.c b/arch/arm/mach-s3c2410/s3c2410-pm.c index 3080d25a12de..e51d76669512 100644 --- a/arch/arm/mach-s3c2410/s3c2410-pm.c +++ b/arch/arm/mach-s3c2410/s3c2410-pm.c | |||
@@ -29,6 +29,8 @@ | |||
29 | #include <asm/hardware.h> | 29 | #include <asm/hardware.h> |
30 | #include <asm/io.h> | 30 | #include <asm/io.h> |
31 | 31 | ||
32 | #include <asm/mach-types.h> | ||
33 | |||
32 | #include <asm/arch/regs-gpio.h> | 34 | #include <asm/arch/regs-gpio.h> |
33 | 35 | ||
34 | #include "cpu.h" | 36 | #include "cpu.h" |
@@ -49,6 +51,10 @@ static void s3c2410_pm_prepare(void) | |||
49 | 51 | ||
50 | DBG("GSTATUS3 0x%08x\n", __raw_readl(S3C2410_GSTATUS3)); | 52 | DBG("GSTATUS3 0x%08x\n", __raw_readl(S3C2410_GSTATUS3)); |
51 | DBG("GSTATUS4 0x%08x\n", __raw_readl(S3C2410_GSTATUS4)); | 53 | DBG("GSTATUS4 0x%08x\n", __raw_readl(S3C2410_GSTATUS4)); |
54 | |||
55 | if ( machine_is_aml_m5900() ) | ||
56 | s3c2410_gpio_setpin(S3C2410_GPF2, 1); | ||
57 | |||
52 | } | 58 | } |
53 | 59 | ||
54 | int s3c2410_pm_resume(struct sys_device *dev) | 60 | int s3c2410_pm_resume(struct sys_device *dev) |
@@ -61,6 +67,9 @@ int s3c2410_pm_resume(struct sys_device *dev) | |||
61 | tmp &= S3C2410_GSTATUS2_OFFRESET; | 67 | tmp &= S3C2410_GSTATUS2_OFFRESET; |
62 | __raw_writel(tmp, S3C2410_GSTATUS2); | 68 | __raw_writel(tmp, S3C2410_GSTATUS2); |
63 | 69 | ||
70 | if ( machine_is_aml_m5900() ) | ||
71 | s3c2410_gpio_setpin(S3C2410_GPF2, 0); | ||
72 | |||
64 | return 0; | 73 | return 0; |
65 | } | 74 | } |
66 | 75 | ||