[ALSA] Fix resume of cs4231
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-i386 / i387.h
blob6747006743f94f49abf8339cdced9f988ce2e359
1 /*
2 * include/asm-i386/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 */
11 #ifndef __ASM_I386_I387_H
12 #define __ASM_I386_I387_H
14 #include <linux/sched.h>
15 #include <linux/init.h>
16 #include <asm/processor.h>
17 #include <asm/sigcontext.h>
18 #include <asm/user.h>
20 extern void mxcsr_feature_mask_init(void);
21 extern void init_fpu(struct task_struct *);
24 * FPU lazy state save handling...
28 * The "nop" is needed to make the instructions the same
29 * length.
31 #define restore_fpu(tsk) \
32 alternative_input( \
33 "nop ; frstor %1", \
34 "fxrstor %1", \
35 X86_FEATURE_FXSR, \
36 "m" ((tsk)->thread.i387.fxsave))
38 extern void kernel_fpu_begin(void);
39 #define kernel_fpu_end() do { stts(); preempt_enable(); } while(0)
42 * These must be called with preempt disabled
44 static inline void __save_init_fpu( struct task_struct *tsk )
46 alternative_input(
47 "fnsave %1 ; fwait ;" GENERIC_NOP2,
48 "fxsave %1 ; fnclex",
49 X86_FEATURE_FXSR,
50 "m" (tsk->thread.i387.fxsave)
51 :"memory");
52 tsk->thread_info->status &= ~TS_USEDFPU;
55 #define __unlazy_fpu( tsk ) do { \
56 if ((tsk)->thread_info->status & TS_USEDFPU) \
57 save_init_fpu( tsk ); \
58 } while (0)
60 #define __clear_fpu( tsk ) \
61 do { \
62 if ((tsk)->thread_info->status & TS_USEDFPU) { \
63 asm volatile("fnclex ; fwait"); \
64 (tsk)->thread_info->status &= ~TS_USEDFPU; \
65 stts(); \
66 } \
67 } while (0)
71 * These disable preemption on their own and are safe
73 static inline void save_init_fpu( struct task_struct *tsk )
75 preempt_disable();
76 __save_init_fpu(tsk);
77 stts();
78 preempt_enable();
81 #define unlazy_fpu( tsk ) do { \
82 preempt_disable(); \
83 __unlazy_fpu(tsk); \
84 preempt_enable(); \
85 } while (0)
87 #define clear_fpu( tsk ) do { \
88 preempt_disable(); \
89 __clear_fpu( tsk ); \
90 preempt_enable(); \
91 } while (0)
94 * FPU state interaction...
96 extern unsigned short get_fpu_cwd( struct task_struct *tsk );
97 extern unsigned short get_fpu_swd( struct task_struct *tsk );
98 extern unsigned short get_fpu_mxcsr( struct task_struct *tsk );
101 * Signal frame handlers...
103 extern int save_i387( struct _fpstate __user *buf );
104 extern int restore_i387( struct _fpstate __user *buf );
107 * ptrace request handers...
109 extern int get_fpregs( struct user_i387_struct __user *buf,
110 struct task_struct *tsk );
111 extern int set_fpregs( struct task_struct *tsk,
112 struct user_i387_struct __user *buf );
114 extern int get_fpxregs( struct user_fxsr_struct __user *buf,
115 struct task_struct *tsk );
116 extern int set_fpxregs( struct task_struct *tsk,
117 struct user_fxsr_struct __user *buf );
120 * FPU state for core dumps...
122 extern int dump_fpu( struct pt_regs *regs,
123 struct user_i387_struct *fpu );
125 #endif /* __ASM_I386_I387_H */