fpu.h 2.7 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 36 37
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 *);

#define __enable_fpu()							\
do {									\
R
Ralf Baechle 已提交
38 39
	set_c0_status(ST0_CU1);						\
	enable_fpu_hazard();						\
L
Linus Torvalds 已提交
40 41 42 43 44
} while (0)

#define __disable_fpu()							\
do {									\
	clear_c0_status(ST0_CU1);					\
R
Ralf Baechle 已提交
45
	disable_fpu_hazard();						\
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
} while (0)

#define enable_fpu()							\
do {									\
	if (cpu_has_fpu)						\
		__enable_fpu();						\
} while (0)

#define disable_fpu()							\
do {									\
	if (cpu_has_fpu)						\
		__disable_fpu();					\
} while (0)


#define clear_fpu_owner()	clear_thread_flag(TIF_USEDFPU)

63 64 65 66 67
static inline int __is_fpu_owner(void)
{
	return test_thread_flag(TIF_USEDFPU);
}

L
Linus Torvalds 已提交
68 69
static inline int is_fpu_owner(void)
{
70
	return cpu_has_fpu && __is_fpu_owner();
L
Linus Torvalds 已提交
71 72
}

73
static inline void __own_fpu(void)
L
Linus Torvalds 已提交
74
{
75 76 77 78 79
	__enable_fpu();
	KSTK_STATUS(current) |= ST0_CU1;
	set_thread_flag(TIF_USEDFPU);
}

80
static inline void own_fpu_inatomic(int restore)
81 82 83 84 85
{
	if (cpu_has_fpu && !__is_fpu_owner()) {
		__own_fpu();
		if (restore)
			_restore_fp(current);
L
Linus Torvalds 已提交
86
	}
87 88 89 90 91 92
}

static inline void own_fpu(int restore)
{
	preempt_disable();
	own_fpu_inatomic(restore);
93
	preempt_enable();
L
Linus Torvalds 已提交
94 95
}

96
static inline void lose_fpu(int save)
L
Linus Torvalds 已提交
97
{
98 99 100 101
	preempt_disable();
	if (is_fpu_owner()) {
		if (save)
			_save_fp(current);
L
Linus Torvalds 已提交
102
		KSTK_STATUS(current) &= ~ST0_CU1;
103
		clear_thread_flag(TIF_USEDFPU);
L
Linus Torvalds 已提交
104 105
		__disable_fpu();
	}
106
	preempt_enable();
L
Linus Torvalds 已提交
107 108 109 110
}

static inline void init_fpu(void)
{
111
	preempt_disable();
L
Linus Torvalds 已提交
112
	if (cpu_has_fpu) {
113
		__own_fpu();
L
Linus Torvalds 已提交
114 115 116 117
		_init_fpu();
	} else {
		fpu_emulator_init_fpu();
	}
118
	preempt_enable();
L
Linus Torvalds 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
}

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)
{
135 136 137
	if (tsk == current) {
		preempt_disable();
		if (is_fpu_owner())
L
Linus Torvalds 已提交
138
			_save_fp(current);
139
		preempt_enable();
L
Linus Torvalds 已提交
140 141
	}

142
	return tsk->thread.fpu.fpr;
L
Linus Torvalds 已提交
143 144 145
}

#endif /* _ASM_FPU_H */