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/console.h>
16 #include <linux/delay.h>
18 #include <linux/of_address.h>
19 #include <linux/of_platform.h>
20 #include <linux/platform_device.h>
22 #include <linux/pm_clock.h>
23 #include <linux/slab.h>
27 #include "pm-rmobile.h"
30 #define SPDCR 0x08 /* SYS Power Down Control Register */
31 #define SWUCR 0x14 /* SYS Wakeup Control Register */
32 #define PSTR 0x80 /* Power Status Register */
34 #define PSTR_RETRIES 100
35 #define PSTR_DELAY_US 10
37 static int rmobile_pd_power_down(struct generic_pm_domain *genpd)
39 struct rmobile_pm_domain *rmobile_pd = to_rmobile_pd(genpd);
42 if (rmobile_pd->bit_shift == ~0)
45 mask = 1 << rmobile_pd->bit_shift;
46 if (rmobile_pd->suspend) {
47 int ret = rmobile_pd->suspend();
53 if (__raw_readl(rmobile_pd->base + PSTR) & mask) {
54 unsigned int retry_count;
55 __raw_writel(mask, rmobile_pd->base + SPDCR);
57 for (retry_count = PSTR_RETRIES; retry_count; retry_count--) {
58 if (!(__raw_readl(rmobile_pd->base + SPDCR) & mask))
64 if (!rmobile_pd->no_debug)
65 pr_debug("%s: Power off, 0x%08x -> PSTR = 0x%08x\n",
67 __raw_readl(rmobile_pd->base + PSTR));
72 static int __rmobile_pd_power_up(struct rmobile_pm_domain *rmobile_pd,
76 unsigned int retry_count;
79 if (rmobile_pd->bit_shift == ~0)
82 mask = 1 << rmobile_pd->bit_shift;
83 if (__raw_readl(rmobile_pd->base + PSTR) & mask)
86 __raw_writel(mask, rmobile_pd->base + SWUCR);
88 for (retry_count = 2 * PSTR_RETRIES; retry_count; retry_count--) {
89 if (!(__raw_readl(rmobile_pd->base + SWUCR) & mask))
91 if (retry_count > PSTR_RETRIES)
92 udelay(PSTR_DELAY_US);
99 if (!rmobile_pd->no_debug)
100 pr_debug("%s: Power on, 0x%08x -> PSTR = 0x%08x\n",
101 rmobile_pd->genpd.name, mask,
102 __raw_readl(rmobile_pd->base + PSTR));
105 if (ret == 0 && rmobile_pd->resume && do_resume)
106 rmobile_pd->resume();
111 static int rmobile_pd_power_up(struct generic_pm_domain *genpd)
113 return __rmobile_pd_power_up(to_rmobile_pd(genpd), true);
116 static bool rmobile_pd_active_wakeup(struct device *dev)
121 static int rmobile_pd_attach_dev(struct generic_pm_domain *domain,
126 error = pm_clk_create(dev);
128 dev_err(dev, "pm_clk_create failed %d\n", error);
132 error = pm_clk_add(dev, NULL);
134 dev_err(dev, "pm_clk_add failed %d\n", error);
145 static void rmobile_pd_detach_dev(struct generic_pm_domain *domain,
151 static void rmobile_init_pm_domain(struct rmobile_pm_domain *rmobile_pd)
153 struct generic_pm_domain *genpd = &rmobile_pd->genpd;
154 struct dev_power_governor *gov = rmobile_pd->gov;
156 genpd->flags = GENPD_FLAG_PM_CLK;
157 pm_genpd_init(genpd, gov ? : &simple_qos_governor, false);
158 genpd->dev_ops.active_wakeup = rmobile_pd_active_wakeup;
159 genpd->power_off = rmobile_pd_power_down;
160 genpd->power_on = rmobile_pd_power_up;
161 genpd->attach_dev = rmobile_pd_attach_dev;
162 genpd->detach_dev = rmobile_pd_detach_dev;
163 __rmobile_pd_power_up(rmobile_pd, false);
166 #ifdef CONFIG_ARCH_SHMOBILE_LEGACY
168 void rmobile_init_domains(struct rmobile_pm_domain domains[], int num)
172 for (j = 0; j < num; j++)
173 rmobile_init_pm_domain(&domains[j]);
176 void rmobile_add_device_to_domain_td(const char *domain_name,
177 struct platform_device *pdev,
178 struct gpd_timing_data *td)
180 struct device *dev = &pdev->dev;
182 __pm_genpd_name_add_device(domain_name, dev, td);
185 void rmobile_add_devices_to_domains(struct pm_domain_device data[],
188 struct gpd_timing_data latencies = {
189 .stop_latency_ns = DEFAULT_DEV_LATENCY_NS,
190 .start_latency_ns = DEFAULT_DEV_LATENCY_NS,
191 .save_state_latency_ns = DEFAULT_DEV_LATENCY_NS,
192 .restore_state_latency_ns = DEFAULT_DEV_LATENCY_NS,
196 for (j = 0; j < size; j++)
197 rmobile_add_device_to_domain_td(data[j].domain_name,
198 data[j].pdev, &latencies);
201 #else /* !CONFIG_ARCH_SHMOBILE_LEGACY */
203 static int rmobile_pd_suspend_busy(void)
206 * This domain should not be turned off.
211 static int rmobile_pd_suspend_console(void)
214 * Serial consoles make use of SCIF hardware located in this domain,
215 * hence keep the power domain on if "no_console_suspend" is set.
217 return console_suspend_enabled ? 0 : -EBUSY;
228 #define MAX_NUM_SPECIAL_PDS 16
230 static struct special_pd {
231 struct device_node *pd;
233 } special_pds[MAX_NUM_SPECIAL_PDS] __initdata;
235 static unsigned int num_special_pds __initdata;
237 static const struct of_device_id special_ids[] __initconst = {
238 { .compatible = "arm,coresight-etm3x", .data = (void *)PD_DEBUG },
239 { .compatible = "renesas,dbsc-r8a73a4", .data = (void *)PD_MEMCTL, },
240 { .compatible = "renesas,dbsc3-r8a7740", .data = (void *)PD_MEMCTL, },
241 { .compatible = "renesas,sbsc-sh73a0", .data = (void *)PD_MEMCTL, },
245 static void __init add_special_pd(struct device_node *np, enum pd_types type)
248 struct device_node *pd;
250 pd = of_parse_phandle(np, "power-domains", 0);
254 for (i = 0; i < num_special_pds; i++)
255 if (pd == special_pds[i].pd && type == special_pds[i].type) {
260 if (num_special_pds == ARRAY_SIZE(special_pds)) {
261 pr_warn("Too many special PM domains\n");
266 pr_debug("Special PM domain %s type %d for %s\n", pd->name, type,
269 special_pds[num_special_pds].pd = pd;
270 special_pds[num_special_pds].type = type;
274 static void __init get_special_pds(void)
276 struct device_node *np;
277 const struct of_device_id *id;
279 /* PM domains containing CPUs */
280 for_each_node_by_type(np, "cpu")
281 add_special_pd(np, PD_CPU);
283 /* PM domain containing console */
285 add_special_pd(of_stdout, PD_CONSOLE);
287 /* PM domains containing other special devices */
288 for_each_matching_node_and_match(np, special_ids, &id)
289 add_special_pd(np, (enum pd_types)id->data);
292 static void __init put_special_pds(void)
296 for (i = 0; i < num_special_pds; i++)
297 of_node_put(special_pds[i].pd);
300 static enum pd_types __init pd_type(const struct device_node *pd)
304 for (i = 0; i < num_special_pds; i++)
305 if (pd == special_pds[i].pd)
306 return special_pds[i].type;
311 static void __init rmobile_setup_pm_domain(struct device_node *np,
312 struct rmobile_pm_domain *pd)
314 const char *name = pd->genpd.name;
316 switch (pd_type(np)) {
319 * This domain contains the CPU core and therefore it should
320 * only be turned off if the CPU is not in use.
322 pr_debug("PM domain %s contains CPU\n", name);
323 pd->gov = &pm_domain_always_on_gov;
324 pd->suspend = rmobile_pd_suspend_busy;
328 pr_debug("PM domain %s contains serial console\n", name);
329 pd->gov = &pm_domain_always_on_gov;
330 pd->suspend = rmobile_pd_suspend_console;
335 * This domain contains the Coresight-ETM hardware block and
336 * therefore it should only be turned off if the debug module
339 pr_debug("PM domain %s contains Coresight-ETM\n", name);
340 pd->gov = &pm_domain_always_on_gov;
341 pd->suspend = rmobile_pd_suspend_busy;
346 * This domain contains a memory-controller and therefore it
347 * should only be turned off if memory is not in use.
349 pr_debug("PM domain %s contains MEMCTL\n", name);
350 pd->gov = &pm_domain_always_on_gov;
351 pd->suspend = rmobile_pd_suspend_busy;
358 rmobile_init_pm_domain(pd);
361 static int __init rmobile_add_pm_domains(void __iomem *base,
362 struct device_node *parent,
363 struct generic_pm_domain *genpd_parent)
365 struct device_node *np;
367 for_each_child_of_node(parent, np) {
368 struct rmobile_pm_domain *pd;
371 if (of_property_read_u32(np, "reg", &idx)) {
372 /* always-on domain */
375 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
379 pd->genpd.name = np->name;
383 rmobile_setup_pm_domain(np, pd);
385 pm_genpd_add_subdomain(genpd_parent, &pd->genpd);
386 of_genpd_add_provider_simple(np, &pd->genpd);
388 rmobile_add_pm_domains(base, np, &pd->genpd);
393 static int __init rmobile_init_pm_domains(void)
395 struct device_node *np, *pmd;
396 bool scanned = false;
400 for_each_compatible_node(np, NULL, "renesas,sysc-rmobile") {
401 base = of_iomap(np, 0);
403 pr_warn("%s cannot map reg 0\n", np->full_name);
407 pmd = of_get_child_by_name(np, "pm-domains");
409 pr_warn("%s lacks pm-domains node\n", np->full_name);
414 /* Find PM domains containing special blocks */
419 ret = rmobile_add_pm_domains(base, pmd, NULL);
432 core_initcall(rmobile_init_pm_domains);
434 #endif /* !CONFIG_ARCH_SHMOBILE_LEGACY */