2 * Copyright 2011-2013 Freescale Semiconductor, Inc.
3 * Copyright 2011 Linaro Ltd.
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
13 #include <linux/clk.h>
14 #include <linux/delay.h>
16 #include <linux/irq.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
20 #include <linux/platform_device.h>
21 #include <linux/pm_domain.h>
22 #include <linux/regulator/consumer.h>
23 #include <linux/irqchip/arm-gic.h>
27 #define GPC_CNTR 0x000
28 #define GPC_IMR1 0x008
29 #define GPC_PGC_GPU_PDN 0x260
30 #define GPC_PGC_GPU_PUPSCR 0x264
31 #define GPC_PGC_GPU_PDNSCR 0x268
32 #define GPC_PGC_CPU_PDN 0x2a0
33 #define GPC_PGC_CPU_PUPSCR 0x2a4
34 #define GPC_PGC_CPU_PDNSCR 0x2a8
35 #define GPC_PGC_SW2ISO_SHIFT 0x8
36 #define GPC_PGC_SW_SHIFT 0x0
39 #define GPC_MAX_IRQS (IMR_NUM * 32)
41 #define GPU_VPU_PUP_REQ BIT(1)
42 #define GPU_VPU_PDN_REQ BIT(0)
47 struct generic_pm_domain base
;
48 struct regulator
*reg
;
49 struct clk
*clk
[GPC_CLK_MAX
];
53 static void __iomem
*gpc_base
;
54 static u32 gpc_wake_irqs
[IMR_NUM
];
55 static u32 gpc_saved_imrs
[IMR_NUM
];
57 void imx_gpc_set_arm_power_up_timing(u32 sw2iso
, u32 sw
)
59 writel_relaxed((sw2iso
<< GPC_PGC_SW2ISO_SHIFT
) |
60 (sw
<< GPC_PGC_SW_SHIFT
), gpc_base
+ GPC_PGC_CPU_PUPSCR
);
63 void imx_gpc_set_arm_power_down_timing(u32 sw2iso
, u32 sw
)
65 writel_relaxed((sw2iso
<< GPC_PGC_SW2ISO_SHIFT
) |
66 (sw
<< GPC_PGC_SW_SHIFT
), gpc_base
+ GPC_PGC_CPU_PDNSCR
);
69 void imx_gpc_set_arm_power_in_lpm(bool power_off
)
71 writel_relaxed(power_off
, gpc_base
+ GPC_PGC_CPU_PDN
);
74 void imx_gpc_pre_suspend(bool arm_power_off
)
76 void __iomem
*reg_imr1
= gpc_base
+ GPC_IMR1
;
79 /* Tell GPC to power off ARM core when suspend */
81 imx_gpc_set_arm_power_in_lpm(arm_power_off
);
83 for (i
= 0; i
< IMR_NUM
; i
++) {
84 gpc_saved_imrs
[i
] = readl_relaxed(reg_imr1
+ i
* 4);
85 writel_relaxed(~gpc_wake_irqs
[i
], reg_imr1
+ i
* 4);
89 void imx_gpc_post_resume(void)
91 void __iomem
*reg_imr1
= gpc_base
+ GPC_IMR1
;
94 /* Keep ARM core powered on for other low-power modes */
95 imx_gpc_set_arm_power_in_lpm(false);
97 for (i
= 0; i
< IMR_NUM
; i
++)
98 writel_relaxed(gpc_saved_imrs
[i
], reg_imr1
+ i
* 4);
101 static int imx_gpc_irq_set_wake(struct irq_data
*d
, unsigned int on
)
103 unsigned int idx
= d
->hwirq
/ 32;
106 mask
= 1 << d
->hwirq
% 32;
107 gpc_wake_irqs
[idx
] = on
? gpc_wake_irqs
[idx
] | mask
:
108 gpc_wake_irqs
[idx
] & ~mask
;
111 * Do *not* call into the parent, as the GIC doesn't have any
112 * wake-up facility...
117 void imx_gpc_mask_all(void)
119 void __iomem
*reg_imr1
= gpc_base
+ GPC_IMR1
;
122 for (i
= 0; i
< IMR_NUM
; i
++) {
123 gpc_saved_imrs
[i
] = readl_relaxed(reg_imr1
+ i
* 4);
124 writel_relaxed(~0, reg_imr1
+ i
* 4);
129 void imx_gpc_restore_all(void)
131 void __iomem
*reg_imr1
= gpc_base
+ GPC_IMR1
;
134 for (i
= 0; i
< IMR_NUM
; i
++)
135 writel_relaxed(gpc_saved_imrs
[i
], reg_imr1
+ i
* 4);
138 void imx_gpc_hwirq_unmask(unsigned int hwirq
)
143 reg
= gpc_base
+ GPC_IMR1
+ hwirq
/ 32 * 4;
144 val
= readl_relaxed(reg
);
145 val
&= ~(1 << hwirq
% 32);
146 writel_relaxed(val
, reg
);
149 void imx_gpc_hwirq_mask(unsigned int hwirq
)
154 reg
= gpc_base
+ GPC_IMR1
+ hwirq
/ 32 * 4;
155 val
= readl_relaxed(reg
);
156 val
|= 1 << (hwirq
% 32);
157 writel_relaxed(val
, reg
);
160 static void imx_gpc_irq_unmask(struct irq_data
*d
)
162 imx_gpc_hwirq_unmask(d
->hwirq
);
163 irq_chip_unmask_parent(d
);
166 static void imx_gpc_irq_mask(struct irq_data
*d
)
168 imx_gpc_hwirq_mask(d
->hwirq
);
169 irq_chip_mask_parent(d
);
172 static struct irq_chip imx_gpc_chip
= {
174 .irq_eoi
= irq_chip_eoi_parent
,
175 .irq_mask
= imx_gpc_irq_mask
,
176 .irq_unmask
= imx_gpc_irq_unmask
,
177 .irq_retrigger
= irq_chip_retrigger_hierarchy
,
178 .irq_set_wake
= imx_gpc_irq_set_wake
,
180 .irq_set_affinity
= irq_chip_set_affinity_parent
,
184 static int imx_gpc_domain_xlate(struct irq_domain
*domain
,
185 struct device_node
*controller
,
187 unsigned int intsize
,
188 unsigned long *out_hwirq
,
189 unsigned int *out_type
)
191 if (domain
->of_node
!= controller
)
192 return -EINVAL
; /* Shouldn't happen, really... */
194 return -EINVAL
; /* Not GIC compliant */
196 return -EINVAL
; /* No PPI should point to this domain */
198 *out_hwirq
= intspec
[1];
199 *out_type
= intspec
[2];
203 static int imx_gpc_domain_alloc(struct irq_domain
*domain
,
205 unsigned int nr_irqs
, void *data
)
207 struct of_phandle_args
*args
= data
;
208 struct of_phandle_args parent_args
;
209 irq_hw_number_t hwirq
;
212 if (args
->args_count
!= 3)
213 return -EINVAL
; /* Not GIC compliant */
214 if (args
->args
[0] != 0)
215 return -EINVAL
; /* No PPI should point to this domain */
217 hwirq
= args
->args
[1];
218 if (hwirq
>= GPC_MAX_IRQS
)
219 return -EINVAL
; /* Can't deal with this */
221 for (i
= 0; i
< nr_irqs
; i
++)
222 irq_domain_set_hwirq_and_chip(domain
, irq
+ i
, hwirq
+ i
,
223 &imx_gpc_chip
, NULL
);
226 parent_args
.np
= domain
->parent
->of_node
;
227 return irq_domain_alloc_irqs_parent(domain
, irq
, nr_irqs
, &parent_args
);
230 static struct irq_domain_ops imx_gpc_domain_ops
= {
231 .xlate
= imx_gpc_domain_xlate
,
232 .alloc
= imx_gpc_domain_alloc
,
233 .free
= irq_domain_free_irqs_common
,
236 static int __init
imx_gpc_init(struct device_node
*node
,
237 struct device_node
*parent
)
239 struct irq_domain
*parent_domain
, *domain
;
243 pr_err("%s: no parent, giving up\n", node
->full_name
);
247 parent_domain
= irq_find_host(parent
);
248 if (!parent_domain
) {
249 pr_err("%s: unable to obtain parent domain\n", node
->full_name
);
253 gpc_base
= of_iomap(node
, 0);
254 if (WARN_ON(!gpc_base
))
257 domain
= irq_domain_add_hierarchy(parent_domain
, 0, GPC_MAX_IRQS
,
258 node
, &imx_gpc_domain_ops
,
265 /* Initially mask all interrupts */
266 for (i
= 0; i
< IMR_NUM
; i
++)
267 writel_relaxed(~0, gpc_base
+ GPC_IMR1
+ i
* 4);
273 * We cannot use the IRQCHIP_DECLARE macro that lives in
274 * drivers/irqchip, so we're forced to roll our own. Not very nice.
276 OF_DECLARE_2(irqchip
, imx_gpc
, "fsl,imx6q-gpc", imx_gpc_init
);
278 void __init
imx_gpc_check_dt(void)
280 struct device_node
*np
;
282 np
= of_find_compatible_node(NULL
, NULL
, "fsl,imx6q-gpc");
286 if (WARN_ON(!of_find_property(np
, "interrupt-controller", NULL
))) {
287 pr_warn("Outdated DT detected, suspend/resume will NOT work\n");
289 /* map GPC, so that at least CPUidle and WARs keep working */
290 gpc_base
= of_iomap(np
, 0);
294 static void _imx6q_pm_pu_power_off(struct generic_pm_domain
*genpd
)
299 /* Read ISO and ISO2SW power down delays */
300 val
= readl_relaxed(gpc_base
+ GPC_PGC_GPU_PDNSCR
);
302 iso2sw
= (val
>> 8) & 0x3f;
304 /* Gate off PU domain when GPU/VPU when powered down */
305 writel_relaxed(0x1, gpc_base
+ GPC_PGC_GPU_PDN
);
307 /* Request GPC to power down GPU/VPU */
308 val
= readl_relaxed(gpc_base
+ GPC_CNTR
);
309 val
|= GPU_VPU_PDN_REQ
;
310 writel_relaxed(val
, gpc_base
+ GPC_CNTR
);
312 /* Wait ISO + ISO2SW IPG clock cycles */
313 ndelay((iso
+ iso2sw
) * 1000 / 66);
316 static int imx6q_pm_pu_power_off(struct generic_pm_domain
*genpd
)
318 struct pu_domain
*pu
= container_of(genpd
, struct pu_domain
, base
);
320 _imx6q_pm_pu_power_off(genpd
);
323 regulator_disable(pu
->reg
);
328 static int imx6q_pm_pu_power_on(struct generic_pm_domain
*genpd
)
330 struct pu_domain
*pu
= container_of(genpd
, struct pu_domain
, base
);
331 int i
, ret
, sw
, sw2iso
;
335 ret
= regulator_enable(pu
->reg
);
336 if (pu
->reg
&& ret
) {
337 pr_err("%s: failed to enable regulator: %d\n", __func__
, ret
);
341 /* Enable reset clocks for all devices in the PU domain */
342 for (i
= 0; i
< pu
->num_clks
; i
++)
343 clk_prepare_enable(pu
->clk
[i
]);
345 /* Gate off PU domain when GPU/VPU when powered down */
346 writel_relaxed(0x1, gpc_base
+ GPC_PGC_GPU_PDN
);
348 /* Read ISO and ISO2SW power down delays */
349 val
= readl_relaxed(gpc_base
+ GPC_PGC_GPU_PUPSCR
);
351 sw2iso
= (val
>> 8) & 0x3f;
353 /* Request GPC to power up GPU/VPU */
354 val
= readl_relaxed(gpc_base
+ GPC_CNTR
);
355 val
|= GPU_VPU_PUP_REQ
;
356 writel_relaxed(val
, gpc_base
+ GPC_CNTR
);
358 /* Wait ISO + ISO2SW IPG clock cycles */
359 ndelay((sw
+ sw2iso
) * 1000 / 66);
361 /* Disable reset clocks for all devices in the PU domain */
362 for (i
= 0; i
< pu
->num_clks
; i
++)
363 clk_disable_unprepare(pu
->clk
[i
]);
368 static struct generic_pm_domain imx6q_arm_domain
= {
372 static struct pu_domain imx6q_pu_domain
= {
375 .power_off
= imx6q_pm_pu_power_off
,
376 .power_on
= imx6q_pm_pu_power_on
,
377 .power_off_latency_ns
= 25000,
378 .power_on_latency_ns
= 2000000,
382 static struct generic_pm_domain imx6sl_display_domain
= {
386 static struct generic_pm_domain
*imx_gpc_domains
[] = {
388 &imx6q_pu_domain
.base
,
389 &imx6sl_display_domain
,
392 static struct genpd_onecell_data imx_gpc_onecell_data
= {
393 .domains
= imx_gpc_domains
,
394 .num_domains
= ARRAY_SIZE(imx_gpc_domains
),
397 static int imx_gpc_genpd_init(struct device
*dev
, struct regulator
*pu_reg
)
402 imx6q_pu_domain
.reg
= pu_reg
;
405 clk
= of_clk_get(dev
->of_node
, i
);
408 if (i
>= GPC_CLK_MAX
) {
409 dev_err(dev
, "more than %d clocks\n", GPC_CLK_MAX
);
412 imx6q_pu_domain
.clk
[i
] = clk
;
414 imx6q_pu_domain
.num_clks
= i
;
416 /* Enable power always in case bootloader disabled it. */
417 imx6q_pm_pu_power_on(&imx6q_pu_domain
.base
);
419 if (!IS_ENABLED(CONFIG_PM_GENERIC_DOMAINS
))
422 pm_genpd_init(&imx6q_pu_domain
.base
, NULL
, false);
423 return of_genpd_add_provider_onecell(dev
->of_node
,
424 &imx_gpc_onecell_data
);
428 clk_put(imx6q_pu_domain
.clk
[i
]);
432 static int imx_gpc_probe(struct platform_device
*pdev
)
434 struct regulator
*pu_reg
;
437 /* bail out if DT too old and doesn't provide the necessary info */
438 if (!of_property_read_bool(pdev
->dev
.of_node
, "#power-domain-cells"))
441 pu_reg
= devm_regulator_get_optional(&pdev
->dev
, "pu");
442 if (PTR_ERR(pu_reg
) == -ENODEV
)
444 if (IS_ERR(pu_reg
)) {
445 ret
= PTR_ERR(pu_reg
);
446 dev_err(&pdev
->dev
, "failed to get pu regulator: %d\n", ret
);
450 return imx_gpc_genpd_init(&pdev
->dev
, pu_reg
);
453 static const struct of_device_id imx_gpc_dt_ids
[] = {
454 { .compatible
= "fsl,imx6q-gpc" },
455 { .compatible
= "fsl,imx6sl-gpc" },
459 static struct platform_driver imx_gpc_driver
= {
462 .owner
= THIS_MODULE
,
463 .of_match_table
= imx_gpc_dt_ids
,
465 .probe
= imx_gpc_probe
,
468 static int __init
imx_pgc_init(void)
470 return platform_driver_register(&imx_gpc_driver
);
472 subsys_initcall(imx_pgc_init
);