Merge tag 'riscv-for-linus-4.15-rc2_cleanups' of git://git.kernel.org/pub/scm/linux...
[linux/fpc-iii.git] / drivers / soc / renesas / rcar-sysc.c
blob55a47e509e491aaea0b861ea92e8d438c338338b
1 /*
2 * R-Car SYSC Power management support
4 * Copyright (C) 2014 Magnus Damm
5 * Copyright (C) 2015-2017 Glider bvba
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
12 #include <linux/clk/renesas.h>
13 #include <linux/delay.h>
14 #include <linux/err.h>
15 #include <linux/mm.h>
16 #include <linux/of_address.h>
17 #include <linux/pm_domain.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
20 #include <linux/io.h>
21 #include <linux/soc/renesas/rcar-sysc.h>
23 #include "rcar-sysc.h"
25 /* SYSC Common */
26 #define SYSCSR 0x00 /* SYSC Status Register */
27 #define SYSCISR 0x04 /* Interrupt Status Register */
28 #define SYSCISCR 0x08 /* Interrupt Status Clear Register */
29 #define SYSCIER 0x0c /* Interrupt Enable Register */
30 #define SYSCIMR 0x10 /* Interrupt Mask Register */
32 /* SYSC Status Register */
33 #define SYSCSR_PONENB 1 /* Ready for power resume requests */
34 #define SYSCSR_POFFENB 0 /* Ready for power shutoff requests */
37 * Power Control Register Offsets inside the register block for each domain
38 * Note: The "CR" registers for ARM cores exist on H1 only
39 * Use WFI to power off, CPG/APMU to resume ARM cores on R-Car Gen2
40 * Use PSCI on R-Car Gen3
42 #define PWRSR_OFFS 0x00 /* Power Status Register */
43 #define PWROFFCR_OFFS 0x04 /* Power Shutoff Control Register */
44 #define PWROFFSR_OFFS 0x08 /* Power Shutoff Status Register */
45 #define PWRONCR_OFFS 0x0c /* Power Resume Control Register */
46 #define PWRONSR_OFFS 0x10 /* Power Resume Status Register */
47 #define PWRER_OFFS 0x14 /* Power Shutoff/Resume Error */
50 #define SYSCSR_RETRIES 100
51 #define SYSCSR_DELAY_US 1
53 #define PWRER_RETRIES 100
54 #define PWRER_DELAY_US 1
56 #define SYSCISR_RETRIES 1000
57 #define SYSCISR_DELAY_US 1
59 #define RCAR_PD_ALWAYS_ON 32 /* Always-on power area */
61 static void __iomem *rcar_sysc_base;
62 static DEFINE_SPINLOCK(rcar_sysc_lock); /* SMP CPUs + I/O devices */
64 static int rcar_sysc_pwr_on_off(const struct rcar_sysc_ch *sysc_ch, bool on)
66 unsigned int sr_bit, reg_offs;
67 int k;
69 if (on) {
70 sr_bit = SYSCSR_PONENB;
71 reg_offs = PWRONCR_OFFS;
72 } else {
73 sr_bit = SYSCSR_POFFENB;
74 reg_offs = PWROFFCR_OFFS;
77 /* Wait until SYSC is ready to accept a power request */
78 for (k = 0; k < SYSCSR_RETRIES; k++) {
79 if (ioread32(rcar_sysc_base + SYSCSR) & BIT(sr_bit))
80 break;
81 udelay(SYSCSR_DELAY_US);
84 if (k == SYSCSR_RETRIES)
85 return -EAGAIN;
87 /* Submit power shutoff or power resume request */
88 iowrite32(BIT(sysc_ch->chan_bit),
89 rcar_sysc_base + sysc_ch->chan_offs + reg_offs);
91 return 0;
94 static int rcar_sysc_power(const struct rcar_sysc_ch *sysc_ch, bool on)
96 unsigned int isr_mask = BIT(sysc_ch->isr_bit);
97 unsigned int chan_mask = BIT(sysc_ch->chan_bit);
98 unsigned int status;
99 unsigned long flags;
100 int ret = 0;
101 int k;
103 spin_lock_irqsave(&rcar_sysc_lock, flags);
105 iowrite32(isr_mask, rcar_sysc_base + SYSCISCR);
107 /* Submit power shutoff or resume request until it was accepted */
108 for (k = 0; k < PWRER_RETRIES; k++) {
109 ret = rcar_sysc_pwr_on_off(sysc_ch, on);
110 if (ret)
111 goto out;
113 status = ioread32(rcar_sysc_base +
114 sysc_ch->chan_offs + PWRER_OFFS);
115 if (!(status & chan_mask))
116 break;
118 udelay(PWRER_DELAY_US);
121 if (k == PWRER_RETRIES) {
122 ret = -EIO;
123 goto out;
126 /* Wait until the power shutoff or resume request has completed * */
127 for (k = 0; k < SYSCISR_RETRIES; k++) {
128 if (ioread32(rcar_sysc_base + SYSCISR) & isr_mask)
129 break;
130 udelay(SYSCISR_DELAY_US);
133 if (k == SYSCISR_RETRIES)
134 ret = -EIO;
136 iowrite32(isr_mask, rcar_sysc_base + SYSCISCR);
138 out:
139 spin_unlock_irqrestore(&rcar_sysc_lock, flags);
141 pr_debug("sysc power %s domain %d: %08x -> %d\n", on ? "on" : "off",
142 sysc_ch->isr_bit, ioread32(rcar_sysc_base + SYSCISR), ret);
143 return ret;
146 int rcar_sysc_power_down(const struct rcar_sysc_ch *sysc_ch)
148 return rcar_sysc_power(sysc_ch, false);
151 int rcar_sysc_power_up(const struct rcar_sysc_ch *sysc_ch)
153 return rcar_sysc_power(sysc_ch, true);
156 static bool rcar_sysc_power_is_off(const struct rcar_sysc_ch *sysc_ch)
158 unsigned int st;
160 st = ioread32(rcar_sysc_base + sysc_ch->chan_offs + PWRSR_OFFS);
161 if (st & BIT(sysc_ch->chan_bit))
162 return true;
164 return false;
167 struct rcar_sysc_pd {
168 struct generic_pm_domain genpd;
169 struct rcar_sysc_ch ch;
170 unsigned int flags;
171 char name[0];
174 static inline struct rcar_sysc_pd *to_rcar_pd(struct generic_pm_domain *d)
176 return container_of(d, struct rcar_sysc_pd, genpd);
179 static int rcar_sysc_pd_power_off(struct generic_pm_domain *genpd)
181 struct rcar_sysc_pd *pd = to_rcar_pd(genpd);
183 pr_debug("%s: %s\n", __func__, genpd->name);
184 return rcar_sysc_power_down(&pd->ch);
187 static int rcar_sysc_pd_power_on(struct generic_pm_domain *genpd)
189 struct rcar_sysc_pd *pd = to_rcar_pd(genpd);
191 pr_debug("%s: %s\n", __func__, genpd->name);
192 return rcar_sysc_power_up(&pd->ch);
195 static bool has_cpg_mstp;
197 static void __init rcar_sysc_pd_setup(struct rcar_sysc_pd *pd)
199 struct generic_pm_domain *genpd = &pd->genpd;
200 const char *name = pd->genpd.name;
201 struct dev_power_governor *gov = &simple_qos_governor;
203 if (pd->flags & PD_CPU) {
205 * This domain contains a CPU core and therefore it should
206 * only be turned off if the CPU is not in use.
208 pr_debug("PM domain %s contains %s\n", name, "CPU");
209 genpd->flags |= GENPD_FLAG_ALWAYS_ON;
210 } else if (pd->flags & PD_SCU) {
212 * This domain contains an SCU and cache-controller, and
213 * therefore it should only be turned off if the CPU cores are
214 * not in use.
216 pr_debug("PM domain %s contains %s\n", name, "SCU");
217 genpd->flags |= GENPD_FLAG_ALWAYS_ON;
218 } else if (pd->flags & PD_NO_CR) {
220 * This domain cannot be turned off.
222 genpd->flags |= GENPD_FLAG_ALWAYS_ON;
225 if (!(pd->flags & (PD_CPU | PD_SCU))) {
226 /* Enable Clock Domain for I/O devices */
227 genpd->flags |= GENPD_FLAG_PM_CLK;
228 if (has_cpg_mstp) {
229 genpd->attach_dev = cpg_mstp_attach_dev;
230 genpd->detach_dev = cpg_mstp_detach_dev;
231 } else {
232 genpd->attach_dev = cpg_mssr_attach_dev;
233 genpd->detach_dev = cpg_mssr_detach_dev;
237 genpd->power_off = rcar_sysc_pd_power_off;
238 genpd->power_on = rcar_sysc_pd_power_on;
240 if (pd->flags & (PD_CPU | PD_NO_CR)) {
241 /* Skip CPUs (handled by SMP code) and areas without control */
242 pr_debug("%s: Not touching %s\n", __func__, genpd->name);
243 goto finalize;
246 if (!rcar_sysc_power_is_off(&pd->ch)) {
247 pr_debug("%s: %s is already powered\n", __func__, genpd->name);
248 goto finalize;
251 rcar_sysc_power_up(&pd->ch);
253 finalize:
254 pm_genpd_init(genpd, gov, false);
257 static const struct of_device_id rcar_sysc_matches[] = {
258 #ifdef CONFIG_SYSC_R8A7743
259 { .compatible = "renesas,r8a7743-sysc", .data = &r8a7743_sysc_info },
260 #endif
261 #ifdef CONFIG_SYSC_R8A7745
262 { .compatible = "renesas,r8a7745-sysc", .data = &r8a7745_sysc_info },
263 #endif
264 #ifdef CONFIG_SYSC_R8A7779
265 { .compatible = "renesas,r8a7779-sysc", .data = &r8a7779_sysc_info },
266 #endif
267 #ifdef CONFIG_SYSC_R8A7790
268 { .compatible = "renesas,r8a7790-sysc", .data = &r8a7790_sysc_info },
269 #endif
270 #ifdef CONFIG_SYSC_R8A7791
271 { .compatible = "renesas,r8a7791-sysc", .data = &r8a7791_sysc_info },
272 /* R-Car M2-N is identical to R-Car M2-W w.r.t. power domains. */
273 { .compatible = "renesas,r8a7793-sysc", .data = &r8a7791_sysc_info },
274 #endif
275 #ifdef CONFIG_SYSC_R8A7792
276 { .compatible = "renesas,r8a7792-sysc", .data = &r8a7792_sysc_info },
277 #endif
278 #ifdef CONFIG_SYSC_R8A7794
279 { .compatible = "renesas,r8a7794-sysc", .data = &r8a7794_sysc_info },
280 #endif
281 #ifdef CONFIG_SYSC_R8A7795
282 { .compatible = "renesas,r8a7795-sysc", .data = &r8a7795_sysc_info },
283 #endif
284 #ifdef CONFIG_SYSC_R8A7796
285 { .compatible = "renesas,r8a7796-sysc", .data = &r8a7796_sysc_info },
286 #endif
287 #ifdef CONFIG_SYSC_R8A77970
288 { .compatible = "renesas,r8a77970-sysc", .data = &r8a77970_sysc_info },
289 #endif
290 #ifdef CONFIG_SYSC_R8A77995
291 { .compatible = "renesas,r8a77995-sysc", .data = &r8a77995_sysc_info },
292 #endif
293 { /* sentinel */ }
296 struct rcar_pm_domains {
297 struct genpd_onecell_data onecell_data;
298 struct generic_pm_domain *domains[RCAR_PD_ALWAYS_ON + 1];
301 static int __init rcar_sysc_pd_init(void)
303 const struct rcar_sysc_info *info;
304 const struct of_device_id *match;
305 struct rcar_pm_domains *domains;
306 struct device_node *np;
307 u32 syscier, syscimr;
308 void __iomem *base;
309 unsigned int i;
310 int error;
312 if (rcar_sysc_base)
313 return 0;
315 np = of_find_matching_node_and_match(NULL, rcar_sysc_matches, &match);
316 if (!np)
317 return -ENODEV;
319 info = match->data;
321 if (info->init) {
322 error = info->init();
323 if (error)
324 return error;
327 has_cpg_mstp = of_find_compatible_node(NULL, NULL,
328 "renesas,cpg-mstp-clocks");
330 base = of_iomap(np, 0);
331 if (!base) {
332 pr_warn("%pOF: Cannot map regs\n", np);
333 error = -ENOMEM;
334 goto out_put;
337 rcar_sysc_base = base;
339 domains = kzalloc(sizeof(*domains), GFP_KERNEL);
340 if (!domains) {
341 error = -ENOMEM;
342 goto out_put;
345 domains->onecell_data.domains = domains->domains;
346 domains->onecell_data.num_domains = ARRAY_SIZE(domains->domains);
348 for (i = 0, syscier = 0; i < info->num_areas; i++)
349 syscier |= BIT(info->areas[i].isr_bit);
352 * Mask all interrupt sources to prevent the CPU from receiving them.
353 * Make sure not to clear reserved bits that were set before.
355 syscimr = ioread32(base + SYSCIMR);
356 syscimr |= syscier;
357 pr_debug("%pOF: syscimr = 0x%08x\n", np, syscimr);
358 iowrite32(syscimr, base + SYSCIMR);
361 * SYSC needs all interrupt sources enabled to control power.
363 pr_debug("%pOF: syscier = 0x%08x\n", np, syscier);
364 iowrite32(syscier, base + SYSCIER);
366 for (i = 0; i < info->num_areas; i++) {
367 const struct rcar_sysc_area *area = &info->areas[i];
368 struct rcar_sysc_pd *pd;
370 if (!area->name) {
371 /* Skip NULLified area */
372 continue;
375 pd = kzalloc(sizeof(*pd) + strlen(area->name) + 1, GFP_KERNEL);
376 if (!pd) {
377 error = -ENOMEM;
378 goto out_put;
381 strcpy(pd->name, area->name);
382 pd->genpd.name = pd->name;
383 pd->ch.chan_offs = area->chan_offs;
384 pd->ch.chan_bit = area->chan_bit;
385 pd->ch.isr_bit = area->isr_bit;
386 pd->flags = area->flags;
388 rcar_sysc_pd_setup(pd);
389 if (area->parent >= 0)
390 pm_genpd_add_subdomain(domains->domains[area->parent],
391 &pd->genpd);
393 domains->domains[area->isr_bit] = &pd->genpd;
396 error = of_genpd_add_provider_onecell(np, &domains->onecell_data);
398 out_put:
399 of_node_put(np);
400 return error;
402 early_initcall(rcar_sysc_pd_init);
404 void __init rcar_sysc_nullify(struct rcar_sysc_area *areas,
405 unsigned int num_areas, u8 id)
407 unsigned int i;
409 for (i = 0; i < num_areas; i++)
410 if (areas[i].isr_bit == id) {
411 areas[i].name = NULL;
412 return;
416 void __init rcar_sysc_init(phys_addr_t base, u32 syscier)
418 u32 syscimr;
420 if (!rcar_sysc_pd_init())
421 return;
423 rcar_sysc_base = ioremap_nocache(base, PAGE_SIZE);
426 * Mask all interrupt sources to prevent the CPU from receiving them.
427 * Make sure not to clear reserved bits that were set before.
429 syscimr = ioread32(rcar_sysc_base + SYSCIMR);
430 syscimr |= syscier;
431 pr_debug("%s: syscimr = 0x%08x\n", __func__, syscimr);
432 iowrite32(syscimr, rcar_sysc_base + SYSCIMR);
435 * SYSC needs all interrupt sources enabled to control power.
437 pr_debug("%s: syscier = 0x%08x\n", __func__, syscier);
438 iowrite32(syscier, rcar_sysc_base + SYSCIER);