2 * Copyright (C) 2012 - ARM Ltd
3 * Author: Marc Zyngier <marc.zyngier@arm.com>
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.
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.
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/>.
18 #include <linux/preempt.h>
19 #include <linux/kvm_host.h>
20 #include <linux/wait.h>
22 #include <asm/cputype.h>
23 #include <asm/kvm_emulate.h>
24 #include <asm/kvm_psci.h>
27 * This is an implementation of the Power State Coordination Interface
28 * as described in ARM document number ARM DEN 0022A.
31 #define AFFINITY_MASK(level) ~((0x1UL << ((level) * MPIDR_LEVEL_BITS)) - 1)
33 static unsigned long psci_affinity_mask(unsigned long affinity_level
)
35 if (affinity_level
<= 3)
36 return MPIDR_HWID_BITMASK
& AFFINITY_MASK(affinity_level
);
41 static unsigned long kvm_psci_vcpu_suspend(struct kvm_vcpu
*vcpu
)
44 * NOTE: For simplicity, we make VCPU suspend emulation to be
45 * same-as WFI (Wait-for-interrupt) emulation.
47 * This means for KVM the wakeup events are interrupts and
48 * this is consistent with intended use of StateID as described
49 * in section 5.4.1 of PSCI v0.2 specification (ARM DEN 0022A).
51 * Further, we also treat power-down request to be same as
52 * stand-by request as-per section 5.4.2 clause 3 of PSCI v0.2
53 * specification (ARM DEN 0022A). This means all suspend states
54 * for KVM will preserve the register state.
58 return PSCI_RET_SUCCESS
;
61 static void kvm_psci_vcpu_off(struct kvm_vcpu
*vcpu
)
63 vcpu
->arch
.pause
= true;
66 static unsigned long kvm_psci_vcpu_on(struct kvm_vcpu
*source_vcpu
)
68 struct kvm
*kvm
= source_vcpu
->kvm
;
69 struct kvm_vcpu
*vcpu
= NULL
, *tmp
;
70 wait_queue_head_t
*wq
;
72 unsigned long context_id
;
74 phys_addr_t target_pc
;
77 cpu_id
= *vcpu_reg(source_vcpu
, 1);
78 if (vcpu_mode_is_32bit(source_vcpu
))
81 kvm_for_each_vcpu(i
, tmp
, kvm
) {
82 mpidr
= kvm_vcpu_get_mpidr(tmp
);
83 if ((mpidr
& MPIDR_HWID_BITMASK
) == (cpu_id
& MPIDR_HWID_BITMASK
)) {
90 * Make sure the caller requested a valid CPU and that the CPU is
94 return PSCI_RET_INVALID_PARAMS
;
95 if (!vcpu
->arch
.pause
) {
96 if (kvm_psci_version(source_vcpu
) != KVM_ARM_PSCI_0_1
)
97 return PSCI_RET_ALREADY_ON
;
99 return PSCI_RET_INVALID_PARAMS
;
102 target_pc
= *vcpu_reg(source_vcpu
, 2);
103 context_id
= *vcpu_reg(source_vcpu
, 3);
105 kvm_reset_vcpu(vcpu
);
107 /* Gracefully handle Thumb2 entry point */
108 if (vcpu_mode_is_32bit(vcpu
) && (target_pc
& 1)) {
109 target_pc
&= ~((phys_addr_t
) 1);
110 vcpu_set_thumb(vcpu
);
113 /* Propagate caller endianness */
114 if (kvm_vcpu_is_be(source_vcpu
))
115 kvm_vcpu_set_be(vcpu
);
117 *vcpu_pc(vcpu
) = target_pc
;
119 * NOTE: We always update r0 (or x0) because for PSCI v0.1
120 * the general puspose registers are undefined upon CPU_ON.
122 *vcpu_reg(vcpu
, 0) = context_id
;
123 vcpu
->arch
.pause
= false;
124 smp_mb(); /* Make sure the above is visible */
126 wq
= kvm_arch_vcpu_wq(vcpu
);
127 wake_up_interruptible(wq
);
129 return PSCI_RET_SUCCESS
;
132 static unsigned long kvm_psci_vcpu_affinity_info(struct kvm_vcpu
*vcpu
)
136 unsigned long target_affinity
;
137 unsigned long target_affinity_mask
;
138 unsigned long lowest_affinity_level
;
139 struct kvm
*kvm
= vcpu
->kvm
;
140 struct kvm_vcpu
*tmp
;
142 target_affinity
= *vcpu_reg(vcpu
, 1);
143 lowest_affinity_level
= *vcpu_reg(vcpu
, 2);
145 /* Determine target affinity mask */
146 target_affinity_mask
= psci_affinity_mask(lowest_affinity_level
);
147 if (!target_affinity_mask
)
148 return PSCI_RET_INVALID_PARAMS
;
150 /* Ignore other bits of target affinity */
151 target_affinity
&= target_affinity_mask
;
154 * If one or more VCPU matching target affinity are running
157 kvm_for_each_vcpu(i
, tmp
, kvm
) {
158 mpidr
= kvm_vcpu_get_mpidr(tmp
);
159 if (((mpidr
& target_affinity_mask
) == target_affinity
) &&
161 return PSCI_0_2_AFFINITY_LEVEL_ON
;
165 return PSCI_0_2_AFFINITY_LEVEL_OFF
;
168 static void kvm_prepare_system_event(struct kvm_vcpu
*vcpu
, u32 type
)
171 struct kvm_vcpu
*tmp
;
174 * The KVM ABI specifies that a system event exit may call KVM_RUN
175 * again and may perform shutdown/reboot at a later time that when the
176 * actual request is made. Since we are implementing PSCI and a
177 * caller of PSCI reboot and shutdown expects that the system shuts
178 * down or reboots immediately, let's make sure that VCPUs are not run
179 * after this call is handled and before the VCPUs have been
182 kvm_for_each_vcpu(i
, tmp
, vcpu
->kvm
) {
183 tmp
->arch
.pause
= true;
187 memset(&vcpu
->run
->system_event
, 0, sizeof(vcpu
->run
->system_event
));
188 vcpu
->run
->system_event
.type
= type
;
189 vcpu
->run
->exit_reason
= KVM_EXIT_SYSTEM_EVENT
;
192 static void kvm_psci_system_off(struct kvm_vcpu
*vcpu
)
194 kvm_prepare_system_event(vcpu
, KVM_SYSTEM_EVENT_SHUTDOWN
);
197 static void kvm_psci_system_reset(struct kvm_vcpu
*vcpu
)
199 kvm_prepare_system_event(vcpu
, KVM_SYSTEM_EVENT_RESET
);
202 int kvm_psci_version(struct kvm_vcpu
*vcpu
)
204 if (test_bit(KVM_ARM_VCPU_PSCI_0_2
, vcpu
->arch
.features
))
205 return KVM_ARM_PSCI_0_2
;
207 return KVM_ARM_PSCI_0_1
;
210 static int kvm_psci_0_2_call(struct kvm_vcpu
*vcpu
)
213 unsigned long psci_fn
= *vcpu_reg(vcpu
, 0) & ~((u32
) 0);
217 case PSCI_0_2_FN_PSCI_VERSION
:
219 * Bits[31:16] = Major Version = 0
220 * Bits[15:0] = Minor Version = 2
224 case PSCI_0_2_FN_CPU_SUSPEND
:
225 case PSCI_0_2_FN64_CPU_SUSPEND
:
226 val
= kvm_psci_vcpu_suspend(vcpu
);
228 case PSCI_0_2_FN_CPU_OFF
:
229 kvm_psci_vcpu_off(vcpu
);
230 val
= PSCI_RET_SUCCESS
;
232 case PSCI_0_2_FN_CPU_ON
:
233 case PSCI_0_2_FN64_CPU_ON
:
234 val
= kvm_psci_vcpu_on(vcpu
);
236 case PSCI_0_2_FN_AFFINITY_INFO
:
237 case PSCI_0_2_FN64_AFFINITY_INFO
:
238 val
= kvm_psci_vcpu_affinity_info(vcpu
);
240 case PSCI_0_2_FN_MIGRATE
:
241 case PSCI_0_2_FN64_MIGRATE
:
242 val
= PSCI_RET_NOT_SUPPORTED
;
244 case PSCI_0_2_FN_MIGRATE_INFO_TYPE
:
246 * Trusted OS is MP hence does not require migration
248 * Trusted OS is not present
250 val
= PSCI_0_2_TOS_MP
;
252 case PSCI_0_2_FN_MIGRATE_INFO_UP_CPU
:
253 case PSCI_0_2_FN64_MIGRATE_INFO_UP_CPU
:
254 val
= PSCI_RET_NOT_SUPPORTED
;
256 case PSCI_0_2_FN_SYSTEM_OFF
:
257 kvm_psci_system_off(vcpu
);
259 * We should'nt be going back to guest VCPU after
260 * receiving SYSTEM_OFF request.
262 * If user space accidently/deliberately resumes
263 * guest VCPU after SYSTEM_OFF request then guest
264 * VCPU should see internal failure from PSCI return
265 * value. To achieve this, we preload r0 (or x0) with
266 * PSCI return value INTERNAL_FAILURE.
268 val
= PSCI_RET_INTERNAL_FAILURE
;
271 case PSCI_0_2_FN_SYSTEM_RESET
:
272 kvm_psci_system_reset(vcpu
);
274 * Same reason as SYSTEM_OFF for preloading r0 (or x0)
275 * with PSCI return value INTERNAL_FAILURE.
277 val
= PSCI_RET_INTERNAL_FAILURE
;
284 *vcpu_reg(vcpu
, 0) = val
;
288 static int kvm_psci_0_1_call(struct kvm_vcpu
*vcpu
)
290 unsigned long psci_fn
= *vcpu_reg(vcpu
, 0) & ~((u32
) 0);
294 case KVM_PSCI_FN_CPU_OFF
:
295 kvm_psci_vcpu_off(vcpu
);
296 val
= PSCI_RET_SUCCESS
;
298 case KVM_PSCI_FN_CPU_ON
:
299 val
= kvm_psci_vcpu_on(vcpu
);
301 case KVM_PSCI_FN_CPU_SUSPEND
:
302 case KVM_PSCI_FN_MIGRATE
:
303 val
= PSCI_RET_NOT_SUPPORTED
;
309 *vcpu_reg(vcpu
, 0) = val
;
314 * kvm_psci_call - handle PSCI call if r0 value is in range
315 * @vcpu: Pointer to the VCPU struct
317 * Handle PSCI calls from guests through traps from HVC instructions.
318 * The calling convention is similar to SMC calls to the secure world
319 * where the function number is placed in r0.
321 * This function returns: > 0 (success), 0 (success but exit to user
322 * space), and < 0 (errors)
325 * -EINVAL: Unrecognized PSCI function
327 int kvm_psci_call(struct kvm_vcpu
*vcpu
)
329 switch (kvm_psci_version(vcpu
)) {
330 case KVM_ARM_PSCI_0_2
:
331 return kvm_psci_0_2_call(vcpu
);
332 case KVM_ARM_PSCI_0_1
:
333 return kvm_psci_0_1_call(vcpu
);