[PATCH] s390: qeth :allow setting of attribute "route6" to "no_router".
[firewire-audio.git] / include / asm-x86_64 / i387.h
blob876eb9a2fe7868a7c7ce01ef694403b3150f4601
1 /*
2 * include/asm-x86_64/i387.h
4 * Copyright (C) 1994 Linus Torvalds
6 * Pentium III FXSR, SSE support
7 * General FPU state handling cleanups
8 * Gareth Hughes <gareth@valinux.com>, May 2000
9 * x86-64 work by Andi Kleen 2002
12 #ifndef __ASM_X86_64_I387_H
13 #define __ASM_X86_64_I387_H
15 #include <linux/sched.h>
16 #include <asm/processor.h>
17 #include <asm/sigcontext.h>
18 #include <asm/user.h>
19 #include <asm/thread_info.h>
20 #include <asm/uaccess.h>
22 extern void fpu_init(void);
23 extern unsigned int mxcsr_feature_mask;
24 extern void mxcsr_feature_mask_init(void);
25 extern void init_fpu(struct task_struct *child);
26 extern int save_i387(struct _fpstate __user *buf);
29 * FPU lazy state save handling...
32 #define unlazy_fpu(tsk) do { \
33 if (task_thread_info(tsk)->status & TS_USEDFPU) \
34 save_init_fpu(tsk); \
35 } while (0)
37 /* Ignore delayed exceptions from user space */
38 static inline void tolerant_fwait(void)
40 asm volatile("1: fwait\n"
41 "2:\n"
42 " .section __ex_table,\"a\"\n"
43 " .align 8\n"
44 " .quad 1b,2b\n"
45 " .previous\n");
48 #define clear_fpu(tsk) do { \
49 if (task_thread_info(tsk)->status & TS_USEDFPU) { \
50 tolerant_fwait(); \
51 task_thread_info(tsk)->status &= ~TS_USEDFPU; \
52 stts(); \
53 } \
54 } while (0)
57 * ptrace request handers...
59 extern int get_fpregs(struct user_i387_struct __user *buf,
60 struct task_struct *tsk);
61 extern int set_fpregs(struct task_struct *tsk,
62 struct user_i387_struct __user *buf);
65 * i387 state interaction
67 #define get_fpu_mxcsr(t) ((t)->thread.i387.fxsave.mxcsr)
68 #define get_fpu_cwd(t) ((t)->thread.i387.fxsave.cwd)
69 #define get_fpu_fxsr_twd(t) ((t)->thread.i387.fxsave.twd)
70 #define get_fpu_swd(t) ((t)->thread.i387.fxsave.swd)
71 #define set_fpu_cwd(t,val) ((t)->thread.i387.fxsave.cwd = (val))
72 #define set_fpu_swd(t,val) ((t)->thread.i387.fxsave.swd = (val))
73 #define set_fpu_fxsr_twd(t,val) ((t)->thread.i387.fxsave.twd = (val))
75 static inline int restore_fpu_checking(struct i387_fxsave_struct *fx)
77 int err;
79 asm volatile("1: rex64/fxrstor (%[fx])\n\t"
80 "2:\n"
81 ".section .fixup,\"ax\"\n"
82 "3: movl $-1,%[err]\n"
83 " jmp 2b\n"
84 ".previous\n"
85 ".section __ex_table,\"a\"\n"
86 " .align 8\n"
87 " .quad 1b,3b\n"
88 ".previous"
89 : [err] "=r" (err)
90 #if 0 /* See comment in __fxsave_clear() below. */
91 : [fx] "r" (fx), "m" (*fx), "0" (0));
92 #else
93 : [fx] "cdaSDb" (fx), "m" (*fx), "0" (0));
94 #endif
95 if (unlikely(err))
96 init_fpu(current);
97 return err;
100 static inline int save_i387_checking(struct i387_fxsave_struct __user *fx)
102 int err;
104 asm volatile("1: rex64/fxsave (%[fx])\n\t"
105 "2:\n"
106 ".section .fixup,\"ax\"\n"
107 "3: movl $-1,%[err]\n"
108 " jmp 2b\n"
109 ".previous\n"
110 ".section __ex_table,\"a\"\n"
111 " .align 8\n"
112 " .quad 1b,3b\n"
113 ".previous"
114 : [err] "=r" (err), "=m" (*fx)
115 #if 0 /* See comment in __fxsave_clear() below. */
116 : [fx] "r" (fx), "0" (0));
117 #else
118 : [fx] "cdaSDb" (fx), "0" (0));
119 #endif
120 if (unlikely(err))
121 __clear_user(fx, sizeof(struct i387_fxsave_struct));
122 return err;
125 static inline void __fxsave_clear(struct task_struct *tsk)
127 /* Using "rex64; fxsave %0" is broken because, if the memory operand
128 uses any extended registers for addressing, a second REX prefix
129 will be generated (to the assembler, rex64 followed by semicolon
130 is a separate instruction), and hence the 64-bitness is lost. */
131 #if 0
132 /* Using "fxsaveq %0" would be the ideal choice, but is only supported
133 starting with gas 2.16. */
134 __asm__ __volatile__("fxsaveq %0"
135 : "=m" (tsk->thread.i387.fxsave));
136 #elif 0
137 /* Using, as a workaround, the properly prefixed form below isn't
138 accepted by any binutils version so far released, complaining that
139 the same type of prefix is used twice if an extended register is
140 needed for addressing (fix submitted to mainline 2005-11-21). */
141 __asm__ __volatile__("rex64/fxsave %0"
142 : "=m" (tsk->thread.i387.fxsave));
143 #else
144 /* This, however, we can work around by forcing the compiler to select
145 an addressing mode that doesn't require extended registers. */
146 __asm__ __volatile__("rex64/fxsave %P2(%1)"
147 : "=m" (tsk->thread.i387.fxsave)
148 : "cdaSDb" (tsk),
149 "i" (offsetof(__typeof__(*tsk),
150 thread.i387.fxsave)));
151 #endif
152 __asm__ __volatile__("fnclex");
155 static inline void kernel_fpu_begin(void)
157 struct thread_info *me = current_thread_info();
158 preempt_disable();
159 if (me->status & TS_USEDFPU) {
160 __fxsave_clear(me->task);
161 me->status &= ~TS_USEDFPU;
162 return;
164 clts();
167 static inline void kernel_fpu_end(void)
169 stts();
170 preempt_enable();
173 static inline void save_init_fpu(struct task_struct *tsk)
175 __fxsave_clear(tsk);
176 task_thread_info(tsk)->status &= ~TS_USEDFPU;
177 stts();
181 * This restores directly out of user space. Exceptions are handled.
183 static inline int restore_i387(struct _fpstate __user *buf)
185 return restore_fpu_checking((__force struct i387_fxsave_struct *)buf);
188 #endif /* __ASM_X86_64_I387_H */