fpu.h 4.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2002 MontaVista Software Inc.
 * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 */
#ifndef _ASM_FPU_H
#define _ASM_FPU_H

#include <linux/sched.h>
#include <linux/thread_info.h>
J
Jiri Slaby 已提交
15
#include <linux/bitops.h>
L
Linus Torvalds 已提交
16 17 18 19

#include <asm/mipsregs.h>
#include <asm/cpu.h>
#include <asm/cpu-features.h>
20
#include <asm/fpu_emulator.h>
C
Chris Dearman 已提交
21
#include <asm/hazards.h>
L
Linus Torvalds 已提交
22 23
#include <asm/processor.h>
#include <asm/current.h>
P
Paul Burton 已提交
24
#include <asm/msa.h>
L
Linus Torvalds 已提交
25

R
Ralf Baechle 已提交
26 27 28 29
#ifdef CONFIG_MIPS_MT_FPAFF
#include <asm/mips_mt.h>
#endif

L
Linus Torvalds 已提交
30 31 32 33 34 35 36
struct sigcontext;
struct sigcontext32;

extern void _init_fpu(void);
extern void _save_fp(struct task_struct *);
extern void _restore_fp(struct task_struct *);

37 38
/*
 * This enum specifies a mode in which we want the FPU to operate, for cores
P
Paul Burton 已提交
39 40
 * which implement the Status.FR bit. Note that the bottom bit of the value
 * purposefully matches the desired value of the Status.FR bit.
41 42 43
 */
enum fpu_mode {
	FPU_32BIT = 0,		/* FR = 0 */
P
Paul Burton 已提交
44
	FPU_64BIT,		/* FR = 1, FRE = 0 */
45
	FPU_AS_IS,
P
Paul Burton 已提交
46 47 48
	FPU_HYBRID,		/* FR = 1, FRE = 1 */

#define FPU_FR_MASK		0x1
49 50 51 52 53 54 55 56 57 58 59 60 61
};

static inline int __enable_fpu(enum fpu_mode mode)
{
	int fr;

	switch (mode) {
	case FPU_AS_IS:
		/* just enable the FPU in its current mode */
		set_c0_status(ST0_CU1);
		enable_fpu_hazard();
		return 0;

P
Paul Burton 已提交
62 63 64 65 66 67 68 69
	case FPU_HYBRID:
		if (!cpu_has_fre)
			return SIGFPE;

		/* set FRE */
		write_c0_config5(read_c0_config5() | MIPS_CONF5_FRE);
		goto fr_common;

70
	case FPU_64BIT:
71
#if !(defined(CONFIG_CPU_MIPS32_R2) || defined(CONFIG_64BIT))
72 73 74 75 76
		/* we only have a 32-bit FPU */
		return SIGFPE;
#endif
		/* fall through */
	case FPU_32BIT:
77 78 79 80
		if (cpu_has_fre) {
			/* clear FRE */
			write_c0_config5(read_c0_config5() & ~MIPS_CONF5_FRE);
		}
P
Paul Burton 已提交
81
fr_common:
82
		/* set CU1 & change FR appropriately */
P
Paul Burton 已提交
83
		fr = (int)mode & FPU_FR_MASK;
84 85 86 87 88 89 90 91 92
		change_c0_status(ST0_CU1 | ST0_FR, ST0_CU1 | (fr ? ST0_FR : 0));
		enable_fpu_hazard();

		/* check FR has the desired value */
		return (!!(read_c0_status() & ST0_FR) == !!fr) ? 0 : SIGFPE;

	default:
		BUG();
	}
93 94

	return SIGFPE;
95
}
L
Linus Torvalds 已提交
96 97 98 99

#define __disable_fpu()							\
do {									\
	clear_c0_status(ST0_CU1);					\
R
Ralf Baechle 已提交
100
	disable_fpu_hazard();						\
L
Linus Torvalds 已提交
101 102 103 104
} while (0)

#define clear_fpu_owner()	clear_thread_flag(TIF_USEDFPU)

105 106 107 108 109
static inline int __is_fpu_owner(void)
{
	return test_thread_flag(TIF_USEDFPU);
}

L
Linus Torvalds 已提交
110 111
static inline int is_fpu_owner(void)
{
112
	return cpu_has_fpu && __is_fpu_owner();
L
Linus Torvalds 已提交
113 114
}

115
static inline int __own_fpu(void)
L
Linus Torvalds 已提交
116
{
117 118 119
	enum fpu_mode mode;
	int ret;

P
Paul Burton 已提交
120 121 122 123 124
	if (test_thread_flag(TIF_HYBRID_FPREGS))
		mode = FPU_HYBRID;
	else
		mode = !test_thread_flag(TIF_32BIT_FPREGS);

125 126 127 128
	ret = __enable_fpu(mode);
	if (ret)
		return ret;

129
	KSTK_STATUS(current) |= ST0_CU1;
P
Paul Burton 已提交
130
	if (mode == FPU_64BIT || mode == FPU_HYBRID)
131 132 133 134
		KSTK_STATUS(current) |= ST0_FR;
	else /* mode == FPU_32BIT */
		KSTK_STATUS(current) &= ~ST0_FR;

135
	set_thread_flag(TIF_USEDFPU);
136
	return 0;
137 138
}

139
static inline int own_fpu_inatomic(int restore)
140
{
141 142
	int ret = 0;

143
	if (cpu_has_fpu && !__is_fpu_owner()) {
144 145
		ret = __own_fpu();
		if (restore && !ret)
146
			_restore_fp(current);
L
Linus Torvalds 已提交
147
	}
148
	return ret;
149 150
}

151
static inline int own_fpu(int restore)
152
{
153 154
	int ret;

155
	preempt_disable();
156
	ret = own_fpu_inatomic(restore);
157
	preempt_enable();
158
	return ret;
L
Linus Torvalds 已提交
159 160
}

161
static inline void lose_fpu(int save)
L
Linus Torvalds 已提交
162
{
163
	preempt_disable();
P
Paul Burton 已提交
164 165 166
	if (is_msa_enabled()) {
		if (save) {
			save_msa(current);
167 168
			current->thread.fpu.fcr31 =
					read_32bit_cp1_register(CP1_STATUS);
P
Paul Burton 已提交
169 170 171 172
		}
		disable_msa();
		clear_thread_flag(TIF_USEDMSA);
	} else if (is_fpu_owner()) {
173 174
		if (save)
			_save_fp(current);
L
Linus Torvalds 已提交
175 176
		__disable_fpu();
	}
P
Paul Burton 已提交
177 178
	KSTK_STATUS(current) &= ~ST0_CU1;
	clear_thread_flag(TIF_USEDFPU);
179
	preempt_enable();
L
Linus Torvalds 已提交
180 181
}

182
static inline int init_fpu(void)
L
Linus Torvalds 已提交
183
{
184 185
	int ret = 0;

L
Linus Torvalds 已提交
186
	if (cpu_has_fpu) {
187 188
		unsigned int config5;

189
		ret = __own_fpu();
190 191
		if (ret)
			return ret;
P
Paul Burton 已提交
192

193
		if (!cpu_has_fre) {
194
			_init_fpu();
P
Paul Burton 已提交
195

196
			return 0;
P
Paul Burton 已提交
197
		}
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214

		config5 = read_c0_config5();

		/*
		 * Ensure FRE is clear whilst running _init_fpu, since
		 * single precision FP instructions are used. If FRE
		 * was set then we'll just end up initialising all 32
		 * 64b registers.
		 */
		write_c0_config5(config5 & ~MIPS_CONF5_FRE);
		enable_fpu_hazard();

		_init_fpu();

		/* Restore FRE */
		write_c0_config5(config5);
		enable_fpu_hazard();
215
	} else
L
Linus Torvalds 已提交
216
		fpu_emulator_init_fpu();
217 218

	return ret;
L
Linus Torvalds 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232
}

static inline void save_fp(struct task_struct *tsk)
{
	if (cpu_has_fpu)
		_save_fp(tsk);
}

static inline void restore_fp(struct task_struct *tsk)
{
	if (cpu_has_fpu)
		_restore_fp(tsk);
}

P
Paul Burton 已提交
233
static inline union fpureg *get_fpu_regs(struct task_struct *tsk)
L
Linus Torvalds 已提交
234
{
235 236 237
	if (tsk == current) {
		preempt_disable();
		if (is_fpu_owner())
L
Linus Torvalds 已提交
238
			_save_fp(current);
239
		preempt_enable();
L
Linus Torvalds 已提交
240 241
	}

242
	return tsk->thread.fpu.fpr;
L
Linus Torvalds 已提交
243 244 245
}

#endif /* _ASM_FPU_H */