Merge branch 'tip/perf/jump-label-2' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / arch / mn10300 / include / asm / fpu.h
1 /* MN10300 FPU definitions
2  *
3  * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4  * Written by David Howells (dhowells@redhat.com)
5  * Derived from include/asm-i386/i387.h: Copyright (C) 1994 Linus Torvalds
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public Licence
9  * as published by the Free Software Foundation; either version
10  * 2 of the Licence, or (at your option) any later version.
11  */
12 #ifndef _ASM_FPU_H
13 #define _ASM_FPU_H
14
15 #ifndef __ASSEMBLY__
16
17 #include <linux/sched.h>
18 #include <asm/exceptions.h>
19 #include <asm/sigcontext.h>
20
21 #ifdef __KERNEL__
22
23 extern asmlinkage void fpu_disabled(void);
24
25 #ifdef CONFIG_FPU
26
27 #ifdef CONFIG_LAZY_SAVE_FPU
28 /* the task that currently owns the FPU state */
29 extern struct task_struct *fpu_state_owner;
30 #endif
31
32 #if (THREAD_USING_FPU & ~0xff)
33 #error THREAD_USING_FPU must be smaller than 0x100.
34 #endif
35
36 static inline void set_using_fpu(struct task_struct *tsk)
37 {
38         asm volatile(
39                 "bset %0,(0,%1)"
40                 :
41                 : "i"(THREAD_USING_FPU), "a"(&tsk->thread.fpu_flags)
42                 : "memory", "cc");
43 }
44
45 static inline void clear_using_fpu(struct task_struct *tsk)
46 {
47         asm volatile(
48                 "bclr %0,(0,%1)"
49                 :
50                 : "i"(THREAD_USING_FPU), "a"(&tsk->thread.fpu_flags)
51                 : "memory", "cc");
52 }
53
54 #define is_using_fpu(tsk) ((tsk)->thread.fpu_flags & THREAD_USING_FPU)
55
56 extern asmlinkage void fpu_kill_state(struct task_struct *);
57 extern asmlinkage void fpu_exception(struct pt_regs *, enum exception_code);
58 extern asmlinkage void fpu_invalid_op(struct pt_regs *, enum exception_code);
59 extern asmlinkage void fpu_init_state(void);
60 extern asmlinkage void fpu_save(struct fpu_state_struct *);
61 extern int fpu_setup_sigcontext(struct fpucontext *buf);
62 extern int fpu_restore_sigcontext(struct fpucontext *buf);
63
64 static inline void unlazy_fpu(struct task_struct *tsk)
65 {
66         preempt_disable();
67 #ifndef CONFIG_LAZY_SAVE_FPU
68         if (tsk->thread.fpu_flags & THREAD_HAS_FPU) {
69                 fpu_save(&tsk->thread.fpu_state);
70                 tsk->thread.fpu_flags &= ~THREAD_HAS_FPU;
71                 tsk->thread.uregs->epsw &= ~EPSW_FE;
72         }
73 #else
74         if (fpu_state_owner == tsk)
75                 fpu_save(&tsk->thread.fpu_state);
76 #endif
77         preempt_enable();
78 }
79
80 static inline void exit_fpu(void)
81 {
82 #ifdef CONFIG_LAZY_SAVE_FPU
83         struct task_struct *tsk = current;
84
85         preempt_disable();
86         if (fpu_state_owner == tsk)
87                 fpu_state_owner = NULL;
88         preempt_enable();
89 #endif
90 }
91
92 static inline void flush_fpu(void)
93 {
94         struct task_struct *tsk = current;
95
96         preempt_disable();
97 #ifndef CONFIG_LAZY_SAVE_FPU
98         if (tsk->thread.fpu_flags & THREAD_HAS_FPU) {
99                 tsk->thread.fpu_flags &= ~THREAD_HAS_FPU;
100                 tsk->thread.uregs->epsw &= ~EPSW_FE;
101         }
102 #else
103         if (fpu_state_owner == tsk) {
104                 fpu_state_owner = NULL;
105                 tsk->thread.uregs->epsw &= ~EPSW_FE;
106         }
107 #endif
108         preempt_enable();
109         clear_using_fpu(tsk);
110 }
111
112 #else /* CONFIG_FPU */
113
114 extern asmlinkage
115 void unexpected_fpu_exception(struct pt_regs *, enum exception_code);
116 #define fpu_invalid_op unexpected_fpu_exception
117 #define fpu_exception unexpected_fpu_exception
118
119 struct task_struct;
120 struct fpu_state_struct;
121 static inline bool is_using_fpu(struct task_struct *tsk) { return false; }
122 static inline void set_using_fpu(struct task_struct *tsk) {}
123 static inline void clear_using_fpu(struct task_struct *tsk) {}
124 static inline void fpu_init_state(void) {}
125 static inline void fpu_save(struct fpu_state_struct *s) {}
126 static inline void fpu_kill_state(struct task_struct *tsk) {}
127 static inline void unlazy_fpu(struct task_struct *tsk) {}
128 static inline void exit_fpu(void) {}
129 static inline void flush_fpu(void) {}
130 static inline int fpu_setup_sigcontext(struct fpucontext *buf) { return 0; }
131 static inline int fpu_restore_sigcontext(struct fpucontext *buf) { return 0; }
132 #endif /* CONFIG_FPU  */
133
134 #endif /* __KERNEL__ */
135 #endif /* !__ASSEMBLY__ */
136 #endif /* _ASM_FPU_H */