blob: 7f2bd85eb9350de89cb8311e5a9926830bbd9f54 [file] [log] [blame]
Rob Herring8b61f372011-05-15 12:44:17 -05001/*
2 * Copyright 2011 Calxeda, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
Rob Herring1ddda1c2012-12-30 10:15:07 -060017#include <linux/cpu_pm.h>
Rob Herring8b61f372011-05-15 12:44:17 -050018#include <linux/init.h>
Rob Herring8b61f372011-05-15 12:44:17 -050019#include <linux/suspend.h>
20
Rob Herring8b61f372011-05-15 12:44:17 -050021#include <asm/suspend.h>
Rob Herringdd68eb02013-09-26 20:02:51 -050022#include <asm/psci.h>
Rob Herring8b61f372011-05-15 12:44:17 -050023
24static int highbank_suspend_finish(unsigned long val)
25{
Rob Herringdd68eb02013-09-26 20:02:51 -050026 const struct psci_power_state ps = {
27 .type = PSCI_POWER_STATE_TYPE_POWER_DOWN,
28 .affinity_level = 1,
29 };
Rob Herring1ddda1c2012-12-30 10:15:07 -060030
Rob Herringdd68eb02013-09-26 20:02:51 -050031 return psci_ops.cpu_suspend(ps, __pa(cpu_resume));
Rob Herring8b61f372011-05-15 12:44:17 -050032}
33
34static int highbank_pm_enter(suspend_state_t state)
35{
Rob Herring1ddda1c2012-12-30 10:15:07 -060036 cpu_pm_enter();
37 cpu_cluster_pm_enter();
38
Rob Herring8b61f372011-05-15 12:44:17 -050039 cpu_suspend(0, highbank_suspend_finish);
40
Rob Herring1ddda1c2012-12-30 10:15:07 -060041 cpu_cluster_pm_exit();
42 cpu_pm_exit();
43
Rob Herring8b61f372011-05-15 12:44:17 -050044 return 0;
45}
46
47static const struct platform_suspend_ops highbank_pm_ops = {
48 .enter = highbank_pm_enter,
49 .valid = suspend_valid_only_mem,
50};
51
Rob Herringa2835802012-09-17 09:55:12 -050052void __init highbank_pm_init(void)
Rob Herring8b61f372011-05-15 12:44:17 -050053{
Rob Herringdd68eb02013-09-26 20:02:51 -050054 if (!psci_ops.cpu_suspend)
55 return;
56
Rob Herring8b61f372011-05-15 12:44:17 -050057 suspend_set_ops(&highbank_pm_ops);
Rob Herring8b61f372011-05-15 12:44:17 -050058}