fpu.h 3.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>
C
Chris Dearman 已提交
20
#include <asm/hazards.h>
L
Linus Torvalds 已提交
21 22 23
#include <asm/processor.h>
#include <asm/current.h>

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

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

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

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
/*
 * This enum specifies a mode in which we want the FPU to operate, for cores
 * which implement the Status.FR bit. Note that FPU_32BIT & FPU_64BIT
 * purposefully have the values 0 & 1 respectively, so that an integer value
 * of Status.FR can be trivially casted to the corresponding enum fpu_mode.
 */
enum fpu_mode {
	FPU_32BIT = 0,		/* FR = 0 */
	FPU_64BIT,		/* FR = 1 */
	FPU_AS_IS,
};

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;

	case FPU_64BIT:
#if !(defined(CONFIG_CPU_MIPS32_R2) || defined(CONFIG_MIPS64))
		/* we only have a 32-bit FPU */
		return SIGFPE;
#endif
		/* fall through */
	case FPU_32BIT:
		/* set CU1 & change FR appropriately */
		fr = (int)mode;
		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();
	}
77 78

	return SIGFPE;
79
}
L
Linus Torvalds 已提交
80 81 82 83

#define __disable_fpu()							\
do {									\
	clear_c0_status(ST0_CU1);					\
R
Ralf Baechle 已提交
84
	disable_fpu_hazard();						\
L
Linus Torvalds 已提交
85 86 87 88
} while (0)

#define clear_fpu_owner()	clear_thread_flag(TIF_USEDFPU)

89 90 91 92 93
static inline int __is_fpu_owner(void)
{
	return test_thread_flag(TIF_USEDFPU);
}

L
Linus Torvalds 已提交
94 95
static inline int is_fpu_owner(void)
{
96
	return cpu_has_fpu && __is_fpu_owner();
L
Linus Torvalds 已提交
97 98
}

99
static inline int __own_fpu(void)
L
Linus Torvalds 已提交
100
{
101 102 103 104 105 106 107 108
	enum fpu_mode mode;
	int ret;

	mode = !test_thread_flag(TIF_32BIT_FPREGS);
	ret = __enable_fpu(mode);
	if (ret)
		return ret;

109
	KSTK_STATUS(current) |= ST0_CU1;
110 111 112 113 114
	if (mode == FPU_64BIT)
		KSTK_STATUS(current) |= ST0_FR;
	else /* mode == FPU_32BIT */
		KSTK_STATUS(current) &= ~ST0_FR;

115
	set_thread_flag(TIF_USEDFPU);
116
	return 0;
117 118
}

119
static inline int own_fpu_inatomic(int restore)
120
{
121 122
	int ret = 0;

123
	if (cpu_has_fpu && !__is_fpu_owner()) {
124 125
		ret = __own_fpu();
		if (restore && !ret)
126
			_restore_fp(current);
L
Linus Torvalds 已提交
127
	}
128
	return ret;
129 130
}

131
static inline int own_fpu(int restore)
132
{
133 134
	int ret;

135
	preempt_disable();
136
	ret = own_fpu_inatomic(restore);
137
	preempt_enable();
138
	return ret;
L
Linus Torvalds 已提交
139 140
}

141
static inline void lose_fpu(int save)
L
Linus Torvalds 已提交
142
{
143 144 145 146
	preempt_disable();
	if (is_fpu_owner()) {
		if (save)
			_save_fp(current);
L
Linus Torvalds 已提交
147
		KSTK_STATUS(current) &= ~ST0_CU1;
148
		clear_thread_flag(TIF_USEDFPU);
L
Linus Torvalds 已提交
149 150
		__disable_fpu();
	}
151
	preempt_enable();
L
Linus Torvalds 已提交
152 153
}

154
static inline int init_fpu(void)
L
Linus Torvalds 已提交
155
{
156 157
	int ret = 0;

158
	preempt_disable();
L
Linus Torvalds 已提交
159
	if (cpu_has_fpu) {
160 161 162
		ret = __own_fpu();
		if (!ret)
			_init_fpu();
L
Linus Torvalds 已提交
163 164 165
	} else {
		fpu_emulator_init_fpu();
	}
166

167
	preempt_enable();
168
	return ret;
L
Linus Torvalds 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
}

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);
}

static inline fpureg_t *get_fpu_regs(struct task_struct *tsk)
{
185 186 187
	if (tsk == current) {
		preempt_disable();
		if (is_fpu_owner())
L
Linus Torvalds 已提交
188
			_save_fp(current);
189
		preempt_enable();
L
Linus Torvalds 已提交
190 191
	}

192
	return tsk->thread.fpu.fpr;
L
Linus Torvalds 已提交
193 194 195
}

#endif /* _ASM_FPU_H */