mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Now that the hypervisor is handling the host sve state in
protected mode, it needs to be able to save it.
This reverts commit e66425fc9b
("KVM: arm64: Remove unused
__sve_save_state").
Reviewed-by: Oliver Upton <oliver.upton@linux.dev>
Signed-off-by: Fuad Tabba <tabba@google.com>
Link: https://lore.kernel.org/r/20240603122852.3923848-2-tabba@google.com
Signed-off-by: Marc Zyngier <maz@kernel.org>
33 lines
612 B
ArmAsm
33 lines
612 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2015 - ARM Ltd
|
|
* Author: Marc Zyngier <marc.zyngier@arm.com>
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/fpsimdmacros.h>
|
|
|
|
.text
|
|
|
|
SYM_FUNC_START(__fpsimd_save_state)
|
|
fpsimd_save x0, 1
|
|
ret
|
|
SYM_FUNC_END(__fpsimd_save_state)
|
|
|
|
SYM_FUNC_START(__fpsimd_restore_state)
|
|
fpsimd_restore x0, 1
|
|
ret
|
|
SYM_FUNC_END(__fpsimd_restore_state)
|
|
|
|
SYM_FUNC_START(__sve_restore_state)
|
|
mov x2, #1
|
|
sve_load 0, x1, x2, 3
|
|
ret
|
|
SYM_FUNC_END(__sve_restore_state)
|
|
|
|
SYM_FUNC_START(__sve_save_state)
|
|
mov x2, #1
|
|
sve_save 0, x1, x2, 3
|
|
ret
|
|
SYM_FUNC_END(__sve_save_state)
|