mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
When SVE is enabled, the host may set bit 16 in SMCCC function IDs, a
hint that indicates an unused SVE state. At the moment NVHE doesn't
account for this bit when inspecting the function ID, and rejects most
calls. Clear the hint bit before comparing function IDs.
About version compatibility: the host's PSCI driver initially probes the
firmware for a SMCCC version number. If the firmware implements a
protocol recent enough (1.3), subsequent SMCCC calls have the hint bit
set. Since the hint bit was reserved in earlier versions of the
protocol, clearing it is fine regardless of the version in use.
When a new hint is added to the protocol in the future, it will be added
to ARM_SMCCC_CALL_HINTS and NVHE will handle it straight away. This
patch only clears known hints and leaves reserved bits as is, because
future SMCCC versions could use reserved bits as modifiers for the
function ID, rather than hints.
Fixes: cfa7ff959a ("arm64: smccc: Support SMCCC v1.3 SVE register saving hint")
Reported-by: Ben Horgan <ben.horgan@arm.com>
Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20230911145254.934414-4-jean-philippe@linaro.org
18 lines
406 B
C
18 lines
406 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2022 - Google LLC
|
|
* Author: Andrew Walbran <qwandor@google.com>
|
|
*/
|
|
#ifndef __KVM_HYP_FFA_H
|
|
#define __KVM_HYP_FFA_H
|
|
|
|
#include <asm/kvm_host.h>
|
|
|
|
#define FFA_MIN_FUNC_NUM 0x60
|
|
#define FFA_MAX_FUNC_NUM 0x7F
|
|
|
|
int hyp_ffa_init(void *pages);
|
|
bool kvm_host_ffa_handler(struct kvm_cpu_context *host_ctxt, u32 func_id);
|
|
|
|
#endif /* __KVM_HYP_FFA_H */
|