blob: f06f97bd62df906bf4160594119dec4d52b028eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002 MontaVista Software Inc.
3 * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
4 *
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.
9 */
10#ifndef _ASM_FPU_H
11#define _ASM_FPU_H
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sched.h>
14#include <linux/thread_info.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070015#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include <asm/mipsregs.h>
18#include <asm/cpu.h>
19#include <asm/cpu-features.h>
Ralf Baechlee0cc3a42014-04-28 22:34:01 +020020#include <asm/fpu_emulator.h>
Chris Dearman0b624952007-05-08 16:09:13 +010021#include <asm/hazards.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/processor.h>
23#include <asm/current.h>
Paul Burton33c771b2014-07-11 16:44:30 +010024#include <asm/msa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ralf Baechlef088fc82006-04-05 09:45:47 +010026#ifdef CONFIG_MIPS_MT_FPAFF
27#include <asm/mips_mt.h>
28#endif
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct sigcontext;
31struct sigcontext32;
32
Maciej W. Rozycki9b266162015-04-03 23:27:48 +010033extern void _init_fpu(unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034extern void _save_fp(struct task_struct *);
35extern void _restore_fp(struct task_struct *);
36
Paul Burton597ce172013-11-22 13:12:07 +000037/*
38 * This enum specifies a mode in which we want the FPU to operate, for cores
Paul Burton4227a2d2014-09-11 08:30:20 +010039 * 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.
Paul Burton597ce172013-11-22 13:12:07 +000041 */
42enum fpu_mode {
43 FPU_32BIT = 0, /* FR = 0 */
Paul Burton4227a2d2014-09-11 08:30:20 +010044 FPU_64BIT, /* FR = 1, FRE = 0 */
Paul Burton597ce172013-11-22 13:12:07 +000045 FPU_AS_IS,
Paul Burton4227a2d2014-09-11 08:30:20 +010046 FPU_HYBRID, /* FR = 1, FRE = 1 */
47
48#define FPU_FR_MASK 0x1
Paul Burton597ce172013-11-22 13:12:07 +000049};
50
Paul Burton84ab45b2015-01-30 12:09:37 +000051#define __disable_fpu() \
52do { \
53 clear_c0_status(ST0_CU1); \
54 disable_fpu_hazard(); \
55} while (0)
56
Paul Burton597ce172013-11-22 13:12:07 +000057static inline int __enable_fpu(enum fpu_mode mode)
58{
59 int fr;
60
61 switch (mode) {
62 case FPU_AS_IS:
63 /* just enable the FPU in its current mode */
64 set_c0_status(ST0_CU1);
65 enable_fpu_hazard();
66 return 0;
67
Paul Burton4227a2d2014-09-11 08:30:20 +010068 case FPU_HYBRID:
69 if (!cpu_has_fre)
70 return SIGFPE;
71
72 /* set FRE */
Ralf Baechled33e6fe2014-12-17 11:46:40 +010073 set_c0_config5(MIPS_CONF5_FRE);
Paul Burton4227a2d2014-09-11 08:30:20 +010074 goto fr_common;
75
Paul Burton597ce172013-11-22 13:12:07 +000076 case FPU_64BIT:
Markos Chandrasfcc53b52015-07-16 15:30:04 +010077#if !(defined(CONFIG_CPU_MIPSR2) || defined(CONFIG_CPU_MIPSR6) \
Markos Chandras6134d942015-01-30 10:20:28 +000078 || defined(CONFIG_64BIT))
Paul Burton597ce172013-11-22 13:12:07 +000079 /* we only have a 32-bit FPU */
80 return SIGFPE;
81#endif
82 /* fall through */
83 case FPU_32BIT:
Ralf Baechleb0c34f62014-12-17 11:39:30 +010084 if (cpu_has_fre) {
85 /* clear FRE */
Ralf Baechled33e6fe2014-12-17 11:46:40 +010086 clear_c0_config5(MIPS_CONF5_FRE);
Ralf Baechleb0c34f62014-12-17 11:39:30 +010087 }
Paul Burton4227a2d2014-09-11 08:30:20 +010088fr_common:
Paul Burton597ce172013-11-22 13:12:07 +000089 /* set CU1 & change FR appropriately */
Paul Burton4227a2d2014-09-11 08:30:20 +010090 fr = (int)mode & FPU_FR_MASK;
Paul Burton597ce172013-11-22 13:12:07 +000091 change_c0_status(ST0_CU1 | ST0_FR, ST0_CU1 | (fr ? ST0_FR : 0));
92 enable_fpu_hazard();
93
94 /* check FR has the desired value */
Paul Burton84ab45b2015-01-30 12:09:37 +000095 if (!!(read_c0_status() & ST0_FR) == !!fr)
96 return 0;
97
98 /* unsupported FR value */
99 __disable_fpu();
100 return SIGFPE;
Paul Burton597ce172013-11-22 13:12:07 +0000101
102 default:
103 BUG();
104 }
Aaro Koskinen97b8b16b2014-02-05 22:05:44 +0200105
106 return SIGFPE;
Paul Burton597ce172013-11-22 13:12:07 +0000107}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define clear_fpu_owner() clear_thread_flag(TIF_USEDFPU)
110
Ralf Baechle1d74f6b2005-05-09 13:16:07 +0000111static inline int __is_fpu_owner(void)
112{
113 return test_thread_flag(TIF_USEDFPU);
114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static inline int is_fpu_owner(void)
117{
Ralf Baechle1d74f6b2005-05-09 13:16:07 +0000118 return cpu_has_fpu && __is_fpu_owner();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Paul Burton597ce172013-11-22 13:12:07 +0000121static inline int __own_fpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Paul Burton597ce172013-11-22 13:12:07 +0000123 enum fpu_mode mode;
124 int ret;
125
Paul Burton4227a2d2014-09-11 08:30:20 +0100126 if (test_thread_flag(TIF_HYBRID_FPREGS))
127 mode = FPU_HYBRID;
128 else
129 mode = !test_thread_flag(TIF_32BIT_FPREGS);
130
Paul Burton597ce172013-11-22 13:12:07 +0000131 ret = __enable_fpu(mode);
132 if (ret)
133 return ret;
134
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900135 KSTK_STATUS(current) |= ST0_CU1;
Paul Burton4227a2d2014-09-11 08:30:20 +0100136 if (mode == FPU_64BIT || mode == FPU_HYBRID)
Paul Burton597ce172013-11-22 13:12:07 +0000137 KSTK_STATUS(current) |= ST0_FR;
138 else /* mode == FPU_32BIT */
139 KSTK_STATUS(current) &= ~ST0_FR;
140
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900141 set_thread_flag(TIF_USEDFPU);
Paul Burton597ce172013-11-22 13:12:07 +0000142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Paul Burton597ce172013-11-22 13:12:07 +0000145static inline int own_fpu_inatomic(int restore)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Paul Burton597ce172013-11-22 13:12:07 +0000147 int ret = 0;
148
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900149 if (cpu_has_fpu && !__is_fpu_owner()) {
Paul Burton597ce172013-11-22 13:12:07 +0000150 ret = __own_fpu();
151 if (restore && !ret)
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900152 _restore_fp(current);
153 }
Paul Burton597ce172013-11-22 13:12:07 +0000154 return ret;
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900155}
156
Paul Burton597ce172013-11-22 13:12:07 +0000157static inline int own_fpu(int restore)
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900158{
Paul Burton597ce172013-11-22 13:12:07 +0000159 int ret;
160
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900161 preempt_disable();
Paul Burton597ce172013-11-22 13:12:07 +0000162 ret = own_fpu_inatomic(restore);
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900163 preempt_enable();
Paul Burton597ce172013-11-22 13:12:07 +0000164 return ret;
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900165}
166
Paul Burton1a3d5952015-08-03 08:49:30 -0700167static inline void lose_fpu_inatomic(int save, struct task_struct *tsk)
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900168{
Paul Burton33c771b2014-07-11 16:44:30 +0100169 if (is_msa_enabled()) {
170 if (save) {
Paul Burton1a3d5952015-08-03 08:49:30 -0700171 save_msa(tsk);
172 tsk->thread.fpu.fcr31 =
Manuel Lauss842dfc12014-11-07 14:13:54 +0100173 read_32bit_cp1_register(CP1_STATUS);
Paul Burton33c771b2014-07-11 16:44:30 +0100174 }
175 disable_msa();
Paul Burton1a3d5952015-08-03 08:49:30 -0700176 clear_tsk_thread_flag(tsk, TIF_USEDMSA);
James Hoganacaf6a92015-02-25 13:08:05 +0000177 __disable_fpu();
Paul Burton33c771b2014-07-11 16:44:30 +0100178 } else if (is_fpu_owner()) {
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900179 if (save)
Paul Burton1a3d5952015-08-03 08:49:30 -0700180 _save_fp(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 __disable_fpu();
James Hogan00fe56d2016-02-01 13:50:37 +0000182 } else {
183 /* FPU should not have been left enabled with no owner */
184 WARN(read_c0_status() & ST0_CU1,
185 "Orphaned FPU left enabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
Paul Burton1a3d5952015-08-03 08:49:30 -0700187 KSTK_STATUS(tsk) &= ~ST0_CU1;
188 clear_tsk_thread_flag(tsk, TIF_USEDFPU);
189}
190
191static inline void lose_fpu(int save)
192{
193 preempt_disable();
194 lose_fpu_inatomic(save, current);
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900195 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Paul Burton597ce172013-11-22 13:12:07 +0000198static inline int init_fpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100200 unsigned int fcr31 = current->thread.fpu.fcr31;
Paul Burton597ce172013-11-22 13:12:07 +0000201 int ret = 0;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (cpu_has_fpu) {
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100204 unsigned int config5;
205
Paul Burton597ce172013-11-22 13:12:07 +0000206 ret = __own_fpu();
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100207 if (ret)
208 return ret;
Paul Burton4227a2d2014-09-11 08:30:20 +0100209
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100210 if (!cpu_has_fre) {
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100211 _init_fpu(fcr31);
Paul Burton4227a2d2014-09-11 08:30:20 +0100212
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100213 return 0;
Paul Burton4227a2d2014-09-11 08:30:20 +0100214 }
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100215
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100216 /*
217 * Ensure FRE is clear whilst running _init_fpu, since
218 * single precision FP instructions are used. If FRE
219 * was set then we'll just end up initialising all 32
220 * 64b registers.
221 */
Ralf Baechled33e6fe2014-12-17 11:46:40 +0100222 config5 = clear_c0_config5(MIPS_CONF5_FRE);
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100223 enable_fpu_hazard();
224
Maciej W. Rozycki9b266162015-04-03 23:27:48 +0100225 _init_fpu(fcr31);
Ralf Baechleb0c34f62014-12-17 11:39:30 +0100226
227 /* Restore FRE */
228 write_c0_config5(config5);
229 enable_fpu_hazard();
Ralf Baechlee0cc3a42014-04-28 22:34:01 +0200230 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 fpu_emulator_init_fpu();
Paul Burton597ce172013-11-22 13:12:07 +0000232
Paul Burton597ce172013-11-22 13:12:07 +0000233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236static inline void save_fp(struct task_struct *tsk)
237{
238 if (cpu_has_fpu)
239 _save_fp(tsk);
240}
241
242static inline void restore_fp(struct task_struct *tsk)
243{
244 if (cpu_has_fpu)
245 _restore_fp(tsk);
246}
247
Paul Burtonbbd426f2014-02-13 11:26:41 +0000248static inline union fpureg *get_fpu_regs(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900250 if (tsk == current) {
251 preempt_disable();
252 if (is_fpu_owner())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 _save_fp(current);
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900254 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900257 return tsk->thread.fpu.fpr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif /* _ASM_FPU_H */