xref: /openbmc/linux/arch/arm64/kvm/hyp/fpsimd.S (revision 14474950)
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2015 - ARM Ltd
4 * Author: Marc Zyngier <marc.zyngier@arm.com>
5 */
6
7#include <linux/linkage.h>
8
9#include <asm/fpsimdmacros.h>
10
11	.text
12	.pushsection	.hyp.text, "ax"
13
14SYM_FUNC_START(__fpsimd_save_state)
15	fpsimd_save	x0, 1
16	ret
17SYM_FUNC_END(__fpsimd_save_state)
18
19SYM_FUNC_START(__fpsimd_restore_state)
20	fpsimd_restore	x0, 1
21	ret
22SYM_FUNC_END(__fpsimd_restore_state)
23