| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- /* SPDX-License-Identifier: GPL-2.0 */
- /*
- * Author: Huacai Chen <chenhuacai@loongson.cn>
- * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
- */
- #ifndef _ASM_FPU_H
- #define _ASM_FPU_H
- #include <linux/sched.h>
- #include <linux/sched/task_stack.h>
- #include <linux/ptrace.h>
- #include <linux/thread_info.h>
- #include <linux/bitops.h>
- #include <asm/cpu.h>
- #include <asm/cpu-features.h>
- #include <asm/current.h>
- #include <asm/loongarch.h>
- #include <asm/processor.h>
- #include <asm/ptrace.h>
- struct sigcontext;
- #define kernel_fpu_available() cpu_has_fpu
- void kernel_fpu_begin(void);
- void kernel_fpu_end(void);
- asmlinkage void _init_fpu(unsigned int);
- asmlinkage void _save_fp(struct loongarch_fpu *);
- asmlinkage void _restore_fp(struct loongarch_fpu *);
- asmlinkage int _save_fp_context(void __user *fpregs, void __user *fcc, void __user *csr);
- asmlinkage int _restore_fp_context(void __user *fpregs, void __user *fcc, void __user *csr);
- asmlinkage void _save_lsx(struct loongarch_fpu *fpu);
- asmlinkage void _restore_lsx(struct loongarch_fpu *fpu);
- asmlinkage void _init_lsx_upper(void);
- asmlinkage void _restore_lsx_upper(struct loongarch_fpu *fpu);
- asmlinkage int _save_lsx_context(void __user *fpregs, void __user *fcc, void __user *fcsr);
- asmlinkage int _restore_lsx_context(void __user *fpregs, void __user *fcc, void __user *fcsr);
- asmlinkage void _save_lasx(struct loongarch_fpu *fpu);
- asmlinkage void _restore_lasx(struct loongarch_fpu *fpu);
- asmlinkage void _init_lasx_upper(void);
- asmlinkage void _restore_lasx_upper(struct loongarch_fpu *fpu);
- asmlinkage int _save_lasx_context(void __user *fpregs, void __user *fcc, void __user *fcsr);
- asmlinkage int _restore_lasx_context(void __user *fpregs, void __user *fcc, void __user *fcsr);
- static inline void enable_lsx(void);
- static inline void disable_lsx(void);
- static inline void save_lsx(struct task_struct *t);
- static inline void restore_lsx(struct task_struct *t);
- static inline void enable_lasx(void);
- static inline void disable_lasx(void);
- static inline void save_lasx(struct task_struct *t);
- static inline void restore_lasx(struct task_struct *t);
- /*
- * Mask the FCSR Cause bits according to the Enable bits, observing
- * that Unimplemented is always enabled.
- */
- static inline unsigned long mask_fcsr_x(unsigned long fcsr)
- {
- return fcsr & ((fcsr & FPU_CSR_ALL_E) <<
- (ffs(FPU_CSR_ALL_X) - ffs(FPU_CSR_ALL_E)));
- }
- static inline int is_fp_enabled(void)
- {
- return (csr_read32(LOONGARCH_CSR_EUEN) & CSR_EUEN_FPEN) ?
- 1 : 0;
- }
- static inline int is_lsx_enabled(void)
- {
- if (!cpu_has_lsx)
- return 0;
- return (csr_read32(LOONGARCH_CSR_EUEN) & CSR_EUEN_LSXEN) ?
- 1 : 0;
- }
- static inline int is_lasx_enabled(void)
- {
- if (!cpu_has_lasx)
- return 0;
- return (csr_read32(LOONGARCH_CSR_EUEN) & CSR_EUEN_LASXEN) ?
- 1 : 0;
- }
- static inline int is_simd_enabled(void)
- {
- return is_lsx_enabled() | is_lasx_enabled();
- }
- #define enable_fpu() set_csr_euen(CSR_EUEN_FPEN)
- #define disable_fpu() clear_csr_euen(CSR_EUEN_FPEN)
- #define clear_fpu_owner() clear_thread_flag(TIF_USEDFPU)
- static inline int is_fpu_owner(void)
- {
- return test_thread_flag(TIF_USEDFPU);
- }
- static inline void __own_fpu(void)
- {
- enable_fpu();
- set_thread_flag(TIF_USEDFPU);
- KSTK_EUEN(current) |= CSR_EUEN_FPEN;
- }
- static inline void own_fpu_inatomic(int restore)
- {
- if (cpu_has_fpu && !is_fpu_owner()) {
- __own_fpu();
- if (restore)
- _restore_fp(¤t->thread.fpu);
- }
- }
- static inline void own_fpu(int restore)
- {
- preempt_disable();
- own_fpu_inatomic(restore);
- preempt_enable();
- }
- static inline void lose_fpu_inatomic(int save, struct task_struct *tsk)
- {
- if (is_fpu_owner()) {
- if (!is_simd_enabled()) {
- if (save)
- _save_fp(&tsk->thread.fpu);
- disable_fpu();
- } else {
- if (save) {
- if (!is_lasx_enabled())
- save_lsx(tsk);
- else
- save_lasx(tsk);
- }
- disable_fpu();
- disable_lsx();
- disable_lasx();
- clear_tsk_thread_flag(tsk, TIF_USEDSIMD);
- }
- clear_tsk_thread_flag(tsk, TIF_USEDFPU);
- }
- KSTK_EUEN(tsk) &= ~(CSR_EUEN_FPEN | CSR_EUEN_LSXEN | CSR_EUEN_LASXEN);
- }
- static inline void lose_fpu(int save)
- {
- preempt_disable();
- lose_fpu_inatomic(save, current);
- preempt_enable();
- }
- static inline void init_fpu(void)
- {
- unsigned int fcsr = current->thread.fpu.fcsr;
- __own_fpu();
- _init_fpu(fcsr);
- set_used_math();
- }
- static inline void save_fp(struct task_struct *tsk)
- {
- if (cpu_has_fpu)
- _save_fp(&tsk->thread.fpu);
- }
- static inline void restore_fp(struct task_struct *tsk)
- {
- if (cpu_has_fpu)
- _restore_fp(&tsk->thread.fpu);
- }
- static inline void save_fpu_regs(struct task_struct *tsk)
- {
- unsigned int euen;
- if (tsk == current) {
- preempt_disable();
- euen = csr_read32(LOONGARCH_CSR_EUEN);
- #ifdef CONFIG_CPU_HAS_LASX
- if (euen & CSR_EUEN_LASXEN)
- _save_lasx(¤t->thread.fpu);
- else
- #endif
- #ifdef CONFIG_CPU_HAS_LSX
- if (euen & CSR_EUEN_LSXEN)
- _save_lsx(¤t->thread.fpu);
- else
- #endif
- if (euen & CSR_EUEN_FPEN)
- _save_fp(¤t->thread.fpu);
- preempt_enable();
- }
- }
- static inline int is_simd_owner(void)
- {
- return test_thread_flag(TIF_USEDSIMD);
- }
- #ifdef CONFIG_CPU_HAS_LSX
- static inline void enable_lsx(void)
- {
- if (cpu_has_lsx)
- csr_xchg32(CSR_EUEN_LSXEN, CSR_EUEN_LSXEN, LOONGARCH_CSR_EUEN);
- }
- static inline void disable_lsx(void)
- {
- if (cpu_has_lsx)
- csr_xchg32(0, CSR_EUEN_LSXEN, LOONGARCH_CSR_EUEN);
- }
- static inline void save_lsx(struct task_struct *t)
- {
- if (cpu_has_lsx)
- _save_lsx(&t->thread.fpu);
- }
- static inline void restore_lsx(struct task_struct *t)
- {
- if (cpu_has_lsx)
- _restore_lsx(&t->thread.fpu);
- }
- static inline void init_lsx_upper(void)
- {
- if (cpu_has_lsx)
- _init_lsx_upper();
- }
- static inline void restore_lsx_upper(struct task_struct *t)
- {
- if (cpu_has_lsx)
- _restore_lsx_upper(&t->thread.fpu);
- }
- #else
- static inline void enable_lsx(void) {}
- static inline void disable_lsx(void) {}
- static inline void save_lsx(struct task_struct *t) {}
- static inline void restore_lsx(struct task_struct *t) {}
- static inline void init_lsx_upper(void) {}
- static inline void restore_lsx_upper(struct task_struct *t) {}
- #endif
- #ifdef CONFIG_CPU_HAS_LASX
- static inline void enable_lasx(void)
- {
- if (cpu_has_lasx)
- csr_xchg32(CSR_EUEN_LASXEN, CSR_EUEN_LASXEN, LOONGARCH_CSR_EUEN);
- }
- static inline void disable_lasx(void)
- {
- if (cpu_has_lasx)
- csr_xchg32(0, CSR_EUEN_LASXEN, LOONGARCH_CSR_EUEN);
- }
- static inline void save_lasx(struct task_struct *t)
- {
- if (cpu_has_lasx)
- _save_lasx(&t->thread.fpu);
- }
- static inline void restore_lasx(struct task_struct *t)
- {
- if (cpu_has_lasx)
- _restore_lasx(&t->thread.fpu);
- }
- static inline void init_lasx_upper(void)
- {
- if (cpu_has_lasx)
- _init_lasx_upper();
- }
- static inline void restore_lasx_upper(struct task_struct *t)
- {
- if (cpu_has_lasx)
- _restore_lasx_upper(&t->thread.fpu);
- }
- #else
- static inline void enable_lasx(void) {}
- static inline void disable_lasx(void) {}
- static inline void save_lasx(struct task_struct *t) {}
- static inline void restore_lasx(struct task_struct *t) {}
- static inline void init_lasx_upper(void) {}
- static inline void restore_lasx_upper(struct task_struct *t) {}
- #endif
- static inline int thread_lsx_context_live(void)
- {
- if (!cpu_has_lsx)
- return 0;
- return test_thread_flag(TIF_LSX_CTX_LIVE);
- }
- static inline int thread_lasx_context_live(void)
- {
- if (!cpu_has_lasx)
- return 0;
- return test_thread_flag(TIF_LASX_CTX_LIVE);
- }
- #endif /* _ASM_FPU_H */
|