2 * sh7372 Power management support
4 * Copyright (C) 2011 Magnus Damm
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
12 #include <linux/suspend.h>
13 #include <linux/cpuidle.h>
14 #include <linux/module.h>
15 #include <linux/list.h>
16 #include <linux/err.h>
17 #include <linux/slab.h>
18 #include <linux/pm_clock.h>
19 #include <linux/platform_device.h>
20 #include <linux/delay.h>
21 #include <linux/irq.h>
22 #include <linux/bitrev.h>
23 #include <linux/console.h>
25 #include <asm/cpuidle.h>
27 #include <asm/tlbflush.h>
28 #include <asm/suspend.h>
31 #include "pm-rmobile.h"
35 #define DBGREG1 IOMEM(0xe6100020)
36 #define DBGREG9 IOMEM(0xe6100040)
39 #define SYSTBCR IOMEM(0xe6150024)
40 #define MSTPSR0 IOMEM(0xe6150030)
41 #define MSTPSR1 IOMEM(0xe6150038)
42 #define MSTPSR2 IOMEM(0xe6150040)
43 #define MSTPSR3 IOMEM(0xe6150048)
44 #define MSTPSR4 IOMEM(0xe615004c)
45 #define PLLC01STPCR IOMEM(0xe61500c8)
48 #define SYSC_BASE IOMEM(0xe6180000)
50 #define SBAR IOMEM(0xe6180020)
51 #define WUPRMSK IOMEM(0xe6180028)
52 #define WUPSMSK IOMEM(0xe618002c)
53 #define WUPSMSK2 IOMEM(0xe6180048)
54 #define WUPSFAC IOMEM(0xe6180098)
55 #define IRQCR IOMEM(0xe618022c)
56 #define IRQCR2 IOMEM(0xe6180238)
57 #define IRQCR3 IOMEM(0xe6180244)
58 #define IRQCR4 IOMEM(0xe6180248)
59 #define PDNSEL IOMEM(0xe6180254)
62 #define ICR1A IOMEM(0xe6900000)
63 #define ICR2A IOMEM(0xe6900004)
64 #define ICR3A IOMEM(0xe6900008)
65 #define ICR4A IOMEM(0xe690000c)
66 #define INTMSK00A IOMEM(0xe6900040)
67 #define INTMSK10A IOMEM(0xe6900044)
68 #define INTMSK20A IOMEM(0xe6900048)
69 #define INTMSK30A IOMEM(0xe690004c)
72 /* FIXME: pointing where? */
73 #define SMFRAM 0xe6a70000
76 #define APARMBAREA IOMEM(0xe6f10020)
80 #define PM_DOMAIN_ON_OFF_LATENCY_NS 250000
82 static int sh7372_a4r_pd_suspend(void)
84 sh7372_intcs_suspend();
85 __raw_writel(0x300fffff, WUPRMSK
); /* avoid wakeup */
89 static bool a4s_suspend_ready
;
91 static int sh7372_a4s_pd_suspend(void)
94 * The A4S domain contains the CPU core and therefore it should
95 * only be turned off if the CPU is not in use. This may happen
96 * during system suspend, when SYSC is going to be used for generating
97 * resume signals and a4s_suspend_ready is set to let
98 * sh7372_enter_suspend() know that it can turn A4S off.
100 a4s_suspend_ready
= true;
104 static void sh7372_a4s_pd_resume(void)
106 a4s_suspend_ready
= false;
109 static int sh7372_a3sp_pd_suspend(void)
112 * Serial consoles make use of SCIF hardware located in A3SP,
113 * keep such power domain on if "no_console_suspend" is set.
115 return console_suspend_enabled
? 0 : -EBUSY
;
118 static struct rmobile_pm_domain sh7372_pm_domains
[] = {
120 .genpd
.name
= "A4LC",
121 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
122 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
127 .genpd
.name
= "A4MP",
128 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
129 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
135 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
136 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
142 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
143 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
146 .suspend
= sh7372_a4r_pd_suspend
,
147 .resume
= sh7372_intcs_resume
,
150 .genpd
.name
= "A3RV",
151 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
152 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
157 .genpd
.name
= "A3RI",
158 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
159 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
165 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
166 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
169 .gov
= &pm_domain_always_on_gov
,
171 .suspend
= sh7372_a4s_pd_suspend
,
172 .resume
= sh7372_a4s_pd_resume
,
175 .genpd
.name
= "A3SP",
176 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
177 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
180 .gov
= &pm_domain_always_on_gov
,
182 .suspend
= sh7372_a3sp_pd_suspend
,
185 .genpd
.name
= "A3SG",
186 .genpd
.power_on_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
187 .genpd
.power_off_latency_ns
= PM_DOMAIN_ON_OFF_LATENCY_NS
,
193 void __init
sh7372_init_pm_domains(void)
195 rmobile_init_domains(sh7372_pm_domains
, ARRAY_SIZE(sh7372_pm_domains
));
196 pm_genpd_add_subdomain_names("A4LC", "A3RV");
197 pm_genpd_add_subdomain_names("A4R", "A4LC");
198 pm_genpd_add_subdomain_names("A4S", "A3SG");
199 pm_genpd_add_subdomain_names("A4S", "A3SP");
202 #endif /* CONFIG_PM */
204 #if defined(CONFIG_SUSPEND) || defined(CONFIG_CPU_IDLE)
205 static void sh7372_set_reset_vector(unsigned long address
)
207 /* set reset vector, translate 4k */
208 __raw_writel(address
, SBAR
);
209 __raw_writel(0, APARMBAREA
);
212 static void sh7372_enter_sysc(int pllc0_on
, unsigned long sleep_mode
)
215 __raw_writel(0, PLLC01STPCR
);
217 __raw_writel(1 << 28, PLLC01STPCR
);
219 __raw_readl(WUPSFAC
); /* read wakeup int. factor before sleep */
220 cpu_suspend(sleep_mode
, sh7372_do_idle_sysc
);
221 __raw_readl(WUPSFAC
); /* read wakeup int. factor after wakeup */
223 /* disable reset vector translation */
224 __raw_writel(0, SBAR
);
227 static int sh7372_sysc_valid(unsigned long *mskp
, unsigned long *msk2p
)
229 unsigned long mstpsr0
, mstpsr1
, mstpsr2
, mstpsr3
, mstpsr4
;
230 unsigned long msk
, msk2
;
232 /* check active clocks to determine potential wakeup sources */
234 mstpsr0
= __raw_readl(MSTPSR0
);
235 if ((mstpsr0
& 0x00000003) != 0x00000003) {
236 pr_debug("sh7372 mstpsr0 0x%08lx\n", mstpsr0
);
240 mstpsr1
= __raw_readl(MSTPSR1
);
241 if ((mstpsr1
& 0xff079b7f) != 0xff079b7f) {
242 pr_debug("sh7372 mstpsr1 0x%08lx\n", mstpsr1
);
246 mstpsr2
= __raw_readl(MSTPSR2
);
247 if ((mstpsr2
& 0x000741ff) != 0x000741ff) {
248 pr_debug("sh7372 mstpsr2 0x%08lx\n", mstpsr2
);
252 mstpsr3
= __raw_readl(MSTPSR3
);
253 if ((mstpsr3
& 0x1a60f010) != 0x1a60f010) {
254 pr_debug("sh7372 mstpsr3 0x%08lx\n", mstpsr3
);
258 mstpsr4
= __raw_readl(MSTPSR4
);
259 if ((mstpsr4
& 0x00008cf0) != 0x00008cf0) {
260 pr_debug("sh7372 mstpsr4 0x%08lx\n", mstpsr4
);
267 /* make bitmaps of limited number of wakeup sources */
269 if ((mstpsr2
& (1 << 23)) == 0) /* SPU2 */
272 if ((mstpsr2
& (1 << 12)) == 0) /* MFI_MFIM */
275 if ((mstpsr4
& (1 << 3)) == 0) /* KEYSC */
278 if ((mstpsr1
& (1 << 24)) == 0) /* CMT0 */
281 if ((mstpsr3
& (1 << 29)) == 0) /* CMT1 */
284 if ((mstpsr4
& (1 << 0)) == 0) /* CMT2 */
287 if ((mstpsr2
& (1 << 13)) == 0) /* MFI_MFIS */
296 static void sh7372_icr_to_irqcr(unsigned long icr
, u16
*irqcr1p
, u16
*irqcr2p
)
298 u16 tmp
, irqcr1
, irqcr2
;
304 /* convert INTCA ICR register layout to SYSC IRQCR+IRQCR2 */
305 for (k
= 0; k
<= 7; k
++) {
306 tmp
= (icr
>> ((7 - k
) * 4)) & 0xf;
307 irqcr1
|= (tmp
& 0x03) << (k
* 2);
308 irqcr2
|= (tmp
>> 2) << (k
* 2);
315 static void sh7372_setup_sysc(unsigned long msk
, unsigned long msk2
)
317 u16 irqcrx_low
, irqcrx_high
, irqcry_low
, irqcry_high
;
320 /* read IRQ0A -> IRQ15A mask */
321 tmp
= bitrev8(__raw_readb(INTMSK00A
));
322 tmp
|= bitrev8(__raw_readb(INTMSK10A
)) << 8;
324 /* setup WUPSMSK from clocks and external IRQ mask */
325 msk
= (~msk
& 0xc030000f) | (tmp
<< 4);
326 __raw_writel(msk
, WUPSMSK
);
328 /* propage level/edge trigger for external IRQ 0->15 */
329 sh7372_icr_to_irqcr(__raw_readl(ICR1A
), &irqcrx_low
, &irqcry_low
);
330 sh7372_icr_to_irqcr(__raw_readl(ICR2A
), &irqcrx_high
, &irqcry_high
);
331 __raw_writel((irqcrx_high
<< 16) | irqcrx_low
, IRQCR
);
332 __raw_writel((irqcry_high
<< 16) | irqcry_low
, IRQCR2
);
334 /* read IRQ16A -> IRQ31A mask */
335 tmp
= bitrev8(__raw_readb(INTMSK20A
));
336 tmp
|= bitrev8(__raw_readb(INTMSK30A
)) << 8;
338 /* setup WUPSMSK2 from clocks and external IRQ mask */
339 msk2
= (~msk2
& 0x00030000) | tmp
;
340 __raw_writel(msk2
, WUPSMSK2
);
342 /* propage level/edge trigger for external IRQ 16->31 */
343 sh7372_icr_to_irqcr(__raw_readl(ICR3A
), &irqcrx_low
, &irqcry_low
);
344 sh7372_icr_to_irqcr(__raw_readl(ICR4A
), &irqcrx_high
, &irqcry_high
);
345 __raw_writel((irqcrx_high
<< 16) | irqcrx_low
, IRQCR3
);
346 __raw_writel((irqcry_high
<< 16) | irqcry_low
, IRQCR4
);
349 static void sh7372_enter_a3sm_common(int pllc0_on
)
351 /* use INTCA together with SYSC for wakeup */
352 sh7372_setup_sysc(1 << 0, 0);
353 sh7372_set_reset_vector(__pa(sh7372_resume_core_standby_sysc
));
354 sh7372_enter_sysc(pllc0_on
, 1 << 12);
357 static void sh7372_enter_a4s_common(int pllc0_on
)
359 sh7372_intca_suspend();
360 sh7372_set_reset_vector(SMFRAM
);
361 sh7372_enter_sysc(pllc0_on
, 1 << 10);
362 sh7372_intca_resume();
365 static void sh7372_pm_setup_smfram(void)
367 /* pass physical address of cpu_resume() to assembly resume code */
368 sh7372_cpu_resume
= virt_to_phys(cpu_resume
);
370 memcpy((void *)SMFRAM
, sh7372_resume_core_standby_sysc
, 0x100);
373 static inline void sh7372_pm_setup_smfram(void) {}
374 #endif /* CONFIG_SUSPEND || CONFIG_CPU_IDLE */
376 #ifdef CONFIG_CPU_IDLE
377 static int sh7372_do_idle_core_standby(unsigned long unused
)
379 cpu_do_idle(); /* WFI when SYSTBCR == 0x10 -> Core Standby */
383 static int sh7372_enter_core_standby(struct cpuidle_device
*dev
,
384 struct cpuidle_driver
*drv
, int index
)
386 sh7372_set_reset_vector(__pa(sh7372_resume_core_standby_sysc
));
388 /* enter sleep mode with SYSTBCR to 0x10 */
389 __raw_writel(0x10, SYSTBCR
);
390 cpu_suspend(0, sh7372_do_idle_core_standby
);
391 __raw_writel(0, SYSTBCR
);
393 /* disable reset vector translation */
394 __raw_writel(0, SBAR
);
399 static int sh7372_enter_a3sm_pll_on(struct cpuidle_device
*dev
,
400 struct cpuidle_driver
*drv
, int index
)
402 sh7372_enter_a3sm_common(1);
406 static int sh7372_enter_a3sm_pll_off(struct cpuidle_device
*dev
,
407 struct cpuidle_driver
*drv
, int index
)
409 sh7372_enter_a3sm_common(0);
413 static int sh7372_enter_a4s(struct cpuidle_device
*dev
,
414 struct cpuidle_driver
*drv
, int index
)
416 unsigned long msk
, msk2
;
418 if (!sh7372_sysc_valid(&msk
, &msk2
))
419 return sh7372_enter_a3sm_pll_off(dev
, drv
, index
);
421 sh7372_setup_sysc(msk
, msk2
);
422 sh7372_enter_a4s_common(0);
426 static struct cpuidle_driver sh7372_cpuidle_driver
= {
427 .name
= "sh7372_cpuidle",
428 .owner
= THIS_MODULE
,
430 .safe_state_index
= 0, /* C1 */
431 .states
[0] = ARM_CPUIDLE_WFI_STATE
,
434 .desc
= "Core Standby Mode",
436 .target_residency
= 20 + 10,
437 .enter
= sh7372_enter_core_standby
,
441 .desc
= "A3SM PLL ON",
443 .target_residency
= 30 + 20,
444 .enter
= sh7372_enter_a3sm_pll_on
,
448 .desc
= "A3SM PLL OFF",
450 .target_residency
= 30 + 120,
451 .enter
= sh7372_enter_a3sm_pll_off
,
455 .desc
= "A4S PLL OFF",
457 .target_residency
= 30 + 240,
458 .enter
= sh7372_enter_a4s
,
463 static void __init
sh7372_cpuidle_init(void)
465 shmobile_cpuidle_set_driver(&sh7372_cpuidle_driver
);
468 static void __init
sh7372_cpuidle_init(void) {}
471 #ifdef CONFIG_SUSPEND
472 static int sh7372_enter_suspend(suspend_state_t suspend_state
)
474 unsigned long msk
, msk2
;
476 /* check active clocks to determine potential wakeup sources */
477 if (sh7372_sysc_valid(&msk
, &msk2
) && a4s_suspend_ready
) {
478 /* convert INTC mask/sense to SYSC mask/sense */
479 sh7372_setup_sysc(msk
, msk2
);
481 /* enter A4S sleep with PLLC0 off */
482 pr_debug("entering A4S\n");
483 sh7372_enter_a4s_common(0);
487 /* default to enter A3SM sleep with PLLC0 off */
488 pr_debug("entering A3SM\n");
489 sh7372_enter_a3sm_common(0);
494 * sh7372_pm_notifier_fn - SH7372 PM notifier routine.
496 * @pm_event: Event being handled.
499 static int sh7372_pm_notifier_fn(struct notifier_block
*notifier
,
500 unsigned long pm_event
, void *unused
)
503 case PM_SUSPEND_PREPARE
:
505 * This is necessary, because the A4R domain has to be "on"
506 * when suspend_device_irqs() and resume_device_irqs() are
507 * executed during system suspend and resume, respectively, so
508 * that those functions don't crash while accessing the INTCS.
510 pm_genpd_name_poweron("A4R");
512 case PM_POST_SUSPEND
:
513 pm_genpd_poweroff_unused();
520 static void sh7372_suspend_init(void)
522 shmobile_suspend_ops
.enter
= sh7372_enter_suspend
;
523 pm_notifier(sh7372_pm_notifier_fn
, 0);
526 static void sh7372_suspend_init(void) {}
529 void __init
sh7372_pm_init(void)
531 /* enable DBG hardware block to kick SYSC */
532 __raw_writel(0x0000a500, DBGREG9
);
533 __raw_writel(0x0000a501, DBGREG9
);
534 __raw_writel(0x00000000, DBGREG1
);
536 /* do not convert A3SM, A3SP, A3SG, A4R power down into A4S */
537 __raw_writel(0, PDNSEL
);
539 sh7372_pm_setup_smfram();
541 sh7372_suspend_init();
542 sh7372_cpuidle_init();
545 void __init
sh7372_pm_init_late(void)
547 shmobile_init_late();
548 pm_genpd_name_attach_cpuidle("A4S", 4);