blob: fba2be5d72e934cc773ae8c370e44ff027c18bd2 [file] [log] [blame]
Magnus Damm77594912009-03-13 15:23:04 +00001/*
Magnus Damm74263942009-07-03 10:28:00 +00002 * arch/sh/kernel/cpu/shmobile/pm.c
Magnus Damm77594912009-03-13 15:23:04 +00003 *
4 * Power management support code for SuperH Mobile
5 *
6 * Copyright (C) 2009 Magnus Damm
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/io.h>
15#include <linux/suspend.h>
16#include <asm/suspend.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080017#include <linux/uaccess.h>
Magnus Damm99675a72009-10-30 04:24:23 +000018#include <asm/cacheflush.h>
Paul Mundtf03c4862012-03-30 19:29:57 +090019#include <asm/bl_bit.h>
Magnus Damm77594912009-03-13 15:23:04 +000020
21/*
Magnus Damm49f42642009-10-29 10:51:48 +000022 * Notifier lists for pre/post sleep notification
23 */
24ATOMIC_NOTIFIER_HEAD(sh_mobile_pre_sleep_notifier_list);
25ATOMIC_NOTIFIER_HEAD(sh_mobile_post_sleep_notifier_list);
26
27/*
Magnus Damm77594912009-03-13 15:23:04 +000028 * Sleep modes available on SuperH Mobile:
29 *
30 * Sleep mode is just plain "sleep" instruction
31 * Sleep Self-Refresh mode is above plus RAM put in Self-Refresh
32 * Standby Self-Refresh mode is above plus stopped clocks
33 */
34#define SUSP_MODE_SLEEP (SUSP_SH_SLEEP)
35#define SUSP_MODE_SLEEP_SF (SUSP_SH_SLEEP | SUSP_SH_SF)
36#define SUSP_MODE_STANDBY_SF (SUSP_SH_STANDBY | SUSP_SH_SF)
Magnus Damm41bfb7d2010-02-25 11:03:24 +000037#define SUSP_MODE_RSTANDBY_SF \
38 (SUSP_SH_RSTANDBY | SUSP_SH_MMU | SUSP_SH_REGS | SUSP_SH_SF)
Magnus Dammbb3e0ee2009-10-30 04:24:40 +000039 /*
40 * U-standby mode is unsupported since it needs bootloader hacks
41 */
Magnus Damm77594912009-03-13 15:23:04 +000042
Magnus Damm03625e72009-10-30 04:24:32 +000043#ifdef CONFIG_CPU_SUBTYPE_SH7724
44#define RAM_BASE 0xfd800000 /* RSMEM */
45#else
46#define RAM_BASE 0xe5200000 /* ILRAM */
47#endif
Magnus Damm74263942009-07-03 10:28:00 +000048
Magnus Damm74263942009-07-03 10:28:00 +000049void sh_mobile_call_standby(unsigned long mode)
Magnus Damm77594912009-03-13 15:23:04 +000050{
Magnus Damm03625e72009-10-30 04:24:32 +000051 void *onchip_mem = (void *)RAM_BASE;
Magnus Damm323ef8d2009-10-30 04:24:07 +000052 struct sh_sleep_data *sdp = onchip_mem;
53 void (*standby_onchip_mem)(unsigned long, unsigned long);
54
55 /* code located directly after data structure */
56 standby_onchip_mem = (void *)(sdp + 1);
Magnus Damm77594912009-03-13 15:23:04 +000057
Magnus Damm49f42642009-10-29 10:51:48 +000058 atomic_notifier_call_chain(&sh_mobile_pre_sleep_notifier_list,
59 mode, NULL);
60
Magnus Damm99675a72009-10-30 04:24:23 +000061 /* flush the caches if MMU flag is set */
62 if (mode & SUSP_SH_MMU)
63 flush_cache_all();
64
Magnus Damm77594912009-03-13 15:23:04 +000065 /* Let assembly snippet in on-chip memory handle the rest */
Magnus Damm03625e72009-10-30 04:24:32 +000066 standby_onchip_mem(mode, RAM_BASE);
Magnus Damm49f42642009-10-29 10:51:48 +000067
68 atomic_notifier_call_chain(&sh_mobile_post_sleep_notifier_list,
69 mode, NULL);
Magnus Damm77594912009-03-13 15:23:04 +000070}
71
Magnus Damm323ef8d2009-10-30 04:24:07 +000072extern char sh_mobile_sleep_enter_start;
73extern char sh_mobile_sleep_enter_end;
74
75extern char sh_mobile_sleep_resume_start;
76extern char sh_mobile_sleep_resume_end;
77
Magnus Damm02bf8932009-10-30 04:24:15 +000078unsigned long sh_mobile_sleep_supported = SUSP_SH_SLEEP;
79
Magnus Damm159f8cd2009-10-29 10:52:06 +000080void sh_mobile_register_self_refresh(unsigned long flags,
81 void *pre_start, void *pre_end,
82 void *post_start, void *post_end)
83{
Magnus Damm03625e72009-10-30 04:24:32 +000084 void *onchip_mem = (void *)RAM_BASE;
Magnus Damm323ef8d2009-10-30 04:24:07 +000085 void *vp;
86 struct sh_sleep_data *sdp;
87 int n;
88
89 /* part 0: data area */
90 sdp = onchip_mem;
91 sdp->addr.stbcr = 0xa4150020; /* STBCR */
Magnus Dammbb3e0ee2009-10-30 04:24:40 +000092 sdp->addr.bar = 0xa4150040; /* BAR */
Magnus Damm99675a72009-10-30 04:24:23 +000093 sdp->addr.pteh = 0xff000000; /* PTEH */
94 sdp->addr.ptel = 0xff000004; /* PTEL */
95 sdp->addr.ttb = 0xff000008; /* TTB */
96 sdp->addr.tea = 0xff00000c; /* TEA */
97 sdp->addr.mmucr = 0xff000010; /* MMUCR */
98 sdp->addr.ptea = 0xff000034; /* PTEA */
99 sdp->addr.pascr = 0xff000070; /* PASCR */
100 sdp->addr.irmcr = 0xff000078; /* IRMCR */
101 sdp->addr.ccr = 0xff00001c; /* CCR */
102 sdp->addr.ramcr = 0xff000074; /* RAMCR */
Magnus Damm323ef8d2009-10-30 04:24:07 +0000103 vp = sdp + 1;
104
105 /* part 1: common code to enter sleep mode */
106 n = &sh_mobile_sleep_enter_end - &sh_mobile_sleep_enter_start;
107 memcpy(vp, &sh_mobile_sleep_enter_start, n);
108 vp += roundup(n, 4);
109
110 /* part 2: board specific code to enter self-refresh mode */
111 n = pre_end - pre_start;
112 memcpy(vp, pre_start, n);
113 sdp->sf_pre = (unsigned long)vp;
114 vp += roundup(n, 4);
115
116 /* part 3: board specific code to resume from self-refresh mode */
117 n = post_end - post_start;
118 memcpy(vp, post_start, n);
119 sdp->sf_post = (unsigned long)vp;
120 vp += roundup(n, 4);
121
122 /* part 4: common code to resume from sleep mode */
123 WARN_ON(vp > (onchip_mem + 0x600));
124 vp = onchip_mem + 0x600; /* located at interrupt vector */
125 n = &sh_mobile_sleep_resume_end - &sh_mobile_sleep_resume_start;
126 memcpy(vp, &sh_mobile_sleep_resume_start, n);
Magnus Dammbb3e0ee2009-10-30 04:24:40 +0000127 sdp->resume = (unsigned long)vp;
Magnus Damm02bf8932009-10-30 04:24:15 +0000128
129 sh_mobile_sleep_supported |= flags;
Magnus Damm159f8cd2009-10-29 10:52:06 +0000130}
131
Magnus Damm77594912009-03-13 15:23:04 +0000132static int sh_pm_enter(suspend_state_t state)
133{
Magnus Damm02bf8932009-10-30 04:24:15 +0000134 if (!(sh_mobile_sleep_supported & SUSP_MODE_STANDBY_SF))
135 return -ENXIO;
136
Magnus Damm77594912009-03-13 15:23:04 +0000137 local_irq_disable();
138 set_bl_bit();
139 sh_mobile_call_standby(SUSP_MODE_STANDBY_SF);
140 local_irq_disable();
141 clear_bl_bit();
142 return 0;
143}
144
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100145static const struct platform_suspend_ops sh_pm_ops = {
Magnus Damm77594912009-03-13 15:23:04 +0000146 .enter = sh_pm_enter,
147 .valid = suspend_valid_only_mem,
148};
149
150static int __init sh_pm_init(void)
151{
152 suspend_set_ops(&sh_pm_ops);
Daniel Lezcano38a94f42013-04-17 13:32:57 +0000153 return sh_mobile_setup_cpuidle();
Magnus Damm77594912009-03-13 15:23:04 +0000154}
155
156late_initcall(sh_pm_init);