ARM: plat-nomadik: timer: Add support for periodic timers
[deliverable/linux.git] / arch / arm / mach-shmobile / pm-sh7372.c
CommitLineData
97991657
MD
1/*
2 * sh7372 Power management support
3 *
4 * Copyright (C) 2011 Magnus Damm
5 *
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
8 * for more details.
9 */
10
11#include <linux/pm.h>
12#include <linux/suspend.h>
082a8ca1 13#include <linux/cpuidle.h>
97991657
MD
14#include <linux/module.h>
15#include <linux/list.h>
16#include <linux/err.h>
17#include <linux/slab.h>
e3e01091
RW
18#include <linux/pm_runtime.h>
19#include <linux/platform_device.h>
20#include <linux/delay.h>
97991657
MD
21#include <asm/system.h>
22#include <asm/io.h>
23#include <asm/tlbflush.h>
24#include <mach/common.h>
e3e01091 25#include <mach/sh7372.h>
97991657
MD
26
27#define SMFRAM 0xe6a70000
28#define SYSTBCR 0xe6150024
29#define SBAR 0xe6180020
30#define APARMBAREA 0xe6f10020
31
e3e01091
RW
32#define SPDCR 0xe6180008
33#define SWUCR 0xe6180014
34#define PSTR 0xe6180080
35
36#define PSTR_RETRIES 100
37#define PSTR_DELAY_US 10
38
39#ifdef CONFIG_PM
40
41static int pd_power_down(struct generic_pm_domain *genpd)
42{
43 struct sh7372_pm_domain *sh7372_pd = to_sh7372_pd(genpd);
44 unsigned int mask = 1 << sh7372_pd->bit_shift;
45
46 if (__raw_readl(PSTR) & mask) {
47 unsigned int retry_count;
48
49 __raw_writel(mask, SPDCR);
50
51 for (retry_count = PSTR_RETRIES; retry_count; retry_count--) {
52 if (!(__raw_readl(SPDCR) & mask))
53 break;
54 cpu_relax();
55 }
56 }
57
58 pr_debug("sh7372 power domain down 0x%08x -> PSTR = 0x%08x\n",
59 mask, __raw_readl(PSTR));
60
61 return 0;
62}
63
64static int pd_power_up(struct generic_pm_domain *genpd)
65{
66 struct sh7372_pm_domain *sh7372_pd = to_sh7372_pd(genpd);
67 unsigned int mask = 1 << sh7372_pd->bit_shift;
68 unsigned int retry_count;
69 int ret = 0;
70
71 if (__raw_readl(PSTR) & mask)
72 goto out;
73
74 __raw_writel(mask, SWUCR);
75
76 for (retry_count = 2 * PSTR_RETRIES; retry_count; retry_count--) {
77 if (!(__raw_readl(SWUCR) & mask))
78 goto out;
79 if (retry_count > PSTR_RETRIES)
80 udelay(PSTR_DELAY_US);
81 else
82 cpu_relax();
83 }
84 if (__raw_readl(SWUCR) & mask)
85 ret = -EIO;
86
87 out:
88 pr_debug("sh7372 power domain up 0x%08x -> PSTR = 0x%08x\n",
89 mask, __raw_readl(PSTR));
90
91 return ret;
92}
93
775b8ae8
MD
94static int pd_power_up_a3rv(struct generic_pm_domain *genpd)
95{
96 int ret = pd_power_up(genpd);
97
98 /* force A4LC on after A3RV has been requested on */
99 pm_genpd_poweron(&sh7372_a4lc.genpd);
100
101 return ret;
102}
103
104static int pd_power_down_a3rv(struct generic_pm_domain *genpd)
105{
106 int ret = pd_power_down(genpd);
107
108 /* try to power down A4LC after A3RV is requested off */
0bc5b2de 109 genpd_queue_power_off_work(&sh7372_a4lc.genpd);
775b8ae8
MD
110
111 return ret;
112}
113
114static int pd_power_down_a4lc(struct generic_pm_domain *genpd)
115{
116 /* only power down A4LC if A3RV is off */
117 if (!(__raw_readl(PSTR) & (1 << sh7372_a3rv.bit_shift)))
118 return pd_power_down(genpd);
119
5ca80817 120 return -EBUSY;
775b8ae8
MD
121}
122
e3e01091
RW
123static bool pd_active_wakeup(struct device *dev)
124{
125 return true;
126}
127
128void sh7372_init_pm_domain(struct sh7372_pm_domain *sh7372_pd)
129{
130 struct generic_pm_domain *genpd = &sh7372_pd->genpd;
131
132 pm_genpd_init(genpd, NULL, false);
133 genpd->stop_device = pm_clk_suspend;
134 genpd->start_device = pm_clk_resume;
135 genpd->active_wakeup = pd_active_wakeup;
775b8ae8
MD
136
137 if (sh7372_pd == &sh7372_a4lc) {
138 genpd->power_off = pd_power_down_a4lc;
139 genpd->power_on = pd_power_up;
140 } else if (sh7372_pd == &sh7372_a3rv) {
141 genpd->power_off = pd_power_down_a3rv;
142 genpd->power_on = pd_power_up_a3rv;
143 } else {
144 genpd->power_off = pd_power_down;
145 genpd->power_on = pd_power_up;
146 }
147 genpd->power_on(&sh7372_pd->genpd);
e3e01091
RW
148}
149
150void sh7372_add_device_to_domain(struct sh7372_pm_domain *sh7372_pd,
151 struct platform_device *pdev)
152{
153 struct device *dev = &pdev->dev;
154
155 if (!dev->power.subsys_data) {
156 pm_clk_init(dev);
157 pm_clk_add(dev, NULL);
158 }
159 pm_genpd_add_device(&sh7372_pd->genpd, dev);
160}
161
162struct sh7372_pm_domain sh7372_a4lc = {
163 .bit_shift = 1,
164};
165
c1ba5bb5
KM
166struct sh7372_pm_domain sh7372_a4mp = {
167 .bit_shift = 2,
168};
169
d24771de
MD
170struct sh7372_pm_domain sh7372_d4 = {
171 .bit_shift = 3,
172};
173
33afebf3
MD
174struct sh7372_pm_domain sh7372_a3rv = {
175 .bit_shift = 6,
176};
177
082517aa
MD
178struct sh7372_pm_domain sh7372_a3ri = {
179 .bit_shift = 8,
180};
181
c47586b6
MD
182struct sh7372_pm_domain sh7372_a3sg = {
183 .bit_shift = 13,
184};
185
e3e01091
RW
186#endif /* CONFIG_PM */
187
66ad1293 188static void sh7372_enter_core_standby(void)
97991657
MD
189{
190 void __iomem *smfram = (void __iomem *)SMFRAM;
191
192 __raw_writel(0, APARMBAREA); /* translate 4k */
193 __raw_writel(__pa(sh7372_cpu_resume), SBAR); /* set reset vector */
194 __raw_writel(0x10, SYSTBCR); /* enable core standby */
195
196 __raw_writel(0, smfram + 0x3c); /* clear page table address */
197
198 sh7372_cpu_suspend();
199 cpu_init();
200
201 /* if page table address is non-NULL then we have been powered down */
202 if (__raw_readl(smfram + 0x3c)) {
203 __raw_writel(__raw_readl(smfram + 0x40),
204 __va(__raw_readl(smfram + 0x3c)));
205
206 flush_tlb_all();
207 set_cr(__raw_readl(smfram + 0x38));
208 }
209
210 __raw_writel(0, SYSTBCR); /* disable core standby */
211 __raw_writel(0, SBAR); /* disable reset vector translation */
212}
213
082a8ca1
MD
214#ifdef CONFIG_CPU_IDLE
215static void sh7372_cpuidle_setup(struct cpuidle_device *dev)
216{
217 struct cpuidle_state *state;
218 int i = dev->state_count;
219
220 state = &dev->states[i];
221 snprintf(state->name, CPUIDLE_NAME_LEN, "C2");
222 strncpy(state->desc, "Core Standby Mode", CPUIDLE_DESC_LEN);
223 state->exit_latency = 10;
224 state->target_residency = 20 + 10;
225 state->power_usage = 1; /* perhaps not */
226 state->flags = 0;
227 state->flags |= CPUIDLE_FLAG_TIME_VALID;
228 shmobile_cpuidle_modes[i] = sh7372_enter_core_standby;
229
230 dev->state_count = i + 1;
231}
232
233static void sh7372_cpuidle_init(void)
234{
235 shmobile_cpuidle_setup = sh7372_cpuidle_setup;
236}
237#else
238static void sh7372_cpuidle_init(void) {}
239#endif
240
241#ifdef CONFIG_SUSPEND
97991657
MD
242static int sh7372_enter_suspend(suspend_state_t suspend_state)
243{
244 sh7372_enter_core_standby();
245 return 0;
246}
247
248static void sh7372_suspend_init(void)
249{
250 shmobile_suspend_ops.enter = sh7372_enter_suspend;
251}
252#else
253static void sh7372_suspend_init(void) {}
254#endif
255
256#define DBGREG1 0xe6100020
257#define DBGREG9 0xe6100040
258
259void __init sh7372_pm_init(void)
260{
261 /* enable DBG hardware block to kick SYSC */
262 __raw_writel(0x0000a500, DBGREG9);
263 __raw_writel(0x0000a501, DBGREG9);
264 __raw_writel(0x00000000, DBGREG1);
265
266 sh7372_suspend_init();
082a8ca1 267 sh7372_cpuidle_init();
97991657 268}
This page took 0.078651 seconds and 5 git commands to generate.