1 // SPDX-License-Identifier: GPL-2.0
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 #include <linux/init.h>
11 #include <linux/suspend.h>
12 #include <linux/serial_core.h>
14 #include <linux/gpio.h>
15 #include <linux/pm_domain.h>
18 #include <mach/irqs.h>
21 #include <plat/devs.h>
23 #include <plat/wakeup-mask.h>
25 #include <mach/regs-gpio.h>
26 #include <mach/regs-clock.h>
27 #include <mach/gpio-samsung.h>
29 #include "regs-gpio-memport.h"
30 #include "regs-modem.h"
32 #include "regs-syscon-power.h"
34 struct s3c64xx_pm_domain
{
38 struct generic_pm_domain pd
;
41 static int s3c64xx_pd_off(struct generic_pm_domain
*domain
)
43 struct s3c64xx_pm_domain
*pd
;
46 pd
= container_of(domain
, struct s3c64xx_pm_domain
, pd
);
48 val
= __raw_readl(S3C64XX_NORMAL_CFG
);
50 __raw_writel(val
, S3C64XX_NORMAL_CFG
);
55 static int s3c64xx_pd_on(struct generic_pm_domain
*domain
)
57 struct s3c64xx_pm_domain
*pd
;
59 long retry
= 1000000L;
61 pd
= container_of(domain
, struct s3c64xx_pm_domain
, pd
);
63 val
= __raw_readl(S3C64XX_NORMAL_CFG
);
65 __raw_writel(val
, S3C64XX_NORMAL_CFG
);
67 /* Not all domains provide power status readback */
71 if (__raw_readl(S3C64XX_BLK_PWR_STAT
) & pd
->pwr_stat
)
76 pr_err("Failed to start domain %s\n", pd
->name
);
84 static struct s3c64xx_pm_domain s3c64xx_pm_irom
= {
86 .ena
= S3C64XX_NORMALCFG_IROM_ON
,
88 .power_off
= s3c64xx_pd_off
,
89 .power_on
= s3c64xx_pd_on
,
93 static struct s3c64xx_pm_domain s3c64xx_pm_etm
= {
95 .ena
= S3C64XX_NORMALCFG_DOMAIN_ETM_ON
,
96 .pwr_stat
= S3C64XX_BLKPWRSTAT_ETM
,
98 .power_off
= s3c64xx_pd_off
,
99 .power_on
= s3c64xx_pd_on
,
103 static struct s3c64xx_pm_domain s3c64xx_pm_s
= {
105 .ena
= S3C64XX_NORMALCFG_DOMAIN_S_ON
,
106 .pwr_stat
= S3C64XX_BLKPWRSTAT_S
,
108 .power_off
= s3c64xx_pd_off
,
109 .power_on
= s3c64xx_pd_on
,
113 static struct s3c64xx_pm_domain s3c64xx_pm_f
= {
115 .ena
= S3C64XX_NORMALCFG_DOMAIN_F_ON
,
116 .pwr_stat
= S3C64XX_BLKPWRSTAT_F
,
118 .power_off
= s3c64xx_pd_off
,
119 .power_on
= s3c64xx_pd_on
,
123 static struct s3c64xx_pm_domain s3c64xx_pm_p
= {
125 .ena
= S3C64XX_NORMALCFG_DOMAIN_P_ON
,
126 .pwr_stat
= S3C64XX_BLKPWRSTAT_P
,
128 .power_off
= s3c64xx_pd_off
,
129 .power_on
= s3c64xx_pd_on
,
133 static struct s3c64xx_pm_domain s3c64xx_pm_i
= {
135 .ena
= S3C64XX_NORMALCFG_DOMAIN_I_ON
,
136 .pwr_stat
= S3C64XX_BLKPWRSTAT_I
,
138 .power_off
= s3c64xx_pd_off
,
139 .power_on
= s3c64xx_pd_on
,
143 static struct s3c64xx_pm_domain s3c64xx_pm_g
= {
145 .ena
= S3C64XX_NORMALCFG_DOMAIN_G_ON
,
147 .power_off
= s3c64xx_pd_off
,
148 .power_on
= s3c64xx_pd_on
,
152 static struct s3c64xx_pm_domain s3c64xx_pm_v
= {
154 .ena
= S3C64XX_NORMALCFG_DOMAIN_V_ON
,
155 .pwr_stat
= S3C64XX_BLKPWRSTAT_V
,
157 .power_off
= s3c64xx_pd_off
,
158 .power_on
= s3c64xx_pd_on
,
162 static struct s3c64xx_pm_domain
*s3c64xx_always_on_pm_domains
[] = {
166 static struct s3c64xx_pm_domain
*s3c64xx_pm_domains
[] = {
176 #ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
177 void s3c_pm_debug_smdkled(u32 set
, u32 clear
)
182 local_irq_save(flags
);
183 for (i
= 0; i
< 4; i
++) {
184 if (clear
& (1 << i
))
185 gpio_set_value(S3C64XX_GPN(12 + i
), 0);
187 gpio_set_value(S3C64XX_GPN(12 + i
), 1);
189 local_irq_restore(flags
);
193 #ifdef CONFIG_PM_SLEEP
194 static struct sleep_save core_save
[] = {
195 SAVE_ITEM(S3C64XX_MEM0DRVCON
),
196 SAVE_ITEM(S3C64XX_MEM1DRVCON
),
199 static struct sleep_save misc_save
[] = {
200 SAVE_ITEM(S3C64XX_AHB_CON0
),
201 SAVE_ITEM(S3C64XX_AHB_CON1
),
202 SAVE_ITEM(S3C64XX_AHB_CON2
),
204 SAVE_ITEM(S3C64XX_SPCON
),
206 SAVE_ITEM(S3C64XX_MEM0CONSTOP
),
207 SAVE_ITEM(S3C64XX_MEM1CONSTOP
),
208 SAVE_ITEM(S3C64XX_MEM0CONSLP0
),
209 SAVE_ITEM(S3C64XX_MEM0CONSLP1
),
210 SAVE_ITEM(S3C64XX_MEM1CONSLP
),
212 SAVE_ITEM(S3C64XX_SDMA_SEL
),
213 SAVE_ITEM(S3C64XX_MODEM_MIFPCON
),
215 SAVE_ITEM(S3C64XX_NORMAL_CFG
),
218 void s3c_pm_configure_extint(void)
220 __raw_writel(s3c_irqwake_eintmask
, S3C64XX_EINT_MASK
);
223 void s3c_pm_restore_core(void)
225 __raw_writel(0, S3C64XX_EINT_MASK
);
227 s3c_pm_debug_smdkled(1 << 2, 0);
229 s3c_pm_do_restore_core(core_save
, ARRAY_SIZE(core_save
));
230 s3c_pm_do_restore(misc_save
, ARRAY_SIZE(misc_save
));
233 void s3c_pm_save_core(void)
235 s3c_pm_do_save(misc_save
, ARRAY_SIZE(misc_save
));
236 s3c_pm_do_save(core_save
, ARRAY_SIZE(core_save
));
240 /* since both s3c6400 and s3c6410 share the same sleep pm calls, we
241 * put the per-cpu code in here until any new cpu comes along and changes
245 static int s3c64xx_cpu_suspend(unsigned long arg
)
249 /* set our standby method to sleep */
251 tmp
= __raw_readl(S3C64XX_PWR_CFG
);
252 tmp
&= ~S3C64XX_PWRCFG_CFG_WFI_MASK
;
253 tmp
|= S3C64XX_PWRCFG_CFG_WFI_SLEEP
;
254 __raw_writel(tmp
, S3C64XX_PWR_CFG
);
256 /* clear any old wakeup */
258 __raw_writel(__raw_readl(S3C64XX_WAKEUP_STAT
),
259 S3C64XX_WAKEUP_STAT
);
261 /* set the LED state to 0110 over sleep */
262 s3c_pm_debug_smdkled(3 << 1, 0xf);
264 /* issue the standby signal into the pm unit. Note, we
265 * issue a write-buffer drain just in case */
272 "mcr p15, 0, %0, c7, c10, 5\n\t"
273 "mcr p15, 0, %0, c7, c10, 4\n\t"
274 "mcr p15, 0, %0, c7, c0, 4" :: "r" (tmp
));
276 /* we should never get past here */
278 pr_info("Failed to suspend the system\n");
279 return 1; /* Aborting suspend */
282 /* mapping of interrupts to parts of the wakeup mask */
283 static const struct samsung_wakeup_mask wake_irqs
[] = {
284 { .irq
= IRQ_RTC_ALARM
, .bit
= S3C64XX_PWRCFG_RTC_ALARM_DISABLE
, },
285 { .irq
= IRQ_RTC_TIC
, .bit
= S3C64XX_PWRCFG_RTC_TICK_DISABLE
, },
286 { .irq
= IRQ_PENDN
, .bit
= S3C64XX_PWRCFG_TS_DISABLE
, },
287 { .irq
= IRQ_HSMMC0
, .bit
= S3C64XX_PWRCFG_MMC0_DISABLE
, },
288 { .irq
= IRQ_HSMMC1
, .bit
= S3C64XX_PWRCFG_MMC1_DISABLE
, },
289 { .irq
= IRQ_HSMMC2
, .bit
= S3C64XX_PWRCFG_MMC2_DISABLE
, },
290 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_BATF_DISABLE
},
291 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_MSM_DISABLE
},
292 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_HSI_DISABLE
},
293 { .irq
= NO_WAKEUP_IRQ
, .bit
= S3C64XX_PWRCFG_MSM_DISABLE
},
296 static void s3c64xx_pm_prepare(void)
298 samsung_sync_wakemask(S3C64XX_PWR_CFG
,
299 wake_irqs
, ARRAY_SIZE(wake_irqs
));
301 /* store address of resume. */
302 __raw_writel(__pa_symbol(s3c_cpu_resume
), S3C64XX_INFORM0
);
304 /* ensure previous wakeup state is cleared before sleeping */
305 __raw_writel(__raw_readl(S3C64XX_WAKEUP_STAT
), S3C64XX_WAKEUP_STAT
);
308 int __init
s3c64xx_pm_init(void)
314 for (i
= 0; i
< ARRAY_SIZE(s3c64xx_always_on_pm_domains
); i
++)
315 pm_genpd_init(&s3c64xx_always_on_pm_domains
[i
]->pd
,
316 &pm_domain_always_on_gov
, false);
318 for (i
= 0; i
< ARRAY_SIZE(s3c64xx_pm_domains
); i
++)
319 pm_genpd_init(&s3c64xx_pm_domains
[i
]->pd
, NULL
, false);
321 #ifdef CONFIG_S3C_DEV_FB
322 if (dev_get_platdata(&s3c_device_fb
.dev
))
323 pm_genpd_add_device(&s3c64xx_pm_f
.pd
, &s3c_device_fb
.dev
);
329 static __init
int s3c64xx_pm_initcall(void)
331 if (!soc_is_s3c64xx())
334 pm_cpu_prep
= s3c64xx_pm_prepare
;
335 pm_cpu_sleep
= s3c64xx_cpu_suspend
;
337 #ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
338 gpio_request(S3C64XX_GPN(12), "DEBUG_LED0");
339 gpio_request(S3C64XX_GPN(13), "DEBUG_LED1");
340 gpio_request(S3C64XX_GPN(14), "DEBUG_LED2");
341 gpio_request(S3C64XX_GPN(15), "DEBUG_LED3");
342 gpio_direction_output(S3C64XX_GPN(12), 0);
343 gpio_direction_output(S3C64XX_GPN(13), 0);
344 gpio_direction_output(S3C64XX_GPN(14), 0);
345 gpio_direction_output(S3C64XX_GPN(15), 0);
350 arch_initcall(s3c64xx_pm_initcall
);