162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * FPU regset handling methods: 462306a36Sopenharmony_ci */ 562306a36Sopenharmony_ci#ifndef _ASM_X86_FPU_REGSET_H 662306a36Sopenharmony_ci#define _ASM_X86_FPU_REGSET_H 762306a36Sopenharmony_ci 862306a36Sopenharmony_ci#include <linux/regset.h> 962306a36Sopenharmony_ci 1062306a36Sopenharmony_ciextern user_regset_active_fn regset_fpregs_active, regset_xregset_fpregs_active, 1162306a36Sopenharmony_ci ssp_active; 1262306a36Sopenharmony_ciextern user_regset_get2_fn fpregs_get, xfpregs_get, fpregs_soft_get, 1362306a36Sopenharmony_ci xstateregs_get, ssp_get; 1462306a36Sopenharmony_ciextern user_regset_set_fn fpregs_set, xfpregs_set, fpregs_soft_set, 1562306a36Sopenharmony_ci xstateregs_set, ssp_set; 1662306a36Sopenharmony_ci 1762306a36Sopenharmony_ci/* 1862306a36Sopenharmony_ci * xstateregs_active == regset_fpregs_active. Please refer to the comment 1962306a36Sopenharmony_ci * at the definition of regset_fpregs_active. 2062306a36Sopenharmony_ci */ 2162306a36Sopenharmony_ci#define xstateregs_active regset_fpregs_active 2262306a36Sopenharmony_ci 2362306a36Sopenharmony_ci#endif /* _ASM_X86_FPU_REGSET_H */ 24