1 /* linux/arch/arm/plat-s3c64xx/pm.c
3 * Copyright 2008 Openmoko, Inc.
4 * Copyright 2008 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 * http://armlinux.simtec.co.uk/
8 * S3C64XX CPU PM support.
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.
15 #include <linux/init.h>
16 #include <linux/suspend.h>
17 #include <linux/serial_core.h>
19 #include <linux/gpio.h>
20 #include <linux/pm_domain.h>
23 #include <mach/irqs.h>
25 #include <plat/devs.h>
27 #include <plat/wakeup-mask.h>
29 #include <mach/regs-gpio.h>
30 #include <mach/regs-clock.h>
31 #include <mach/gpio-samsung.h>
33 #include "regs-gpio-memport.h"
34 #include "regs-modem.h"
36 #include "regs-syscon-power.h"
38 struct s3c64xx_pm_domain
{
42 struct generic_pm_domain pd
;
45 static int s3c64xx_pd_off(struct generic_pm_domain
*domain
)
47 struct s3c64xx_pm_domain
*pd
;
50 pd
= container_of(domain
, struct s3c64xx_pm_domain
, pd
);
52 val
= __raw_readl(S3C64XX_NORMAL_CFG
);
54 __raw_writel(val
, S3C64XX_NORMAL_CFG
);
59 static int s3c64xx_pd_on(struct generic_pm_domain
*domain
)
61 struct s3c64xx_pm_domain
*pd
;
63 long retry
= 1000000L;
65 pd
= container_of(domain
, struct s3c64xx_pm_domain
, pd
);
67 val
= __raw_readl(S3C64XX_NORMAL_CFG
);
69 __raw_writel(val
, S3C64XX_NORMAL_CFG
);
71 /* Not all domains provide power status readback */
75 if (__raw_readl(S3C64XX_BLK_PWR_STAT
) & pd
->pwr_stat
)
80 pr_err("Failed to start domain %s\n", pd
->name
);
88 static struct s3c64xx_pm_domain s3c64xx_pm_irom
= {
90 .ena
= S3C64XX_NORMALCFG_IROM_ON
,
92 .power_off
= s3c64xx_pd_off
,
93 .power_on
= s3c64xx_pd_on
,
97 static struct s3c64xx_pm_domain s3c64xx_pm_etm
= {
99 .ena
= S3C64XX_NORMALCFG_DOMAIN_ETM_ON
,
100 .pwr_stat
= S3C64XX_BLKPWRSTAT_ETM
,
102 .power_off
= s3c64xx_pd_off
,
103 .power_on
= s3c64xx_pd_on
,
107 static struct s3c64xx_pm_domain s3c64xx_pm_s
= {
109 .ena
= S3C64XX_NORMALCFG_DOMAIN_S_ON
,
110 .pwr_stat
= S3C64XX_BLKPWRSTAT_S
,
112 .power_off
= s3c64xx_pd_off
,
113 .power_on
= s3c64xx_pd_on
,
117 static struct s3c64xx_pm_domain s3c64xx_pm_f
= {
119 .ena
= S3C64XX_NORMALCFG_DOMAIN_F_ON
,
120 .pwr_stat
= S3C64XX_BLKPWRSTAT_F
,
122 .power_off
= s3c64xx_pd_off
,
123 .power_on
= s3c64xx_pd_on
,
127 static struct s3c64xx_pm_domain s3c64xx_pm_p
= {
129 .ena
= S3C64XX_NORMALCFG_DOMAIN_P_ON
,
130 .pwr_stat
= S3C64XX_BLKPWRSTAT_P
,
132 .power_off
= s3c64xx_pd_off
,
133 .power_on
= s3c64xx_pd_on
,
137 static struct s3c64xx_pm_domain s3c64xx_pm_i
= {
139 .ena
= S3C64XX_NORMALCFG_DOMAIN_I_ON
,
140 .pwr_stat
= S3C64XX_BLKPWRSTAT_I
,
142 .power_off
= s3c64xx_pd_off
,
143 .power_on
= s3c64xx_pd_on
,
147 static struct s3c64xx_pm_domain s3c64xx_pm_g
= {
149 .ena
= S3C64XX_NORMALCFG_DOMAIN_G_ON
,
151 .power_off
= s3c64xx_pd_off
,
152 .power_on
= s3c64xx_pd_on
,
156 static struct s3c64xx_pm_domain s3c64xx_pm_v
= {
158 .ena
= S3C64XX_NORMALCFG_DOMAIN_V_ON
,
159 .pwr_stat
= S3C64XX_BLKPWRSTAT_V
,
161 .power_off
= s3c64xx_pd_off
,
162 .power_on
= s3c64xx_pd_on
,
166 static struct s3c64xx_pm_domain
*s3c64xx_always_on_pm_domains
[] = {
170 static struct s3c64xx_pm_domain
*s3c64xx_pm_domains
[] = {
180 #ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
181 void s3c_pm_debug_smdkled(u32 set
, u32 clear
)
186 local_irq_save(flags
);
187 for (i
= 0; i
< 4; i
++) {
188 if (clear
& (1 << i
))
189 gpio_set_value(S3C64XX_GPN(12 + i
), 0);
191 gpio_set_value(S3C64XX_GPN(12 + i
), 1);
193 local_irq_restore(flags
);
197 #ifdef CONFIG_PM_SLEEP
198 static struct sleep_save core_save
[] = {
199 SAVE_ITEM(S3C64XX_MEM0DRVCON
),
200 SAVE_ITEM(S3C64XX_MEM1DRVCON
),
203 static struct sleep_save misc_save
[] = {
204 SAVE_ITEM(S3C64XX_AHB_CON0
),
205 SAVE_ITEM(S3C64XX_AHB_CON1
),
206 SAVE_ITEM(S3C64XX_AHB_CON2
),
208 SAVE_ITEM(S3C64XX_SPCON
),
210 SAVE_ITEM(S3C64XX_MEM0CONSTOP
),
211 SAVE_ITEM(S3C64XX_MEM1CONSTOP
),
212 SAVE_ITEM(S3C64XX_MEM0CONSLP0
),
213 SAVE_ITEM(S3C64XX_MEM0CONSLP1
),
214 SAVE_ITEM(S3C64XX_MEM1CONSLP
),
216 SAVE_ITEM(S3C64XX_SDMA_SEL
),
217 SAVE_ITEM(S3C64XX_MODEM_MIFPCON
),
219 SAVE_ITEM(S3C64XX_NORMAL_CFG
),
222 void s3c_pm_configure_extint(void)
224 __raw_writel(s3c_irqwake_eintmask
, S3C64XX_EINT_MASK
);
227 void s3c_pm_restore_core(void)
229 __raw_writel(0, S3C64XX_EINT_MASK
);
231 s3c_pm_debug_smdkled(1 << 2, 0);
233 s3c_pm_do_restore_core(core_save
, ARRAY_SIZE(core_save
));
234 s3c_pm_do_restore(misc_save
, ARRAY_SIZE(misc_save
));
237 void s3c_pm_save_core(void)
239 s3c_pm_do_save(misc_save
, ARRAY_SIZE(misc_save
));
240 s3c_pm_do_save(core_save
, ARRAY_SIZE(core_save
));
244 /* since both s3c6400 and s3c6410 share the same sleep pm calls, we
245 * put the per-cpu code in here until any new cpu comes along and changes
249 static int s3c64xx_cpu_suspend(unsigned long arg
)
253 /* set our standby method to sleep */
255 tmp
= __raw_readl(S3C64XX_PWR_CFG
);
256 tmp
&= ~S3C64XX_PWRCFG_CFG_WFI_MASK
;
257 tmp
|= S3C64XX_PWRCFG_CFG_WFI_SLEEP
;
258 __raw_writel(tmp
, S3C64XX_PWR_CFG
);
260 /* clear any old wakeup */
262 __raw_writel(__raw_readl(S3C64XX_WAKEUP_STAT
),
263 S3C64XX_WAKEUP_STAT
);
265 /* set the LED state to 0110 over sleep */
266 s3c_pm_debug_smdkled(3 << 1, 0xf);
268 /* issue the standby signal into the pm unit. Note, we
269 * issue a write-buffer drain just in case */
276 "mcr p15, 0, %0, c7, c10, 5\n\t"
277 "mcr p15, 0, %0, c7, c10, 4\n\t"
278 "mcr p15, 0, %0, c7, c0, 4" :: "r" (tmp
));
280 /* we should never get past here */
282 pr_info("Failed to suspend the system\n");
283 return 1; /* Aborting suspend */
286 /* mapping of interrupts to parts of the wakeup mask */
287 static struct samsung_wakeup_mask wake_irqs
[] = {
288 { .irq
= IRQ_RTC_ALARM
, .bit
= S3C64XX_PWRCFG_RTC_ALARM_DISABLE
, },
289 { .irq
= IRQ_RTC_TIC
, .bit
= S3C64XX_PWRCFG_RTC_TICK_DISABLE
, },
290 { .irq
= IRQ_PENDN
, .bit
= S3C64XX_PWRCFG_TS_DISABLE
, },
291 { .irq
= IRQ_HSMMC0
, .bit
= S3C64XX_PWRCFG_MMC0_DISABLE
, },
292 { .irq
= IRQ_HSMMC1
, .bit
= S3C64XX_PWRCFG_MMC1_DISABLE
, },
293 { .irq
= IRQ_HSMMC2
, .bit
= S3C64XX_PWRCFG_MMC2_DISABLE
, },
294 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_BATF_DISABLE
},
295 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_MSM_DISABLE
},
296 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_HSI_DISABLE
},
297 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_MSM_DISABLE
},
300 static void s3c64xx_pm_prepare(void)
302 samsung_sync_wakemask(S3C64XX_PWR_CFG
,
303 wake_irqs
, ARRAY_SIZE(wake_irqs
));
305 /* store address of resume. */
306 __raw_writel(virt_to_phys(s3c_cpu_resume
), S3C64XX_INFORM0
);
308 /* ensure previous wakeup state is cleared before sleeping */
309 __raw_writel(__raw_readl(S3C64XX_WAKEUP_STAT
), S3C64XX_WAKEUP_STAT
);
312 int __init
s3c64xx_pm_init(void)
318 for (i
= 0; i
< ARRAY_SIZE(s3c64xx_always_on_pm_domains
); i
++)
319 pm_genpd_init(&s3c64xx_always_on_pm_domains
[i
]->pd
,
320 &pm_domain_always_on_gov
, false);
322 for (i
= 0; i
< ARRAY_SIZE(s3c64xx_pm_domains
); i
++)
323 pm_genpd_init(&s3c64xx_pm_domains
[i
]->pd
, NULL
, false);
325 #ifdef CONFIG_S3C_DEV_FB
326 if (dev_get_platdata(&s3c_device_fb
.dev
))
327 pm_genpd_add_device(&s3c64xx_pm_f
.pd
, &s3c_device_fb
.dev
);
333 static __init
int s3c64xx_pm_initcall(void)
335 pm_cpu_prep
= s3c64xx_pm_prepare
;
336 pm_cpu_sleep
= s3c64xx_cpu_suspend
;
338 #ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
339 gpio_request(S3C64XX_GPN(12), "DEBUG_LED0");
340 gpio_request(S3C64XX_GPN(13), "DEBUG_LED1");
341 gpio_request(S3C64XX_GPN(14), "DEBUG_LED2");
342 gpio_request(S3C64XX_GPN(15), "DEBUG_LED3");
343 gpio_direction_output(S3C64XX_GPN(12), 0);
344 gpio_direction_output(S3C64XX_GPN(13), 0);
345 gpio_direction_output(S3C64XX_GPN(14), 0);
346 gpio_direction_output(S3C64XX_GPN(15), 0);
351 arch_initcall(s3c64xx_pm_initcall
);