1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Suspend/resume support
5 * Copyright 2009 MontaVista Software, Inc.
7 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10 #include <linux/init.h>
11 #include <linux/types.h>
12 #include <linux/errno.h>
13 #include <linux/export.h>
14 #include <linux/suspend.h>
15 #include <linux/delay.h>
16 #include <linux/device.h>
17 #include <linux/of_address.h>
18 #include <linux/of_platform.h>
26 #define PMCSR_SLP (1 << 17)
29 static struct device
*pmc_dev
;
30 static struct pmc_regs __iomem
*pmc_regs
;
32 static int pmc_suspend_enter(suspend_state_t state
)
36 setbits32(&pmc_regs
->pmcsr
, PMCSR_SLP
);
37 /* At this point, the CPU is asleep. */
39 /* Upon resume, wait for SLP bit to be clear. */
40 ret
= spin_event_timeout((in_be32(&pmc_regs
->pmcsr
) & PMCSR_SLP
) == 0,
41 10000, 10) ? 0 : -ETIMEDOUT
;
43 dev_err(pmc_dev
, "tired waiting for SLP bit to clear\n");
47 static int pmc_suspend_valid(suspend_state_t state
)
49 if (state
!= PM_SUSPEND_STANDBY
)
54 static const struct platform_suspend_ops pmc_suspend_ops
= {
55 .valid
= pmc_suspend_valid
,
56 .enter
= pmc_suspend_enter
,
59 static int pmc_probe(struct platform_device
*ofdev
)
61 pmc_regs
= of_iomap(ofdev
->dev
.of_node
, 0);
65 pmc_dev
= &ofdev
->dev
;
66 suspend_set_ops(&pmc_suspend_ops
);
70 static const struct of_device_id pmc_ids
[] = {
71 { .compatible
= "fsl,mpc8548-pmc", },
72 { .compatible
= "fsl,mpc8641d-pmc", },
76 static struct platform_driver pmc_driver
= {
79 .of_match_table
= pmc_ids
,
84 builtin_platform_driver(pmc_driver
);