Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / arch / arm / mach-highbank / pm.c
blob3fdbdb83113b5ed45fc1e48cd058c37a9e312a32
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright 2011 Calxeda, Inc.
4 */
6 #include <linux/cpu_pm.h>
7 #include <linux/init.h>
8 #include <linux/psci.h>
9 #include <linux/suspend.h>
11 #include <asm/suspend.h>
13 #include <uapi/linux/psci.h>
15 #include "core.h"
17 #define HIGHBANK_SUSPEND_PARAM \
18 ((0 << PSCI_0_2_POWER_STATE_ID_SHIFT) | \
19 (1 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) | \
20 (PSCI_POWER_STATE_TYPE_POWER_DOWN << PSCI_0_2_POWER_STATE_TYPE_SHIFT))
22 static int highbank_suspend_finish(unsigned long val)
24 return psci_ops.cpu_suspend(HIGHBANK_SUSPEND_PARAM, __pa(cpu_resume));
27 static int highbank_pm_enter(suspend_state_t state)
29 cpu_pm_enter();
30 cpu_cluster_pm_enter();
32 cpu_suspend(0, highbank_suspend_finish);
34 cpu_cluster_pm_exit();
35 cpu_pm_exit();
37 return 0;
40 static const struct platform_suspend_ops highbank_pm_ops = {
41 .enter = highbank_pm_enter,
42 .valid = suspend_valid_only_mem,
45 void __init highbank_pm_init(void)
47 if (!psci_ops.cpu_suspend)
48 return;
50 suspend_set_ops(&highbank_pm_ops);