blob: 6fe317916d6869d6a0c9236def0f7eae00e48eb8 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
Andrew Walbran692b3252019-03-07 15:51:31 +00002 * Copyright 2018 The Hafnium Authors.
Andrew Scull18834872018-10-12 11:48:09 +01003 *
Andrew Walbrane959ec12020-06-17 15:01:09 +01004 * Use of this source code is governed by a BSD-style
5 * license that can be found in the LICENSE file or at
6 * https://opensource.org/licenses/BSD-3-Clause.
Andrew Scull18834872018-10-12 11:48:09 +01007 */
8
Andrew Scullc960c032018-10-24 15:13:35 +01009#include <stdnoreturn.h>
10
Andrew Walbran1f32e722019-06-07 17:57:26 +010011#include "hf/arch/barriers.h"
Andrew Scullc960c032018-10-24 15:13:35 +010012#include "hf/arch/init.h"
Olivier Deprez98ad2d22020-05-20 09:52:43 +020013#include "hf/arch/mmu.h"
Maksims Svecovs9ddf86a2021-05-06 17:17:21 +010014#include "hf/arch/plat/ffa.h"
Andrew Scull07b6bd32019-12-12 17:19:55 +000015#include "hf/arch/plat/smc.h"
Andrew Scullc960c032018-10-24 15:13:35 +010016
Andrew Scull18c78fc2018-08-20 12:57:41 +010017#include "hf/api.h"
Fuad Tabbac76466d2019-09-06 10:42:12 +010018#include "hf/check.h"
Andrew Scull18c78fc2018-08-20 12:57:41 +010019#include "hf/cpu.h"
20#include "hf/dlog.h"
Andrew Walbranb5ab43c2020-04-30 11:32:54 +010021#include "hf/ffa.h"
J-Alvesb37fd082020-10-22 12:29:21 +010022#include "hf/ffa_internal.h"
Andrew Sculla9c172d2019-04-03 14:10:00 +010023#include "hf/panic.h"
Manish Pandeya5f39fb2020-09-11 09:47:11 +010024#include "hf/plat/interrupts.h"
Andrew Scull18c78fc2018-08-20 12:57:41 +010025#include "hf/vm.h"
26
Andrew Scullf35a5c92018-08-07 18:09:46 +010027#include "vmapi/hf/call.h"
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010028
Fuad Tabbac76466d2019-09-06 10:42:12 +010029#include "debug_el1.h"
Fuad Tabba77a4b012019-11-15 12:13:08 +000030#include "feature_id.h"
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010031#include "msr.h"
Fuad Tabbaf1d6dc52019-09-18 17:33:14 +010032#include "perfmon.h"
Andrew Scull18c78fc2018-08-20 12:57:41 +010033#include "psci.h"
Andrew Walbran33645652019-04-15 12:29:31 +010034#include "psci_handler.h"
Andrew Scull7fd4bb72018-12-08 23:40:12 +000035#include "smc.h"
Fuad Tabbaba8c44d2019-09-23 14:38:58 +010036#include "sysregs.h"
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +010037
Fuad Tabbac76466d2019-09-06 10:42:12 +010038/**
Olivier Deprez98ad2d22020-05-20 09:52:43 +020039 * Hypervisor Fault Address Register Non-Secure.
40 */
41#define HPFAR_EL2_NS (UINT64_C(0x1) << 63)
42
43/**
44 * Hypervisor Fault Address Register Faulting IPA.
45 */
46#define HPFAR_EL2_FIPA (UINT64_C(0xFFFFFFFFFF0))
47
48/**
Fuad Tabbac76466d2019-09-06 10:42:12 +010049 * Gets the value to increment for the next PC.
50 * The ESR encodes whether the instruction is 2 bytes or 4 bytes long.
51 */
Fuad Tabba3e9b0222019-11-11 16:47:50 +000052#define GET_NEXT_PC_INC(esr) (GET_ESR_IL(esr) ? 4 : 2)
Fuad Tabbac76466d2019-09-06 10:42:12 +010053
Fuad Tabbac76466d2019-09-06 10:42:12 +010054/**
Andrew Walbran0dd67ff2019-09-12 16:38:50 +010055 * The Client ID field within X7 for an SMC64 call.
56 */
57#define CLIENT_ID_MASK UINT64_C(0xffff)
58
Daniel Boulbyefa381f2022-01-18 14:49:40 +000059/*
60 * Target function IDs for framework messages from the SPMD.
61 */
62#define SPMD_FWK_MSG_BIT UINT64_C(1 << 31)
63#define SPMD_FWK_MSG_FUNC_MASK UINT64_C(0xFF)
64#define SPMD_FWK_MSG_PSCI UINT8_C(0)
65#define SPMD_FWK_MSG_FFA_VERSION_REQ UINT8_C(0x8)
66#define SPMD_FWK_MSG_FFA_VERSION_RESP UINT8_C(0x9)
67
Andrew Walbran0dd67ff2019-09-12 16:38:50 +010068/**
Fuad Tabbac76466d2019-09-06 10:42:12 +010069 * Returns a reference to the currently executing vCPU.
70 */
Andrew Scullc960c032018-10-24 15:13:35 +010071static struct vcpu *current(void)
Andrew Walbran3d84a262018-12-13 14:41:19 +000072{
Daniel Boulby3f784262021-09-27 13:02:54 +010073 // NOLINTNEXTLINE(performance-no-int-to-ptr)
Andrew Walbran3d84a262018-12-13 14:41:19 +000074 return (struct vcpu *)read_msr(tpidr_el2);
75}
76
Andrew Walbran1f8d4872018-12-20 11:21:32 +000077/**
78 * Saves the state of per-vCPU peripherals, such as the virtual timer, and
79 * informs the arch-independent sections that registers have been saved.
80 */
81void complete_saving_state(struct vcpu *vcpu)
82{
Raghu Krishnamurthy32626c92021-01-17 09:57:29 -080083 if (has_vhe_support()) {
84 vcpu->regs.peripherals.cntv_cval_el0 =
85 read_msr(MSR_CNTV_CVAL_EL02);
86 vcpu->regs.peripherals.cntv_ctl_el0 =
87 read_msr(MSR_CNTV_CTL_EL02);
88 } else {
89 vcpu->regs.peripherals.cntv_cval_el0 = read_msr(cntv_cval_el0);
90 vcpu->regs.peripherals.cntv_ctl_el0 = read_msr(cntv_ctl_el0);
91 }
Andrew Walbran1f8d4872018-12-20 11:21:32 +000092
93 api_regs_state_saved(vcpu);
94
95 /*
96 * If switching away from the primary, copy the current EL0 virtual
97 * timer registers to the corresponding EL2 physical timer registers.
98 * This is used to emulate the virtual timer for the primary in case it
99 * should fire while the secondary is running.
100 */
101 if (vcpu->vm->id == HF_PRIMARY_VM_ID) {
102 /*
103 * Clear timer control register before copying compare value, to
104 * avoid a spurious timer interrupt. This could be a problem if
105 * the interrupt is configured as edge-triggered, as it would
106 * then be latched in.
107 */
108 write_msr(cnthp_ctl_el2, 0);
Raghu Krishnamurthy32626c92021-01-17 09:57:29 -0800109
110 if (has_vhe_support()) {
111 write_msr(cnthp_cval_el2, read_msr(MSR_CNTV_CVAL_EL02));
112 write_msr(cnthp_ctl_el2, read_msr(MSR_CNTV_CTL_EL02));
113 } else {
114 write_msr(cnthp_cval_el2, read_msr(cntv_cval_el0));
115 write_msr(cnthp_ctl_el2, read_msr(cntv_ctl_el0));
116 }
Andrew Walbran1f8d4872018-12-20 11:21:32 +0000117 }
118}
119
120/**
121 * Restores the state of per-vCPU peripherals, such as the virtual timer.
122 */
123void begin_restoring_state(struct vcpu *vcpu)
124{
125 /*
126 * Clear timer control register before restoring compare value, to avoid
127 * a spurious timer interrupt. This could be a problem if the interrupt
128 * is configured as edge-triggered, as it would then be latched in.
129 */
Raghu Krishnamurthy32626c92021-01-17 09:57:29 -0800130 if (has_vhe_support()) {
131 write_msr(MSR_CNTV_CTL_EL02, 0);
132 write_msr(MSR_CNTV_CVAL_EL02,
133 vcpu->regs.peripherals.cntv_cval_el0);
134 write_msr(MSR_CNTV_CTL_EL02,
135 vcpu->regs.peripherals.cntv_ctl_el0);
136 } else {
137 write_msr(cntv_ctl_el0, 0);
138 write_msr(cntv_cval_el0, vcpu->regs.peripherals.cntv_cval_el0);
139 write_msr(cntv_ctl_el0, vcpu->regs.peripherals.cntv_ctl_el0);
140 }
Andrew Walbran1f8d4872018-12-20 11:21:32 +0000141
142 /*
143 * If we are switching (back) to the primary, disable the EL2 physical
144 * timer which was being used to emulate the EL0 virtual timer, as the
145 * virtual timer is now running for the primary again.
146 */
147 if (vcpu->vm->id == HF_PRIMARY_VM_ID) {
148 write_msr(cnthp_ctl_el2, 0);
149 write_msr(cnthp_cval_el2, 0);
150 }
151}
152
Andrew Walbran1f32e722019-06-07 17:57:26 +0100153/**
Andrew Walbran1f32e722019-06-07 17:57:26 +0100154 * Invalidate all stage 1 TLB entries on the current (physical) CPU for the
155 * current VMID.
156 */
157static void invalidate_vm_tlb(void)
158{
Andrew Walbrancff1f682019-07-04 14:52:45 +0100159 /*
160 * Ensure that the last VTTBR write has taken effect so we invalidate
161 * the right set of TLB entries.
162 */
Andrew Walbran1f32e722019-06-07 17:57:26 +0100163 isb();
Andrew Walbrancff1f682019-07-04 14:52:45 +0100164
Andrew Walbran1f32e722019-06-07 17:57:26 +0100165 __asm__ volatile("tlbi vmalle1");
Andrew Walbrancff1f682019-07-04 14:52:45 +0100166
167 /*
168 * Ensure that no instructions are fetched for the VM until after the
169 * TLB invalidation has taken effect.
170 */
Andrew Walbran1f32e722019-06-07 17:57:26 +0100171 isb();
Andrew Walbrancff1f682019-07-04 14:52:45 +0100172
173 /*
174 * Ensure that no data reads or writes for the VM happen until after the
Fuad Tabba77a4b012019-11-15 12:13:08 +0000175 * TLB invalidation has taken effect. Non-shareable is enough because
176 * the TLB is local to the CPU.
Andrew Walbrancff1f682019-07-04 14:52:45 +0100177 */
David Brazdil851948e2019-08-09 12:02:12 +0100178 dsb(nsh);
Andrew Walbran1f32e722019-06-07 17:57:26 +0100179}
180
181/**
182 * Invalidates the TLB if a different vCPU is being run than the last vCPU of
183 * the same VM which was run on the current pCPU.
184 *
185 * This is necessary because VMs may (contrary to the architecture
186 * specification) use inconsistent ASIDs across vCPUs. c.f. KVM's similar
187 * workaround:
188 * https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=94d0e5980d6791b9
189 */
190void maybe_invalidate_tlb(struct vcpu *vcpu)
191{
192 size_t current_cpu_index = cpu_index(vcpu->cpu);
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100193 ffa_vcpu_index_t new_vcpu_index = vcpu_index(vcpu);
Andrew Walbran1f32e722019-06-07 17:57:26 +0100194
195 if (vcpu->vm->arch.last_vcpu_on_cpu[current_cpu_index] !=
196 new_vcpu_index) {
197 /*
198 * The vCPU has changed since the last time this VM was run on
199 * this pCPU, so we need to invalidate the TLB.
200 */
201 invalidate_vm_tlb();
202
203 /* Record the fact that this vCPU is now running on this CPU. */
204 vcpu->vm->arch.last_vcpu_on_cpu[current_cpu_index] =
205 new_vcpu_index;
206 }
207}
208
David Brazdil768f69c2019-12-19 15:46:12 +0000209noreturn void irq_current_exception_noreturn(uintreg_t elr, uintreg_t spsr)
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +0100210{
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +0000211 (void)elr;
212 (void)spsr;
213
Fuad Tabbad1d67982020-01-08 11:28:29 +0000214 panic("IRQ from current exception level.");
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +0100215}
216
David Brazdil768f69c2019-12-19 15:46:12 +0000217noreturn void fiq_current_exception_noreturn(uintreg_t elr, uintreg_t spsr)
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +0100218{
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +0000219 (void)elr;
220 (void)spsr;
221
Fuad Tabbad1d67982020-01-08 11:28:29 +0000222 panic("FIQ from current exception level.");
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +0000223}
224
David Brazdil768f69c2019-12-19 15:46:12 +0000225noreturn void serr_current_exception_noreturn(uintreg_t elr, uintreg_t spsr)
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +0000226{
227 (void)elr;
228 (void)spsr;
229
Fuad Tabbad1d67982020-01-08 11:28:29 +0000230 panic("SError from current exception level.");
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +0000231}
232
David Brazdil768f69c2019-12-19 15:46:12 +0000233noreturn void sync_current_exception_noreturn(uintreg_t elr, uintreg_t spsr)
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +0000234{
235 uintreg_t esr = read_msr(esr_el2);
Fuad Tabba3e9b0222019-11-11 16:47:50 +0000236 uintreg_t ec = GET_ESR_EC(esr);
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +0000237
238 (void)spsr;
239
Fuad Tabbac76466d2019-09-06 10:42:12 +0100240 switch (ec) {
Fuad Tabbab86325a2020-01-10 13:38:15 +0000241 case EC_DATA_ABORT_SAME_EL:
Andrew Walbrane52006c2019-10-22 18:01:28 +0100242 if (!(esr & (1U << 10))) { /* Check FnV bit. */
Andrew Walbran17eebf92020-02-05 16:35:49 +0000243 dlog_error(
244 "Data abort: pc=%#x, esr=%#x, ec=%#x, "
245 "far=%#x\n",
246 elr, esr, ec, read_msr(far_el2));
Andrew Scull7364a8e2018-07-19 15:39:29 +0100247 } else {
Andrew Walbran17eebf92020-02-05 16:35:49 +0000248 dlog_error(
249 "Data abort: pc=%#x, esr=%#x, ec=%#x, "
250 "far=invalid\n",
251 elr, esr, ec);
Andrew Scull7364a8e2018-07-19 15:39:29 +0100252 }
Wedson Almeida Filhofed69022018-07-11 15:39:12 +0100253
Wedson Almeida Filho81568c42019-01-04 13:33:02 +0000254 break;
Wedson Almeida Filhofed69022018-07-11 15:39:12 +0100255
256 default:
Andrew Walbran17eebf92020-02-05 16:35:49 +0000257 dlog_error(
258 "Unknown current sync exception pc=%#x, esr=%#x, "
259 "ec=%#x\n",
260 elr, esr, ec);
Andrew Scullc960c032018-10-24 15:13:35 +0100261 break;
Wedson Almeida Filhofed69022018-07-11 15:39:12 +0100262 }
Wedson Almeida Filho81568c42019-01-04 13:33:02 +0000263
Andrew Sculla9c172d2019-04-03 14:10:00 +0100264 panic("EL2 exception");
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +0100265}
266
Wedson Almeida Filho03e767a2018-07-30 15:32:03 +0100267/**
Andrew Walbran3d84a262018-12-13 14:41:19 +0000268 * Sets or clears the VI bit in the HCR_EL2 register saved in the given
269 * arch_regs.
270 */
Manish Pandey35e452f2021-02-18 21:36:34 +0000271static void set_virtual_irq(struct arch_regs *r, bool enable)
Andrew Walbran3d84a262018-12-13 14:41:19 +0000272{
273 if (enable) {
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800274 r->hcr_el2 |= HCR_EL2_VI;
Andrew Walbran3d84a262018-12-13 14:41:19 +0000275 } else {
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800276 r->hcr_el2 &= ~HCR_EL2_VI;
Andrew Walbran3d84a262018-12-13 14:41:19 +0000277 }
278}
279
280/**
281 * Sets or clears the VI bit in the HCR_EL2 register.
282 */
Manish Pandey35e452f2021-02-18 21:36:34 +0000283static void set_virtual_irq_current(bool enable)
Andrew Walbran3d84a262018-12-13 14:41:19 +0000284{
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800285 uintreg_t hcr_el2 = current()->regs.hcr_el2;
Wedson Almeida Filho81568c42019-01-04 13:33:02 +0000286
Andrew Walbran3d84a262018-12-13 14:41:19 +0000287 if (enable) {
288 hcr_el2 |= HCR_EL2_VI;
289 } else {
290 hcr_el2 &= ~HCR_EL2_VI;
291 }
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800292 current()->regs.hcr_el2 = hcr_el2;
Andrew Walbran3d84a262018-12-13 14:41:19 +0000293}
294
Manish Pandey35e452f2021-02-18 21:36:34 +0000295/**
296 * Sets or clears the VF bit in the HCR_EL2 register saved in the given
297 * arch_regs.
298 */
299static void set_virtual_fiq(struct arch_regs *r, bool enable)
300{
301 if (enable) {
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800302 r->hcr_el2 |= HCR_EL2_VF;
Manish Pandey35e452f2021-02-18 21:36:34 +0000303 } else {
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800304 r->hcr_el2 &= ~HCR_EL2_VF;
Manish Pandey35e452f2021-02-18 21:36:34 +0000305 }
306}
307
308/**
309 * Sets or clears the VF bit in the HCR_EL2 register.
310 */
311static void set_virtual_fiq_current(bool enable)
312{
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800313 uintreg_t hcr_el2 = current()->regs.hcr_el2;
Manish Pandey35e452f2021-02-18 21:36:34 +0000314
315 if (enable) {
316 hcr_el2 |= HCR_EL2_VF;
317 } else {
318 hcr_el2 &= ~HCR_EL2_VF;
319 }
Raghu Krishnamurthy7e925bd2020-12-26 10:14:40 -0800320 current()->regs.hcr_el2 = hcr_el2;
Manish Pandey35e452f2021-02-18 21:36:34 +0000321}
322
J-Alvesb37fd082020-10-22 12:29:21 +0100323#if SECURE_WORLD == 1
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100324
J-Alvesb37fd082020-10-22 12:29:21 +0100325static bool sp_boot_next(struct vcpu *current, struct vcpu **next,
326 struct ffa_value *ffa_ret)
327{
328 struct vm_locked current_vm_locked;
329 struct vm *vm_next = NULL;
330 bool ret = false;
331
332 /*
333 * If VM hasn't been initialized, initialize it and traverse
334 * booting list following "next_boot" field in the VM structure.
335 * Once all the SPs have been booted (when "next_boot" is NULL),
336 * return execution to the NWd.
337 */
338 current_vm_locked = vm_lock(current->vm);
339 if (current_vm_locked.vm->initialized == false) {
340 current_vm_locked.vm->initialized = true;
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500341 current->is_bootstrapped = true;
J-Alvesb37fd082020-10-22 12:29:21 +0100342 dlog_verbose("Initialized VM: %#x, boot_order: %u\n",
343 current_vm_locked.vm->id,
344 current_vm_locked.vm->boot_order);
345
346 if (current_vm_locked.vm->next_boot != NULL) {
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500347 /* Refer FF-A v1.1 Beta0 section 7.5 Rule 2. */
348 current->state = VCPU_STATE_WAITING;
J-Alvesb37fd082020-10-22 12:29:21 +0100349 vm_next = current_vm_locked.vm->next_boot;
350 CHECK(vm_next->initialized == false);
351 *next = vm_get_vcpu(vm_next, vcpu_index(current));
352 arch_regs_reset(*next);
353 (*next)->cpu = current->cpu;
354 (*next)->state = VCPU_STATE_RUNNING;
355 (*next)->regs_available = false;
356
J-Alves7ac49052022-02-08 17:20:53 +0000357 /* Set the designated GP register with the vCPU ID. */
358 vcpu_set_phys_core_idx(*next);
359
J-Alvesb37fd082020-10-22 12:29:21 +0100360 *ffa_ret = (struct ffa_value){.func = FFA_INTERRUPT_32};
361 ret = true;
362 goto out;
363 }
364
365 dlog_verbose("Finished initializing all VMs.\n");
366 }
367
368out:
369 vm_unlock(&current_vm_locked);
370 return ret;
371}
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100372
373/**
374 * Handle special direct messages from SPMD to SPMC. For now related to power
375 * management only.
376 */
377static bool spmd_handler(struct ffa_value *args, struct vcpu *current)
378{
J-Alvesd6f4e142021-03-05 13:33:59 +0000379 ffa_vm_id_t sender = ffa_sender(*args);
380 ffa_vm_id_t receiver = ffa_receiver(*args);
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100381 ffa_vm_id_t current_vm_id = current->vm->id;
Daniel Boulbyefa381f2022-01-18 14:49:40 +0000382 uint32_t fwk_msg = ffa_fwk_msg(*args);
383 uint8_t fwk_msg_func_id = fwk_msg & SPMD_FWK_MSG_FUNC_MASK;
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100384
385 /*
Daniel Boulbyefa381f2022-01-18 14:49:40 +0000386 * Check if direct message request is originating from the SPMD,
387 * directed to the SPMC and the message is a framework message.
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100388 */
389 if (!(sender == HF_SPMD_VM_ID && receiver == HF_SPMC_VM_ID &&
Daniel Boulbyefa381f2022-01-18 14:49:40 +0000390 current_vm_id == HF_OTHER_WORLD_ID) ||
391 (fwk_msg & SPMD_FWK_MSG_BIT) == 0) {
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100392 return false;
393 }
394
Daniel Boulbyefa381f2022-01-18 14:49:40 +0000395 switch (fwk_msg_func_id) {
396 case SPMD_FWK_MSG_PSCI: {
397 switch (args->arg3) {
398 case PSCI_CPU_OFF: {
399 struct vm *vm = vm_get_first_boot();
400 struct vcpu *vcpu =
401 vm_get_vcpu(vm, vcpu_index(current));
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100402
Daniel Boulbyefa381f2022-01-18 14:49:40 +0000403 /*
404 * TODO: the PM event reached the SPMC. In a later
405 * iteration, the PM event can be passed to the SP by
406 * resuming it.
407 */
408 *args = (struct ffa_value){
409 .func = FFA_MSG_SEND_DIRECT_RESP_32,
410 .arg1 = ((uint64_t)HF_SPMC_VM_ID << 16) |
411 HF_SPMD_VM_ID,
412 .arg2 = 0U};
413
414 dlog_verbose("%s cpu off notification cpuid %#x\n",
415 __func__, vcpu->cpu->id);
416 cpu_off(vcpu->cpu);
417 break;
418 }
419 default:
420 dlog_verbose("%s PSCI message not handled %#x\n",
421 __func__, args->arg3);
422 return false;
423 }
424 }
425 case SPMD_FWK_MSG_FFA_VERSION_REQ: {
426 struct ffa_value ret = api_ffa_version(current, args->arg3);
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100427 *args = (struct ffa_value){
428 .func = FFA_MSG_SEND_DIRECT_RESP_32,
429 .arg1 = ((uint64_t)HF_SPMC_VM_ID << 16) | HF_SPMD_VM_ID,
Daniel Boulbyefa381f2022-01-18 14:49:40 +0000430 /* Set bit 31 since this is a framework message. */
431 .arg2 = SPMD_FWK_MSG_BIT |
432 SPMD_FWK_MSG_FFA_VERSION_RESP,
433 .arg3 = ret.func};
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100434 break;
435 }
436 default:
Daniel Boulbyefa381f2022-01-18 14:49:40 +0000437 dlog_verbose("%s message not handled %#x\n", __func__, fwk_msg);
438 *args = (struct ffa_value){
439 .func = FFA_MSG_SEND_DIRECT_RESP_32,
440 .arg1 = ((uint64_t)HF_SPMC_VM_ID << 16) | HF_SPMD_VM_ID,
441 /* Set bit 31 since this is a framework message. */
442 .arg2 = SPMD_FWK_MSG_BIT | fwk_msg_func_id};
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100443 }
444
445 return true;
446}
447
J-Alvesb37fd082020-10-22 12:29:21 +0100448#endif
449
Andrew Scullae9962e2019-10-03 16:51:16 +0100450/**
451 * Checks whether to block an SMC being forwarded from a VM.
452 */
453static bool smc_is_blocked(const struct vm *vm, uint32_t func)
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +0100454{
Andrew Scullae9962e2019-10-03 16:51:16 +0100455 bool block_by_default = !vm->smc_whitelist.permissive;
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100456
Andrew Scullae9962e2019-10-03 16:51:16 +0100457 for (size_t i = 0; i < vm->smc_whitelist.smc_count; ++i) {
458 if (func == vm->smc_whitelist.smcs[i]) {
459 return false;
460 }
461 }
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100462
Olivier Deprezf92e5d42020-11-13 16:00:54 +0100463 dlog_notice("SMC %#010x attempted from VM %#x, blocked=%u\n", func,
Andrew Walbran17eebf92020-02-05 16:35:49 +0000464 vm->id, block_by_default);
Andrew Scullae9962e2019-10-03 16:51:16 +0100465
466 /* Access is still allowed in permissive mode. */
467 return block_by_default;
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100468}
469
470/**
Andrew Scullae9962e2019-10-03 16:51:16 +0100471 * Applies SMC access control according to manifest and forwards the call if
472 * access is granted.
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100473 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100474static void smc_forwarder(const struct vm *vm, struct ffa_value *args)
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100475{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100476 struct ffa_value ret;
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000477 uint32_t client_id = vm->id;
478 uintreg_t arg7 = args->arg7;
Andrew Scullae9962e2019-10-03 16:51:16 +0100479
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000480 if (smc_is_blocked(vm, args->func)) {
481 args->func = SMCCC_ERROR_UNKNOWN;
Andrew Scullae9962e2019-10-03 16:51:16 +0100482 return;
483 }
484
Andrew Walbran0dd67ff2019-09-12 16:38:50 +0100485 /*
486 * Set the Client ID but keep the existing Secure OS ID and anything
487 * else (currently unspecified) that the client may have passed in the
488 * upper bits.
489 */
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000490 args->arg7 = client_id | (arg7 & ~CLIENT_ID_MASK);
Andrew Scull07b6bd32019-12-12 17:19:55 +0000491 ret = smc_forward(args->func, args->arg1, args->arg2, args->arg3,
492 args->arg4, args->arg5, args->arg6, args->arg7);
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100493
Andrew Scullae9962e2019-10-03 16:51:16 +0100494 /*
Fuad Tabbab0ef2a42019-12-19 11:19:25 +0000495 * Preserve the value passed by the caller, rather than the generated
496 * client_id. Note that this would also overwrite any return value that
Andrew Scullae9962e2019-10-03 16:51:16 +0100497 * may be in x7, but the SMCs that we are forwarding are legacy calls
498 * from before SMCCC 1.2 so won't have more than 4 return values anyway.
499 */
Andrew Scull07b6bd32019-12-12 17:19:55 +0000500 ret.arg7 = arg7;
501
502 plat_smc_post_forward(*args, &ret);
503
504 *args = ret;
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100505}
506
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200507/**
508 * In the normal world, ffa_handler is always called from the virtual FF-A
Andrew Walbran8e8bf3f2020-10-07 17:58:20 +0100509 * instance (from a VM in EL1). In the secure world, ffa_handler may be called
510 * from the virtual (a secure partition in S-EL1) or physical FF-A instance
511 * (from the normal world via EL3). The function returns true when the call is
512 * handled. The *next pointer is updated to the next vCPU to run, which might be
513 * the 'other world' vCPU if the call originated from the virtual FF-A instance
514 * and has to be forwarded down to EL3, or left as is to resume the current
515 * vCPU.
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200516 */
517static bool ffa_handler(struct ffa_value *args, struct vcpu *current,
518 struct vcpu **next)
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100519{
J-Alvesbc3de8b2020-12-07 14:32:04 +0000520 uint32_t func = args->func;
Andrew Walbrane7ad3c02019-12-24 17:03:04 +0000521
Jose Marinhoc0f4ff22019-10-09 10:37:42 +0100522 /*
523 * NOTE: When adding new methods to this handler update
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100524 * api_ffa_features accordingly.
Jose Marinhoc0f4ff22019-10-09 10:37:42 +0100525 */
Andrew Walbrane7ad3c02019-12-24 17:03:04 +0000526 switch (func) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100527 case FFA_VERSION_32:
Daniel Boulbybaeaf2e2021-12-09 11:42:36 +0000528 *args = api_ffa_version(current, args->arg1);
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100529 return true;
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100530 case FFA_PARTITION_INFO_GET_32: {
531 struct ffa_uuid uuid;
532
533 ffa_uuid_init(args->arg1, args->arg2, args->arg3, args->arg4,
534 &uuid);
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000535 *args = api_ffa_partition_info_get(current, &uuid, args->arg5);
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100536 return true;
537 }
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100538 case FFA_ID_GET_32:
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200539 *args = api_ffa_id_get(current);
Andrew Walbrand230f662019-10-07 18:03:36 +0100540 return true;
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +0000541 case FFA_SPM_ID_GET_32:
542 *args = api_ffa_spm_id_get();
543 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100544 case FFA_FEATURES_32:
545 *args = api_ffa_features(args->arg1);
Jose Marinhoc0f4ff22019-10-09 10:37:42 +0100546 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100547 case FFA_RX_RELEASE_32:
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200548 *args = api_ffa_rx_release(current, next);
Andrew Walbran8a0f5ca2019-11-05 13:12:23 +0000549 return true;
J-Alvesbc3de8b2020-12-07 14:32:04 +0000550 case FFA_RXTX_MAP_64:
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100551 *args = api_ffa_rxtx_map(ipa_init(args->arg1),
552 ipa_init(args->arg2), args->arg3,
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200553 current, next);
Andrew Walbranbfffb0f2019-11-05 14:02:34 +0000554 return true;
Daniel Boulby9e420ca2021-07-07 15:03:49 +0100555 case FFA_RXTX_UNMAP_32:
556 *args = api_ffa_rxtx_unmap(args->arg1, current);
557 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100558 case FFA_YIELD_32:
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200559 *args = api_yield(current, next);
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100560 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100561 case FFA_MSG_SEND_32:
J-Alvesd6f4e142021-03-05 13:33:59 +0000562 *args = api_ffa_msg_send(ffa_sender(*args), ffa_receiver(*args),
563 ffa_msg_send_size(*args),
564 ffa_msg_send_attributes(*args),
565 current, next);
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100566 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100567 case FFA_MSG_WAIT_32:
Maksims Svecovs08bb5c12021-07-20 15:46:31 +0100568 if (args->arg1 != 0U || args->arg2 != 0U || args->arg3 != 0U ||
569 args->arg4 != 0U || args->arg5 != 0U || args->arg6 != 0U ||
570 args->arg7 != 0U) {
571 *args = ffa_error(FFA_INVALID_PARAMETERS);
572 return true;
573 }
J-Alvesb37fd082020-10-22 12:29:21 +0100574#if SECURE_WORLD == 1
575 if (sp_boot_next(current, next, args)) {
576 return true;
577 }
Madhukar Pappireddyed4ab942021-08-03 14:22:53 -0500578
579 /* Refer FF-A v1.1 Beta0 section 7.4 bullet 2. */
580 if (current->processing_secure_interrupt) {
Daniel Boulbyc07883e2021-11-26 14:10:41 +0000581 CHECK(current->state == VCPU_STATE_WAITING);
Madhukar Pappireddyed4ab942021-08-03 14:22:53 -0500582
583 /* Secure interrupt pre-empted normal world. */
584 if (current->preempted_vcpu->vm->id ==
585 HF_OTHER_WORLD_ID) {
586 *args = plat_ffa_normal_world_resume(current,
587 next);
588 } else {
589 /*
590 * Secure interrupt pre-empted an SP. Resume it.
591 */
592 *args = plat_ffa_preempted_vcpu_resume(current,
593 next);
594 }
595 return true;
596 }
J-Alvesb37fd082020-10-22 12:29:21 +0100597#endif
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200598 *args = api_ffa_msg_recv(true, current, next);
Andrew Walbran0de4f162019-09-03 16:44:20 +0100599 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100600 case FFA_MSG_POLL_32:
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200601 *args = api_ffa_msg_recv(false, current, next);
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100602 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100603 case FFA_RUN_32:
604 *args = api_ffa_run(ffa_vm_id(*args), ffa_vcpu_index(*args),
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200605 current, next);
Andrew Walbranf0c314d2019-10-02 14:24:26 +0100606 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100607 case FFA_MEM_DONATE_32:
608 case FFA_MEM_LEND_32:
609 case FFA_MEM_SHARE_32:
610 *args = api_ffa_mem_send(func, args->arg1, args->arg2,
611 ipa_init(args->arg3), args->arg4,
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200612 current);
Andrew Walbran82d6d152019-12-24 15:02:06 +0000613 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100614 case FFA_MEM_RETRIEVE_REQ_32:
615 *args = api_ffa_mem_retrieve_req(args->arg1, args->arg2,
616 ipa_init(args->arg3),
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200617 args->arg4, current);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +0000618 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100619 case FFA_MEM_RELINQUISH_32:
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200620 *args = api_ffa_mem_relinquish(current);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +0000621 return true;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100622 case FFA_MEM_RECLAIM_32:
623 *args = api_ffa_mem_reclaim(
Andrew Walbran1bbe9402020-04-30 16:47:13 +0100624 ffa_assemble_handle(args->arg1, args->arg2), args->arg3,
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200625 current);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +0000626 return true;
Andrew Walbranca808b12020-05-15 17:22:28 +0100627 case FFA_MEM_FRAG_RX_32:
628 *args = api_ffa_mem_frag_rx(ffa_frag_handle(*args), args->arg3,
629 (args->arg4 >> 16) & 0xffff,
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200630 current);
Andrew Walbranca808b12020-05-15 17:22:28 +0100631 return true;
632 case FFA_MEM_FRAG_TX_32:
633 *args = api_ffa_mem_frag_tx(ffa_frag_handle(*args), args->arg3,
634 (args->arg4 >> 16) & 0xffff,
Olivier Deprezf33a6c72020-06-09 18:28:45 +0200635 current);
Andrew Walbranca808b12020-05-15 17:22:28 +0100636 return true;
J-Alvesbc3de8b2020-12-07 14:32:04 +0000637 case FFA_MSG_SEND_DIRECT_REQ_64:
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100638 case FFA_MSG_SEND_DIRECT_REQ_32: {
639#if SECURE_WORLD == 1
640 if (spmd_handler(args, current)) {
641 return true;
642 }
643#endif
J-Alvesd6f4e142021-03-05 13:33:59 +0000644 *args = api_ffa_msg_send_direct_req(ffa_sender(*args),
645 ffa_receiver(*args), *args,
646 current, next);
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000647 return true;
Max Shvetsov1ae74f12020-09-18 13:52:20 +0100648 }
J-Alvesbc3de8b2020-12-07 14:32:04 +0000649 case FFA_MSG_SEND_DIRECT_RESP_64:
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000650 case FFA_MSG_SEND_DIRECT_RESP_32:
J-Alvesd6f4e142021-03-05 13:33:59 +0000651 *args = api_ffa_msg_send_direct_resp(ffa_sender(*args),
652 ffa_receiver(*args), *args,
653 current, next);
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000654 return true;
J-Alvesbc3de8b2020-12-07 14:32:04 +0000655 case FFA_SECONDARY_EP_REGISTER_64:
Olivier Deprezd614d322021-06-18 15:21:00 +0200656 /*
657 * DEN0077A FF-A v1.1 Beta0 section 18.3.2.1.1
658 * The callee must return NOT_SUPPORTED if this function is
659 * invoked by a caller that implements version v1.0 of
660 * the Framework.
661 */
Max Shvetsov40108e72020-08-27 12:39:50 +0100662 *args = api_ffa_secondary_ep_register(ipa_init(args->arg1),
663 current);
664 return true;
J-Alvesa0f317d2021-06-09 13:31:59 +0100665 case FFA_NOTIFICATION_BITMAP_CREATE_32:
666 *args = api_ffa_notification_bitmap_create(
667 (ffa_vm_id_t)args->arg1, (ffa_vcpu_count_t)args->arg2,
668 current);
669 return true;
670 case FFA_NOTIFICATION_BITMAP_DESTROY_32:
671 *args = api_ffa_notification_bitmap_destroy(
672 (ffa_vm_id_t)args->arg1, current);
673 return true;
J-Alvesc003a7a2021-03-18 13:06:53 +0000674 case FFA_NOTIFICATION_BIND_32:
675 *args = api_ffa_notification_update_bindings(
676 ffa_sender(*args), ffa_receiver(*args), args->arg2,
677 ffa_notifications_bitmap(args->arg3, args->arg4), true,
678 current);
679 return true;
680 case FFA_NOTIFICATION_UNBIND_32:
681 *args = api_ffa_notification_update_bindings(
682 ffa_sender(*args), ffa_receiver(*args), 0,
683 ffa_notifications_bitmap(args->arg3, args->arg4), false,
684 current);
685 return true;
Raghu Krishnamurthyea6d25f2021-09-14 15:27:06 -0700686 case FFA_MEM_PERM_SET_32:
687 case FFA_MEM_PERM_SET_64:
688 *args = api_ffa_mem_perm_set(va_init(args->arg1), args->arg2,
689 args->arg3, current);
690 return true;
691 case FFA_MEM_PERM_GET_32:
692 case FFA_MEM_PERM_GET_64:
693 *args = api_ffa_mem_perm_get(va_init(args->arg1), current);
694 return true;
J-Alvesaa79c012021-07-09 14:29:45 +0100695 case FFA_NOTIFICATION_SET_32:
696 *args = api_ffa_notification_set(
697 ffa_sender(*args), ffa_receiver(*args), args->arg2,
698 ffa_notifications_bitmap(args->arg3, args->arg4),
699 current);
700 return true;
701 case FFA_NOTIFICATION_GET_32:
702 *args = api_ffa_notification_get(
J-Alvesbe6e3032021-11-30 14:54:12 +0000703 ffa_receiver(*args), ffa_notifications_get_vcpu(*args),
704 args->arg2, current);
J-Alvesaa79c012021-07-09 14:29:45 +0100705 return true;
J-Alvesc8e8a222021-06-08 17:33:52 +0100706 case FFA_NOTIFICATION_INFO_GET_64:
707 *args = api_ffa_notification_info_get(current);
708 return true;
Madhukar Pappireddy9e7a11f2021-08-03 13:59:42 -0500709 case FFA_INTERRUPT_32:
710 *args = plat_ffa_delegate_ffa_interrupt(current, next);
711 return true;
Andrew Walbranf0c314d2019-10-02 14:24:26 +0100712 }
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100713
714 return false;
715}
716
717/**
Manish Pandey35e452f2021-02-18 21:36:34 +0000718 * Set or clear VI/VF bits according to pending interrupts.
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100719 */
Manish Pandey35e452f2021-02-18 21:36:34 +0000720static void vcpu_update_virtual_interrupts(struct vcpu *next)
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100721{
Manish Pandey35e452f2021-02-18 21:36:34 +0000722 struct vcpu_locked vcpu_locked;
723
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100724 if (next == NULL) {
Raghu Krishnamurthydce438c2021-02-28 15:01:03 -0800725 if (current()->vm->el0_partition) {
726 return;
727 }
728
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100729 /*
730 * Not switching vCPUs, set the bit for the current vCPU
731 * directly in the register.
732 */
Manish Pandey35e452f2021-02-18 21:36:34 +0000733 vcpu_locked = vcpu_lock(current());
734 set_virtual_irq_current(
735 vcpu_interrupt_irq_count_get(vcpu_locked) > 0);
736 set_virtual_fiq_current(
737 vcpu_interrupt_fiq_count_get(vcpu_locked) > 0);
738 vcpu_unlock(&vcpu_locked);
Olivier Deprez3caed1c2021-02-05 12:07:36 +0100739 } else if (vm_id_is_current_world(next->vm->id)) {
Raghu Krishnamurthydce438c2021-02-28 15:01:03 -0800740 if (next->vm->el0_partition) {
741 return;
742 }
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100743 /*
744 * About to switch vCPUs, set the bit for the vCPU to which we
745 * are switching in the saved copy of the register.
746 */
Manish Pandey35e452f2021-02-18 21:36:34 +0000747
748 vcpu_locked = vcpu_lock(next);
749 set_virtual_irq(&next->regs,
750 vcpu_interrupt_irq_count_get(vcpu_locked) > 0);
751 set_virtual_fiq(&next->regs,
752 vcpu_interrupt_fiq_count_get(vcpu_locked) > 0);
753 vcpu_unlock(&vcpu_locked);
Andrew Walbran7d28d9a2019-08-30 16:24:58 +0100754 }
755}
756
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100757/**
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100758 * Handles PSCI and FF-A calls and writes the return value back to the registers
759 * of the vCPU. This is shared between smc_handler and hvc_handler.
760 *
761 * Returns true if the call was handled.
762 */
763static bool hvc_smc_handler(struct ffa_value args, struct vcpu *vcpu,
764 struct vcpu **next)
765{
Olivier Deprez3caed1c2021-02-05 12:07:36 +0100766 /* Do not expect PSCI calls emitted from within the secure world. */
767#if SECURE_WORLD == 0
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100768 if (psci_handler(vcpu, args.func, args.arg1, args.arg2, args.arg3,
769 &vcpu->regs.r[0], next)) {
770 return true;
771 }
Olivier Deprez3caed1c2021-02-05 12:07:36 +0100772#endif
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100773
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100774 if (ffa_handler(&args, vcpu, next)) {
J-Alves13394022021-06-30 13:48:49 +0100775#if SECURE_WORLD == 1
776 /*
777 * If giving back execution to the NWd, check if the Schedule
778 * Receiver Interrupt has been delayed, and trigger it if so.
779 */
780 if ((*next != NULL && (*next)->vm->id == HF_OTHER_WORLD_ID) ||
781 (*next == NULL && vcpu->vm->id == HF_OTHER_WORLD_ID)) {
782 plat_ffa_sri_trigger_if_delayed(vcpu->cpu);
783 }
784#endif
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100785 arch_regs_set_retval(&vcpu->regs, args);
Manish Pandey35e452f2021-02-18 21:36:34 +0000786 vcpu_update_virtual_interrupts(*next);
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100787 return true;
788 }
789
790 return false;
791}
792
793/**
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100794 * Processes SMC instruction calls.
795 */
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000796static struct vcpu *smc_handler(struct vcpu *vcpu)
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100797{
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100798 struct ffa_value args = arch_regs_get_args(&vcpu->regs);
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000799 struct vcpu *next = NULL;
Fuad Tabba8176e3e2019-08-01 10:40:36 +0100800
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100801 if (hvc_smc_handler(args, vcpu, &next)) {
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000802 return next;
Andrew Walbran4579f7002019-08-30 16:24:58 +0100803 }
804
Andrew Walbran85c37662019-12-05 16:29:33 +0000805 switch (args.func & ~SMCCC_CONVENTION_MASK) {
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +0100806 case HF_DEBUG_LOG:
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000807 vcpu->regs.r[0] = api_debug_log(args.arg1, vcpu);
Andrew Scull07b6bd32019-12-12 17:19:55 +0000808 return NULL;
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +0100809 }
810
Andrew Walbran9dadaf22019-12-05 16:50:55 +0000811 smc_forwarder(vcpu->vm, &args);
812 arch_regs_set_retval(&vcpu->regs, args);
Andrew Scull07b6bd32019-12-12 17:19:55 +0000813 return NULL;
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +0100814}
815
Olivier Deprez3caed1c2021-02-05 12:07:36 +0100816#if SECURE_WORLD == 1
817
818/**
819 * Called from other_world_loop return from SMC.
820 * Processes SMC calls originating from the NWd.
821 */
822struct vcpu *smc_handler_from_nwd(struct vcpu *vcpu)
823{
824 struct ffa_value args = arch_regs_get_args(&vcpu->regs);
825 struct vcpu *next = NULL;
826
827 if (hvc_smc_handler(args, vcpu, &next)) {
828 return next;
829 }
830
831 /*
832 * If the SMC emitted by the normal world is not handled in the secure
833 * world then return an error stating such ABI is not supported. Only
834 * FF-A calls are supported. We cannot return SMCCC_ERROR_UNKNOWN
835 * directly because the SPMD smc handler would not recognize it as a
836 * standard FF-A call returning from the SPMC.
837 */
838 arch_regs_set_retval(&vcpu->regs, ffa_error(FFA_NOT_SUPPORTED));
839
840 return NULL;
841}
842
843#endif
844
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000845/*
846 * Exception vector offsets.
847 * See Arm Architecture Reference Manual Armv8-A, D1.10.2.
848 */
849
850/**
851 * Offset for synchronous exceptions at current EL with SPx.
852 */
853#define OFFSET_CURRENT_SPX UINT64_C(0x200)
854
855/**
856 * Offset for synchronous exceptions at lower EL using AArch64.
857 */
858#define OFFSET_LOWER_EL_64 UINT64_C(0x400)
859
860/**
861 * Offset for synchronous exceptions at lower EL using AArch32.
862 */
863#define OFFSET_LOWER_EL_32 UINT64_C(0x600)
864
865/**
866 * Returns the address for the exception handler at EL1.
867 */
868static uintreg_t get_el1_exception_handler_addr(const struct vcpu *vcpu)
869{
Raghu Krishnamurthy32626c92021-01-17 09:57:29 -0800870 uintreg_t base_addr = has_vhe_support() ? read_msr(MSR_VBAR_EL12)
871 : read_msr(vbar_el1);
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000872 uintreg_t pe_mode = vcpu->regs.spsr & PSR_PE_MODE_MASK;
873 bool is_arch32 = vcpu->regs.spsr & PSR_ARCH_MODE_32;
874
875 if (pe_mode == PSR_PE_MODE_EL0T) {
876 if (is_arch32) {
877 base_addr += OFFSET_LOWER_EL_32;
878 } else {
879 base_addr += OFFSET_LOWER_EL_64;
880 }
881 } else {
882 CHECK(!is_arch32);
883 base_addr += OFFSET_CURRENT_SPX;
884 }
885
886 return base_addr;
887}
888
889/**
Fuad Tabbab86325a2020-01-10 13:38:15 +0000890 * Injects an exception with the specified Exception Syndrom Register value into
891 * the EL1.
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000892 *
893 * NOTE: This function assumes that the lazy registers haven't been saved, and
894 * writes to the lazy registers of the CPU directly instead of the vCPU.
895 */
Fuad Tabbac3847c72020-08-11 09:32:25 +0100896static void inject_el1_exception(struct vcpu *vcpu, uintreg_t esr_el1_value,
897 uintreg_t far_el1_value)
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000898{
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000899 uintreg_t handler_address = get_el1_exception_handler_addr(vcpu);
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000900
901 /* Update the CPU state to inject the exception. */
Raghu Krishnamurthy32626c92021-01-17 09:57:29 -0800902 if (has_vhe_support()) {
903 write_msr(MSR_ESR_EL12, esr_el1_value);
904 write_msr(MSR_FAR_EL12, far_el1_value);
905 write_msr(MSR_ELR_EL12, vcpu->regs.pc);
906 write_msr(MSR_SPSR_EL12, vcpu->regs.spsr);
907 } else {
908 write_msr(esr_el1, esr_el1_value);
909 write_msr(far_el1, far_el1_value);
910 write_msr(elr_el1, vcpu->regs.pc);
911 write_msr(spsr_el1, vcpu->regs.spsr);
912 }
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000913
914 /*
915 * Mask (disable) interrupts and run in EL1h mode.
916 * EL1h mode is used because by default, taking an exception selects the
917 * stack pointer for the target Exception level. The software can change
918 * that later in the handler if needed.
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000919 */
920 vcpu->regs.spsr = PSR_D | PSR_A | PSR_I | PSR_F | PSR_PE_MODE_EL1H;
921
922 /* Transfer control to the exception hander. */
923 vcpu->regs.pc = handler_address;
Fuad Tabbab86325a2020-01-10 13:38:15 +0000924}
925
926/**
927 * Injects a Data Abort exception (same exception level).
928 */
929static void inject_el1_data_abort_exception(struct vcpu *vcpu,
Fuad Tabbac3847c72020-08-11 09:32:25 +0100930 uintreg_t esr_el2,
931 uintreg_t far_el2)
Fuad Tabbab86325a2020-01-10 13:38:15 +0000932{
933 /*
934 * ISS encoding remains the same, but the EC is changed to reflect
935 * where the exception came from.
936 * See Arm Architecture Reference Manual Armv8-A, pages D13-2943/2982.
937 */
938 uintreg_t esr_el1_value = GET_ESR_ISS(esr_el2) | GET_ESR_IL(esr_el2) |
939 (EC_DATA_ABORT_SAME_EL << ESR_EC_OFFSET);
940
Olivier Deprezf92e5d42020-11-13 16:00:54 +0100941 dlog_notice("Injecting Data Abort exception into VM %#x.\n",
Andrew Walbran17eebf92020-02-05 16:35:49 +0000942 vcpu->vm->id);
Fuad Tabbab86325a2020-01-10 13:38:15 +0000943
Fuad Tabbac3847c72020-08-11 09:32:25 +0100944 inject_el1_exception(vcpu, esr_el1_value, far_el2);
Fuad Tabbab86325a2020-01-10 13:38:15 +0000945}
946
947/**
948 * Injects a Data Abort exception (same exception level).
949 */
950static void inject_el1_instruction_abort_exception(struct vcpu *vcpu,
Fuad Tabbac3847c72020-08-11 09:32:25 +0100951 uintreg_t esr_el2,
952 uintreg_t far_el2)
Fuad Tabbab86325a2020-01-10 13:38:15 +0000953{
954 /*
955 * ISS encoding remains the same, but the EC is changed to reflect
956 * where the exception came from.
957 * See Arm Architecture Reference Manual Armv8-A, pages D13-2941/2980.
958 */
959 uintreg_t esr_el1_value =
960 GET_ESR_ISS(esr_el2) | GET_ESR_IL(esr_el2) |
961 (EC_INSTRUCTION_ABORT_SAME_EL << ESR_EC_OFFSET);
962
Olivier Deprezf92e5d42020-11-13 16:00:54 +0100963 dlog_notice("Injecting Instruction Abort exception into VM %#x.\n",
Andrew Walbran17eebf92020-02-05 16:35:49 +0000964 vcpu->vm->id);
Fuad Tabbab86325a2020-01-10 13:38:15 +0000965
Fuad Tabbac3847c72020-08-11 09:32:25 +0100966 inject_el1_exception(vcpu, esr_el1_value, far_el2);
Fuad Tabbab86325a2020-01-10 13:38:15 +0000967}
968
969/**
970 * Injects an exception with an unknown reason into the EL1.
971 */
972static void inject_el1_unknown_exception(struct vcpu *vcpu, uintreg_t esr_el2)
973{
974 uintreg_t esr_el1_value =
975 GET_ESR_IL(esr_el2) | (EC_UNKNOWN << ESR_EC_OFFSET);
Fuad Tabbac3847c72020-08-11 09:32:25 +0100976
977 /*
978 * The value of the far_el2 register is UNKNOWN in this case,
979 * therefore, don't propagate it to avoid leaking sensitive information.
980 */
981 uintreg_t far_el1_value = 0;
Fuad Tabbab86325a2020-01-10 13:38:15 +0000982 char *direction_str;
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000983
984 direction_str = ISS_IS_READ(esr_el2) ? "read" : "write";
Andrew Walbran17eebf92020-02-05 16:35:49 +0000985 dlog_notice(
986 "Trapped access to system register %s: op0=%d, op1=%d, crn=%d, "
987 "crm=%d, op2=%d, rt=%d.\n",
988 direction_str, GET_ISS_OP0(esr_el2), GET_ISS_OP1(esr_el2),
989 GET_ISS_CRN(esr_el2), GET_ISS_CRM(esr_el2),
990 GET_ISS_OP2(esr_el2), GET_ISS_RT(esr_el2));
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000991
Olivier Deprezf92e5d42020-11-13 16:00:54 +0100992 dlog_notice("Injecting Unknown Reason exception into VM %#x.\n",
Andrew Walbran17eebf92020-02-05 16:35:49 +0000993 vcpu->vm->id);
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000994
Fuad Tabbac3847c72020-08-11 09:32:25 +0100995 inject_el1_exception(vcpu, esr_el1_value, far_el1_value);
Fuad Tabbaa48d1222019-12-09 15:42:32 +0000996}
997
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +0100998static struct vcpu *hvc_handler(struct vcpu *vcpu)
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +0100999{
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +01001000 struct ffa_value args = arch_regs_get_args(&vcpu->regs);
Andrew Walbran59182d52019-09-23 17:55:39 +01001001 struct vcpu *next = NULL;
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001002
Andrew Walbrand8d3f5d2020-10-07 18:23:01 +01001003 if (hvc_smc_handler(args, vcpu, &next)) {
Andrew Walbran59182d52019-09-23 17:55:39 +01001004 return next;
Andrew Walbran7d28d9a2019-08-30 16:24:58 +01001005 }
Jose Marinhofc0b2b62019-06-06 11:18:45 +01001006
Andrew Walbran7f920af2019-09-03 17:09:30 +01001007 switch (args.func) {
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001008 case HF_MAILBOX_WRITABLE_GET:
Andrew Walbran59182d52019-09-23 17:55:39 +01001009 vcpu->regs.r[0] = api_mailbox_writable_get(vcpu);
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001010 break;
1011
1012 case HF_MAILBOX_WAITER_GET:
Andrew Walbran7f920af2019-09-03 17:09:30 +01001013 vcpu->regs.r[0] = api_mailbox_waiter_get(args.arg1, vcpu);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001014 break;
1015
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +00001016 case HF_INTERRUPT_ENABLE:
Manish Pandey35e452f2021-02-18 21:36:34 +00001017 vcpu->regs.r[0] = api_interrupt_enable(args.arg1, args.arg2,
1018 args.arg3, vcpu);
Andrew Walbran318f5732018-11-20 16:23:42 +00001019 break;
1020
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +00001021 case HF_INTERRUPT_GET:
Andrew Walbran59182d52019-09-23 17:55:39 +01001022 vcpu->regs.r[0] = api_interrupt_get(vcpu);
Andrew Walbran318f5732018-11-20 16:23:42 +00001023 break;
1024
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +00001025 case HF_INTERRUPT_INJECT:
Andrew Walbran7f920af2019-09-03 17:09:30 +01001026 vcpu->regs.r[0] = api_interrupt_inject(args.arg1, args.arg2,
1027 args.arg3, vcpu, &next);
Andrew Walbran318f5732018-11-20 16:23:42 +00001028 break;
1029
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +01001030 case HF_DEBUG_LOG:
Andrew Walbran7f920af2019-09-03 17:09:30 +01001031 vcpu->regs.r[0] = api_debug_log(args.arg1, vcpu);
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +01001032 break;
1033
Madhukar Pappireddyf675bb62021-08-03 12:57:10 -05001034#if SECURE_WORLD == 1
1035 case HF_INTERRUPT_DEACTIVATE:
1036 vcpu->regs.r[0] = plat_ffa_interrupt_deactivate(
1037 args.arg1, args.arg2, vcpu);
1038 break;
1039#endif
1040
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001041 default:
Andrew Walbran59182d52019-09-23 17:55:39 +01001042 vcpu->regs.r[0] = SMCCC_ERROR_UNKNOWN;
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001043 }
1044
Manish Pandey35e452f2021-02-18 21:36:34 +00001045 vcpu_update_virtual_interrupts(next);
Andrew Walbran3d84a262018-12-13 14:41:19 +00001046
Andrew Walbran59182d52019-09-23 17:55:39 +01001047 return next;
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001048}
1049
Wedson Almeida Filho87009642018-07-02 10:20:07 +01001050struct vcpu *irq_lower(void)
1051{
Madhukar Pappireddycbecc962021-08-03 13:11:57 -05001052#if SECURE_WORLD == 1
1053 struct vcpu *next = NULL;
1054
1055 plat_ffa_secure_interrupt(current(), &next);
1056
1057 /*
1058 * Since we are in interrupt context, set the bit for the
1059 * next vCPU directly in the register.
1060 */
1061 vcpu_update_virtual_interrupts(next);
1062
1063 return next;
1064#else
Andrew Scull9726c252019-01-23 13:44:19 +00001065 /*
1066 * Switch back to primary VM, interrupts will be handled there.
1067 *
1068 * If the VM has aborted, this vCPU will be aborted when the scheduler
1069 * tries to run it again. This means the interrupt will not be delayed
1070 * by the aborted VM.
1071 *
1072 * TODO: Only switch when the interrupt isn't for the current VM.
1073 */
Andrew Scull33fecd32019-01-08 14:48:27 +00001074 return api_preempt(current());
Madhukar Pappireddycbecc962021-08-03 13:11:57 -05001075#endif
Wedson Almeida Filho87009642018-07-02 10:20:07 +01001076}
1077
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +00001078struct vcpu *fiq_lower(void)
1079{
Manish Pandeya5f39fb2020-09-11 09:47:11 +01001080#if SECURE_WORLD == 1
1081 struct vcpu_locked current_locked;
1082 struct vcpu *current_vcpu = current();
Daniel Boulby4dd3f532021-09-21 09:57:08 +01001083 int64_t ret;
Manish Pandeya5f39fb2020-09-11 09:47:11 +01001084
Maksims Svecovs9ddf86a2021-05-06 17:17:21 +01001085 if (plat_ffa_vm_managed_exit_supported(current_vcpu->vm)) {
Madhukar Pappireddydd6fdfb2021-12-14 12:30:36 -06001086 uint8_t pmr = plat_interrupts_get_priority_mask();
1087
Manish Pandeya5f39fb2020-09-11 09:47:11 +01001088 /* Mask all interrupts */
1089 plat_interrupts_set_priority_mask(0x0);
1090
1091 current_locked = vcpu_lock(current_vcpu);
Madhukar Pappireddydd6fdfb2021-12-14 12:30:36 -06001092 current_vcpu->priority_mask = pmr;
Manish Pandeya5f39fb2020-09-11 09:47:11 +01001093 ret = api_interrupt_inject_locked(current_locked,
1094 HF_MANAGED_EXIT_INTID,
1095 current_vcpu, NULL);
1096 if (ret != 0) {
1097 panic("Failed to inject managed exit interrupt\n");
1098 }
1099
1100 /* Entering managed exit sequence. */
1101 current_vcpu->processing_managed_exit = true;
1102
1103 vcpu_unlock(&current_locked);
1104
1105 /*
1106 * Since we are in interrupt context, set the bit for the
1107 * current vCPU directly in the register.
1108 */
1109 vcpu_update_virtual_interrupts(NULL);
1110
1111 /* Resume current vCPU. */
1112 return NULL;
1113 }
Manish Pandeya5f39fb2020-09-11 09:47:11 +01001114 /*
1115 * SP does not support managed exit. It is pre-empted and execution
Madhukar Pappireddycbecc962021-08-03 13:11:57 -05001116 * handed back to the normal world through the FFA_INTERRUPT ABI. The
1117 * api_preempt() call is equivalent to calling api_switch_to_other_world
1118 * for current vCPU passing FFA_INTERRUPT. The SP can be resumed later
1119 * by FFA_RUN.
Manish Pandeya5f39fb2020-09-11 09:47:11 +01001120 */
Madhukar Pappireddycbecc962021-08-03 13:11:57 -05001121 return api_preempt(current_vcpu);
Manish Pandeya5f39fb2020-09-11 09:47:11 +01001122
Madhukar Pappireddycbecc962021-08-03 13:11:57 -05001123#else
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +00001124 return irq_lower();
Madhukar Pappireddycbecc962021-08-03 13:11:57 -05001125#endif
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +00001126}
1127
Fuad Tabbad1d67982020-01-08 11:28:29 +00001128noreturn struct vcpu *serr_lower(void)
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +00001129{
Fuad Tabbad1d67982020-01-08 11:28:29 +00001130 /*
1131 * SError exceptions should be isolated and handled by the responsible
1132 * VM/exception level. Getting here indicates a bug, that isolation is
1133 * not working, or a processor that does not support ARMv8.2-IESB, in
1134 * which case Hafnium routes SError exceptions to EL2 (here).
1135 */
1136 panic("SError from a lower exception level.");
Wedson Almeida Filho9d5040f2018-10-29 08:41:27 +00001137}
1138
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001139/**
1140 * Initialises a fault info structure. It assumes that an FnV bit exists at
1141 * bit offset 10 of the ESR, and that it is only valid when the bottom 6 bits of
1142 * the ESR (the fault status code) are 010000; this is the case for both
1143 * instruction and data aborts, but not necessarily for other exception reasons.
1144 */
1145static struct vcpu_fault_info fault_info_init(uintreg_t esr,
Andrew Walbran1281ed42019-10-22 17:23:40 +01001146 const struct vcpu *vcpu,
1147 uint32_t mode)
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001148{
1149 uint32_t fsc = esr & 0x3f;
1150 struct vcpu_fault_info r;
Olivier Deprez98ad2d22020-05-20 09:52:43 +02001151 uint64_t hpfar_el2_val;
1152 uint64_t hpfar_el2_fipa;
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001153
1154 r.mode = mode;
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001155 r.pc = va_init(vcpu->regs.pc);
1156
Olivier Deprez98ad2d22020-05-20 09:52:43 +02001157 /* Get Hypervisor IPA Fault Address value. */
1158 hpfar_el2_val = read_msr(hpfar_el2);
1159
1160 /* Extract Faulting IPA. */
1161 hpfar_el2_fipa = (hpfar_el2_val & HPFAR_EL2_FIPA) << 8;
1162
1163#if SECURE_WORLD == 1
1164
1165 /**
1166 * Determine if faulting IPA targets NS space.
1167 * At NS-EL2 hpfar_el2 bit 63 is RES0. At S-EL2, this bit determines if
1168 * the faulting Stage-1 address output is a secure or non-secure IPA.
1169 */
1170 if ((hpfar_el2_val & HPFAR_EL2_NS) != 0) {
1171 r.mode |= MM_MODE_NS;
1172 }
1173
1174#endif
1175
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001176 /*
1177 * Check the FnV bit, which is only valid if dfsc/ifsc is 010000. It
1178 * indicates that we cannot rely on far_el2.
1179 */
Andrew Walbrane52006c2019-10-22 18:01:28 +01001180 if (fsc == 0x10 && esr & (1U << 10)) {
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001181 r.vaddr = va_init(0);
Olivier Deprez98ad2d22020-05-20 09:52:43 +02001182 r.ipaddr = ipa_init(hpfar_el2_fipa);
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001183 } else {
1184 r.vaddr = va_init(read_msr(far_el2));
Olivier Deprez98ad2d22020-05-20 09:52:43 +02001185 r.ipaddr = ipa_init(hpfar_el2_fipa |
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001186 (read_msr(far_el2) & (PAGE_SIZE - 1)));
1187 }
1188
1189 return r;
1190}
1191
Fuad Tabbac3847c72020-08-11 09:32:25 +01001192struct vcpu *sync_lower_exception(uintreg_t esr, uintreg_t far)
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001193{
Wedson Almeida Filho00df6c72018-10-18 11:19:24 +01001194 struct vcpu *vcpu = current();
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001195 struct vcpu_fault_info info;
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001196 struct vcpu *new_vcpu = NULL;
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001197 uintreg_t ec = GET_ESR_EC(esr);
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001198 bool is_el0_partition = vcpu->vm->el0_partition;
Raghu Krishnamurthyf16b2ce2021-11-02 07:48:38 -07001199 bool resume = false;
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001200
Fuad Tabbac76466d2019-09-06 10:42:12 +01001201 switch (ec) {
Fuad Tabbab86325a2020-01-10 13:38:15 +00001202 case EC_WFI_WFE:
Andrew Walbran48196eb2019-03-04 14:56:24 +00001203 /* Skip the instruction. */
Fuad Tabbac76466d2019-09-06 10:42:12 +01001204 vcpu->regs.pc += GET_NEXT_PC_INC(esr);
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001205
1206 /*
1207 * For EL0 partitions, treat both WFI and WFE the same way so
1208 * that FFA_RUN can be called on the partition to resume it. If
1209 * we treat WFI using api_wait_for_interrupt, the VCPU will be
1210 * in blocked waiting for interrupt but we cannot inject
1211 * interrupts into EL0 partitions.
1212 */
1213 if (is_el0_partition) {
1214 api_yield(vcpu, &new_vcpu);
1215 return new_vcpu;
1216 }
1217
Wedson Almeida Filho87009642018-07-02 10:20:07 +01001218 /* Check TI bit of ISS, 0 = WFI, 1 = WFE. */
Andrew Scull7364a8e2018-07-19 15:39:29 +01001219 if (esr & 1) {
Andrew Walbran48196eb2019-03-04 14:56:24 +00001220 /* WFE */
1221 /*
1222 * TODO: consider giving the scheduler more context,
1223 * somehow.
1224 */
Andrew Walbran16075b62019-09-03 17:11:07 +01001225 api_yield(vcpu, &new_vcpu);
Jose Marinho135dff32019-02-28 10:25:57 +00001226 return new_vcpu;
Andrew Scull7364a8e2018-07-19 15:39:29 +01001227 }
Andrew Walbran48196eb2019-03-04 14:56:24 +00001228 /* WFI */
Andrew Scull9726c252019-01-23 13:44:19 +00001229 return api_wait_for_interrupt(vcpu);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001230
Fuad Tabbab86325a2020-01-10 13:38:15 +00001231 case EC_DATA_ABORT_LOWER_EL:
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001232 info = fault_info_init(
Andrew Walbrane52006c2019-10-22 18:01:28 +01001233 esr, vcpu, (esr & (1U << 6)) ? MM_MODE_W : MM_MODE_R);
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001234
Raghu Krishnamurthyf16b2ce2021-11-02 07:48:38 -07001235 resume = vcpu_handle_page_fault(vcpu, &info);
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001236 if (is_el0_partition) {
1237 dlog_warning("Data abort on EL0 partition\n");
Raghu Krishnamurthyf16b2ce2021-11-02 07:48:38 -07001238 /*
1239 * Abort EL0 context if we should not resume the
1240 * context, or it is an alignment fault.
1241 * vcpu_handle_page_fault() only checks the mode of the
1242 * page in an architecture agnostic way but alignment
1243 * faults on aarch64 can happen on a correctly mapped
1244 * page.
1245 */
1246 if (!resume || ((esr & 0x3f) == 0x21)) {
1247 return api_abort(vcpu);
1248 }
1249 }
1250
1251 if (resume) {
1252 return NULL;
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001253 }
1254
Fuad Tabbab86325a2020-01-10 13:38:15 +00001255 /* Inform the EL1 of the data abort. */
Fuad Tabbac3847c72020-08-11 09:32:25 +01001256 inject_el1_data_abort_exception(vcpu, esr, far);
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001257
Fuad Tabbab86325a2020-01-10 13:38:15 +00001258 /* Schedule the same VM to continue running. */
1259 return NULL;
1260
1261 case EC_INSTRUCTION_ABORT_LOWER_EL:
Andrew Sculld3cfaad2019-04-04 11:34:10 +01001262 info = fault_info_init(esr, vcpu, MM_MODE_X);
Raghu Krishnamurthyf16b2ce2021-11-02 07:48:38 -07001263
Wedson Almeida Filho99d2d4c2019-02-14 12:53:46 +00001264 if (vcpu_handle_page_fault(vcpu, &info)) {
1265 return NULL;
1266 }
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001267
1268 if (is_el0_partition) {
1269 dlog_warning("Instruction abort on EL0 partition\n");
1270 return api_abort(vcpu);
1271 }
1272
Fuad Tabbab86325a2020-01-10 13:38:15 +00001273 /* Inform the EL1 of the instruction abort. */
Fuad Tabbac3847c72020-08-11 09:32:25 +01001274 inject_el1_instruction_abort_exception(vcpu, esr, far);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001275
Fuad Tabbab86325a2020-01-10 13:38:15 +00001276 /* Schedule the same VM to continue running. */
1277 return NULL;
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001278 case EC_SVC:
1279 CHECK(is_el0_partition);
1280 return hvc_handler(vcpu);
Fuad Tabbab86325a2020-01-10 13:38:15 +00001281 case EC_HVC:
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001282 if (is_el0_partition) {
1283 dlog_warning("Unexpected HVC Trap on EL0 partition\n");
1284 return api_abort(vcpu);
1285 }
Andrew Walbran59182d52019-09-23 17:55:39 +01001286 return hvc_handler(vcpu);
1287
Fuad Tabbab86325a2020-01-10 13:38:15 +00001288 case EC_SMC: {
Andrew Scullc960c032018-10-24 15:13:35 +01001289 uintreg_t smc_pc = vcpu->regs.pc;
Andrew Walbran9dadaf22019-12-05 16:50:55 +00001290 struct vcpu *next = smc_handler(vcpu);
Wedson Almeida Filho03e767a2018-07-30 15:32:03 +01001291
1292 /* Skip the SMC instruction. */
Fuad Tabbac76466d2019-09-06 10:42:12 +01001293 vcpu->regs.pc = smc_pc + GET_NEXT_PC_INC(esr);
Andrew Walbran9dadaf22019-12-05 16:50:55 +00001294
Andrew Walbran33645652019-04-15 12:29:31 +01001295 return next;
Andrew Scullc960c032018-10-24 15:13:35 +01001296 }
Wedson Almeida Filho03e767a2018-07-30 15:32:03 +01001297
Fuad Tabbab86325a2020-01-10 13:38:15 +00001298 case EC_MSR:
Fuad Tabbac76466d2019-09-06 10:42:12 +01001299 /*
1300 * NOTE: This should never be reached because it goes through a
1301 * separate path handled by handle_system_register_access().
1302 */
1303 panic("Handled by handle_system_register_access().");
1304
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001305 default:
Andrew Walbran17eebf92020-02-05 16:35:49 +00001306 dlog_notice(
1307 "Unknown lower sync exception pc=%#x, esr=%#x, "
1308 "ec=%#x\n",
1309 vcpu->regs.pc, esr, ec);
Andrew Scull9726c252019-01-23 13:44:19 +00001310 break;
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001311 }
1312
Raghu Krishnamurthyb5775d22021-02-26 18:54:40 -08001313 if (is_el0_partition) {
1314 return api_abort(vcpu);
1315 }
1316
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001317 /*
Fuad Tabbaa48d1222019-12-09 15:42:32 +00001318 * The exception wasn't handled. Inject to the VM to give it chance to
1319 * handle as an unknown exception.
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001320 */
Fuad Tabbab86325a2020-01-10 13:38:15 +00001321 inject_el1_unknown_exception(vcpu, esr);
1322
1323 /* Schedule the same VM to continue running. */
1324 return NULL;
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001325}
1326
Fuad Tabbac76466d2019-09-06 10:42:12 +01001327/**
Fuad Tabbab0ef2a42019-12-19 11:19:25 +00001328 * Handles EC = 011000, MSR, MRS instruction traps.
Fuad Tabbaed294af2019-12-20 10:43:01 +00001329 * Returns non-null ONLY if the access failed and the vCPU is changing.
Fuad Tabbac76466d2019-09-06 10:42:12 +01001330 */
Fuad Tabbab86325a2020-01-10 13:38:15 +00001331void handle_system_register_access(uintreg_t esr_el2)
Fuad Tabbac76466d2019-09-06 10:42:12 +01001332{
1333 struct vcpu *vcpu = current();
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001334 ffa_vm_id_t vm_id = vcpu->vm->id;
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001335 uintreg_t ec = GET_ESR_EC(esr_el2);
Fuad Tabbac76466d2019-09-06 10:42:12 +01001336
Fuad Tabbab86325a2020-01-10 13:38:15 +00001337 CHECK(ec == EC_MSR);
Fuad Tabbac76466d2019-09-06 10:42:12 +01001338 /*
Fuad Tabbaf1d6dc52019-09-18 17:33:14 +01001339 * Handle accesses to debug and performance monitor registers.
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001340 * Inject an exception for unhandled/unsupported registers.
Fuad Tabbac76466d2019-09-06 10:42:12 +01001341 */
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001342 if (debug_el1_is_register_access(esr_el2)) {
1343 if (!debug_el1_process_access(vcpu, vm_id, esr_el2)) {
Fuad Tabbab86325a2020-01-10 13:38:15 +00001344 inject_el1_unknown_exception(vcpu, esr_el2);
1345 return;
Fuad Tabbaf1d6dc52019-09-18 17:33:14 +01001346 }
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001347 } else if (perfmon_is_register_access(esr_el2)) {
1348 if (!perfmon_process_access(vcpu, vm_id, esr_el2)) {
Fuad Tabbab86325a2020-01-10 13:38:15 +00001349 inject_el1_unknown_exception(vcpu, esr_el2);
1350 return;
Fuad Tabbaf1d6dc52019-09-18 17:33:14 +01001351 }
Fuad Tabba77a4b012019-11-15 12:13:08 +00001352 } else if (feature_id_is_register_access(esr_el2)) {
1353 if (!feature_id_process_access(vcpu, esr_el2)) {
Fuad Tabbab86325a2020-01-10 13:38:15 +00001354 inject_el1_unknown_exception(vcpu, esr_el2);
1355 return;
Fuad Tabba77a4b012019-11-15 12:13:08 +00001356 }
Fuad Tabbaf1d6dc52019-09-18 17:33:14 +01001357 } else {
Fuad Tabbab86325a2020-01-10 13:38:15 +00001358 inject_el1_unknown_exception(vcpu, esr_el2);
1359 return;
Fuad Tabbac76466d2019-09-06 10:42:12 +01001360 }
1361
Fuad Tabbaf1d6dc52019-09-18 17:33:14 +01001362 /* Instruction was fulfilled. Skip it and run the next one. */
Fuad Tabba3e9b0222019-11-11 16:47:50 +00001363 vcpu->regs.pc += GET_NEXT_PC_INC(esr_el2);
Fuad Tabbac76466d2019-09-06 10:42:12 +01001364}