2 * rmobile power management support
4 * Copyright (C) 2012 Renesas Solutions Corp.
5 * Copyright (C) 2012 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 * Copyright (C) 2014 Glider bvba
9 * Copyright (C) 2011 Magnus Damm
11 * This file is subject to the terms and conditions of the GNU General Public
12 * License. See the file "COPYING" in the main directory of this archive
15 #include <linux/clk/shmobile.h>
16 #include <linux/console.h>
17 #include <linux/delay.h>
19 #include <linux/of_address.h>
20 #include <linux/of_platform.h>
21 #include <linux/platform_device.h>
23 #include <linux/pm_clock.h>
24 #include <linux/slab.h>
28 #include "pm-rmobile.h"
31 #define SPDCR 0x08 /* SYS Power Down Control Register */
32 #define SWUCR 0x14 /* SYS Wakeup Control Register */
33 #define PSTR 0x80 /* Power Status Register */
35 #define PSTR_RETRIES 100
36 #define PSTR_DELAY_US 10
39 struct rmobile_pm_domain
*to_rmobile_pd(struct generic_pm_domain
*d
)
41 return container_of(d
, struct rmobile_pm_domain
, genpd
);
44 static int rmobile_pd_power_down(struct generic_pm_domain
*genpd
)
46 struct rmobile_pm_domain
*rmobile_pd
= to_rmobile_pd(genpd
);
49 if (rmobile_pd
->bit_shift
== ~0)
52 mask
= BIT(rmobile_pd
->bit_shift
);
53 if (rmobile_pd
->suspend
) {
54 int ret
= rmobile_pd
->suspend();
60 if (__raw_readl(rmobile_pd
->base
+ PSTR
) & mask
) {
61 unsigned int retry_count
;
62 __raw_writel(mask
, rmobile_pd
->base
+ SPDCR
);
64 for (retry_count
= PSTR_RETRIES
; retry_count
; retry_count
--) {
65 if (!(__raw_readl(rmobile_pd
->base
+ SPDCR
) & mask
))
71 if (!rmobile_pd
->no_debug
)
72 pr_debug("%s: Power off, 0x%08x -> PSTR = 0x%08x\n",
74 __raw_readl(rmobile_pd
->base
+ PSTR
));
79 static int __rmobile_pd_power_up(struct rmobile_pm_domain
*rmobile_pd
,
83 unsigned int retry_count
;
86 if (rmobile_pd
->bit_shift
== ~0)
89 mask
= BIT(rmobile_pd
->bit_shift
);
90 if (__raw_readl(rmobile_pd
->base
+ PSTR
) & mask
)
93 __raw_writel(mask
, rmobile_pd
->base
+ SWUCR
);
95 for (retry_count
= 2 * PSTR_RETRIES
; retry_count
; retry_count
--) {
96 if (!(__raw_readl(rmobile_pd
->base
+ SWUCR
) & mask
))
98 if (retry_count
> PSTR_RETRIES
)
99 udelay(PSTR_DELAY_US
);
106 if (!rmobile_pd
->no_debug
)
107 pr_debug("%s: Power on, 0x%08x -> PSTR = 0x%08x\n",
108 rmobile_pd
->genpd
.name
, mask
,
109 __raw_readl(rmobile_pd
->base
+ PSTR
));
112 if (ret
== 0 && rmobile_pd
->resume
&& do_resume
)
113 rmobile_pd
->resume();
118 static int rmobile_pd_power_up(struct generic_pm_domain
*genpd
)
120 return __rmobile_pd_power_up(to_rmobile_pd(genpd
), true);
123 static bool rmobile_pd_active_wakeup(struct device
*dev
)
128 static void rmobile_init_pm_domain(struct rmobile_pm_domain
*rmobile_pd
)
130 struct generic_pm_domain
*genpd
= &rmobile_pd
->genpd
;
131 struct dev_power_governor
*gov
= rmobile_pd
->gov
;
133 genpd
->flags
= GENPD_FLAG_PM_CLK
;
134 pm_genpd_init(genpd
, gov
? : &simple_qos_governor
, false);
135 genpd
->dev_ops
.active_wakeup
= rmobile_pd_active_wakeup
;
136 genpd
->power_off
= rmobile_pd_power_down
;
137 genpd
->power_on
= rmobile_pd_power_up
;
138 genpd
->attach_dev
= cpg_mstp_attach_dev
;
139 genpd
->detach_dev
= cpg_mstp_detach_dev
;
140 __rmobile_pd_power_up(rmobile_pd
, false);
143 static int rmobile_pd_suspend_busy(void)
146 * This domain should not be turned off.
151 static int rmobile_pd_suspend_console(void)
154 * Serial consoles make use of SCIF hardware located in this domain,
155 * hence keep the power domain on if "no_console_suspend" is set.
157 return console_suspend_enabled
? 0 : -EBUSY
;
168 #define MAX_NUM_SPECIAL_PDS 16
170 static struct special_pd
{
171 struct device_node
*pd
;
173 } special_pds
[MAX_NUM_SPECIAL_PDS
] __initdata
;
175 static unsigned int num_special_pds __initdata
;
177 static const struct of_device_id special_ids
[] __initconst
= {
178 { .compatible
= "arm,coresight-etm3x", .data
= (void *)PD_DEBUG
},
179 { .compatible
= "renesas,dbsc-r8a73a4", .data
= (void *)PD_MEMCTL
, },
180 { .compatible
= "renesas,dbsc3-r8a7740", .data
= (void *)PD_MEMCTL
, },
181 { .compatible
= "renesas,sbsc-sh73a0", .data
= (void *)PD_MEMCTL
, },
185 static void __init
add_special_pd(struct device_node
*np
, enum pd_types type
)
188 struct device_node
*pd
;
190 pd
= of_parse_phandle(np
, "power-domains", 0);
194 for (i
= 0; i
< num_special_pds
; i
++)
195 if (pd
== special_pds
[i
].pd
&& type
== special_pds
[i
].type
) {
200 if (num_special_pds
== ARRAY_SIZE(special_pds
)) {
201 pr_warn("Too many special PM domains\n");
206 pr_debug("Special PM domain %s type %d for %s\n", pd
->name
, type
,
209 special_pds
[num_special_pds
].pd
= pd
;
210 special_pds
[num_special_pds
].type
= type
;
214 static void __init
get_special_pds(void)
216 struct device_node
*np
;
217 const struct of_device_id
*id
;
219 /* PM domains containing CPUs */
220 for_each_node_by_type(np
, "cpu")
221 add_special_pd(np
, PD_CPU
);
223 /* PM domain containing console */
225 add_special_pd(of_stdout
, PD_CONSOLE
);
227 /* PM domains containing other special devices */
228 for_each_matching_node_and_match(np
, special_ids
, &id
)
229 add_special_pd(np
, (enum pd_types
)id
->data
);
232 static void __init
put_special_pds(void)
236 for (i
= 0; i
< num_special_pds
; i
++)
237 of_node_put(special_pds
[i
].pd
);
240 static enum pd_types __init
pd_type(const struct device_node
*pd
)
244 for (i
= 0; i
< num_special_pds
; i
++)
245 if (pd
== special_pds
[i
].pd
)
246 return special_pds
[i
].type
;
251 static void __init
rmobile_setup_pm_domain(struct device_node
*np
,
252 struct rmobile_pm_domain
*pd
)
254 const char *name
= pd
->genpd
.name
;
256 switch (pd_type(np
)) {
259 * This domain contains the CPU core and therefore it should
260 * only be turned off if the CPU is not in use.
262 pr_debug("PM domain %s contains CPU\n", name
);
263 pd
->gov
= &pm_domain_always_on_gov
;
264 pd
->suspend
= rmobile_pd_suspend_busy
;
268 pr_debug("PM domain %s contains serial console\n", name
);
269 pd
->gov
= &pm_domain_always_on_gov
;
270 pd
->suspend
= rmobile_pd_suspend_console
;
275 * This domain contains the Coresight-ETM hardware block and
276 * therefore it should only be turned off if the debug module
279 pr_debug("PM domain %s contains Coresight-ETM\n", name
);
280 pd
->gov
= &pm_domain_always_on_gov
;
281 pd
->suspend
= rmobile_pd_suspend_busy
;
286 * This domain contains a memory-controller and therefore it
287 * should only be turned off if memory is not in use.
289 pr_debug("PM domain %s contains MEMCTL\n", name
);
290 pd
->gov
= &pm_domain_always_on_gov
;
291 pd
->suspend
= rmobile_pd_suspend_busy
;
298 rmobile_init_pm_domain(pd
);
301 static int __init
rmobile_add_pm_domains(void __iomem
*base
,
302 struct device_node
*parent
,
303 struct generic_pm_domain
*genpd_parent
)
305 struct device_node
*np
;
307 for_each_child_of_node(parent
, np
) {
308 struct rmobile_pm_domain
*pd
;
311 if (of_property_read_u32(np
, "reg", &idx
)) {
312 /* always-on domain */
315 pd
= kzalloc(sizeof(*pd
), GFP_KERNEL
);
321 pd
->genpd
.name
= np
->name
;
325 rmobile_setup_pm_domain(np
, pd
);
327 pm_genpd_add_subdomain(genpd_parent
, &pd
->genpd
);
328 of_genpd_add_provider_simple(np
, &pd
->genpd
);
330 rmobile_add_pm_domains(base
, np
, &pd
->genpd
);
335 static int __init
rmobile_init_pm_domains(void)
337 struct device_node
*np
, *pmd
;
338 bool scanned
= false;
342 for_each_compatible_node(np
, NULL
, "renesas,sysc-rmobile") {
343 base
= of_iomap(np
, 0);
345 pr_warn("%s cannot map reg 0\n", np
->full_name
);
349 pmd
= of_get_child_by_name(np
, "pm-domains");
351 pr_warn("%s lacks pm-domains node\n", np
->full_name
);
356 /* Find PM domains containing special blocks */
361 ret
= rmobile_add_pm_domains(base
, pmd
, NULL
);
374 core_initcall(rmobile_init_pm_domains
);