blob: f4319874ce59cfe4fb150c2e4364f9c0e5ad6464 [file] [log] [blame]
Ben Dooksbd117bd2009-03-10 18:19:35 +00001/* linux/arch/arm/plat-s3c64xx/pm.c
2 *
3 * Copyright 2008 Openmoko, Inc.
4 * Copyright 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 * http://armlinux.simtec.co.uk/
7 *
8 * S3C64XX CPU PM support.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13*/
14
15#include <linux/init.h>
16#include <linux/suspend.h>
17#include <linux/serial_core.h>
18#include <linux/io.h>
Abhilash Kesavanf98d4292011-08-13 10:40:52 +090019#include <linux/gpio.h>
Mark Brownc656c302011-12-08 23:27:48 +010020#include <linux/pm_domain.h>
Ben Dooksbd117bd2009-03-10 18:19:35 +000021
22#include <mach/map.h>
Ben Dooksfda22572010-05-20 12:56:45 +090023#include <mach/irqs.h>
Ben Dooksbd117bd2009-03-10 18:19:35 +000024
Mark Brownc656c302011-12-08 23:27:48 +010025#include <plat/devs.h>
Ben Dooksbd117bd2009-03-10 18:19:35 +000026#include <plat/pm.h>
Ben Dooksfda22572010-05-20 12:56:45 +090027#include <plat/wakeup-mask.h>
28
Ben Dooks3501c9a2010-01-26 10:45:40 +090029#include <mach/regs-sys.h>
30#include <mach/regs-gpio.h>
31#include <mach/regs-clock.h>
32#include <mach/regs-syscon-power.h>
Tomasz Figad9018df2011-08-23 11:33:08 +090033#include <mach/regs-modem.h>
Ben Dooksbd117bd2009-03-10 18:19:35 +000034
Kukjin Kim8bb86ea2013-01-02 13:20:38 -080035#include "regs-gpio-memport.h"
36
Mark Brownc656c302011-12-08 23:27:48 +010037struct s3c64xx_pm_domain {
38 char *const name;
39 u32 ena;
40 u32 pwr_stat;
41 struct generic_pm_domain pd;
42};
43
44static int s3c64xx_pd_off(struct generic_pm_domain *domain)
45{
46 struct s3c64xx_pm_domain *pd;
47 u32 val;
48
49 pd = container_of(domain, struct s3c64xx_pm_domain, pd);
50
51 val = __raw_readl(S3C64XX_NORMAL_CFG);
52 val &= ~(pd->ena);
53 __raw_writel(val, S3C64XX_NORMAL_CFG);
54
55 return 0;
56}
57
58static int s3c64xx_pd_on(struct generic_pm_domain *domain)
59{
60 struct s3c64xx_pm_domain *pd;
61 u32 val;
62 long retry = 1000000L;
63
64 pd = container_of(domain, struct s3c64xx_pm_domain, pd);
65
66 val = __raw_readl(S3C64XX_NORMAL_CFG);
67 val |= pd->ena;
68 __raw_writel(val, S3C64XX_NORMAL_CFG);
69
70 /* Not all domains provide power status readback */
71 if (pd->pwr_stat) {
72 do {
73 cpu_relax();
74 if (__raw_readl(S3C64XX_BLK_PWR_STAT) & pd->pwr_stat)
75 break;
76 } while (retry--);
77
78 if (!retry) {
79 pr_err("Failed to start domain %s\n", pd->name);
80 return -EBUSY;
81 }
82 }
83
84 return 0;
85}
86
87static struct s3c64xx_pm_domain s3c64xx_pm_irom = {
88 .name = "IROM",
89 .ena = S3C64XX_NORMALCFG_IROM_ON,
90 .pd = {
91 .power_off = s3c64xx_pd_off,
92 .power_on = s3c64xx_pd_on,
93 },
94};
95
96static struct s3c64xx_pm_domain s3c64xx_pm_etm = {
97 .name = "ETM",
98 .ena = S3C64XX_NORMALCFG_DOMAIN_ETM_ON,
99 .pwr_stat = S3C64XX_BLKPWRSTAT_ETM,
100 .pd = {
101 .power_off = s3c64xx_pd_off,
102 .power_on = s3c64xx_pd_on,
103 },
104};
105
106static struct s3c64xx_pm_domain s3c64xx_pm_s = {
107 .name = "S",
108 .ena = S3C64XX_NORMALCFG_DOMAIN_S_ON,
109 .pwr_stat = S3C64XX_BLKPWRSTAT_S,
110 .pd = {
111 .power_off = s3c64xx_pd_off,
112 .power_on = s3c64xx_pd_on,
113 },
114};
115
116static struct s3c64xx_pm_domain s3c64xx_pm_f = {
117 .name = "F",
118 .ena = S3C64XX_NORMALCFG_DOMAIN_F_ON,
119 .pwr_stat = S3C64XX_BLKPWRSTAT_F,
120 .pd = {
121 .power_off = s3c64xx_pd_off,
122 .power_on = s3c64xx_pd_on,
123 },
124};
125
126static struct s3c64xx_pm_domain s3c64xx_pm_p = {
127 .name = "P",
128 .ena = S3C64XX_NORMALCFG_DOMAIN_P_ON,
129 .pwr_stat = S3C64XX_BLKPWRSTAT_P,
130 .pd = {
131 .power_off = s3c64xx_pd_off,
132 .power_on = s3c64xx_pd_on,
133 },
134};
135
136static struct s3c64xx_pm_domain s3c64xx_pm_i = {
137 .name = "I",
138 .ena = S3C64XX_NORMALCFG_DOMAIN_I_ON,
139 .pwr_stat = S3C64XX_BLKPWRSTAT_I,
140 .pd = {
141 .power_off = s3c64xx_pd_off,
142 .power_on = s3c64xx_pd_on,
143 },
144};
145
146static struct s3c64xx_pm_domain s3c64xx_pm_g = {
147 .name = "G",
148 .ena = S3C64XX_NORMALCFG_DOMAIN_G_ON,
149 .pd = {
150 .power_off = s3c64xx_pd_off,
151 .power_on = s3c64xx_pd_on,
152 },
153};
154
155static struct s3c64xx_pm_domain s3c64xx_pm_v = {
156 .name = "V",
157 .ena = S3C64XX_NORMALCFG_DOMAIN_V_ON,
158 .pwr_stat = S3C64XX_BLKPWRSTAT_V,
159 .pd = {
160 .power_off = s3c64xx_pd_off,
161 .power_on = s3c64xx_pd_on,
162 },
163};
164
165static struct s3c64xx_pm_domain *s3c64xx_always_on_pm_domains[] = {
166 &s3c64xx_pm_irom,
167};
168
169static struct s3c64xx_pm_domain *s3c64xx_pm_domains[] = {
170 &s3c64xx_pm_etm,
171 &s3c64xx_pm_g,
172 &s3c64xx_pm_v,
173 &s3c64xx_pm_i,
174 &s3c64xx_pm_p,
175 &s3c64xx_pm_s,
176 &s3c64xx_pm_f,
177};
178
Ben Dooksbd117bd2009-03-10 18:19:35 +0000179#ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
Ben Dooksbd117bd2009-03-10 18:19:35 +0000180void s3c_pm_debug_smdkled(u32 set, u32 clear)
181{
182 unsigned long flags;
Joonyoung Shim31858472011-05-06 09:37:17 +0900183 int i;
Ben Dooksbd117bd2009-03-10 18:19:35 +0000184
185 local_irq_save(flags);
Joonyoung Shim31858472011-05-06 09:37:17 +0900186 for (i = 0; i < 4; i++) {
187 if (clear & (1 << i))
188 gpio_set_value(S3C64XX_GPN(12 + i), 0);
189 if (set & (1 << i))
190 gpio_set_value(S3C64XX_GPN(12 + i), 1);
191 }
Ben Dooksbd117bd2009-03-10 18:19:35 +0000192 local_irq_restore(flags);
193}
194#endif
195
196static struct sleep_save core_save[] = {
197 SAVE_ITEM(S3C_APLL_LOCK),
198 SAVE_ITEM(S3C_MPLL_LOCK),
199 SAVE_ITEM(S3C_EPLL_LOCK),
200 SAVE_ITEM(S3C_CLK_SRC),
201 SAVE_ITEM(S3C_CLK_DIV0),
202 SAVE_ITEM(S3C_CLK_DIV1),
203 SAVE_ITEM(S3C_CLK_DIV2),
204 SAVE_ITEM(S3C_CLK_OUT),
205 SAVE_ITEM(S3C_HCLK_GATE),
206 SAVE_ITEM(S3C_PCLK_GATE),
207 SAVE_ITEM(S3C_SCLK_GATE),
208 SAVE_ITEM(S3C_MEM0_GATE),
209
210 SAVE_ITEM(S3C_EPLL_CON1),
211 SAVE_ITEM(S3C_EPLL_CON0),
212
213 SAVE_ITEM(S3C64XX_MEM0DRVCON),
214 SAVE_ITEM(S3C64XX_MEM1DRVCON),
215
216#ifndef CONFIG_CPU_FREQ
217 SAVE_ITEM(S3C_APLL_CON),
218 SAVE_ITEM(S3C_MPLL_CON),
219#endif
220};
221
222static struct sleep_save misc_save[] = {
223 SAVE_ITEM(S3C64XX_AHB_CON0),
224 SAVE_ITEM(S3C64XX_AHB_CON1),
225 SAVE_ITEM(S3C64XX_AHB_CON2),
226
227 SAVE_ITEM(S3C64XX_SPCON),
228
229 SAVE_ITEM(S3C64XX_MEM0CONSTOP),
230 SAVE_ITEM(S3C64XX_MEM1CONSTOP),
231 SAVE_ITEM(S3C64XX_MEM0CONSLP0),
232 SAVE_ITEM(S3C64XX_MEM0CONSLP1),
233 SAVE_ITEM(S3C64XX_MEM1CONSLP),
Tomasz Figa348276f2011-08-23 11:33:08 +0900234
235 SAVE_ITEM(S3C64XX_SDMA_SEL),
Tomasz Figad9018df2011-08-23 11:33:08 +0900236 SAVE_ITEM(S3C64XX_MODEM_MIFPCON),
Mark Brownc656c302011-12-08 23:27:48 +0100237
238 SAVE_ITEM(S3C64XX_NORMAL_CFG),
Ben Dooksbd117bd2009-03-10 18:19:35 +0000239};
240
241void s3c_pm_configure_extint(void)
242{
243 __raw_writel(s3c_irqwake_eintmask, S3C64XX_EINT_MASK);
244}
245
Ben Dooksbd117bd2009-03-10 18:19:35 +0000246void s3c_pm_restore_core(void)
247{
248 __raw_writel(0, S3C64XX_EINT_MASK);
249
250 s3c_pm_debug_smdkled(1 << 2, 0);
251
252 s3c_pm_do_restore_core(core_save, ARRAY_SIZE(core_save));
253 s3c_pm_do_restore(misc_save, ARRAY_SIZE(misc_save));
254}
255
256void s3c_pm_save_core(void)
257{
258 s3c_pm_do_save(misc_save, ARRAY_SIZE(misc_save));
259 s3c_pm_do_save(core_save, ARRAY_SIZE(core_save));
260}
261
262/* since both s3c6400 and s3c6410 share the same sleep pm calls, we
263 * put the per-cpu code in here until any new cpu comes along and changes
264 * this.
265 */
266
Russell King29cb3cd2011-07-02 09:54:01 +0100267static int s3c64xx_cpu_suspend(unsigned long arg)
Ben Dooksbd117bd2009-03-10 18:19:35 +0000268{
269 unsigned long tmp;
270
271 /* set our standby method to sleep */
272
273 tmp = __raw_readl(S3C64XX_PWR_CFG);
274 tmp &= ~S3C64XX_PWRCFG_CFG_WFI_MASK;
275 tmp |= S3C64XX_PWRCFG_CFG_WFI_SLEEP;
276 __raw_writel(tmp, S3C64XX_PWR_CFG);
277
278 /* clear any old wakeup */
279
280 __raw_writel(__raw_readl(S3C64XX_WAKEUP_STAT),
281 S3C64XX_WAKEUP_STAT);
282
283 /* set the LED state to 0110 over sleep */
284 s3c_pm_debug_smdkled(3 << 1, 0xf);
285
286 /* issue the standby signal into the pm unit. Note, we
287 * issue a write-buffer drain just in case */
288
289 tmp = 0;
290
291 asm("b 1f\n\t"
292 ".align 5\n\t"
293 "1:\n\t"
294 "mcr p15, 0, %0, c7, c10, 5\n\t"
295 "mcr p15, 0, %0, c7, c10, 4\n\t"
296 "mcr p15, 0, %0, c7, c0, 4" :: "r" (tmp));
297
298 /* we should never get past here */
299
300 panic("sleep resumed to originator?");
301}
302
Ben Dooksfda22572010-05-20 12:56:45 +0900303/* mapping of interrupts to parts of the wakeup mask */
304static struct samsung_wakeup_mask wake_irqs[] = {
305 { .irq = IRQ_RTC_ALARM, .bit = S3C64XX_PWRCFG_RTC_ALARM_DISABLE, },
306 { .irq = IRQ_RTC_TIC, .bit = S3C64XX_PWRCFG_RTC_TICK_DISABLE, },
307 { .irq = IRQ_PENDN, .bit = S3C64XX_PWRCFG_TS_DISABLE, },
308 { .irq = IRQ_HSMMC0, .bit = S3C64XX_PWRCFG_MMC0_DISABLE, },
309 { .irq = IRQ_HSMMC1, .bit = S3C64XX_PWRCFG_MMC1_DISABLE, },
310 { .irq = IRQ_HSMMC2, .bit = S3C64XX_PWRCFG_MMC2_DISABLE, },
311 { .irq = NO_WAKEUP_IRQ, .bit = S3C64XX_PWRCFG_BATF_DISABLE},
312 { .irq = NO_WAKEUP_IRQ, .bit = S3C64XX_PWRCFG_MSM_DISABLE },
313 { .irq = NO_WAKEUP_IRQ, .bit = S3C64XX_PWRCFG_HSI_DISABLE },
314 { .irq = NO_WAKEUP_IRQ, .bit = S3C64XX_PWRCFG_MSM_DISABLE },
315};
316
Ben Dooksbd117bd2009-03-10 18:19:35 +0000317static void s3c64xx_pm_prepare(void)
318{
Ben Dooksfda22572010-05-20 12:56:45 +0900319 samsung_sync_wakemask(S3C64XX_PWR_CFG,
320 wake_irqs, ARRAY_SIZE(wake_irqs));
321
Ben Dooksbd117bd2009-03-10 18:19:35 +0000322 /* store address of resume. */
323 __raw_writel(virt_to_phys(s3c_cpu_resume), S3C64XX_INFORM0);
324
325 /* ensure previous wakeup state is cleared before sleeping */
326 __raw_writel(__raw_readl(S3C64XX_WAKEUP_STAT), S3C64XX_WAKEUP_STAT);
327}
328
Mark Brownc656c302011-12-08 23:27:48 +0100329int __init s3c64xx_pm_init(void)
330{
331 int i;
332
333 s3c_pm_init();
334
335 for (i = 0; i < ARRAY_SIZE(s3c64xx_always_on_pm_domains); i++)
336 pm_genpd_init(&s3c64xx_always_on_pm_domains[i]->pd,
337 &pm_domain_always_on_gov, false);
338
339 for (i = 0; i < ARRAY_SIZE(s3c64xx_pm_domains); i++)
340 pm_genpd_init(&s3c64xx_pm_domains[i]->pd, NULL, false);
341
342 if (dev_get_platdata(&s3c_device_fb.dev))
343 pm_genpd_add_device(&s3c64xx_pm_f.pd, &s3c_device_fb.dev);
344
345 return 0;
346}
347
348static __init int s3c64xx_pm_initcall(void)
Ben Dooksbd117bd2009-03-10 18:19:35 +0000349{
350 pm_cpu_prep = s3c64xx_pm_prepare;
351 pm_cpu_sleep = s3c64xx_cpu_suspend;
352 pm_uart_udivslot = 1;
Joonyoung Shim31858472011-05-06 09:37:17 +0900353
354#ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
355 gpio_request(S3C64XX_GPN(12), "DEBUG_LED0");
356 gpio_request(S3C64XX_GPN(13), "DEBUG_LED1");
357 gpio_request(S3C64XX_GPN(14), "DEBUG_LED2");
358 gpio_request(S3C64XX_GPN(15), "DEBUG_LED3");
359 gpio_direction_output(S3C64XX_GPN(12), 0);
360 gpio_direction_output(S3C64XX_GPN(13), 0);
361 gpio_direction_output(S3C64XX_GPN(14), 0);
362 gpio_direction_output(S3C64XX_GPN(15), 0);
363#endif
364
Ben Dooksbd117bd2009-03-10 18:19:35 +0000365 return 0;
366}
Mark Brownc656c302011-12-08 23:27:48 +0100367arch_initcall(s3c64xx_pm_initcall);
Ben Dooksbd117bd2009-03-10 18:19:35 +0000368
Shawn Guocc8f2522012-04-26 21:08:52 +0800369int __init s3c64xx_pm_late_initcall(void)
Mark Brownc656c302011-12-08 23:27:48 +0100370{
371 pm_genpd_poweroff_unused();
372
373 return 0;
374}