2 * Copyright (C) 2002 MontaVista Software Inc.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
13 #include <linux/sched.h>
14 #include <linux/thread_info.h>
15 #include <linux/bitops.h>
17 #include <asm/mipsregs.h>
19 #include <asm/cpu-features.h>
20 #include <asm/fpu_emulator.h>
21 #include <asm/hazards.h>
22 #include <asm/processor.h>
23 #include <asm/current.h>
26 #ifdef CONFIG_MIPS_MT_FPAFF
27 #include <asm/mips_mt.h>
33 extern void _init_fpu(unsigned int);
34 extern void _save_fp(struct task_struct *);
35 extern void _restore_fp(struct task_struct *);
38 * This enum specifies a mode in which we want the FPU to operate, for cores
39 * which implement the Status.FR bit. Note that the bottom bit of the value
40 * purposefully matches the desired value of the Status.FR bit.
43 FPU_32BIT = 0, /* FR = 0 */
44 FPU_64BIT, /* FR = 1, FRE = 0 */
46 FPU_HYBRID, /* FR = 1, FRE = 1 */
48 #define FPU_FR_MASK 0x1
51 #define __disable_fpu() \
53 clear_c0_status(ST0_CU1); \
54 disable_fpu_hazard(); \
57 static inline int __enable_fpu(enum fpu_mode mode)
63 /* just enable the FPU in its current mode */
64 set_c0_status(ST0_CU1);
73 set_c0_config5(MIPS_CONF5_FRE);
77 #if !(defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) \
78 || defined(CONFIG_64BIT))
79 /* we only have a 32-bit FPU */
86 clear_c0_config5(MIPS_CONF5_FRE);
89 /* set CU1 & change FR appropriately */
90 fr = (int)mode & FPU_FR_MASK;
91 change_c0_status(ST0_CU1 | ST0_FR, ST0_CU1 | (fr ? ST0_FR : 0));
94 /* check FR has the desired value */
95 if (!!(read_c0_status() & ST0_FR) == !!fr)
98 /* unsupported FR value */
109 #define clear_fpu_owner() clear_thread_flag(TIF_USEDFPU)
111 static inline int __is_fpu_owner(void)
113 return test_thread_flag(TIF_USEDFPU);
116 static inline int is_fpu_owner(void)
118 return cpu_has_fpu && __is_fpu_owner();
121 static inline int __own_fpu(void)
126 if (test_thread_flag(TIF_HYBRID_FPREGS))
129 mode = !test_thread_flag(TIF_32BIT_FPREGS);
131 ret = __enable_fpu(mode);
135 KSTK_STATUS(current) |= ST0_CU1;
136 if (mode == FPU_64BIT || mode == FPU_HYBRID)
137 KSTK_STATUS(current) |= ST0_FR;
138 else /* mode == FPU_32BIT */
139 KSTK_STATUS(current) &= ~ST0_FR;
141 set_thread_flag(TIF_USEDFPU);
145 static inline int own_fpu_inatomic(int restore)
149 if (cpu_has_fpu && !__is_fpu_owner()) {
152 _restore_fp(current);
157 static inline int own_fpu(int restore)
162 ret = own_fpu_inatomic(restore);
167 static inline void lose_fpu_inatomic(int save, struct task_struct *tsk)
169 if (is_msa_enabled()) {
172 tsk->thread.fpu.fcr31 =
173 read_32bit_cp1_register(CP1_STATUS);
176 clear_tsk_thread_flag(tsk, TIF_USEDMSA);
178 } else if (is_fpu_owner()) {
183 KSTK_STATUS(tsk) &= ~ST0_CU1;
184 clear_tsk_thread_flag(tsk, TIF_USEDFPU);
187 static inline void lose_fpu(int save)
190 lose_fpu_inatomic(save, current);
194 static inline int init_fpu(void)
196 unsigned int fcr31 = current->thread.fpu.fcr31;
200 unsigned int config5;
213 * Ensure FRE is clear whilst running _init_fpu, since
214 * single precision FP instructions are used. If FRE
215 * was set then we'll just end up initialising all 32
218 config5 = clear_c0_config5(MIPS_CONF5_FRE);
224 write_c0_config5(config5);
227 fpu_emulator_init_fpu();
232 static inline void save_fp(struct task_struct *tsk)
238 static inline void restore_fp(struct task_struct *tsk)
244 static inline union fpureg *get_fpu_regs(struct task_struct *tsk)
246 if (tsk == current) {
253 return tsk->thread.fpu.fpr;
256 #endif /* _ASM_FPU_H */