1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29#include <linux/init.h>
30#include <linux/suspend.h>
31#include <linux/errno.h>
32#include <linux/time.h>
33#include <linux/gpio.h>
34#include <linux/interrupt.h>
35#include <linux/serial_core.h>
36#include <linux/serial_s3c.h>
37#include <linux/io.h>
38
39#include <mach/regs-clock.h>
40#include <mach/regs-gpio.h>
41#include <mach/regs-irq.h>
42#include <mach/gpio-samsung.h>
43
44#include <asm/mach/time.h>
45
46#include <plat/gpio-cfg.h>
47#include <plat/pm.h>
48
49#include "regs-mem.h"
50
51#define PFX "s3c24xx-pm: "
52
53#ifdef CONFIG_PM_SLEEP
54static struct sleep_save core_save[] = {
55
56
57
58
59
60
61
62
63 SAVE_ITEM(S3C2410_BWSCON),
64 SAVE_ITEM(S3C2410_BANKCON0),
65 SAVE_ITEM(S3C2410_BANKCON1),
66 SAVE_ITEM(S3C2410_BANKCON2),
67 SAVE_ITEM(S3C2410_BANKCON3),
68 SAVE_ITEM(S3C2410_BANKCON4),
69 SAVE_ITEM(S3C2410_BANKCON5),
70};
71#endif
72
73
74
75
76
77
78
79static void s3c_pm_check_resume_pin(unsigned int pin, unsigned int irqoffs)
80{
81 unsigned long irqstate;
82 unsigned long pinstate;
83 int irq = gpio_to_irq(pin);
84
85 if (irqoffs < 4)
86 irqstate = s3c_irqwake_intmask & (1L<<irqoffs);
87 else
88 irqstate = s3c_irqwake_eintmask & (1L<<irqoffs);
89
90 pinstate = s3c_gpio_getcfg(pin);
91
92 if (!irqstate) {
93 if (pinstate == S3C2410_GPIO_IRQ)
94 S3C_PMDBG("Leaving IRQ %d (pin %d) as is\n", irq, pin);
95 } else {
96 if (pinstate == S3C2410_GPIO_IRQ) {
97 S3C_PMDBG("Disabling IRQ %d (pin %d)\n", irq, pin);
98 s3c_gpio_cfgpin(pin, S3C2410_GPIO_INPUT);
99 }
100 }
101}
102
103
104
105
106
107
108void s3c_pm_configure_extint(void)
109{
110 int pin;
111
112
113
114
115
116
117 for (pin = S3C2410_GPF(0); pin <= S3C2410_GPF(7); pin++) {
118 s3c_pm_check_resume_pin(pin, pin - S3C2410_GPF(0));
119 }
120
121 for (pin = S3C2410_GPG(0); pin <= S3C2410_GPG(7); pin++) {
122 s3c_pm_check_resume_pin(pin, (pin - S3C2410_GPG(0))+8);
123 }
124}
125
126#ifdef CONFIG_PM_SLEEP
127void s3c_pm_restore_core(void)
128{
129 s3c_pm_do_restore_core(core_save, ARRAY_SIZE(core_save));
130}
131
132void s3c_pm_save_core(void)
133{
134 s3c_pm_do_save(core_save, ARRAY_SIZE(core_save));
135}
136#endif
137