blob: c2b131527a643f6e6808b78f8c53e9751d0f71a9 [file] [log] [blame]
Marc Zyngieraa024c2f2013-01-20 18:28:13 -05001/*
2 * Copyright (C) 2012 - ARM Ltd
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
Christoffer Dallcf5d31882014-10-16 17:00:18 +020018#include <linux/preempt.h>
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050019#include <linux/kvm_host.h>
20#include <linux/wait.h>
21
Marc Zyngier79c64882013-10-18 18:19:03 +010022#include <asm/cputype.h>
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050023#include <asm/kvm_emulate.h>
24#include <asm/kvm_psci.h>
Andre Przywara4429fc62014-06-02 15:37:13 +020025#include <asm/kvm_host.h>
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050026
Mark Rutland538b9b22015-05-01 10:53:39 +010027#include <uapi/linux/psci.h>
28
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050029/*
30 * This is an implementation of the Power State Coordination Interface
31 * as described in ARM document number ARM DEN 0022A.
32 */
33
Anup Patele6bc13c2014-04-29 11:24:21 +053034#define AFFINITY_MASK(level) ~((0x1UL << ((level) * MPIDR_LEVEL_BITS)) - 1)
35
36static unsigned long psci_affinity_mask(unsigned long affinity_level)
37{
38 if (affinity_level <= 3)
39 return MPIDR_HWID_BITMASK & AFFINITY_MASK(affinity_level);
40
41 return 0;
42}
43
Anup Patelb376d022014-04-29 11:24:24 +053044static unsigned long kvm_psci_vcpu_suspend(struct kvm_vcpu *vcpu)
45{
46 /*
47 * NOTE: For simplicity, we make VCPU suspend emulation to be
48 * same-as WFI (Wait-for-interrupt) emulation.
49 *
50 * This means for KVM the wakeup events are interrupts and
51 * this is consistent with intended use of StateID as described
52 * in section 5.4.1 of PSCI v0.2 specification (ARM DEN 0022A).
53 *
54 * Further, we also treat power-down request to be same as
55 * stand-by request as-per section 5.4.2 clause 3 of PSCI v0.2
56 * specification (ARM DEN 0022A). This means all suspend states
57 * for KVM will preserve the register state.
58 */
59 kvm_vcpu_block(vcpu);
60
61 return PSCI_RET_SUCCESS;
62}
63
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050064static void kvm_psci_vcpu_off(struct kvm_vcpu *vcpu)
65{
Eric Auger37815282015-09-25 23:41:14 +020066 vcpu->arch.power_off = true;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050067}
68
69static unsigned long kvm_psci_vcpu_on(struct kvm_vcpu *source_vcpu)
70{
71 struct kvm *kvm = source_vcpu->kvm;
Andre Przywara4429fc62014-06-02 15:37:13 +020072 struct kvm_vcpu *vcpu = NULL;
Marcelo Tosatti85773702016-02-19 09:46:39 +010073 struct swait_queue_head *wq;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050074 unsigned long cpu_id;
Anup Patelaa8aeef2014-04-29 11:24:23 +053075 unsigned long context_id;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050076 phys_addr_t target_pc;
77
Pavel Fedinf6be5632015-12-04 15:03:14 +030078 cpu_id = vcpu_get_reg(source_vcpu, 1) & MPIDR_HWID_BITMASK;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050079 if (vcpu_mode_is_32bit(source_vcpu))
80 cpu_id &= ~((u32) 0);
81
Andre Przywara4429fc62014-06-02 15:37:13 +020082 vcpu = kvm_mpidr_to_vcpu(kvm, cpu_id);
Marc Zyngier79c64882013-10-18 18:19:03 +010083
Christoffer Dall478a8232013-11-19 17:43:19 -080084 /*
85 * Make sure the caller requested a valid CPU and that the CPU is
86 * turned off.
87 */
Anup Patelaa8aeef2014-04-29 11:24:23 +053088 if (!vcpu)
Anup Patel7d0f84a2014-04-29 11:24:16 +053089 return PSCI_RET_INVALID_PARAMS;
Eric Auger37815282015-09-25 23:41:14 +020090 if (!vcpu->arch.power_off) {
Anup Patelaa8aeef2014-04-29 11:24:23 +053091 if (kvm_psci_version(source_vcpu) != KVM_ARM_PSCI_0_1)
92 return PSCI_RET_ALREADY_ON;
93 else
94 return PSCI_RET_INVALID_PARAMS;
95 }
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050096
Pavel Fedinf6be5632015-12-04 15:03:14 +030097 target_pc = vcpu_get_reg(source_vcpu, 2);
98 context_id = vcpu_get_reg(source_vcpu, 3);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -050099
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500100 kvm_reset_vcpu(vcpu);
101
102 /* Gracefully handle Thumb2 entry point */
103 if (vcpu_mode_is_32bit(vcpu) && (target_pc & 1)) {
104 target_pc &= ~((phys_addr_t) 1);
105 vcpu_set_thumb(vcpu);
106 }
107
Marc Zyngierce94fe92013-11-05 14:12:15 +0000108 /* Propagate caller endianness */
109 if (kvm_vcpu_is_be(source_vcpu))
110 kvm_vcpu_set_be(vcpu);
111
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500112 *vcpu_pc(vcpu) = target_pc;
Anup Patelaa8aeef2014-04-29 11:24:23 +0530113 /*
114 * NOTE: We always update r0 (or x0) because for PSCI v0.1
115 * the general puspose registers are undefined upon CPU_ON.
116 */
Pavel Fedinf6be5632015-12-04 15:03:14 +0300117 vcpu_set_reg(vcpu, 0, context_id);
Eric Auger37815282015-09-25 23:41:14 +0200118 vcpu->arch.power_off = false;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500119 smp_mb(); /* Make sure the above is visible */
120
Christoffer Dall478a8232013-11-19 17:43:19 -0800121 wq = kvm_arch_vcpu_wq(vcpu);
Marcelo Tosatti85773702016-02-19 09:46:39 +0100122 swake_up(wq);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500123
Anup Patel7d0f84a2014-04-29 11:24:16 +0530124 return PSCI_RET_SUCCESS;
125}
126
Anup Patele6bc13c2014-04-29 11:24:21 +0530127static unsigned long kvm_psci_vcpu_affinity_info(struct kvm_vcpu *vcpu)
128{
Alexander Spyridakis0c067292015-09-04 17:06:24 +0200129 int i, matching_cpus = 0;
Anup Patele6bc13c2014-04-29 11:24:21 +0530130 unsigned long mpidr;
131 unsigned long target_affinity;
132 unsigned long target_affinity_mask;
133 unsigned long lowest_affinity_level;
134 struct kvm *kvm = vcpu->kvm;
135 struct kvm_vcpu *tmp;
136
Pavel Fedinf6be5632015-12-04 15:03:14 +0300137 target_affinity = vcpu_get_reg(vcpu, 1);
138 lowest_affinity_level = vcpu_get_reg(vcpu, 2);
Anup Patele6bc13c2014-04-29 11:24:21 +0530139
140 /* Determine target affinity mask */
141 target_affinity_mask = psci_affinity_mask(lowest_affinity_level);
142 if (!target_affinity_mask)
143 return PSCI_RET_INVALID_PARAMS;
144
145 /* Ignore other bits of target affinity */
146 target_affinity &= target_affinity_mask;
147
148 /*
149 * If one or more VCPU matching target affinity are running
150 * then ON else OFF
151 */
152 kvm_for_each_vcpu(i, tmp, kvm) {
Andre Przywara4429fc62014-06-02 15:37:13 +0200153 mpidr = kvm_vcpu_get_mpidr_aff(tmp);
Alexander Spyridakis0c067292015-09-04 17:06:24 +0200154 if ((mpidr & target_affinity_mask) == target_affinity) {
155 matching_cpus++;
Eric Auger37815282015-09-25 23:41:14 +0200156 if (!tmp->arch.power_off)
Alexander Spyridakis0c067292015-09-04 17:06:24 +0200157 return PSCI_0_2_AFFINITY_LEVEL_ON;
Anup Patele6bc13c2014-04-29 11:24:21 +0530158 }
159 }
160
Alexander Spyridakis0c067292015-09-04 17:06:24 +0200161 if (!matching_cpus)
162 return PSCI_RET_INVALID_PARAMS;
163
Anup Patele6bc13c2014-04-29 11:24:21 +0530164 return PSCI_0_2_AFFINITY_LEVEL_OFF;
165}
166
Anup Patel4b123822014-04-29 11:24:20 +0530167static void kvm_prepare_system_event(struct kvm_vcpu *vcpu, u32 type)
168{
Christoffer Dallcf5d31882014-10-16 17:00:18 +0200169 int i;
170 struct kvm_vcpu *tmp;
171
172 /*
173 * The KVM ABI specifies that a system event exit may call KVM_RUN
174 * again and may perform shutdown/reboot at a later time that when the
175 * actual request is made. Since we are implementing PSCI and a
176 * caller of PSCI reboot and shutdown expects that the system shuts
177 * down or reboots immediately, let's make sure that VCPUs are not run
178 * after this call is handled and before the VCPUs have been
179 * re-initialized.
180 */
181 kvm_for_each_vcpu(i, tmp, vcpu->kvm) {
Eric Auger37815282015-09-25 23:41:14 +0200182 tmp->arch.power_off = true;
Christoffer Dallcf5d31882014-10-16 17:00:18 +0200183 kvm_vcpu_kick(tmp);
184 }
185
Anup Patel4b123822014-04-29 11:24:20 +0530186 memset(&vcpu->run->system_event, 0, sizeof(vcpu->run->system_event));
187 vcpu->run->system_event.type = type;
188 vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT;
189}
190
191static void kvm_psci_system_off(struct kvm_vcpu *vcpu)
192{
193 kvm_prepare_system_event(vcpu, KVM_SYSTEM_EVENT_SHUTDOWN);
194}
195
196static void kvm_psci_system_reset(struct kvm_vcpu *vcpu)
197{
198 kvm_prepare_system_event(vcpu, KVM_SYSTEM_EVENT_RESET);
199}
200
Anup Patel7d0f84a2014-04-29 11:24:16 +0530201int kvm_psci_version(struct kvm_vcpu *vcpu)
202{
203 if (test_bit(KVM_ARM_VCPU_PSCI_0_2, vcpu->arch.features))
204 return KVM_ARM_PSCI_0_2;
205
206 return KVM_ARM_PSCI_0_1;
207}
208
Anup Patele8e7fcc2014-04-29 11:24:18 +0530209static int kvm_psci_0_2_call(struct kvm_vcpu *vcpu)
Anup Patel7d0f84a2014-04-29 11:24:16 +0530210{
Anup Patel4b123822014-04-29 11:24:20 +0530211 int ret = 1;
Pavel Fedinf6be5632015-12-04 15:03:14 +0300212 unsigned long psci_fn = vcpu_get_reg(vcpu, 0) & ~((u32) 0);
Anup Patel7d0f84a2014-04-29 11:24:16 +0530213 unsigned long val;
214
215 switch (psci_fn) {
216 case PSCI_0_2_FN_PSCI_VERSION:
217 /*
218 * Bits[31:16] = Major Version = 0
219 * Bits[15:0] = Minor Version = 2
220 */
221 val = 2;
222 break;
Anup Patelb376d022014-04-29 11:24:24 +0530223 case PSCI_0_2_FN_CPU_SUSPEND:
224 case PSCI_0_2_FN64_CPU_SUSPEND:
225 val = kvm_psci_vcpu_suspend(vcpu);
226 break;
Anup Patel7d0f84a2014-04-29 11:24:16 +0530227 case PSCI_0_2_FN_CPU_OFF:
228 kvm_psci_vcpu_off(vcpu);
229 val = PSCI_RET_SUCCESS;
230 break;
231 case PSCI_0_2_FN_CPU_ON:
232 case PSCI_0_2_FN64_CPU_ON:
233 val = kvm_psci_vcpu_on(vcpu);
234 break;
Anup Patele6bc13c2014-04-29 11:24:21 +0530235 case PSCI_0_2_FN_AFFINITY_INFO:
236 case PSCI_0_2_FN64_AFFINITY_INFO:
237 val = kvm_psci_vcpu_affinity_info(vcpu);
238 break;
Anup Patelbab0b4302014-04-29 11:24:22 +0530239 case PSCI_0_2_FN_MIGRATE_INFO_TYPE:
240 /*
241 * Trusted OS is MP hence does not require migration
242 * or
243 * Trusted OS is not present
244 */
245 val = PSCI_0_2_TOS_MP;
246 break;
Anup Patel4b123822014-04-29 11:24:20 +0530247 case PSCI_0_2_FN_SYSTEM_OFF:
248 kvm_psci_system_off(vcpu);
249 /*
250 * We should'nt be going back to guest VCPU after
251 * receiving SYSTEM_OFF request.
252 *
253 * If user space accidently/deliberately resumes
254 * guest VCPU after SYSTEM_OFF request then guest
255 * VCPU should see internal failure from PSCI return
256 * value. To achieve this, we preload r0 (or x0) with
257 * PSCI return value INTERNAL_FAILURE.
258 */
259 val = PSCI_RET_INTERNAL_FAILURE;
260 ret = 0;
261 break;
262 case PSCI_0_2_FN_SYSTEM_RESET:
263 kvm_psci_system_reset(vcpu);
264 /*
265 * Same reason as SYSTEM_OFF for preloading r0 (or x0)
266 * with PSCI return value INTERNAL_FAILURE.
267 */
268 val = PSCI_RET_INTERNAL_FAILURE;
269 ret = 0;
270 break;
Anup Patel7d0f84a2014-04-29 11:24:16 +0530271 default:
Lorenzo Pieralisie2d99732015-06-10 15:19:24 +0100272 val = PSCI_RET_NOT_SUPPORTED;
273 break;
Anup Patel7d0f84a2014-04-29 11:24:16 +0530274 }
275
Pavel Fedinf6be5632015-12-04 15:03:14 +0300276 vcpu_set_reg(vcpu, 0, val);
Anup Patel4b123822014-04-29 11:24:20 +0530277 return ret;
Anup Patel7d0f84a2014-04-29 11:24:16 +0530278}
279
Anup Patele8e7fcc2014-04-29 11:24:18 +0530280static int kvm_psci_0_1_call(struct kvm_vcpu *vcpu)
Anup Patel7d0f84a2014-04-29 11:24:16 +0530281{
Pavel Fedinf6be5632015-12-04 15:03:14 +0300282 unsigned long psci_fn = vcpu_get_reg(vcpu, 0) & ~((u32) 0);
Anup Patel7d0f84a2014-04-29 11:24:16 +0530283 unsigned long val;
284
285 switch (psci_fn) {
286 case KVM_PSCI_FN_CPU_OFF:
287 kvm_psci_vcpu_off(vcpu);
288 val = PSCI_RET_SUCCESS;
289 break;
290 case KVM_PSCI_FN_CPU_ON:
291 val = kvm_psci_vcpu_on(vcpu);
292 break;
Lorenzo Pieralisie2d99732015-06-10 15:19:24 +0100293 default:
Anup Patel7d0f84a2014-04-29 11:24:16 +0530294 val = PSCI_RET_NOT_SUPPORTED;
295 break;
Anup Patel7d0f84a2014-04-29 11:24:16 +0530296 }
297
Pavel Fedinf6be5632015-12-04 15:03:14 +0300298 vcpu_set_reg(vcpu, 0, val);
Anup Patele8e7fcc2014-04-29 11:24:18 +0530299 return 1;
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500300}
301
302/**
303 * kvm_psci_call - handle PSCI call if r0 value is in range
304 * @vcpu: Pointer to the VCPU struct
305 *
Dave P Martin24a7f672013-05-01 17:49:28 +0100306 * Handle PSCI calls from guests through traps from HVC instructions.
Anup Patele8e7fcc2014-04-29 11:24:18 +0530307 * The calling convention is similar to SMC calls to the secure world
308 * where the function number is placed in r0.
309 *
310 * This function returns: > 0 (success), 0 (success but exit to user
311 * space), and < 0 (errors)
312 *
313 * Errors:
314 * -EINVAL: Unrecognized PSCI function
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500315 */
Anup Patele8e7fcc2014-04-29 11:24:18 +0530316int kvm_psci_call(struct kvm_vcpu *vcpu)
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500317{
Anup Patel7d0f84a2014-04-29 11:24:16 +0530318 switch (kvm_psci_version(vcpu)) {
319 case KVM_ARM_PSCI_0_2:
320 return kvm_psci_0_2_call(vcpu);
321 case KVM_ARM_PSCI_0_1:
322 return kvm_psci_0_1_call(vcpu);
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500323 default:
Anup Patele8e7fcc2014-04-29 11:24:18 +0530324 return -EINVAL;
Anup Patel7d0f84a2014-04-29 11:24:16 +0530325 };
Marc Zyngieraa024c2f2013-01-20 18:28:13 -0500326}