blob: 42816bebb1e0f732d788780fde431028f202c31a [file] [log] [blame]
Will Deacone790f1d2012-12-18 17:53:14 +00001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * Copyright (C) 2013 ARM Limited
12 *
13 * Author: Will Deacon <will.deacon@arm.com>
14 */
15
16#define pr_fmt(fmt) "psci: " fmt
17
18#include <linux/init.h>
19#include <linux/of.h>
Mark Rutland00ef54b2013-10-24 20:30:14 +010020#include <linux/smp.h>
Ashwin Chaugulec814ca02014-05-07 10:18:36 -040021#include <linux/delay.h>
Mark Rutlandbff60792015-07-31 15:46:16 +010022#include <linux/psci.h>
Mark Rutlandbff60792015-07-31 15:46:16 +010023
Ashwin Chaugulee71246a2014-04-17 14:38:41 -040024#include <uapi/linux/psci.h>
Will Deacone790f1d2012-12-18 17:53:14 +000025
26#include <asm/compiler.h>
Mark Rutlandcd1aebf2013-10-24 20:30:15 +010027#include <asm/cpu_ops.h>
Will Deacone790f1d2012-12-18 17:53:14 +000028#include <asm/errno.h>
Mark Rutland00ef54b2013-10-24 20:30:14 +010029#include <asm/smp_plat.h>
Lorenzo Pieralisi18910ab2013-09-27 10:25:02 +010030
Lorenzo Pieralisi819a8822015-05-13 14:12:46 +010031static int __init cpu_psci_cpu_init(unsigned int cpu)
Mark Rutland00ef54b2013-10-24 20:30:14 +010032{
33 return 0;
34}
35
Mark Rutlandcd1aebf2013-10-24 20:30:15 +010036static int __init cpu_psci_cpu_prepare(unsigned int cpu)
Mark Rutland00ef54b2013-10-24 20:30:14 +010037{
Mark Rutland00ef54b2013-10-24 20:30:14 +010038 if (!psci_ops.cpu_on) {
39 pr_err("no cpu_on method, not booting CPU%d\n", cpu);
40 return -ENODEV;
41 }
42
Mark Rutland00ef54b2013-10-24 20:30:14 +010043 return 0;
44}
45
Mark Rutland652af892013-10-24 20:30:16 +010046static int cpu_psci_cpu_boot(unsigned int cpu)
47{
48 int err = psci_ops.cpu_on(cpu_logical_map(cpu), __pa(secondary_entry));
49 if (err)
Vladimir Murzin288ac262014-02-28 09:57:47 +000050 pr_err("failed to boot CPU%d (%d)\n", cpu, err);
Mark Rutland652af892013-10-24 20:30:16 +010051
52 return err;
53}
54
Mark Rutland831ccf72013-10-24 20:30:19 +010055#ifdef CONFIG_HOTPLUG_CPU
56static int cpu_psci_cpu_disable(unsigned int cpu)
57{
58 /* Fail early if we don't have CPU_OFF support */
59 if (!psci_ops.cpu_off)
60 return -EOPNOTSUPP;
Mark Rutlandff3010e2015-04-22 18:10:26 +010061
62 /* Trusted OS will deny CPU_OFF */
63 if (psci_tos_resident_on(cpu))
64 return -EPERM;
65
Mark Rutland831ccf72013-10-24 20:30:19 +010066 return 0;
67}
68
69static void cpu_psci_cpu_die(unsigned int cpu)
70{
71 int ret;
72 /*
73 * There are no known implementations of PSCI actually using the
74 * power state field, pass a sensible default for now.
75 */
Mark Rutlandc8cc4272015-04-30 17:59:03 +010076 u32 state = PSCI_POWER_STATE_TYPE_POWER_DOWN <<
77 PSCI_0_2_POWER_STATE_TYPE_SHIFT;
Mark Rutland831ccf72013-10-24 20:30:19 +010078
79 ret = psci_ops.cpu_off(state);
80
Vladimir Murzin288ac262014-02-28 09:57:47 +000081 pr_crit("unable to power off CPU%u (%d)\n", cpu, ret);
Mark Rutland831ccf72013-10-24 20:30:19 +010082}
Ashwin Chaugulec814ca02014-05-07 10:18:36 -040083
84static int cpu_psci_cpu_kill(unsigned int cpu)
85{
86 int err, i;
87
88 if (!psci_ops.affinity_info)
Mark Rutland6b99c68c2015-04-20 17:55:30 +010089 return 0;
Ashwin Chaugulec814ca02014-05-07 10:18:36 -040090 /*
91 * cpu_kill could race with cpu_die and we can
92 * potentially end up declaring this cpu undead
93 * while it is dying. So, try again a few times.
94 */
95
96 for (i = 0; i < 10; i++) {
97 err = psci_ops.affinity_info(cpu_logical_map(cpu), 0);
98 if (err == PSCI_0_2_AFFINITY_LEVEL_OFF) {
99 pr_info("CPU%d killed.\n", cpu);
Mark Rutland6b99c68c2015-04-20 17:55:30 +0100100 return 0;
Ashwin Chaugulec814ca02014-05-07 10:18:36 -0400101 }
102
103 msleep(10);
104 pr_info("Retrying again to check for CPU kill\n");
105 }
106
107 pr_warn("CPU%d may not have shut down cleanly (AFFINITY_INFO reports %d)\n",
108 cpu, err);
Mark Rutland6b99c68c2015-04-20 17:55:30 +0100109 return -ETIMEDOUT;
Ashwin Chaugulec814ca02014-05-07 10:18:36 -0400110}
Mark Rutland831ccf72013-10-24 20:30:19 +0100111#endif
112
Mark Rutlandcd1aebf2013-10-24 20:30:15 +0100113const struct cpu_operations cpu_psci_ops = {
Mark Rutland00ef54b2013-10-24 20:30:14 +0100114 .name = "psci",
Lorenzo Pieralisi18910ab2013-09-27 10:25:02 +0100115#ifdef CONFIG_CPU_IDLE
Lorenzo Pieralisi8b6f2492016-02-01 18:01:30 +0100116 .cpu_init_idle = psci_cpu_init_idle,
117 .cpu_suspend = psci_cpu_suspend_enter,
Lorenzo Pieralisi18910ab2013-09-27 10:25:02 +0100118#endif
Mark Rutlandcd1aebf2013-10-24 20:30:15 +0100119 .cpu_init = cpu_psci_cpu_init,
120 .cpu_prepare = cpu_psci_cpu_prepare,
Mark Rutland652af892013-10-24 20:30:16 +0100121 .cpu_boot = cpu_psci_cpu_boot,
Mark Rutland831ccf72013-10-24 20:30:19 +0100122#ifdef CONFIG_HOTPLUG_CPU
123 .cpu_disable = cpu_psci_cpu_disable,
124 .cpu_die = cpu_psci_cpu_die,
Ashwin Chaugulec814ca02014-05-07 10:18:36 -0400125 .cpu_kill = cpu_psci_cpu_kill,
Mark Rutland831ccf72013-10-24 20:30:19 +0100126#endif
Mark Rutland00ef54b2013-10-24 20:30:14 +0100127};
128