Merge tag 'locking-urgent-2021-05-09' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / arch / arm64 / kvm / hyp / fpsimd.S
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
13 SYM_FUNC_START(__fpsimd_save_state)
14         fpsimd_save     x0, 1
15         ret
16 SYM_FUNC_END(__fpsimd_save_state)
17
18 SYM_FUNC_START(__fpsimd_restore_state)
19         fpsimd_restore  x0, 1
20         ret
21 SYM_FUNC_END(__fpsimd_restore_state)
22
23 SYM_FUNC_START(__sve_restore_state)
24         __sve_load 0, x1, 2
25         ret
26 SYM_FUNC_END(__sve_restore_state)
27
28 SYM_FUNC_START(__sve_save_state)
29         sve_save 0, x1, 2
30         ret
31 SYM_FUNC_END(__sve_save_state)